Skip to content

Instantly share code, notes, and snippets.

View correcthorsebatterystaple-sudo's full-sized avatar
🌴
On vacation

correcthorsebatterystaple-sudo

🌴
On vacation
View GitHub Profile
CLIENT.on('message', function(data){
if(data.nick == "ThinkPad") CLIENT.submit(">>"+(data.count.toString())+" Okay kid.");
});
CLIENT.on('message', function(data){
if(((data.count+1)%100)%11==0) CLIENT.submit("STEAL");
});
@correcthorsebatterystaple-sudo
correcthorsebatterystaple-sudo / CodeGolfFizzbuzz.py
Last active August 10, 2016 14:22
I FUCKING DID IT, LADS. 62 CHARS. To convert from Python2 to Python3, just add parens. They harm my golph though, so Python2 it is.
for x in range(1,101):print(x%3==0)*"Fizz"+(x%5==0)*"Buzz"or x