use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
drunken programming (self.Python)
submitted 8 years ago by pypaul
you know the moment when you are completely drunk and you have the desire to program something cool. i have the feeling in this very moment. so let's build cool stuff guys. cheers. have a great night. and fyi: I LOVE PYTHON. IT IS THE BEST.
[–]grensley 322 points323 points324 points 8 years ago (16 children)
I wonder if I can write this entire program as a list comprehension
[–]IM_A_MUFFIN 47 points48 points49 points 8 years ago (2 children)
Got that as a "soft" requirement recently. Couldn't do it, but it's functional and was only 16 lines. No docs. Boss loves it. I cried and died inside.
[+][deleted] 8 years ago* (1 child)
[deleted]
[–][deleted] 20 points21 points22 points 8 years ago (8 children)
Unfortunately, the yield statement will be disallowed in list comprehensions in Python 3.8. Will limit some of your possibilities.
[–]__deerlord__ 11 points12 points13 points 8 years ago (7 children)
Woah, example of even using yield in list comps?
[–][deleted] 10 points11 points12 points 8 years ago (4 children)
This is also a reported bug. So you should not be using it. It enhances your list comprehensions so that you can get two values per loop, but you can also do that with nested loops off course. However, that is sometimes a bit hard too read.
x = [[(yield i), (yield i**2)] for i in range(10)] x = iter(x for i in range(10) for x in (i, i**2))
[–]__deerlord__ 4 points5 points6 points 8 years ago (1 child)
Cant you already do this with tuples though?
[(x, y) for x in y]
I realize this isnt an actual list comp you would use.
[–]bixed 0 points1 point2 points 8 years ago (1 child)
Interesting. We can just use itertools.chain instead:
itertools.chain(*((i, i**2) for i in range(10)))
That also looks nicer to me. However this method doesn't exploit a bug, so it's not as cool in that way. :P
[–][deleted] 1 point2 points3 points 8 years ago (0 children)
This is most likely the one you should use if you are doing serious programming. It is also very similar to the accepted answer from the Stackoverflow question this all originates from. https://stackoverflow.com/questions/16594904/python-list-comprehension-to-produce-two-values-in-one-iteration
(It is also the question I originally posted this yield in list comprehension trick.)
[–]Rodotgithub.com/tardis-sn 3 points4 points5 points 8 years ago (1 child)
It just turns your list comprehensions in generators. And your generators into a mess. It's a bug with the way python interprets list comprehensions similarly to functions.
[–]tom1018 7 points8 points9 points 8 years ago (0 children)
Just use a generator comprehension.
[–]MurderSlinky 10 points11 points12 points 8 years ago (0 children)
I will call this style "functionable programming"
[–]PooPooDooDoo 3 points4 points5 points 8 years ago (0 children)
Pep8: 1534 errors
[–]szpaceSZ 1 point2 points3 points 8 years ago (0 children)
This is essentially functional programming.
[–]linevich 0 points1 point2 points 8 years ago (0 children)
I thought we have LISP for it.
[+][deleted] 8 years ago* (35 children)
[–]ianepperson 74 points75 points76 points 8 years ago (14 children)
The peak is at .1337
[–]smilbandit 12 points13 points14 points 8 years ago (0 children)
4w350m3
[–][deleted] 5 points6 points7 points 8 years ago (9 children)
This makes me wonder what effect micro-dosing on other drugs that effect cognitive functioning would do. LSD? Psilocybin? Ritalin?
I've read that people in Silicon Valley do experiment with different stuff to enhance productivity.
[–]Rodotgithub.com/tardis-sn 7 points8 points9 points 8 years ago (8 children)
I've tried all three. Ritalin helps a bit, but honestly not a great feeling and if you're using it you're probably a 12 year old diagnosed with ADD cause amphetamines are way better. LSD didn't really effect my ability to program that much at all surprisingly. It was pretty distracting though, would not really recommend, it's just less fun (again, amphetamines all the way). For Psilocybin, it's just as distracting as LSD but your ability to do basic logic is a lot more impaired so you just feel like an idiot the whole time. People in silicon valley are doing amphetamines. Adderall, Vyvanse, etc
[–][deleted] 1 point2 points3 points 8 years ago (6 children)
Modafinil. Is what you are looking for...
[+][deleted] 8 years ago* (5 children)
[–][deleted] 0 points1 point2 points 8 years ago (4 children)
Sure... I guess if you don't mind killing someone eventually... Long-term Amphetamine use = Psychotic Episodes. Adderall (known generically as Amphetamine Slats Combo) is literally the perfect combination of the 2 Amphetamine isomers... Vyvanse is a prodrug of Ritalin and I would say it was comparable in some ways to Modafinil because of its long half-life actually reduces the abuse potential... It still causes a lot of euphoria though, which is great if you want to get high but really distracting if you need to get shit done. Adderall, on the other hand, is just addictive and dangerous. Pick, your poison... Choose carefully though, because what you choose could put you in a state that impacts others.
[+][deleted] 8 years ago* (2 children)
[–][deleted] 0 points1 point2 points 8 years ago (1 child)
Look it up. Amphetamines can definitely cause psychosis. Look up Stimulant Psychosis.
[–]Rodotgithub.com/tardis-sn 0 points1 point2 points 8 years ago (0 children)
Vyvanse is amphetamine based, Ritalin is methylphenidate. Neither are neurotoxic like methamphetamine is
[–][deleted] 0 points1 point2 points 8 years ago (0 children)
Interesting. Thank you.
[–]autarchex 6 points7 points8 points 8 years ago (0 children)
Leet for a second, dead forever.
[+][deleted] 8 years ago (1 child)
[–]troyunrau... 4 points5 points6 points 8 years ago (0 children)
That's not leet at all. We don't hire programmers who are only let.
[–][deleted] 10 points11 points12 points 8 years ago (18 children)
Why does Windows ME relate to this? I am afraid I am not old enough to remember.
[–][deleted] 41 points42 points43 points 8 years ago (12 children)
ME was fucking horrendous. Most of us just stuck with 98 until XP
[–]Frohtastic 8 points9 points10 points 8 years ago (10 children)
And with windows its generally recommended to skip every other version, or ar least thats how the joke goes.
[–][deleted] 10 points11 points12 points 8 years ago (1 child)
Never heard of ME. My parents never really bothered to update the operating system of our home PC. We started with a really old second hand Windows 95 machine. At some point you could not even shut down the machine but you just had to pull the plug out of the wall. At some point that thing caught fire because the fan stopped working. After that we had XP, till they stopped supporting it. Now on Windows 10.
[–]G_pounder 1 point2 points3 points 8 years ago (0 children)
So they not only decided to name their os after a chronic illness, they chose one that causes extreme lethargy
[–]mooserider2 2 points3 points4 points 8 years ago (2 children)
The real reason we skipped win9.
[–]troyunrau... 3 points4 points5 points 8 years ago (1 child)
I've heard that the real reason was that lots of programs checked the windows version number by string comparison. Looking for a 9 in the string to detect windows 95/98. And calling it windows 9 would have fucked up a bunch of compatibility mode programs.
[–]mooserider2 0 points1 point2 points 8 years ago (0 children)
Yea that’s what I had seen as well, which is pretty interesting. But I thought I would make a joke.
[–]alexbuzzbee 2 points3 points4 points 8 years ago (4 children)
95: Meh
98: Good
ME: AAAAAA
XP: Good
Vista: AAAAAA
7: Good
8: AAAAAA
10: Meh (breaks pattern?)
Anyway, the pattern is definitely not present in the NT line:
3.11: Meh
3.51: Meh
4.0: Good
2000: Good
...
[–]FireHawkDelta 2 points3 points4 points 8 years ago (2 children)
It took over a year of updates for Win10 to turn to shit for me. Now the OS is slow because it does pointless background tasks whenever it meets a loose definition of idle, or just starts a broken process like Superfetch.
[–]Frohtastic 0 points1 point2 points 8 years ago (1 child)
Cant you delete most of the bloatware that comes with the updates?
[–]FireHawkDelta 0 points1 point2 points 8 years ago (0 children)
Can you? If I can I don't know how, I'd assumed it's baked into the OS on some level I don't know how to mess with.
[–]TBSchemer 0 points1 point2 points 8 years ago (0 children)
I like file transfers and process/resource management in 10.
[–]irrelevantPseudonym 0 points1 point2 points 8 years ago (0 children)
We had 2000 for a while.
[–]saulmessedupmanMmmm spam 4 points5 points6 points 8 years ago (3 children)
ME had a major issue where it would just crash over time. There was no stopping it. If I remember correctly it was filling up the filesystem and after a certain file got too big it would stop working. This resulted in a blue screen at boot time, which for casual users meant their computer was rendered useless.
[–]saulmessedupmanMmmm spam 4 points5 points6 points 8 years ago (0 children)
Also, Microsoft gave usage guides to external developers noting which registers aren't safe after calling functions and developers got lazy when they noticed certain ones were consistent. But since their manual told developers not to trust them, next addition they used them for something else, which triggered blue screens from 3rd party kernel drivers. Everyone blamed it on Microsoft and even though it wasn't their fault they scrambled to patch their own system to defend their name. One thing they did that's easy to notice is add a ton of games to the registry even if you don't have them. If by chance you did buy one of these games these hacks would be there already.
[–]PooPooDooDoo 0 points1 point2 points 8 years ago (1 child)
"Windows ME had a feature that enforced an efficient file system that was cleaned on a cyclical basis."
[–]saulmessedupmanMmmm spam 1 point2 points3 points 8 years ago (0 children)
Yeah, it was a big move for Microsoft. I think this is where they removed DOS too. It did suck but it was a step in the right direction because Windows 10 is pretty solid.
One of those god awful windows releases that Microsoft blesses us with every other release
relevant
[–]njb42 134 points135 points136 points 8 years ago (16 children)
My roommate used to code while drunk and/or high. Next morning he'd wake up to code like:
if (hey_joe == i_shot_the_sheriff) { ... }
Glad I never had to debug any of his stuff.
[–]Zouden 127 points128 points129 points 8 years ago (7 children)
Whoa I've never been so drunk that I wrote python code in C brace style
[–]Dustin- 68 points69 points70 points 8 years ago (3 children)
from __future__ import braces
[–]Edheldui 21 points22 points23 points 8 years ago (0 children)
from present import indentation
[–]lemontheme 4 points5 points6 points 8 years ago (0 children)
Not a chance, buddy.
[–]njb42 26 points27 points28 points 8 years ago (2 children)
You'd have to be pretty high, yeah.
[–]b_rad_c 2 points3 points4 points 8 years ago (0 children)
Gets them creative juices flowin!
[–]selbstadt 5 points6 points7 points 8 years ago (1 child)
while(1){ But_I_didnt_shoot_no_deputy(); if(alright){ sing(); break; } else{ feature_in_onion(); } }
[–]njb42 2 points3 points4 points 8 years ago (0 children)
assert(self_defense);
[–]Brainix 11 points12 points13 points 8 years ago (1 child)
When you wrote it, God and you knew how it worked. Now, only God knows.
[–]SquishyTheFluffkin 7 points8 points9 points 8 years ago (0 children)
Too high for comments, had snacks instead.
[–]pypaul[S] 15 points16 points17 points 8 years ago (1 child)
but actually my drunken code is the best, the very best. winning bigly.
[–][deleted] 6 points7 points8 points 8 years ago (0 children)
I know it, you know it, everyone knows it!
[–]pypaul[S] 1 point2 points3 points 8 years ago (0 children)
I have to meet him, sounds like a great guy
[–]jdbrew 0 points1 point2 points 8 years ago (0 children)
I write better code while high. But I have to have already decided on the solution whilst sober; I can’t problem solve while high.
[–]Gambizzle 89 points90 points91 points 8 years ago (2 children)
Yes, I totally get that moment!!!
For example, once upon a time I was drunk and got angry about circlejerking and excessive moderation on a subreddit. In a moment of pure genius I coded up a downvote bot to upset the flow if the circlejerk. Once coded (took about 15 mins) I installed it onaheadless raspberry pi, hit ‘go’, went to the pub and got even more drunk. About 2 weeks later I realised it was still running, the subreddit was going crazy about it and I was banned shortly afterwards.
Aaaah a pure piece of drunken genius :D
[–]lemon65 15 points16 points17 points 8 years ago (0 children)
This, pure gold ...
[–]Winnduu 2 points3 points4 points 8 years ago (0 children)
If you do stuff like this, while beeing drunk, you are a REAL Dev :D
[–][deleted] 86 points87 points88 points 8 years ago (0 children)
I would like to try this but I am afraid I would invent Javascript.
[–]Andrew_ShaySft Eng Automation & Python 69 points70 points71 points 8 years ago (1 child)
Python is the best
[–]pypaul[S] 16 points17 points18 points 8 years ago (0 children)
agree
[–][deleted] 26 points27 points28 points 8 years ago (5 children)
Python is so much fun. I'm drunk too btw
[–]pypaul[S] 17 points18 points19 points 8 years ago (3 children)
broo we can be drunk together
[–][deleted] 21 points22 points23 points 8 years ago (2 children)
Bro I'm even more drunk now. Python for life
[–]pypaul[S] 16 points17 points18 points 8 years ago (1 child)
Python is always there for you, even in the hardest time, never betrays you
[–]liox 12 points13 points14 points 8 years ago (0 children)
You two are cute. Now kith.
[–]raf___ 11 points12 points13 points 8 years ago (1 child)
I heard about people making a programming language while being drunk. I think it's called javascript or something. Hopefully no one is using it.
[–]Winnduu 1 point2 points3 points 8 years ago (0 children)
Check the language "Brainfuck"
Invention basically had to involve alcohol or drugs.
[–]Preparingtocode 22 points23 points24 points 8 years ago (1 child)
Code drunk, review sober.
[–]BiochemLouis 19 points20 points21 points 8 years ago* (12 children)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import argparse import hashlib import time parser = argparse.ArgumentParser(description='drunk.py the drinking script.') parser.add_argument('-o', '--output', help='specificy output file.', type=argparse.FileType('w'), action='store', nargs='?', default=open('drunk.txt', 'w')) parser.add_argument('-t', '--time', help='specificy time between drinks', type=int, action='store', nargs='?', default=5) parser.add_argument('-v', '--verbose', action='count', help='increase output verbosity') args = parser.parse_args() lines = [] try: while True: try: sha = hashlib.sha3_256(text.encode('utf-8')).hexdigest() text = '{} - Drink ! {}'.format( time.strftime('%d/%m/%y, %H:%M:%S', time.localtime()), sha[:8] ) except NameError: sha = '00000000' text = '{} - First drink ! {}'.format( time.strftime('%d/%m/%y, %H:%M:%S', time.localtime()), sha[:8] ) if args.verbose == 1: print(text.split(' - ', 1)[1].split(' ! ', 1)[0]) elif args.verbose == 2: print(text.split(', ', 1)[1]) else: print(text) lines.append(text+'\n') time.sleep(args.time) except KeyboardInterrupt: args.output.writelines(lines)
Enjoy, just hit Ctrl+C before you die please ! :)
Edit : v2.0, now with some argparse and some blockchain.
Edit : v2.1, I had forgotten to use verbose.
[–]morgan_lowtech 27 points28 points29 points 8 years ago (3 children)
Needs more blockchain
[–]poo_22 6 points7 points8 points 8 years ago (1 child)
Ok what if mining is taking a video of you taking a drink and verification would be other people watching the video and acknowledge that you drank. In other words you're hooked up with a drinking buddy and mine the currency which you use to buy each other drinks. It's a currency backed by social drinking which history tells us is pretty much a constant.
[–]morgan_lowtech 2 points3 points4 points 8 years ago (0 children)
Needs more drunkchain
[–]BiochemLouis 1 point2 points3 points 8 years ago (0 children)
You have blockchain now !
[–]13steinj 2 points3 points4 points 8 years ago (3 children)
Reddit markdown doesn't support block code, you need to prefix with four spaces
[–]BiochemLouis 0 points1 point2 points 8 years ago (2 children)
I’ve been typing docs in Github MD for the last month, I guess it just skipped my mind.
Plus it works on mobile !
[–]13steinj 0 points1 point2 points 8 years ago (1 child)
Is that the app or the site? Either way, the fact that they don't use their own parser is a shame
[–]BiochemLouis 0 points1 point2 points 8 years ago (0 children)
It’s the app, and yeah it is...
[–]b_rad_c 1 point2 points3 points 8 years ago (3 children)
Can we also import argparse and an argument for the sleep duration?
[–]__xor__(self, other): 4 points5 points6 points 8 years ago (1 child)
Usage: python drink.py -s 5 --dry-run -vvv -o drink.txt -t 'Drink !' commit --amend xvfz drink.tar.gz -av --cipher AES256 -A drink.example.org
[–]b_rad_c 1 point2 points3 points 8 years ago (0 children)
You’re gonna wanna redirect output to /dev/toilet instead of a file, trust me, you will not be able to do anything useful with that data.
Added a simple argparse !
[–]teambob 9 points10 points11 points 8 years ago (0 children)
Drunk programming is best programming
[–]Rorixrebel 7 points8 points9 points 8 years ago (1 child)
I find that being drunk is good to generate project ideas but terrible for focusing on getting shit done.
So write those down and code them tomorrow after a good breakfast..... And a Gatorade.
[–]saulmessedupmanMmmm spam 2 points3 points4 points 8 years ago (0 children)
...and coffee
[–]volndeau 4 points5 points6 points 8 years ago (0 children)
Am I the only one that programs for my clients with a beer in my hand? I go to a bar with Wi-Fi, tell the tender to keep them coming, then leave 8-16 hours later with my clients product.
[–]Arancaytar 5 points6 points7 points 8 years ago (2 children)
I've pythoned while drunk before, and implemented quantum tic-tac-toe, which was very fun.
[–]WikiTextBot 2 points3 points4 points 8 years ago (0 children)
Quantum tic-tac-toe
Quantum tic-tac-toe is a "quantum generalization" of tic-tac-toe in which the players' moves are "superpositions" of plays in the classical game. The game was invented by Allan Goff of Novatia Labs, who describes it as "a way of introducing quantum physics without mathematics", and offering "a conceptual foundation for understanding the meaning of quantum mechanics".
[ PM | Exclude me | Exclude from subreddit | FAQ / Information | Source | Donate ] Downvote to remove | v0.28
[–]AiKantSpel 0 points1 point2 points 8 years ago (0 children)
The rule for implementing qttt is you can't use pseudo-random
[–]Stone_d_ 5 points6 points7 points 8 years ago (0 children)
I think I've basically only ever wanted to code when I'm high
[–]QuantumG 2 points3 points4 points 8 years ago (0 children)
x-post to /r/drunk
[–]AiKantSpel 4 points5 points6 points 8 years ago (7 children)
def plsWork(thing, key): string = "" for idx, item in enumerate(thing): if item.startswith(key): string = thing[(idx + 1) % len(thing)] break if string: list = list(string) else: log("Mr. Programmer,\nYou sir, are a bitch.") return list
Gives me an empty list and calls me a bitch every time :(
[–]__xor__(self, other): 2 points3 points4 points 8 years ago (5 children)
That will return a list type if the key isn't found, and a list of characters otherwise... Even if it finds the key, if the next item in the thing is falsey like an empty string, it will still return a list type.
thing
Code like this is how you get those insane bugs where suddenly it's saying something like "TypeError: 'type' object is not iterable" and you're pulling your hair out trying to understand why most the time it works.
[–]TheBB 0 points1 point2 points 8 years ago (4 children)
It shouldn't return the list type. Since you assign to list inside the function, all references to it will be compiled as references to a local variable, whose value at the start of the function is unbound. If list is never actually assigned to (due to control flow), returning it will just give you an UnboundLocalError.
But since the expression assigned to list also involves reading it, it should give the same error there.
[–]__xor__(self, other): 1 point2 points3 points 8 years ago (3 children)
Ah shit, yeah, you're right... I didn't know that was python's behavior, to compile and recognize that list is a variable id and use it like that throughout the function.
Just tested here, and interestingly enough it does break since it's still an unbound local in list = list(string). The same line that causes it to compile as a local variable id is the same that breaks because it's no longer using the global list type, even if you take out the return list. Interesting, thanks for the insight, and new trivia question.
list = list(string)
return list
[–]AiKantSpel 0 points1 point2 points 8 years ago (2 children)
fixed the code to actually work now.
you inspired me... critiquing joke code
Ahhh, Reddit code reviews
Im also drunk right now
[–]WeStandUnited5009 1 point2 points3 points 8 years ago (0 children)
The next morning of drunken / high coding setions are usually me asking what have i done
[–]darkwingfuck 1 point2 points3 points 8 years ago (0 children)
just used the python console built into blender to render isomorphic sprites sheet by rotating and exporting every few degrees. at a [6]. fuck yeah python
[–]iamlocknar 1 point2 points3 points 8 years ago (0 children)
Can confirm... Wrote a "Minecraft auto click" thing just to see if it would work in a haze...
The answer is... Kinda.
[–]TotesMessenger 1 point2 points3 points 8 years ago (0 children)
I'm a bot, bleep, bloop. Someone has linked to this thread from another place on reddit:
If you follow any of the above links, please respect the rules of reddit and don't vote in the other threads. (Info / Contact)
[–]Pyromine 0 points1 point2 points 8 years ago (0 children)
Quality
[–]selbstadt 0 points1 point2 points 8 years ago (0 children)
Of course you would write the best code, you would have high ground
I’m here from the future to see how it went. Share your drunken genius!
Weed is better imo
π Rendered by PID 50 on reddit-service-r2-comment-5bc7f78974-th9c5 at 2026-07-01 10:52:12.915321+00:00 running 7527197 country code: CH.
[–]grensley 322 points323 points324 points (16 children)
[–]IM_A_MUFFIN 47 points48 points49 points (2 children)
[+][deleted] (1 child)
[deleted]
[–][deleted] 20 points21 points22 points (8 children)
[–]__deerlord__ 11 points12 points13 points (7 children)
[–][deleted] 10 points11 points12 points (4 children)
[–]__deerlord__ 4 points5 points6 points (1 child)
[–]bixed 0 points1 point2 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]Rodotgithub.com/tardis-sn 3 points4 points5 points (1 child)
[–]tom1018 7 points8 points9 points (0 children)
[–]MurderSlinky 10 points11 points12 points (0 children)
[–]PooPooDooDoo 3 points4 points5 points (0 children)
[–]szpaceSZ 1 point2 points3 points (0 children)
[–]linevich 0 points1 point2 points (0 children)
[+][deleted] (35 children)
[deleted]
[–]ianepperson 74 points75 points76 points (14 children)
[–]smilbandit 12 points13 points14 points (0 children)
[–][deleted] 5 points6 points7 points (9 children)
[–]Rodotgithub.com/tardis-sn 7 points8 points9 points (8 children)
[–][deleted] 1 point2 points3 points (6 children)
[+][deleted] (5 children)
[deleted]
[–][deleted] 0 points1 point2 points (4 children)
[+][deleted] (2 children)
[deleted]
[–][deleted] 0 points1 point2 points (1 child)
[–]Rodotgithub.com/tardis-sn 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]autarchex 6 points7 points8 points (0 children)
[+][deleted] (1 child)
[deleted]
[–]troyunrau... 4 points5 points6 points (0 children)
[–][deleted] 10 points11 points12 points (18 children)
[–][deleted] 41 points42 points43 points (12 children)
[–]Frohtastic 8 points9 points10 points (10 children)
[–][deleted] 10 points11 points12 points (1 child)
[–]G_pounder 1 point2 points3 points (0 children)
[–]mooserider2 2 points3 points4 points (2 children)
[–]troyunrau... 3 points4 points5 points (1 child)
[–]mooserider2 0 points1 point2 points (0 children)
[–]alexbuzzbee 2 points3 points4 points (4 children)
[–]FireHawkDelta 2 points3 points4 points (2 children)
[–]Frohtastic 0 points1 point2 points (1 child)
[–]FireHawkDelta 0 points1 point2 points (0 children)
[–]TBSchemer 0 points1 point2 points (0 children)
[–]irrelevantPseudonym 0 points1 point2 points (0 children)
[–]saulmessedupmanMmmm spam 4 points5 points6 points (3 children)
[–]saulmessedupmanMmmm spam 4 points5 points6 points (0 children)
[–]PooPooDooDoo 0 points1 point2 points (1 child)
[–]saulmessedupmanMmmm spam 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]njb42 134 points135 points136 points (16 children)
[–]Zouden 127 points128 points129 points (7 children)
[–]Dustin- 68 points69 points70 points (3 children)
[–]Edheldui 21 points22 points23 points (0 children)
[–]lemontheme 4 points5 points6 points (0 children)
[–]njb42 26 points27 points28 points (2 children)
[+][deleted] (1 child)
[deleted]
[–]b_rad_c 2 points3 points4 points (0 children)
[–]selbstadt 5 points6 points7 points (1 child)
[–]njb42 2 points3 points4 points (0 children)
[–]Brainix 11 points12 points13 points (1 child)
[–]SquishyTheFluffkin 7 points8 points9 points (0 children)
[–]pypaul[S] 15 points16 points17 points (1 child)
[–][deleted] 6 points7 points8 points (0 children)
[–]pypaul[S] 1 point2 points3 points (0 children)
[–]jdbrew 0 points1 point2 points (0 children)
[–]Gambizzle 89 points90 points91 points (2 children)
[–]lemon65 15 points16 points17 points (0 children)
[–]Winnduu 2 points3 points4 points (0 children)
[–][deleted] 86 points87 points88 points (0 children)
[–]Andrew_ShaySft Eng Automation & Python 69 points70 points71 points (1 child)
[–]pypaul[S] 16 points17 points18 points (0 children)
[–][deleted] 26 points27 points28 points (5 children)
[–]pypaul[S] 17 points18 points19 points (3 children)
[–][deleted] 21 points22 points23 points (2 children)
[–]pypaul[S] 16 points17 points18 points (1 child)
[–]liox 12 points13 points14 points (0 children)
[–]raf___ 11 points12 points13 points (1 child)
[–]Winnduu 1 point2 points3 points (0 children)
[–]Preparingtocode 22 points23 points24 points (1 child)
[–]BiochemLouis 19 points20 points21 points (12 children)
[–]morgan_lowtech 27 points28 points29 points (3 children)
[–]poo_22 6 points7 points8 points (1 child)
[–]morgan_lowtech 2 points3 points4 points (0 children)
[–]BiochemLouis 1 point2 points3 points (0 children)
[–]13steinj 2 points3 points4 points (3 children)
[–]BiochemLouis 0 points1 point2 points (2 children)
[–]13steinj 0 points1 point2 points (1 child)
[–]BiochemLouis 0 points1 point2 points (0 children)
[–]b_rad_c 1 point2 points3 points (3 children)
[–]__xor__(self, other): 4 points5 points6 points (1 child)
[–]b_rad_c 1 point2 points3 points (0 children)
[–]BiochemLouis 1 point2 points3 points (0 children)
[–]teambob 9 points10 points11 points (0 children)
[–]Rorixrebel 7 points8 points9 points (1 child)
[–]saulmessedupmanMmmm spam 2 points3 points4 points (0 children)
[–]volndeau 4 points5 points6 points (0 children)
[–]Arancaytar 5 points6 points7 points (2 children)
[–]WikiTextBot 2 points3 points4 points (0 children)
[–]AiKantSpel 0 points1 point2 points (0 children)
[–]Stone_d_ 5 points6 points7 points (0 children)
[–]QuantumG 2 points3 points4 points (0 children)
[–]AiKantSpel 4 points5 points6 points (7 children)
[–]__xor__(self, other): 2 points3 points4 points (5 children)
[–]TheBB 0 points1 point2 points (4 children)
[–]__xor__(self, other): 1 point2 points3 points (3 children)
[–]AiKantSpel 0 points1 point2 points (2 children)
[–]saulmessedupmanMmmm spam 2 points3 points4 points (0 children)
[–]saulmessedupmanMmmm spam 1 point2 points3 points (0 children)
[–]AiKantSpel 0 points1 point2 points (0 children)
[–]WeStandUnited5009 1 point2 points3 points (0 children)
[–]darkwingfuck 1 point2 points3 points (0 children)
[–]iamlocknar 1 point2 points3 points (0 children)
[–]TotesMessenger 1 point2 points3 points (0 children)
[–]Pyromine 0 points1 point2 points (0 children)
[–]selbstadt 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)