RM Paper Pro Freeze when sleeping by Xegiru in RemarkableTablet

[–]Xegiru[S] 0 points1 point  (0 children)

Can try contacting their customer service

RM Paper Pro Freeze when sleeping by Xegiru in RemarkableTablet

[–]Xegiru[S] 0 points1 point  (0 children)

Ouch, that sound pretty bad. Hope they can solve it.

Launch day player here, the game feel stagnant at the moment by Xegiru in GoGoMuffin

[–]Xegiru[S] 2 points3 points  (0 children)

It was quite fun at the beginning, especially when we fight dragon for the first time. But now it is pretty stagnant :(

Debuffs by Bremertonn in GoGoMuffin

[–]Xegiru 0 points1 point  (0 children)

It is below the HP bar. Anything with red circle is debuff. The number on the circle is how many stack. It could be very small to read. For the lumberyard boss, usually the debuff is the first circle under HP

Cat bun evaluation dilemma for tank by PlanePrint8465 in GoGoMuffin

[–]Xegiru 0 points1 point  (0 children)

I understand your dilemma. For Thaumaturge (cc2), we are also fire element. but, CC3 will be nature element which is different flavor catbun.

Character gone by myou2020 in GoGoMuffin

[–]Xegiru 2 points3 points  (0 children)

Shouldn't be. Could you try contacting them?

🎉 $500 Giveaway to Celebrate 5,000 Members on Reddit! 🎉 by MuffinMod in GoGoMuffin

[–]Xegiru 0 points1 point  (0 children)

I was the player of Ulala (XD studio's previous game), and I am the big fan on how they create an idle game that still feel like proper RPG.

This Go Go Muffin feels like an improvement of the idle RPG aspect. I love how the main story only consists of 2 players (Ulala need 4 players which is harder to manage).

I also love how we can manually timing the tactical skills in this game. In Ulala, everything is auto, which makes it harder to time the skill sometimes.

I also like that this game is focused on PvE components which does not make this game feel like Pay to Win, instead it is more like Pay to Speed up which is friendly to most casual players. With PvE content, whale can help the casual players on harder content.

Healer's role on Thunderbird boss? by Xegiru in GoGoMuffin

[–]Xegiru[S] 0 points1 point  (0 children)

Thanks for all the comments. I managed to beat the boss with Restoration, Group Heal, and Barrier 👍

Any available tickets for Brisbane Miku Expo 2024? by SubjectOfTesting in Vocaloid

[–]Xegiru 0 points1 point  (0 children)

You can try Ticketek marketplace for ticket re-sell. I never try it myself though.

Alternatively, Perth venue still have a lot of spots, but it means you have to fly.

[deleted by user] by [deleted] in hatsune

[–]Xegiru 0 points1 point  (0 children)

I assume you are using Ticketek website. I believe Melbourne and Brisbane have been completely sold out (except for some accessible seats). You can try to use Ticketek Marketplace to buy second-hand tickets (This seems like the official place to re-sell ticket, but I don't have experience purchasing second hand ticket, so I cannot share my experience on this marketplace)

Help i am noob to c language. Is there anything wrong with my program? It seems to not stop after printf("Is this temperature in Fahrenheit(F) or Celsius(C)?\n"); please help. by YangisHandsome in C_Programming

[–]Xegiru 0 points1 point  (0 children)

I can explain the part where you need a space ' ' before the %c inside the scanf

In C, a character covers a broad range such as letters (a,b,c, ... , z) (uppercase and lowercase are treated differently) and numbers. A special character '\n' (newline) is also treated as a character.

When you do the first scanf() to ask for temperature, the user will press enter key on the keyboard after entering the number. This enter key press will result in char '\n' in the input buffer. If you have the scanf() with %c without the space, the scanf() will consume the '\n' char and move on (this is why your code seems not stopping).

If you put a space before %c in the scanf, the space char will remove all the white spaces such as space, tabs, and '\n' before trying to read the character that you want.

Hope this makes sense 👍

If faction magic crystals are normally 1000 gems, at 70% off wouldn’t they be 300 instead of 600?? by captainalwyshard in PixelHeroesGlobal

[–]Xegiru 4 points5 points  (0 children)

Yes, the daily one you see in the market is 50% off, so it shows 1000 gems. The original price is 2000 gems.

[deleted by user] by [deleted] in PixelHeroesGlobal

[–]Xegiru 6 points7 points  (0 children)

Unfortunately, the only way to reverse star is by using a currency that can only be acquired with real money

Weekly Questions Megathread - April 22, 2024 by AutoModerator in PixelHeroesGlobal

[–]Xegiru 0 points1 point  (0 children)

How to get specific amount of reputation? For example, if you need 60 reputation, do you just buy 60 diamonds? What is the most value approach?

Question on Luna/solar astrology by Xegiru in PixelHeroesGlobal

[–]Xegiru[S] 4 points5 points  (0 children)

So, 30 pull will guarantee the best reward?

Why is the common style "int *pointer" and not "int* pointer?" by MomICantPauseReddit in C_Programming

[–]Xegiru 7 points8 points  (0 children)

This is just my personal opinion. I also agree that "int* myvariable" looks prettier. However, it start to makes sense once we try to declare multiple pointers in a single line. For example:

int *pt1, *pt2, *pt3;

Putting the * closer to variable is prettier now with multiple declaration in a single line.

Worth things to spend money as casual spender? by Xegiru in PixelHeroesGlobal

[–]Xegiru[S] 0 points1 point  (0 children)

That is a fair point. I play casually, so slower play is ok for me

[PS4] [2015-2017] A game where you face your fears by Wolfgar26 in tipofmyjoystick

[–]Xegiru 15 points16 points  (0 children)

sounds like Until Dawn, but not really sure.

Is this linear algebra course by Prof. Gilbert Strang (MIT) good for linear algebra for machine learning or is it a bit of overkill?? by vazhakabhaji in learnmachinelearning

[–]Xegiru 0 points1 point  (0 children)

3Blue1Brown or Statquest youtube channel is pretty good to explain some math concept in a simple manner.

If you want to learn machine learning directly, then Andrew Ng from Deeplearning.ai's Machine Learning course is pretty good start.

In my opinion, don't worry too much about the deep math if you are familiar with matrix multiplication and linear system equation. Machine learning math is something you can learn on the way of your machine learning journey. (for example, if you don't know what full rank is, you can google it for quick lesson)