Infallible Code
-
This post did not contain any content.
-
This post did not contain any content.
You could save about half the code by only listing one boolean value and having the other as a default return at the bottom.
Sometimes my genius is almost frightening.
-
This post did not contain any content.
Pah, mathematicians and their generally applicable pure approach to solutions and fancy modulus operations, who needs 'em? Computing is applied and we always work with well-defined finite precision. Granted, writing the boilerplate for all possible 64 bit integers is a bit laborious, but we're programmers! That's what code generation is for.
-
This post did not contain any content.
This isn’t his actual code, right? Like this specific code pictured here? I’m aware of the “drama” surrounding him currently.
-
This post did not contain any content.
Better/fastest approch would be to check the last bit of the int and return the result.
Second use modulo.This? Dev should burn in hell.
Who created this? -
This isn’t his actual code, right? Like this specific code pictured here? I’m aware of the “drama” surrounding him currently.
Nah.
Someone added him to an existing meme.
But, if this was his code he would defend it and condescendingly tell you that he is correct, you are not knowledgeable enough to understand and let you know he worked at Blizzard for seven years.
-
This post did not contain any content.
Definitely a vibe.
-
This post did not contain any content.
You don't get it. This was made in GameMaker Studio 1.4, which doesn't support a modulo operator. You know nothing about this specific framework. I have 8 years of experience and hacked governments. There's no reason to update it now, because it runs on a smart fridge at maximum capacity.
-
Nah.
Someone added him to an existing meme.
But, if this was his code he would defend it and condescendingly tell you that he is correct, you are not knowledgeable enough to understand and let you know he worked at Blizzard for seven years.
Did you know that he worked for Blizzard for seven years? Not only that, but he was Blizzard's first second-generation employee. He grew up in Blizzard. An extreme accomplishment to be certain. Thank you based and blizzpilled Pirate Software.
I wonder if he was the one stealing the breast milk. After all, I've heard he can be really childish.
-
Nah.
Someone added him to an existing meme.
But, if this was his code he would defend it and condescendingly tell you that he is correct, you are not knowledgeable enough to understand and let you know he worked at Blizzard for seven years.
Second gen blizzard employee
-
You could save about half the code by only listing one boolean value and having the other as a default return at the bottom.
Sometimes my genius is almost frightening.
wrote on last edited by [email protected]This noob even forgot zero
-
Better/fastest approch would be to check the last bit of the int and return the result.
Second use modulo.This? Dev should burn in hell.
Who created this?Yandere Simulator Dev. Spaghetti code throughout
-
This post did not contain any content.
Try coding chess next time
See ya in a few years
-
You don't get it. This was made in GameMaker Studio 1.4, which doesn't support a modulo operator. You know nothing about this specific framework. I have 8 years of experience and hacked governments. There's no reason to update it now, because it runs on a smart fridge at maximum capacity.
I worked at Blizzard. I worked at Blizzard. I worked at Blizzard.
-
This post did not contain any content.
The fact that this probably doesn't even optimize to a lookup table just gives me pain.
-
Better/fastest approch would be to check the last bit of the int and return the result.
Second use modulo.This? Dev should burn in hell.
Who created this?Alternatively you can divide by 2, turn it into an int, mtiply it by 2 and check if both numbers are the same.
-
This post did not contain any content.
At least this madness is isolated to this function. It can easily be fixed.
Pirate’s code is just cluttered with magic numbers everywhere. Hard coded numbers that are referring to a big ”story array”, or characters. It’s just a giant web of complexity. The only fix is to start from scratch.
-
This post did not contain any content.
-
This isn’t his actual code, right? Like this specific code pictured here? I’m aware of the “drama” surrounding him currently.
this is an old meme about yanderedev
-
This post did not contain any content.wrote on last edited by [email protected]
After working at blizzard for 51 years, I finally found an elegant solution by using the power of recursion
private bool IsEven(int number){ if (number > 1) return IsEven(number - 2); if (number == 0) return true; if (number == 1) return false; }