use the following search parameters to narrow your results:
e.g.reddit:pics site:imgur.com dog
reddit:pics site:imgur.com dog
see the search faq for details.
advanced search: by author, community...
191 users here now
Missed the best of Reddit yesterday? catch the daily recap and best links at tldr
Yup, you guessed it, geek stuff..
reddit is a source for what's new and popular online. vote on links that you like or dislike and help decide what's popular, or submit your own! learn more ›
Geekiest Your Momma Joke Ever (imgur.com)
submitted 1 year ago by reason78
[–]Nerdlinger 312 points313 points314 points 1 year ago
My rebuttal from the last time this was posted.
[–][deleted] 35 points36 points37 points 1 year ago
you sir live up to your chosen username.
[–][deleted] 1 year ago
[deleted]
[–]hitlersshit 1 point2 points3 points 1 year ago
You love people who compliment people who make nerdy comments?
[–][deleted] 1 point2 points3 points 1 year ago
rule 34
[–]Shitler 0 points1 point2 points 1 year ago
I love people like me. I love you.
[–]mikemcg 16 points17 points18 points 1 year ago
I'm not sure what tail-call optimizations are. Please explain?
[–]AgentConundrum 52 points53 points54 points 1 year ago
When a function is called, the computer must remember where it is in the execution of the calling function so that execution can continue from that point once the called function is finished.
Also, when a function is called, a certain amount of memory is used up storing that functions local variables and the like. In recursion, where the whole point is to call a function (specifically calling the function you're already in), this can lead to a large number of these variables sitting in memory, taking up a lot of space. This space can't be freed because the calling function still needs to be able to access its variables when execution is returned from the calling function. This is what causes a stack overflow - you're taking up way too much space in memory and you exceed the boundaries of the memory you're allowed to use.
A tail call is when you call a function recursively as part of a return statement - i.e. as the last thing you do. When this happens, you no longer need to have all your local variables for the calling function in memory, so they can be safely freed even though that function isn't technically done running.
The act of "prematurely" freeing this memory, knowing those variables won't be needed again because the function will end as soon as execution returns to it, is called a tail-call optimization.
[–]arnar 11 points12 points13 points 1 year ago
Good explanation. I had an analogy that works on children of ages 10 to 35:
I, you and mikemcg are doing a math problem. Each of us knows some specialty. Mikemcg starts calculating on paper, and hits a problem I need to apply my specialty on so he gives me the paper. I calculate a bit and then need you to apply your specialty so I give the paper to you. You do your thing, return the paper to me which I return to mikemcg.
If I have to do further calculation after you are done, I have to hang around and wait for you. However, if asking you is the last thing I must do - then I can just say to you "Dude, when you are done - give the paper to mikemcg" and then I can go home early and enjoy the nice weather.
[–]AgentConundrum 0 points1 point2 points 1 year ago
Good analogy. I'll tuck that in the back of my brain for later use.
[–]phatqao 0 points1 point2 points 1 year ago
great explanation. very helpful indeed.
[–]mikemcg 7 points8 points9 points 1 year ago
Excuse me, I'm drunk. So the act of a tail-call optimization is freeing up the unneeded local variables because they've been passed on?
It's funny because I've never thought that the local variables created in a function could possibly still exist in memory.
[–]AgentConundrum 27 points28 points29 points 1 year ago
So the act of a tail-call optimization is freeing up the unneeded local variables because they've been passed on?
If you're saying that it's because they've been passed to another function, then no. The memory space is being freed up because there is literally zero chance those variables will be used again. Think of this very simple pseudocode:
function myFunction() { int x = 0; x++; return myOtherFunction(); }
In this code, we're creating a variable called x which is scoped locally to myFunction, meaning that that variable is meaningless after myFunction finishes executing. Once you hit the return statement at the end of the function, the following happens:
Nothing happens, local to myFunction, between the call to myOtherFunction and myFunction returning a value. Because of that, everything associated with myFunction (save for the return) is unneeded and can be removed from memory.
In fact, since all the return statement is doing is passing along another returned variable, then you could say that myOtherFunction is directly returning a variable to whatever called myFunction, which means that we don't even need to return a value to myFunction, and can opt instead to return it directly to the function which called myFunction, bypassing myFunction completely and making the entire function eligible to be swept from memory.
With recursive functions, and tail-call recursion, it's even easier. Because the calling function and the called function are the same, with a tail call you can run the called function in the exact same place in memory as the calling function. In other words, rather than allocating a new chunk of memory for the new function, the existing calling function is just reinitialized using the arguments in the call in the return statement. This has exactly the same effect as calling a new copy of that function, but uses no extra space in memory.
All variables are kept in memory. Where did you think they were kept?
[–]mikemcg 1 point2 points3 points 1 year ago
Hah, I thought extraneous variables were destroyed by a garbage collector.
[–]AgentConundrum 28 points29 points30 points 1 year ago
Garbage collection affects the heap, not the stack. Tail call optimizations deal with how stack memory is handled, not the heap.
Also, the guy in the linked picture is Dennis Ritchie, who created C. C didn't have any concept of garbage collection. You had to manage your memory explicitly.
[–]clicksnd 13 points14 points15 points 1 year ago
It's people like you, through and such, that make reddit an awesome community. Keep up the good work.
[–]AgentConundrum 14 points15 points16 points 1 year ago
Thanks! I really appreciate that.
[–]jaymz168 -1 points0 points1 point 1 year ago
Threads like this are why I never leave.
[–]dkitch 2 points3 points4 points 1 year ago
Come for the "Yo Mama" jokes, stay for the education. Yup, that's reddit in a nutshell
[–]HolyKrap 1 point2 points3 points 1 year ago
Don't generalize. There's plenty of crappy parts of reddit. You ever been to f7u12.com? Well, I love that subreddit but it's located in the mountains of madness.
[–]phatqao -1 points0 points1 point 1 year ago
thanks for the knowledge!
[–]ultrafez -1 points0 points1 point 1 year ago
That was a superb explanation, thanks! I've never heard of tail-call optimization before, but I'm sure that the Wikipedia article explaining it is a lot more complex.
[–]Peaker 7 points8 points9 points 1 year ago
A function call includes:
If a function's last piece of work is calling another function, instead of having:
You can move 6 before 3:
So at any given moment only 1 stack is wound.
[–]Sawta 0 points1 point2 points 1 year ago
That was actually really informative and reasonably easy to understand. Thank you for that.
[–]AgentConundrum 1 point2 points3 points 1 year ago
Thanks, but I sort of missed the important part about how recursive functions are special cases. See my reply for a fuller story.
[–]schwingstar 0 points1 point2 points 1 year ago
TIL.. thanks
[–]TheLobotomizer -1 points0 points1 point 1 year ago
Isn't tail recursion usually a good case for conversion to an iterative algorithm?
[–]element8 4 points5 points6 points 1 year ago
why should you have to write it iteratively if the recursive algorithm is simpler and you can just let the compiler deal with optimization?
[–]netsettler 3 points4 points5 points 1 year ago
It is, of course, a subjective assessment that the recursive description is in some way simpler. What I would prefer you ask is "why should you have to write it iteratively if you're happy with having written it recursively?" One might likewise ask, "why should you have to write it recursively if you're happy with having written it iteratively?" Both ought to be acceptable and the compiler should compile them the same.
[–]Peaker 1 point2 points3 points 1 year ago
In Haskell, writing it iteratively is just using iteration/loop functions expressed via recursion.
In my opinion, that's one of the toughest stumbling blocks to get over when learning Haskell.
Well, it is indeed very different, and that makes it as difficult as learning programming from scratch for some. But it is actually simpler.
You can think of using foldr to iterate a list, for example, as replacing all of the : in the list with a given function, and the empty list with a given value.
foldr (+) 0
replaces the list:
1 : 2 : 3 : []
with:
1 + 2 + 3 + 0
and it is in fact simpler than:
i = 0 total = 0 for(i = 0; i < length; i++) { total += l[i]; }
Good point! I'm just learning about algorithm design so this is all new to me.
[–]HolyKrap -1 points0 points1 point 1 year ago
I didn't understand what that was at first, but being a programmer and understanding everything else you just said, I just learned a new name for something.
[–]doctorperv 3 points4 points5 points 1 year ago
thats better than your last bra bomb nerdlinger
[–]eightbithero 1 point2 points3 points 1 year ago
This is exactly what I came here to see.
[–]theguitarman64 0 points1 point2 points 1 year ago
Oh snap!
[–]harfold 54 points55 points56 points 1 year ago
Your Momma so FAT, she broke ISO 9293.
[–]cake_taker 8 points9 points10 points 1 year ago
explain!
[–]harfold 20 points21 points22 points 1 year ago
Behold!
[–]alcamus 2 points3 points4 points 1 year ago
Yo Momma's so fat she broke the FAT table!?! - precious.
[–]ultrafez 0 points1 point2 points 1 year ago
Yo momma so fat, you can't store her mass in a 32-bit integer.
[–]Pretentious_Douche 85 points86 points87 points 1 year ago
Yo momma's so fat the probability of her occupying an arbitrary point in space is 1.
[–]TheLobotomizer 13 points14 points15 points 1 year ago
Did anyone else just suddenly get claustrophobic?
[–]brainburger 10 points11 points12 points 1 year ago
We are all inside Yo Momma now.
[–][deleted] 14 points15 points16 points 1 year ago
That's because she so easy.
[–]bdmflyer 0 points1 point2 points 1 year ago
That was the funniest one I've read yet, and caused me to burst out laughing.
[–]bad_cab 79 points80 points81 points 1 year ago
Yo mamma so loose her default permissions are set to 777
[–]JRockPSU 5 points6 points7 points 1 year ago
Yo mamma so loose she's a member of the Everyone group by default.
[–]WiIIis 3 points4 points5 points 1 year ago
chmod? MORE LIKE CHMOM!
[–]BlackStrain 2 points3 points4 points 1 year ago
Man that bitch is executable.
[–]IConrad 1 point2 points3 points 1 year ago
Nerdier if you use umask.
[–]Calvin_the_Bold 75 points76 points77 points 1 year ago
Yo mamma is so fat that she sat on a binary tree and squished it into a linked list in O(1) time.
[–]eluusive 5 points6 points7 points 1 year ago
Niceeee.
[–]poleary 0 points1 point2 points 1 year ago
Was gonna post this
[–]MuForceShoelace 50 points51 points52 points 1 year ago
What kind of recursive function would you use to calculate mass? Like is it dividing the mom into a series of smaller moms?
[–]reason78[S] 53 points54 points55 points 1 year ago
Maybe the mom is Russian: http://www.minustwofish.com/wp-content/uploads/2008/12/matryoshka.jpg
[–]birlinn 8 points9 points10 points 1 year ago
ok...
http://imgur.com/F1uAM
[–]chetoflep -1 points0 points1 point 1 year ago
hah!
[–]ifatree 1 point2 points3 points 1 year ago*
geekier answer: she's so large you have to consider her as a stellar formation. you've got her main gravity well, and then all the stars in orbit around that, then all the planets in their respective gravity wells, all the moons, etc.
[–]whoami9 2 points3 points4 points 1 year ago
Yeah, some kind of finite element analysis.
[–]HMSuperb 4 points5 points6 points 1 year ago
Exactly, this isn't the geekiest joke ever because a true geek wouldn't use a recursive function for this (it doesn't even make sense in this context anyway)
[–]BrowsOfSteel 2 points3 points4 points 1 year ago*
Maybe it’s using an indefinitely long integer? Words are concatenated until there are no ints left to add and no carryout, but the machine runs out of memory (due to the recursive nature of the code) first.
int
Edited for clarity
[–]reddddditer 0 points1 point2 points 1 year ago
Then that wouldn't be a stack overflow.
[–]BrowsOfSteel 3 points4 points5 points 1 year ago
It is if it runs out of stack space due to recursion before it runs out of extra words for its long long long long … int.
long long long long … int
[–]reddddditer 5 points6 points7 points 1 year ago
Hmmm. Okay, that's possible. You win this geek-off. Cheers. Until we interface again.
[–]defrost 4 points5 points6 points 1 year ago
If it's performed divide and conquer style this joke really should be phrased "Your Momma is so wrinkly . . . ".
[–]pookybum 0 points1 point2 points 1 year ago
Make sure the tail calls are done right, and you won't get stupid overflows, noob.
[–]okeefe 29 points30 points31 points 1 year ago
Your momma's so fat, she spans ℝ³.
[–]rro99 9 points10 points11 points 1 year ago
Doesn't {1,0,0}+{0,1,0}+{0,0,1} span ℝ³?
In fact you could divide those values by any number (0,∞) and it would still span ℝ³.
[–]buster_bluth 0 points1 point2 points 1 year ago
... is a compact cover of ℝ³?
[–]ifatree 0 points1 point2 points 1 year ago
where 1 is the length of a "unit mother"?
[–]anaconomist 2 points3 points4 points 1 year ago
A basis is a (minimal) set that spans.
[–]CultureSchmulture 7 points8 points9 points 1 year ago
Minimal, if the vector space is of finite dimension.
Yo momma so fat, we have to invoke the Axiom of Choice!
[–]boomhat 15 points16 points17 points 1 year ago
My favorite is still: Your mama is so fat it takes 2 pokeflutes to wake her ass up
[–]cake_taker 25 points26 points27 points 1 year ago
Your mother is so fat, she has an event horizon.
[–]f4hy 1 point2 points3 points 1 year ago
Your statement is actually weaker than the previous. Your statement simply means she has an event horizon at her surface.
[–]grandhighwonko 1 point2 points3 points 1 year ago
Plus the same joke was posted further down in the thread which is why I've deleted it.
[–][deleted] 0 points1 point2 points 1 year ago
Or, more precisely, the mother is so weighted that she collapsed into a black hole under her own mass.
[–]dustinin 24 points25 points26 points 1 year ago
http://imgur.com/BrVry
[–]bureX 0 points1 point2 points 1 year ago
I laughed at all of them... ALL OF THEM!
/cries
[–]Jower 1 point2 points3 points 1 year ago
Even the last one where he just quoted an earlier one?
[–]travio 42 points43 points44 points 1 year ago
My fav:
Your mother is so fat, she is at an elevated risk of developing type 2 diabetes.
It's funny cause it's real.
No but seriously, sit her down and talk to her about starting an exercise regimen.
[–]Jower 5 points6 points7 points 1 year ago
Sit her down? More like take her for a walk
[–]ignoramusaurus 6 points7 points8 points 1 year ago
yo mommas so fat that when she goes on myspace there's no space left for anybody else
[–]NoSalt 18 points19 points20 points 1 year ago
Your momma is so fat, that all her base CAN'T belong to us.
[–]barosa 11 points12 points13 points 1 year ago
Your momma's so fat, I put her weight in cell A1 in excel, then entered =1/A1 in cell A2, then entered 1/A2 in cell A3 and received a #DIV/0! error
tl/dr: yo momma is incredibly heavy
[–]homeskilled 12 points13 points14 points 1 year ago
Your mom's a static variable cuz everyone in the class can access her.
[–]MyKingdomForAHorse -2 points-1 points0 points 1 year ago
you mean global variable?
[–]homeskilled 6 points7 points8 points 1 year ago
In java class level static variables are accessible to all objects and sub objects of the class.
[–]ultrafez 1 point2 points3 points 1 year ago
If it's a public class and a public static variable, then it's accesible to anything.
[–]TheoreticalFunk 18 points19 points20 points 1 year ago
I really think this is the winner: http://cheezburger.com/Tachyon/lolz/View/1331598592
[–]cammiesoul 2 points3 points4 points 1 year ago
Did anyone else read that in Hawking's synth voice?
[–]anyletter 5 points6 points7 points 1 year ago
Your Momma's so fat she died of fusion.
[–]edstatue 4 points5 points6 points 1 year ago
Let's make like Archimedes and screw.
[–]tingmakpuk 5 points6 points7 points 1 year ago*
Yo mama so old, she's afraid to work the Antikythera mechanism because it's a 'magic device'.
[–]idiotthethird 5 points6 points7 points 1 year ago
Yo mamma is so fat, physicists have accepted her as conclusive proof of the multi-verse theory.
[–]arcs 14 points15 points16 points 1 year ago
Your momma so fat, even if the Higgs boson doesn't exists, she would still have mass!
[–]TheGreatPastaWars 12 points13 points14 points 1 year ago
yo momma is so fat that she weighs A LOT.
looks around for high fives
** HIGH FIVE **
[–]chew_toyt 1 point2 points3 points 1 year ago
Internet high five!
[–]fubo 4 points5 points6 points 1 year ago
Yo momma's so FAT, Peter Norton wouldn't defragment her with Bill Gates's dick.
[–][deleted] 4 points5 points6 points 1 year ago
Yo mamma's so fat the escape velocity at her event horizon is 299,792 km/s.
[–]KingPharaoh 3 points4 points5 points 1 year ago
Your momma is so fat because she eats all these reposts.
[–]RagingRacist 8 points9 points10 points 1 year ago
Your momma's so corpulent, when she sits around the magnificently appointed Tuscan villa, she sits AROUND the magnificently appointed Tuscan villa.
[–]keraneuology 12 points13 points14 points 1 year ago
Your momma is so fat NASA wants to send her to space for gravitational lensing experiments.
[–]timeshifter_ 4 points5 points6 points 1 year ago
Yo momma's so fat, she returns a negative mass.
[–]zackhample 4 points5 points6 points 1 year ago
Yo' mama so fat, she jumped for joy and got stuck.
Not nerdy, but still funny as hell.
[–]Boredpotatoe2 2 points3 points4 points 1 year ago
Calamities of Nature did a couple
Physics Edition
Astrophysics Edition
[–]sciencehair 2 points3 points4 points 1 year ago
This thread from 10 months ago has some great ones. Many of which have already been reused here
[–]anyletter 1 point2 points3 points 1 year ago
Probably by people who remember that one. I know I'm guilty.
[–]sciencehair 0 points1 point2 points 1 year ago
Oh, I didn't mean anything by that. Jokes are meant to be reused.
[–]Zarokima 3 points4 points5 points 1 year ago
NO THEY'RE NOT, EVERYTHING MUST BE ENTIRELY ORIGINAL IN EVERY WAY RABBLE RABBLE RABBLE!!
Zarokima, standing around and saying "Rabble" won't make your mom any less of a slut.
[–]ShadyG 0 points1 point2 points 1 year ago
Yo momma's meant to be reused.
[–]bronzefoxy 2 points3 points4 points 1 year ago
Yo mamma so old she uses an abacus as a server farm.
[–]tenbits 2 points3 points4 points 1 year ago
Your mother is so fat, her mass is above the Chandrasekhar limit and overcomes her own exclusion principle repulsion between her neutrons and protons and becomes a naked singularity.
[–][deleted] 7 points8 points9 points 1 year ago
Yo Momma so fat
when she walks, NASA classifies her as a low orbit moon!
[–]memsisthefuture 3 points4 points5 points 1 year ago
Your Mom is so fat that her facebook profile picture is a screenshot from Google Earth.
[–]HolyKrap 0 points1 point2 points 1 year ago
This one is pretty good. :)
[–]immoralist 1 point2 points3 points 1 year ago*
Yo momma turns the square in Tetris.
/edit: fixed from "To momma is turns the square in Tetris." didn't notice i wrote garbage on my way to the office this morning :/
I think you a word
[–]immoralist 0 points1 point2 points 1 year ago
This sentence no verb.
[–]CaptainJackie9919 1 point2 points3 points 1 year ago
This has just made my day.
[–]kentrel 1 point2 points3 points 1 year ago
Your Momma is so fat that the last time she queefed Boba Fett escaped. My favourite.
[–]creepulkins 0 points1 point2 points 1 year ago
now that's worthy of an upvote!
[–]eyepatch100 1 point2 points3 points 1 year ago
Yo momma's so fat, we can't address every pound of her with a 32 bit operating system.
[–]mp3salad 1 point2 points3 points 1 year ago
Your Mom is like a struct, shes got no class
You and your mom are so fat you generate a a Lagrange point between you capable of sustaining a stationary satellite indefinitely provided it is only acted upon by gravity.
[–]LightRaptor 1 point2 points3 points 1 year ago
Yo mamma's so fat she can't even be addressed in IPV6...
[–]HotelCoralEssex 1 point2 points3 points 1 year ago
Dennis Ritchie rocking the acme editor in the background!
[–]log1k 1 point2 points3 points 1 year ago
I've clicked on this image 3x in the past 24 hrs. None of the links said I had clicked it before. Stop reposting dammit! >_<
[–]rellikiox 4 points5 points6 points 1 year ago*
Your mother is so fat, calculating his her mass is O(!n)
Edit: It seems I'm stupid :D
[–][deleted] 29 points30 points31 points 1 year ago
His? ಠ_ಠ
[–]nikpappagiorgio 5 points6 points7 points 1 year ago
double yo momma joke!
[–]breckinshire 21 points22 points23 points 1 year ago
O(!n)o, you did'n!
[–][deleted] 5 points6 points7 points 1 year ago
O(2n! )
[–]ngroot 1 point2 points3 points 1 year ago
Order not-n?
[–]A5M0D3US 1 point2 points3 points 1 year ago
http://xkcd.com/89/
Pure win.
[–]aguacate 0 points1 point2 points 1 year ago
Your momma so big, she casts a shadow over VY Canis Majoris
[–]Superfishul 0 points1 point2 points 1 year ago
OH NO HE DIDN'T
[–]Banana108 0 points1 point2 points 1 year ago
Your mother is a whore... Couldn't have happened to a nicer lady
[–]Bushtrimer 0 points1 point2 points 1 year ago
Sweet quip from Donald Sutherland.
[–]pippy 0 points1 point2 points 1 year ago
Your mother is so fat, her diamater caused a floating point overflow
[–]Mr_Badass 0 points1 point2 points 1 year ago
Your momma is so fat she is heavier than Copernicium.
[–]ngroot 0 points1 point2 points 1 year ago
Your momma's so fat, she's equinumerous with a proper subset of herself.
[–]ShampocalypseWOW 0 points1 point2 points 1 year ago
Your momma's so fat that her chitinous blubber garners a saving throw of 3D6 instead of 2!
"...and I'm pleased to tell you that."
[–]Telos06 0 points1 point2 points 1 year ago
Yo mamma so fat, her belt's an infinite loop.
[–]rhythmx 0 points1 point2 points 1 year ago
Yo mama so fat, she causes routing loops as packets go into orbit around her.
[–]gabriot 0 points1 point2 points 1 year ago
Your momma is so hot she turns my floppy disk to a hard disk.
[–]Knowltey 0 points1 point2 points 1 year ago
Yo mama's so fat she exceeds the limits of a 128-bit virtual address space.
[–]ZombieOverlord 0 points1 point2 points 1 year ago
not technically a your momma joke, more of a your mom joke. Which for those who don't know it is a more informal version, most often used in rebuttal. ex: P1 - wow that only cost me a dollar P2 - just like your mom.
It can be used on its own as well though: In Computer Networking we were sitting around doing nothing like usual and on this particular day we started throwing some your mom jokes around. The instructor came in (from the adjacent room) and tried to get us on task. The result: we started telling tech-related your mom jokes.
Now 2 things: 1 - they were bad as can be expected and 2 - I didn't talk much then and thus for most of the conversation I had sat there chuckled and thought.
Finally I took my opportunity: "Your mom's full-duplex she can send and receive at the same time"
[–]rickmidd 0 points1 point2 points 1 year ago
Yo mama's so ugly that fluorine wouldn't bond with her.
[–]blkbeard 0 points1 point2 points 1 year ago
Oh good lord, I understood that.
[–]tenbits 0 points1 point2 points 1 year ago
Your mother is so fat, the data structure used to represent her requires unlimited precision.
[–]redneon 0 points1 point2 points 1 year ago
Your momma is so fat that representing her radius with a floating point number is incredibly inaccurate.
[–]irokie 0 points1 point2 points 1 year ago
Your momma's so stupid she tried to minimise a 12 variable sum of products using karnaugh maps instead of using the Quine McCluskey method.
[–]redditspice 0 points1 point2 points 1 year ago
Your momma is so fat her obesity resulted in all her offspring being born mentally challenge and unable to write a recursive function.
[–]alefore 0 points1 point2 points 1 year ago
Yo' momma's so ugly not even Viola-Jones recognizes her.
[–]skeletonhat 0 points1 point2 points 1 year ago
chmod 777 your_mom
[–]theslightofhand 0 points1 point2 points 1 year ago
not all that funny, stack overflows routinely happen with recursive functions if native function calls within the function.
[–]cephisto 0 points1 point2 points 1 year ago
Your mamma so fat she bends space time
[–]chew_toyt 0 points1 point2 points 1 year ago
Your mom is like a cake, everyone gets a piece
[–]pablohoney102 1 point2 points3 points 1 year ago
The cake is a Lie
[–]emptythecache 0 points1 point2 points 1 year ago
Don't recursive functions stack overflow a lot faster than iterative ones?
An iterative algorithm won't overflow the stack.
[–]histumness 0 points1 point2 points 1 year ago
Relevant
[–]brainburger 0 points1 point2 points 1 year ago
I guess I am an old redditor now. I am surprised to see no mention of user yomama: http://www.reddit.com/user/yomama
Yo momma is so fat, we can't use 16bit x86 general purpose registers to compute her mass.
[–]SoulPoleSuperstar 0 points1 point2 points 1 year ago
your mother is so fat that she fully encompass the volume of a dyson sphere. or you mother is so fat that they used her dimensions to build the HLC, to a 1:1 scale.
[–]jyper 0 points1 point2 points 1 year ago
Even with tail call elimination!
[–]Mistake78 0 points1 point2 points 1 year ago
Integer overflow would have fit better. Oh well.
[–]Slaeke 0 points1 point2 points 1 year ago
your momma's so FAT, she has several smaller fat people orbiting around her.
[–]LiveStalk 0 points1 point2 points 1 year ago
Your Momma is so fat the escape velocity at her surface exceeds 3x108 m/s
[–]jesseac 0 points1 point2 points 1 year ago
...if she were any heavier the 64-bit signed integer value calculating her weight would wrap-around!
[–]tcgunner90 0 points1 point2 points 1 year ago
yo mamma is so slow, her de Broglie wavelength is observable even on macroscopic levels
[–]Bilbringi9 0 points1 point2 points 1 year ago
You need to get off these Momma jokes, seeing as I just got off yours...
[–]hiploser 0 points1 point2 points 1 year ago
yo mama's so crazy she makes pi look rational...
[–]Rgamer4 0 points1 point2 points 1 year ago
yes... of course.
[–]Teh_Br4iN 0 points1 point2 points 1 year ago
How have you not seen this before?
[–]cake_taker -1 points0 points1 point 1 year ago
And the other one i forgot since i had to wait 8 minutes before i was allowed to post again. Meh!
[–][deleted] -1 points0 points1 point 1 year ago
BOOM
[–]MOLESTOTHESUPERAPIST -1 points0 points1 point 1 year ago
only if your using a pentium 3
[–][deleted] -2 points-1 points0 points 1 year ago
Mention of tail recursion == predictable waste of the entire internet's time /= funny in any way.
Your mom is a nerd
[–]brmj 3 points4 points5 points 1 year ago
These things are supposed to be insults, remember?
[–]mrsix -1 points0 points1 point 1 year ago*
Does this guy look like an actor to anyone else? He looks like the guy I'm thinking of, and I can think of his voice. Unfortunately his name and any movie hes been in escapes me :/
*edit: I know he's Dennis Ritchie, but he LOOKS like an actor I'm trying to think of
*edit again: Donald Sutherland!
[–]beersANDblunts -1 points0 points1 point 1 year ago
i laughed.
[–]fatchickspleaseapply -1 points0 points1 point 1 year ago
yo momma's so fat, her lipid count is dangerously high
Pretty funny. I wonder how well these would go over when you're rollin with the homies in harlem. They would probably shoot a fucker for using all those fancy talky words.
[–]deusnefum -1 points0 points1 point 1 year ago
The fuck? Are we using erlang?
[–]lenoxcoolgamer -1 points0 points1 point 1 year ago
I'm positive I made a joke like this in my High School Java class.
Miss Comp Sci classes while playing GBA emulators
[–]MouseSmoothie -1 points0 points1 point 1 year ago
Yo momma so FAT her volume exceeds the capacity of NTFS.
[–]IConrad -1 points0 points1 point 1 year ago
Did you know? Relativistic mass increases with the greater the amount of kinetic energy present in the body. Heat, simply, is kinetic energy. This means that the hotter something is, the heavier it is.
Sadly, we know that the opposite -- the heavier it is, the hotter it becomes -- is not true. How do we know?
Yo mama.
all it takes is a username and password
create account
is it really that easy? only one way to find out...
already have an account and just want to login?
login
[–]Nerdlinger 312 points313 points314 points ago
[–][deleted] 35 points36 points37 points ago
[–][deleted] ago
[–]hitlersshit 1 point2 points3 points ago
[–][deleted] 1 point2 points3 points ago
[–]Shitler 0 points1 point2 points ago
[–]mikemcg 16 points17 points18 points ago
[–]AgentConundrum 52 points53 points54 points ago
[–]arnar 11 points12 points13 points ago
[–]AgentConundrum 0 points1 point2 points ago
[–]phatqao 0 points1 point2 points ago
[–]mikemcg 7 points8 points9 points ago
[–]AgentConundrum 27 points28 points29 points ago
[–]mikemcg 1 point2 points3 points ago
[–]AgentConundrum 28 points29 points30 points ago
[–]clicksnd 13 points14 points15 points ago
[–]AgentConundrum 14 points15 points16 points ago
[–]jaymz168 -1 points0 points1 point ago
[–]dkitch 2 points3 points4 points ago
[–]HolyKrap 1 point2 points3 points ago
[–]phatqao -1 points0 points1 point ago
[–]ultrafez -1 points0 points1 point ago
[–]Peaker 7 points8 points9 points ago
[–]Sawta 0 points1 point2 points ago
[–]AgentConundrum 1 point2 points3 points ago
[–]schwingstar 0 points1 point2 points ago
[–]TheLobotomizer -1 points0 points1 point ago
[–]element8 4 points5 points6 points ago
[–]netsettler 3 points4 points5 points ago
[–]Peaker 1 point2 points3 points ago
[–]ultrafez -1 points0 points1 point ago
[–]Peaker 1 point2 points3 points ago
[–]TheLobotomizer -1 points0 points1 point ago
[–]HolyKrap -1 points0 points1 point ago
[–]doctorperv 3 points4 points5 points ago
[–]eightbithero 1 point2 points3 points ago
[–]theguitarman64 0 points1 point2 points ago
[–]harfold 54 points55 points56 points ago
[–]cake_taker 8 points9 points10 points ago
[–]harfold 20 points21 points22 points ago
[–]alcamus 2 points3 points4 points ago
[–]ultrafez 0 points1 point2 points ago
[–]Pretentious_Douche 85 points86 points87 points ago
[–]TheLobotomizer 13 points14 points15 points ago
[–]brainburger 10 points11 points12 points ago
[–][deleted] 14 points15 points16 points ago
[–]bdmflyer 0 points1 point2 points ago
[–]bad_cab 79 points80 points81 points ago
[–]JRockPSU 5 points6 points7 points ago
[–]WiIIis 3 points4 points5 points ago
[–]BlackStrain 2 points3 points4 points ago
[–]IConrad 1 point2 points3 points ago
[–]Calvin_the_Bold 75 points76 points77 points ago
[–]eluusive 5 points6 points7 points ago
[–]poleary 0 points1 point2 points ago
[–]MuForceShoelace 50 points51 points52 points ago
[–]reason78[S] 53 points54 points55 points ago
[–]birlinn 8 points9 points10 points ago
[–]chetoflep -1 points0 points1 point ago
[–]ifatree 1 point2 points3 points ago*
[–]whoami9 2 points3 points4 points ago
[–]HMSuperb 4 points5 points6 points ago
[–]BrowsOfSteel 2 points3 points4 points ago*
[–]reddddditer 0 points1 point2 points ago
[–]BrowsOfSteel 3 points4 points5 points ago
[–]reddddditer 5 points6 points7 points ago
[–]defrost 4 points5 points6 points ago
[–]pookybum 0 points1 point2 points ago
[–]okeefe 29 points30 points31 points ago
[–]rro99 9 points10 points11 points ago
[–]buster_bluth 0 points1 point2 points ago
[–]ifatree 0 points1 point2 points ago
[–][deleted] ago
[–]anaconomist 2 points3 points4 points ago
[–]CultureSchmulture 7 points8 points9 points ago
[–]boomhat 15 points16 points17 points ago
[–]cake_taker 25 points26 points27 points ago
[–][deleted] ago
[–]f4hy 1 point2 points3 points ago
[–]grandhighwonko 1 point2 points3 points ago
[–][deleted] 0 points1 point2 points ago
[–]dustinin 24 points25 points26 points ago
[–]bureX 0 points1 point2 points ago
[–]Jower 1 point2 points3 points ago
[–]travio 42 points43 points44 points ago
[–][deleted] 35 points36 points37 points ago
[–]Jower 5 points6 points7 points ago
[–]ignoramusaurus 6 points7 points8 points ago
[–]NoSalt 18 points19 points20 points ago
[–]barosa 11 points12 points13 points ago
[–]ultrafez -1 points0 points1 point ago
[–]homeskilled 12 points13 points14 points ago
[–]MyKingdomForAHorse -2 points-1 points0 points ago
[–]homeskilled 6 points7 points8 points ago
[–]ultrafez 1 point2 points3 points ago
[–]TheoreticalFunk 18 points19 points20 points ago
[–]cammiesoul 2 points3 points4 points ago
[–]anyletter 5 points6 points7 points ago
[–]edstatue 4 points5 points6 points ago
[–]tingmakpuk 5 points6 points7 points ago*
[–]idiotthethird 5 points6 points7 points ago
[–]arcs 14 points15 points16 points ago
[–]TheGreatPastaWars 12 points13 points14 points ago
[–][deleted] 0 points1 point2 points ago
[–]chew_toyt 1 point2 points3 points ago
[–]fubo 4 points5 points6 points ago
[–][deleted] 4 points5 points6 points ago
[–]KingPharaoh 3 points4 points5 points ago
[–]RagingRacist 8 points9 points10 points ago
[–]keraneuology 12 points13 points14 points ago
[–]timeshifter_ 4 points5 points6 points ago
[–]zackhample 4 points5 points6 points ago
[–]HolyKrap -1 points0 points1 point ago
[–]Boredpotatoe2 2 points3 points4 points ago
[–]sciencehair 2 points3 points4 points ago
[–]anyletter 1 point2 points3 points ago
[–]sciencehair 0 points1 point2 points ago
[–]Zarokima 3 points4 points5 points ago
[–][deleted] 0 points1 point2 points ago
[–]ShadyG 0 points1 point2 points ago
[–]bronzefoxy 2 points3 points4 points ago
[–]tenbits 2 points3 points4 points ago
[–][deleted] 7 points8 points9 points ago
[–]memsisthefuture 3 points4 points5 points ago
[–]HolyKrap 0 points1 point2 points ago
[–]immoralist 1 point2 points3 points ago*
[–]ultrafez 0 points1 point2 points ago
[–]immoralist 0 points1 point2 points ago
[–]CaptainJackie9919 1 point2 points3 points ago
[–]kentrel 1 point2 points3 points ago
[–]creepulkins 0 points1 point2 points ago
[–]eyepatch100 1 point2 points3 points ago
[–]mp3salad 1 point2 points3 points ago
[–][deleted] 1 point2 points3 points ago
[–]LightRaptor 1 point2 points3 points ago
[–]HotelCoralEssex 1 point2 points3 points ago
[–]log1k 1 point2 points3 points ago
[–]rellikiox 4 points5 points6 points ago*
[–][deleted] 29 points30 points31 points ago
[–]nikpappagiorgio 5 points6 points7 points ago
[–]breckinshire 21 points22 points23 points ago
[–][deleted] 5 points6 points7 points ago
[–]ngroot 1 point2 points3 points ago
[–]A5M0D3US 1 point2 points3 points ago
[–]aguacate 0 points1 point2 points ago
[–]Superfishul 0 points1 point2 points ago
[–]Banana108 0 points1 point2 points ago
[–]Bushtrimer 0 points1 point2 points ago
[–]pippy 0 points1 point2 points ago
[–]Mr_Badass 0 points1 point2 points ago
[–]ngroot 0 points1 point2 points ago
[–]ShampocalypseWOW 0 points1 point2 points ago
[–][deleted] 0 points1 point2 points ago
[–]Telos06 0 points1 point2 points ago
[–]rhythmx 0 points1 point2 points ago
[–]gabriot 0 points1 point2 points ago
[–]Knowltey 0 points1 point2 points ago
[–]ZombieOverlord 0 points1 point2 points ago
[–]rickmidd 0 points1 point2 points ago
[–]blkbeard 0 points1 point2 points ago
[–]tenbits 0 points1 point2 points ago
[–]redneon 0 points1 point2 points ago
[–]irokie 0 points1 point2 points ago
[–]redditspice 0 points1 point2 points ago
[–]alefore 0 points1 point2 points ago
[–]skeletonhat 0 points1 point2 points ago
[–]theslightofhand 0 points1 point2 points ago
[–]cephisto 0 points1 point2 points ago
[–]chew_toyt 0 points1 point2 points ago
[–]pablohoney102 1 point2 points3 points ago
[–]emptythecache 0 points1 point2 points ago
[–]ngroot 0 points1 point2 points ago
[–]histumness 0 points1 point2 points ago
[–]brainburger 0 points1 point2 points ago
[–]bureX 0 points1 point2 points ago
[–]SoulPoleSuperstar 0 points1 point2 points ago
[–]jyper 0 points1 point2 points ago
[–]Mistake78 0 points1 point2 points ago
[–]Slaeke 0 points1 point2 points ago
[–]LiveStalk 0 points1 point2 points ago
[–]jesseac 0 points1 point2 points ago
[–]tcgunner90 0 points1 point2 points ago
[–]Bilbringi9 0 points1 point2 points ago
[–]hiploser 0 points1 point2 points ago
[–]Rgamer4 0 points1 point2 points ago
[–]Teh_Br4iN 0 points1 point2 points ago
[–]cake_taker -1 points0 points1 point ago
[–][deleted] -1 points0 points1 point ago
[–]MOLESTOTHESUPERAPIST -1 points0 points1 point ago
[–][deleted] -2 points-1 points0 points ago
[–][deleted] -1 points0 points1 point ago
[–]brmj 3 points4 points5 points ago
[–]mrsix -1 points0 points1 point ago*
[–]beersANDblunts -1 points0 points1 point ago
[–]fatchickspleaseapply -1 points0 points1 point ago
[–][deleted] -1 points0 points1 point ago
[–]deusnefum -1 points0 points1 point ago
[–]lenoxcoolgamer -1 points0 points1 point ago
[–]MouseSmoothie -1 points0 points1 point ago
[–]IConrad -1 points0 points1 point ago