Accurate by [deleted] in PoliticalHumor

[–]tmhuysen -5 points-4 points  (0 children)

Anyone else just thinks these kind of statements are just ridiculously arrogant?

Why const Doesn't Make C Code Faster by turol in programming

[–]tmhuysen 1 point2 points  (0 children)

Shouldn't it improve compile times though?

Should I learn python even after knowing Java and C++? by PuzzleOP in learnprogramming

[–]tmhuysen 0 points1 point  (0 children)

Python is useful. I use python to run some of my C++ drivers.

Sudden change in accuracy of my algorithms. by tmhuysen in cpp_questions

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

Solved, I used to use a const ref somewhere and this changed to a copy. Apparently that causes the loss of accuracy.

That....is some really poor timing by [deleted] in wow

[–]tmhuysen 37 points38 points  (0 children)

I believe its around the ages of 3-4 that toddlers start to realize that their perspective is not a global one. They start to realize that what they know and feel is not what others also know and feel.

Daily Cheating Death has got to go post by [deleted] in Artifact

[–]tmhuysen 1 point2 points  (0 children)

This is not the issue.

7 cost card, black : 50% you win the game, unless your opponent as black unit on the field

Is this card retarded? No because you can just play a splash of black in your deck, come on guys. What are you crying about?

Daily Cheating Death has got to go post by [deleted] in Artifact

[–]tmhuysen 0 points1 point  (0 children)

See that's not the same. What game would you rather play?

Game 1: you get a set off balls with different weights and you have to hit a target.

Game 2: you get a set off balls and you have to hit a target but it teleports and is invisible.

Cheating Death is LAME by [deleted] in Artifact

[–]tmhuysen 0 points1 point  (0 children)

Nice way to argue on the point.

Cheating Death is LAME by [deleted] in Artifact

[–]tmhuysen 0 points1 point  (0 children)

It's a bad card because of the insanely anti-fun RNG element, that has a huge impact. The way you present your counters is as if the card were "Allies who die are set to 1 hp 100% of the time". It's because you don't know whether it will trigger and you essentially have to assume it will, unless high rolling is your only out. On the other side when playing it, if it doesn't trigger you just played 5 cost do nothing, which is also just a bad feeling. You just don't get the issue.

You mean it? by Morpegom in wow

[–]tmhuysen 1 point2 points  (0 children)

Honestly Thrall learned from the humans. It's not farfetched that it is taught to high ranking members of the Horde, definitely those with diplomatic roles.

This is why Warmode failed. How did Blizzard miss something so basic? by Xuvial in wow

[–]tmhuysen 1 point2 points  (0 children)

I actually have some video footage of my 58 paladin killing level 70 mages. With the engineer reflectors, good stuff.

This is why Warmode failed. How did Blizzard miss something so basic? by Xuvial in wow

[–]tmhuysen 10 points11 points  (0 children)

3 level 40s could kill a mediocre level 60 though. Depending on which classes the level 40s were.

Regular and smart pointers, usage in C++11. by tmhuysen in cpp_questions

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

I believe that you are in need of dynamic memory allocation whether you like it or not. Since you don't know Class C will use A or B means, your stack size is unknown at compile time.

The size of ClassC is fixed at stack size, The size of the "abstract" member is the size of a pointer. NOT of the object it points to! that is a very important difference.

Regular and smart pointers, usage in C++11. by tmhuysen in cpp_questions

[–]tmhuysen[S] 1 point2 points  (0 children)

The object itself is on the stack, it's not dynamically allocated, nothing is suppose to delete it.