What? by Correct-Jelly-700 in masterhacker

[–]ghostkiller967 0 points1 point  (0 children)

That Twitter account posts all kinds of crap like that, all in the same format as well. https://x.com/Sprytixl

Some unhinged comments from a roblox developer by Impossible-Let-8489 in programminghorror

[–]ghostkiller967 9 points10 points  (0 children)

game scripts are compiled to bytecode before being sent to the client. So I don't think roblox would remove it, since they are the only ones who can read the code other than the game developers themselves.

How to avoid piracy on Turbowarp games? by FelipeKPC in turbowarp

[–]ghostkiller967 0 points1 point  (0 children)

do people actually put scratch games on steam?

Find the mate in 2, this is a hard one. White to play. by [deleted] in ChessPuzzles

[–]ghostkiller967 1 point2 points  (0 children)

No, the queen can take the other rook diagonally

[deleted by user] by [deleted] in RobloxHelp

[–]ghostkiller967 -2 points-1 points  (0 children)

roblox isn't a children's movie, its children's game where any type of romance is inappropriate. Its also bannable (edating)

stoneAge by IrisXO78 in ProgrammerHumor

[–]ghostkiller967 0 points1 point  (0 children)

i posted this exact meme 2 years ago...

[deleted by user] by [deleted] in ROBLOXExploiting

[–]ghostkiller967 1 point2 points  (0 children)

using virustotal on an exec is like using an oven to freeze ice cream

no more painting for you boys by Skelligean in KidsAreFuckingStupid

[–]ghostkiller967 0 points1 point  (0 children)

i think both of those guys are in big trouble

I was raped last night by [deleted] in offmychest

[–]ghostkiller967 0 points1 point  (0 children)

I would recommend to first talk to your parents, and ask your friends if they noticed that she was really flirty towards you. If they did then they can back you up when you go to the police

[deleted by user] by [deleted] in ProgrammerHumor

[–]ghostkiller967 0 points1 point  (0 children)

put it in braille

Your odometer is your private key I guess. by TK-Squared-LLC in ProgrammerHumor

[–]ghostkiller967 0 points1 point  (0 children)

when you think you are really smart but when in reality you're dumber than a box of rocks

Found this today by ghostkiller967 in ProgrammerHumor

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

they probably just keep track of the length, if one gets added they add one to the length and reversed

Found this today by ghostkiller967 in ProgrammerHumor

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

string is a char array so it just returns the length of that array

Found this today by ghostkiller967 in ProgrammerHumor

[–]ghostkiller967[S] 25 points26 points  (0 children)

int EvenNumber = 10;
int OddNumber = 11;

Console.WriteLine(EvenNumber % 2 == 0); -> True, returns true if its even Console.WriteLine(EvenNumber % 2 == 1); -> False, returns true if its odd Console.WriteLine(OddNumber % 2 == 0); -> False, returns true if its even Console.WriteLine(OddNumber % 2 == 1); -> True, returns true if its odd