Computer Language puns and jokes - Stack Overflow
most recent 30 from stackoverflow.com
2009-11-09T05:59:38Z
http://stackoverflow.com/feeds/question/17512
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes
78
Computer Language puns and jokes
Mark Harrison
2008-08-20T07:27:48Z
2009-07-14T18:06:21Z
<p>I'm looking for some funny jokes and puns that occur in computer languages. I'll post an oldie to kick things off... What are some others?</p>
<p>update: Especially looking for code-related jokes... the ones that only make sense to programmers reading code. </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17514#17514
16
Answer by Brian Leahy for Computer Language puns and jokes
Brian Leahy
2008-08-20T07:30:27Z
2008-09-21T19:50:53Z
<p>This one is old but good imo:</p>
<pre><code>Select * From Users Where Clue > 0;
>0 Rows Returned
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17516#17516
19
Answer by Mark Harrison for Computer Language puns and jokes
Mark Harrison
2008-08-20T07:31:56Z
2008-09-21T19:50:53Z
<p>In 8080 assembler, the ORG directive specified the start address (origin) of the program. Typically that would be at address 100 hex, therefore:</p>
<pre><code>ASM EQ $100
ORG ASM
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17520#17520
4
Answer by Mark Cidade for Computer Language puns and jokes
Mark Cidade
2008-08-20T07:35:02Z
2009-06-14T08:11:54Z
<p>One error code for Java in hex is 0xBADCAFE</p>
<p>And additional list: <a href="http://en.wikipedia.org/wiki/Hexspeak" rel="nofollow">http://en.wikipedia.org/wiki/Hexspeak</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17523#17523
1
Answer by Mark Cidade for Computer Language puns and jokes
Mark Cidade
2008-08-20T07:37:25Z
2008-09-21T19:50:53Z
<p>Other funny alphanumeric numbers can be found at <a href="http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_GUIDs" rel="nofollow">http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_GUIDs</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17525#17525
9
Answer by Patrick for Computer Language puns and jokes
Patrick
2008-08-20T07:43:29Z
2008-09-21T19:50:53Z
<p><i>Is this a hashtable? Because I see me looking you up in constant time</i></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17537#17537
59
Answer by David for Computer Language puns and jokes
David
2008-08-20T07:51:27Z
2008-09-21T19:50:53Z
<p>Here's a good one:</p>
<p>Why can't programmers tell the difference between Christmas and Halloween...</p>
<p>Because 31 in octal equals 25 in decimal, i.e. OCT 31 == DEC 25</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17559#17559
27
Answer by Danny Whitt for Computer Language puns and jokes
Danny Whitt
2008-08-20T08:07:58Z
2008-09-21T19:50:53Z
<p>I recall a determined C programmer who would go to great lengths, it seemed, to include comical lines in his source code. For example:</p>
<pre><code>#define FALSE 0
#define OFTHEJEDI -1
int foo() {
if (FALSE) {
return OFTHEJEDI; /* Ha! */
}
}
</code></pre>
<p>It was probably funny in <a href="http://www.imdb.com/title/tt0086190/" rel="nofollow">1983</a>.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17571#17571
4
Answer by grapefrukt for Computer Language puns and jokes
grapefrukt
2008-08-20T08:13:25Z
2008-09-21T19:50:53Z
<p>My favorite programming pun is actually in Swedish and it can't really be translated so this'll be a special for all Swedish speaking people in here:</p>
<blockquote>
<p>Två programmerare och en stack</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17572#17572
1
Answer by Brian Leahy for Computer Language puns and jokes
Brian Leahy
2008-08-20T08:13:34Z
2008-09-21T19:50:53Z
<p>Raymond Chen on .NET Rocks: "You manage your own code!" in a thick bronx? accent.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17578#17578
30
Answer by Patrick for Computer Language puns and jokes
Patrick
2008-08-20T08:16:02Z
2009-03-15T09:01:20Z
<p>This reminds me: if you really love bad programming puns, you should read <a href="http://www.piratejesus.com/nerdcore/index.html" rel="nofollow">Nerdcore: The Core Wars</a>. My personal favorite is this one: <img src="http://images.longc.at/local/nerdcore017.gif" alt="lol java" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17585#17585
9
Answer by John Topley for Computer Language puns and jokes
John Topley
2008-08-20T08:19:09Z
2008-09-21T19:50:53Z
<p>Q. Why didn't the Romans make good C programmers?</p>
<p>A. Because they had no way to return 0.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17668#17668
129
Answer by Mo for Computer Language puns and jokes
Mo
2008-08-20T09:36:34Z
2009-05-10T19:12:10Z
<p>Another classic is the worlds last mistake:</p>
<pre><code>/* world's last mistake in C */
if(code = CODE_RED) {
launch_missiles();
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17672#17672
75
Answer by Mo for Computer Language puns and jokes
Mo
2008-08-20T09:37:35Z
2008-09-21T19:50:53Z
<p>And:</p>
<blockquote>
<p>XML is like violence - if it doesn't solve your problems, you are not using enough of it.</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17900#17900
66
Answer by Mike Woodhouse for Computer Language puns and jokes
Mike Woodhouse
2008-08-20T13:10:49Z
2008-09-21T19:50:53Z
<p>There are 10 types of programmer: those who understand binary and those who don't</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17910#17910
31
Answer by Juan Manuel for Computer Language puns and jokes
Juan Manuel
2008-08-20T13:15:37Z
2008-09-21T19:50:53Z
<p>My software never has bugs. It just develops random features</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17920#17920
39
Answer by Brad Barker for Computer Language puns and jokes
Brad Barker
2008-08-20T13:19:03Z
2008-09-21T19:50:53Z
<p>Who is General Failure and why is he reading my hard drive!?</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17929#17929
19
Answer by jj33 for Computer Language puns and jokes
jj33
2008-08-20T13:23:22Z
2008-09-21T19:50:53Z
<p>I can't believe I actually kept attributions for this one:</p>
<pre><code>p = "you are nasty" q = "my first name is Janet"
r = "my first name is baby" s = "My name is Miss Jackson"
(!r -> q) & (p -> s) - Braverman's Third Lemma
!r & (!p -> q) & (p -> s) - Libor's Corrolary
Seen in the .sig of David Terrell, 4.9.2000
</code></pre>
<p>From fortune(1):</p>
<pre><code>better !pout !cry
better watchout
lpr why
santa claus <north pole >town
cat /etc/passwd >list
ncheck list
ncheck list
cat list | grep naughty >nogiftlist
cat list | grep nice >giftlist
santa claus <north pole > town
who | grep sleeping
who | grep awake
who | egrep 'bad|good'
for (goodness sake) {
be good
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17935#17935
135
Answer by nachojammers for Computer Language puns and jokes
nachojammers
2008-08-20T13:25:26Z
2008-09-21T19:50:53Z
<p>A SQL query goes into a bar, wanders up to 2 tables and says "can i join you".</p>
<p><em>groan</em></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17943#17943
49
Answer by Ryan for Computer Language puns and jokes
Ryan
2008-08-20T13:27:22Z
2008-09-21T19:50:53Z
<p>Our developers were on a softball team named Try...Catch...Throw</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18015#18015
71
Answer by Chris B-C for Computer Language puns and jokes
Chris B-C
2008-08-20T13:55:35Z
2008-09-21T19:50:53Z
<p>An old favourite of mine - Technical manuals in the spirit of Dr. Seuss:</p>
<p>If a packet hits a pocket on a socket on a port,<br />
And the bus is interrupted as a very last resort,<br />
And the address of the memory makes your floppy disk abort,<br />
Then the socket packet pocket has an error to report! </p>
<p>If your cursor finds a menu item followed by a dash,<br />
And the double-clicking icon puts your window in the trash,<br />
And your data is corrupted 'cause the index doesn't hash,<br />
Then your situation's hopeless, and your system's gonna crash! </p>
<p>You can't say this? What a shame sir!<br />
We'll find you another game sir. </p>
<p>If the label on the cable on the table at your house,<br />
Says the network is connected to the button on your mouse,<br />
But your packets want to tunnel on another protocol,<br />
That's repeatedly rejected by the printer down the hall, </p>
<p>And your screen is all distorted by the side effects of gauss<br />
So your icons in the window are as wavy as a souse,<br />
Then you may as well reboot and go out with a bang,<br />
'Cause as sure as I'm a poet, the sucker's gonna hang! </p>
<p>When the copy of your floppy's getting sloppy on the disk,<br />
And the microcode instructions cause unnecessary RISC,<br />
Then you have to flash your memory and you'll want to RAM your ROM. </p>
<p>Quickly turn off the computer and be sure to tell your mom! </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18162#18162
33
Answer by Martin for Computer Language puns and jokes
Martin
2008-08-20T15:01:51Z
2008-09-21T19:50:53Z
<p>A man is smoking a cigarette and blowing smoke rings into the air. His girlfriend becomes irritated with the smoke and says, "Can't you see the warning on the cigarette pack? Smoking is hazardous to your health!" </p>
<p>To which the man replies, "I am a programmer. We don't worry about warnings; we only worry about errors." </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18193#18193
3
Answer by izb for Computer Language puns and jokes
izb
2008-08-20T15:14:09Z
2008-09-21T19:50:53Z
<p>An old one...</p>
<p>Q: How many Intel processors does it take to do a logical shift right?</p>
<p>A: 33. 32 to hold down the bits, and 1 to push the register.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18244#18244
2
Answer by David in Dakota for Computer Language puns and jokes
David in Dakota
2008-08-20T15:38:56Z
2008-09-21T19:50:53Z
<p>I like the Alan Perlis quotes enough to make a <a href="http://www.t3rse.com/wisdom/" rel="nofollow">tribute</a>.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18288#18288
26
Answer by Espenhh for Computer Language puns and jokes
Espenhh
2008-08-20T16:11:50Z
2009-02-26T00:02:05Z
<p>From <a href="http://limerickdb.com/?282" rel="nofollow">limerickdb.com</a>:</p>
<blockquote>
<p>A programmer started to cuss<br />
Because getting to sleep was a fuss<br />
As he lay there in bed<br />
Looping 'round in his head<br />
Was: while(!asleep()) sheep++;</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/23161#23161
69
Answer by Chris for Computer Language puns and jokes
Chris
2008-08-22T18:45:14Z
2008-09-21T19:50:53Z
<p>See <a href="http://www.xkcd.com/" rel="nofollow">XKCD</a>, because of gems like these:</p>
<p><img src="http://imgs.xkcd.com/comics/pointers.png" alt="XKCD" /></p>
<p><img src="http://imgs.xkcd.com/comics/bug.png" alt="link text" /></p>
<p>(And for those who like <a href="http://xkcd.com/327/" rel="nofollow">SQL</a>)</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/23791#23791
3
Answer by cschol for Computer Language puns and jokes
cschol
2008-08-23T00:27:52Z
2008-09-21T19:50:53Z
<p>Don't know if this a pun but I read this in someone's signature once:</p>
<p>"At the beginning of my career I used to write software that just worked.
Now, I write software that doesn't fail."</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/23821#23821
8
Answer by Brad Gilbert for Computer Language puns and jokes
Brad Gilbert
2008-08-23T01:21:45Z
2008-09-21T19:50:53Z
<p>This is one of my favorite puns. <em>( copied from <a href="http://dev.perl.org/perl6/doc/design/exe/E06.html" rel="nofollow">here</a> )</em></p>
<p>It is a reference to code blocks, methods, and closures, in <a href="http://dev.perl.org/perl6/" rel="nofollow">Perl 6</a></p>
<blockquote>
<p>As soon as she walked through my door
I knew her <strong><em>type</em></strong>: she was an <strong><em>argument</em></strong>
waiting to happen. I wondered if the
argument was required... or merely
optional? Guess I'd know the
<strong><em>parameters</em></strong> soon enough.</p>
<p>"I'm <strong><em>Star At Data</em></strong>", she offered. <strong>*( <em>@Data )</em></strong></p>
<p>She made it sound like a pass. But was
the pass by name? Or by position?</p>
<p>"I think someone's trying to <strong><em>execute</em></strong>
me. Some <strong><em>caller</em></strong>."</p>
<p>"Okay, I'll see what I can find out.
Meanwhile, we're gonna have to limit
the <strong><em>scope</em></strong> of your accessibility."</p>
<p>"I'd prefer not to be <strong><em>bound</em></strong> like
that," she replied.</p>
<p>"I see you know my <strong><em>methods</em></strong>," I shot
back.</p>
<p>She just stared at me, like I was a
<strong><em>block</em></strong>. Suddenly I wasn't surprised
someone wanted to <strong><em>dispatch</em></strong> her.</p>
<p>"I'll <strong><em>return</em></strong> later," she purred.
"Meanwhile, I'm counting on you to
give me some <strong><em>closure</em></strong>".</p>
<p>It was gonna be another <strong><em>routine</em></strong>
investigation.</p>
<ul>
<li>Dashiell Hammett, "The Maltese Camel"</li>
</ul>
</blockquote>
<p>That Damian Conway sure is a character.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25809#25809
6
Answer by Grzegorz Gierlik for Computer Language puns and jokes
Grzegorz Gierlik
2008-08-25T09:09:56Z
2008-09-21T19:50:53Z
<p>How to keep programmer busy?</p>
<ul>
<li>Read the line below.</li>
<li>Read the line above.</li>
</ul>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25830#25830
6
Answer by ila for Computer Language puns and jokes
ila
2008-08-25T10:02:43Z
2008-09-21T19:50:53Z
<p>For the series on the "x types of people", with <a href="http://beta.stackoverflow.com/questions/17512/computer-language-puns-and-jokes#25830" rel="nofollow">a little recursion</a> in it:</p>
<p><strong><pre>There are only 2 types of people in the world:
those who believe that there are only 2 types of people
in the world, and those who don't.</pre></strong> </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25832#25832
48
Answer by Agnel Kurian for Computer Language puns and jokes
Agnel Kurian
2008-08-25T10:06:21Z
2008-09-21T19:50:53Z
<p>My favorite:</p>
<pre><code>public double penetration;
</code></pre>
<p>from <a href="http://www.reddit.com/comments/6wx6a/ask_reddit_whats_the_funniest_code_youve_ever_read/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25837#25837
-2
Answer by John Topley for Computer Language puns and jokes
John Topley
2008-08-25T10:16:04Z
2008-09-21T19:50:53Z
<p>There are 10 kinds of people in this world—those who can understand binary and those who can't.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25842#25842
8
Answer by Teifion for Computer Language puns and jokes
Teifion
2008-08-25T10:28:10Z
2008-09-21T19:50:53Z
<p><a href="http://beta.stackoverflow.com/questions/4954/what-are-good-regular-expressions#4962" rel="nofollow">/(bb|[^b]{2})/i</a> (click link for the SO post that explains it)</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25845#25845
33
Answer by Russ Cam for Computer Language puns and jokes
Russ Cam
2008-08-25T10:42:11Z
2009-05-10T19:06:37Z
<p>A favourite <a href="http://dilbert.com/strips/comic/2007-11-15/" rel="nofollow">Dilbert</a> cartoon of mine</p>
<p><img src="http://dilbert.com/dyn/str%5Fstrip/000000000/00000000/0000000/000000/00000/1000/700/1780/1780.strip.gif" alt="The cartoon" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/25866#25866
26
Answer by aib for Computer Language puns and jokes
aib
2008-08-25T11:17:39Z
2008-09-21T19:50:53Z
<p>My favorite:</p>
<blockquote>
<p>Two strings walk into a bar. The first
one says:</p>
<p>Hello, I'd like some Vodka
andytewsr@)W$(#*$&!^Y@)^&30@#!</p>
<p>"You'll have to excuse my friend," the
second one says, "he's not
null-terminated."</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/29671#29671
12
Answer by Brian Paden for Computer Language puns and jokes
Brian Paden
2008-08-27T07:25:10Z
2008-09-21T19:50:53Z
<p>Some of my favorite quotes:</p>
<blockquote>
<p>It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter.
- Nathanial Borenstein</p>
<p>If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization - Gerald M Weinberg ( aka Weinberg's Law )</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/29679#29679
52
Answer by Hazar for Computer Language puns and jokes
Hazar
2008-08-27T07:38:34Z
2008-09-21T19:50:53Z
<pre><code>if (computer.fail == true) {
background.setColor(blue);
user.frown();
sys.shutdown();
user.scream("OH, F**K YOU");
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/29685#29685
5
Answer by Remou for Computer Language puns and jokes
Remou
2008-08-27T07:47:16Z
2008-09-21T19:50:53Z
<p>I like the haiku error messages.</p>
<p>A file that big?<br />
It might be very useful.<br />
But now it is gone. </p>
<p>Yesterday it worked<br />
Today it is not working<br />
Windows is like that </p>
<p>Stay the patient course<br />
Of little worth is your ire<br />
The network is down </p>
<p>-- (There are more) <a href="http://www.gnu.org/fun/jokes/error-haiku.html" rel="nofollow">http://www.gnu.org/fun/jokes/error-haiku.html</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/29687#29687
0
Answer by Jonas Pegerfalk for Computer Language puns and jokes
Jonas Pegerfalk
2008-08-27T07:54:33Z
2009-07-10T18:15:59Z
<pre><sub>
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Drug Dealers |Computer Programmers |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Refer to their clients as "users". |Refer to their clients as "users". |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|"The first one's free!" |"Download a free trial version…" |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Have important South-East Asian connections (to help move the stuff). |Have important South-East Asian connections (to help debug the code). |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Strange jargon: "Stick," "Rock," "Dime bag," "E". |Strange jargon: "SCSI," "RTFM," "Java," "ISDN". |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Realize that there's tons of cash in the 14- to 25-year-old market. |Realize that there's tons of cash in the 14- to 25-year-old market. |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Job is assisted by the industry's producing newer, more potent mixes. |Job is assisted by industry's producing newer, faster machines. |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Often seen in the company of pimps and hustlers. |Often seen in the company of marketing people and venture capitalists.|
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Their product causes unhealthy addictions. |DOOM. Quake. SimCity. Duke Nukem 3D. 'Nuff said. |
---------------------------------------------------------------------------------------------------------------------------------------------------------
|Do your job well, and you can sleep with sexy movie stars who depend on you. |Damn! Damn! DAMN!!! |
---------------------------------------------------------------------------------------------------------------------------------------------------------
</sub></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/30801#30801
10
Answer by Adam for Computer Language puns and jokes
Adam
2008-08-27T18:23:45Z
2008-09-21T19:50:53Z
<p>your program (n): a maze of non-sequiturs littered with clever-clever tricks and
irrelevant comments. Compare MY PROGRAM.</p>
<p>my program (n): a gem of algorithmic precision, offering the most sublime balance
between compact, efficient coding on the one hand, and fully commented
legibility for posterity on the other. Compare YOUR PROGRAM. </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/30804#30804
53
Answer by Adam for Computer Language puns and jokes
Adam
2008-08-27T18:24:26Z
2008-09-21T19:50:53Z
<blockquote>
<p>On two occasions I have been asked [by
members of Parliament!], 'Pray, Mr.
Babbage, if you put into the machine
wrong figures, will the right answers
come out?' I am not able rightly to
apprehend the kind of confusion of
ideas that could provoke such a
question.</p>
</blockquote>
<p>Charles Babbage</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/31666#31666
45
Answer by Mark Borgerding for Computer Language puns and jokes
Mark Borgerding
2008-08-28T04:24:59Z
2008-09-21T19:50:53Z
<p>Adam and Eve were walking through the forest when they came across some snakes with chain saws cutting down trees and making rustic furniture. Adam asked, "what are you doing?"</p>
<p>One of the snakes hissed, "God told us to go forth and multiply ... but we're just adders, we can't multiply without log tables"</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/33057#33057
77
Answer by Pat for Computer Language puns and jokes
Pat
2008-08-28T18:44:21Z
2008-09-21T19:50:53Z
<p>Definition of recursion:</p>
<p><strong>recursion</strong> /n./<br>
See <a href="#33057" rel="nofollow">recursion</a>. </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/33146#33146
7
Answer by Quibblesome for Computer Language puns and jokes
Quibblesome
2008-08-28T19:11:26Z
2008-09-21T19:50:53Z
<p>I have some <em>terrible</em> homebrew jokes I used to use to sap the morale of my colleagues.</p>
<p>= KnockKnockJoke.cs</p>
<p>Knock Knock </p>
<p>Who's there? </p>
<p>Null </p>
<p>Null who? </p>
<p>Null Reference Exception, object not set to instance of object in line 4 of knockknockjoke.cs</p>
<p>= A UK only joke</p>
<p>Q. Why couldn't the variable buy anything from the charity shop?</p>
<p>A. Because it wasn't in Scope! (Scope is a charity shop in the UK)</p>
<p>= XML</p>
<p>Q. What did the XML Parser say to the invalid xml fragment?</p>
<p>A. None shall Parse!</p>
<p>= India</p>
<p>Q. Why couldn't the Indian programmer get to work?</p>
<p>A. Because he didn't know how to use the Delhigate</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/34143#34143
78
Answer by Flubba for Computer Language puns and jokes
Flubba
2008-08-29T07:54:26Z
2008-09-21T19:50:53Z
<p><img src="http://www.osnews.com/images/comics/wtfm.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/35732#35732
15
Answer by Kyle Cronin for Computer Language puns and jokes
Kyle Cronin
2008-08-30T06:18:57Z
2008-09-21T19:50:53Z
<p>My other car is a cdr.</p>
<p>(It's a lisp joke - the cells in a pair are accessed with car and cdr)</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/36619#36619
113
Answer by Andy S for Computer Language puns and jokes
Andy S
2008-08-31T03:53:20Z
2008-09-21T19:50:53Z
<p>Let's not forget this old chestnut...</p>
<p><img src="http://www.evilaliens.com/images/software_engineering_explained.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/37424#37424
5
Answer by OK for Computer Language puns and jokes
OK
2008-09-01T03:39:24Z
2008-09-21T19:50:53Z
<p>Did you hear about the computer programmer found unconscious in the shower? He was shampooing his hair, and made the mistake of reading the instructions on the bottle: Lather, Rinse, Repeat.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/38953#38953
1
Answer by Dmitry Shechtman for Computer Language puns and jokes
Dmitry Shechtman
2008-09-02T07:05:30Z
2009-03-16T18:03:59Z
<p>There's an old Russian joke right on the topic.</p>
<blockquote>
<p>The teacher asks a 1st-grader's father:</p>
<p>-- What kind of an education are you providing your child with? When I asked him what you did for a living, he replied that his father was a pianist in a whorehouse!</p>
<p>-- Well, I'm a UNIX system expert. Go explain it to him.</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/38970#38970
7
Answer by cdv for Computer Language puns and jokes
cdv
2008-09-02T07:22:08Z
2008-09-21T19:50:53Z
<p>A WTF boolean using an enum.</p>
<pre><code>enum BOOLEAN {
TRUE,
FALSE,
FILE_NOT_FOUND
};
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/39722#39722
27
Answer by edg for Computer Language puns and jokes
edg
2008-09-02T14:57:53Z
2008-09-21T19:50:53Z
<p>In order to proceed, Vista needs to increment the instruction pointer.</p>
<p>[Allow] or [Cancel]</p>
<p>Originally posted at <a href="http://it.slashdot.org/comments.pl?sid=364301&cid=21401413" rel="nofollow">http://it.slashdot.org/comments.pl?sid=364301&cid=21401413</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/42154#42154
1
Answer by Ferruccio for Computer Language puns and jokes
Ferruccio
2008-09-03T17:31:02Z
2008-09-21T19:50:53Z
<p>I heard this one in a podcast from the OOPSLA 07 conference. I'm paraphrasing and quoting from memory so bear with me...</p>
<p>A programmer got a peek at the source code for the universe (obviously written in LISP) and said... My God! It's full of CARs!</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/45355#45355
52
Answer by ila for Computer Language puns and jokes
ila
2008-09-05T06:53:50Z
2008-09-21T19:50:53Z
<p>a really nice try :-)</p>
<p><img src="http://www.desertisland.it/crew/ila/images/progr_comic.jpg" alt="550times" title="" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/45594#45594
0
Answer by John Meagher for Computer Language puns and jokes
John Meagher
2008-09-05T11:49:22Z
2008-09-21T19:50:53Z
<p>Java's magic number for .class files 0XCAFEBABE</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/45605#45605
2
Answer by wvdschel for Computer Language puns and jokes
wvdschel
2008-09-05T12:02:07Z
2008-09-21T19:50:53Z
<p>From QDB <a href="http://www.qdb.us/11841" rel="nofollow">#11841</a></p>
<p><iNoah> "hi, I'm a lisp virus. please read me with an emacs mail reader and eval me."<br>
<moof> (defun email-virus-hook 'my-virus)<br>
<iNoah> s/defun /add-hook '/<br>
<kermit> Noah takes defun out of everything.<br>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47823#47823
0
Answer by Simon Munro for Computer Language puns and jokes
Simon Munro
2008-09-06T20:50:24Z
2008-09-21T19:50:53Z
<p>A presenter and view are out clubbing. The view has had way too much to drink and the presenter leans over a model "Can you give me a lift home, I just can't depend on this guy"</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47835#47835
44
Answer by Adam Davis for Computer Language puns and jokes
Adam Davis
2008-09-06T21:07:27Z
2009-05-11T12:28:21Z
<p>@Jonas - When in doubt, use Fixed Width Formatting.</p>
<pre>
Drug Dealers Computer Programmers
- Refer to their clients as - Refer to their clients as
"users". "users".
- "The first one's free!" - "Download a free trial version…"
- Have important South-East - Have important South-East Asian
Asian connections (to help connections (to help debug the
move the stuff). code).
- Strange jargon: "Stick," - Strange jargon: "SCSI," "RTFM,"
"Rock," "Dime bag," "E". "Java," "ISDN".
- Realize that there's tons - Realize that there's tons of
of cash in the 14- to cash in the 14- to 25-year-old
25-year-old market. market.
- Job is assisted by the - Job is assisted by industry's
industry's producing newer, producing newer, faster machines.
more potent mixes.
- Often seen in the company - Often seen in the company of
of pimps and hustlers. marketing people and venture
capitalists.
- Their product causes - WoW. DOOM. Quake. SimCity.
unhealthy addictions. Duke Nukem 3D. 'Nuff said.
- Do your job well, and you
can sleep with sexy movie - Damn! Damn! DAMN!!!
stars who depend on you.
</pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47867#47867
66
Answer by Brabster for Computer Language puns and jokes
Brabster
2008-09-06T21:58:20Z
2008-09-21T19:50:53Z
<p>I don't know why this is so funny but I nearly fell off my chair...</p>
<p><img src="http://imgs.xkcd.com/comics/sandwich.png" alt="alt text" title="Gotta love this" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/47870#47870
28
Answer by Andy Brice for Computer Language puns and jokes
Andy Brice
2008-09-06T22:04:40Z
2008-09-21T19:50:53Z
<p>For the C++ programmers:</p>
<pre><code>catch ( exception& )
{
cerr << "That's weird\n";
cerr << "It works on my machine\n";
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48758#48758
13
Answer by ila for Computer Language puns and jokes
ila
2008-09-07T20:32:48Z
2008-09-21T19:50:53Z
<p>How many programmers does it take to change a light bulb?</p>
<p>None - It’s a hardware problem.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48764#48764
16
Answer by ila for Computer Language puns and jokes
ila
2008-09-07T20:39:50Z
2008-09-21T19:50:53Z
<p><em>One hundred little bugs in the code,<br />
One hundred little bugs.<br />
Fix a bug, link the fix in,<br />
One hundred little bugs in the code.</em></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48783#48783
69
Answer by Danimal for Computer Language puns and jokes
Danimal
2008-09-07T21:01:00Z
2009-03-05T12:50:17Z
<p>This is by far my favorite:
<img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" title="Her daughter is named Help I'm trapped in a driver's license factory." />
Credit to the creator at <a href="http://xkcd.com/" rel="nofollow">XKCD</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48833#48833
3
Answer by Pat for Computer Language puns and jokes
Pat
2008-09-07T22:06:01Z
2008-09-21T19:50:53Z
<p>If you like <a href="http://en.wikipedia.org/wiki/Koan" rel="nofollow">koans</a> </p>
<blockquote>
<p>A novice was trying to fix a broken Lisp machine by turning the power off and on.</p>
<p><a href="http://en.wikipedia.org/wiki/Tom_Knight_%28scientist%29" rel="nofollow">Knight</a>, seeing what the student was doing, spoke sternly: "You cannot fix a machine by just power-cycling it with no understanding of what is going wrong."</p>
<p>Knight turned the machine off and on.</p>
<p>The machine worked. </p>
</blockquote>
<p>and </p>
<blockquote>
<p>One day a student came to Moon and said: "I understand how to make a better garbage collector. We must keep a reference count of the pointers to each cons."</p>
<p>Moon patiently told the student the following story:</p>
<blockquote>
<p>"One day a student came to Moon and said: `I understand how to make a better garbage collector...</p>
</blockquote>
</blockquote>
<p>[note: Pure reference-count garbage collectors have problems with circular structures that point to themselves.]</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48845#48845
19
Answer by Svend for Computer Language puns and jokes
Svend
2008-09-07T22:25:07Z
2008-09-21T19:50:53Z
<p>This one is fairly codeish. Surprised I didn't see it, usually entitled "The Evolution of Language".</p>
<p>Descartes</p>
<pre><code>2x
</code></pre>
<p>Church</p>
<pre><code>\lambda x. 2x
</code></pre>
<p>McCarthy</p>
<pre><code>(LAMBDA (X) (* 2 X))
</code></pre>
<p>W3C</p>
<pre><code><?xml version="1.0"?>
<LAMBDA-TERM>
<VAR-LIST>
<VAR>X</VAR>
</VAR-LIST>
<EXPR>
<APPLICATION>
<EXPR><CONST>*</CONST></EXPR>
<ARGUMENT-LIST>
<EXPR><CONST>2</CONST></EXPR>
<EXPR><VAR>X</VAR></EXPR>
</ARGUMENT-LIST>
</APPLICATION>
</EXPR>
</LAMBDA-TERM>
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48866#48866
15
Answer by Nerfboy for Computer Language puns and jokes
Nerfboy
2008-09-07T22:52:47Z
2008-09-21T19:50:53Z
<p>2B OR NOT 2B that's FF</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48875#48875
19
Answer by Marcio Aguiar for Computer Language puns and jokes
Marcio Aguiar
2008-09-07T23:05:37Z
2008-09-21T19:50:53Z
<p><img src="http://hacked.free-bsd.org/funstuff/pics/computer_science_lesson.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48886#48886
4
Answer by Lawrence Johnston for Computer Language puns and jokes
Lawrence Johnston
2008-09-07T23:21:25Z
2008-09-21T19:50:53Z
<p>A unix salesperson, Lenore,<br>
loved her job, but loved the beach more.<br>
She devised such a way<br>
to combine work and play:<br>
She sells C-shells by the seashore.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48893#48893
8
Answer by Lawrence Johnston for Computer Language puns and jokes
Lawrence Johnston
2008-09-07T23:26:31Z
2008-09-21T19:50:53Z
<p>Not precisely a code joke, but still one of my favorites, and definitely is all too applicable to coding:</p>
<p>In theory there is no difference between theory and practice. In practice there is.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/48988#48988
3
Answer by Joel Coehoorn for Computer Language puns and jokes
Joel Coehoorn
2008-09-08T01:47:05Z
2008-09-21T19:50:53Z
<p>Something I cooked up on the Joel on Software boards a few years ago:</p>
<p><a href="http://discuss.joelonsoftware.com/default.asp?joel.3.53857.31" rel="nofollow">Developer Movie Titles</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/51742#51742
0
Answer by Lukas Šalkauskas for Computer Language puns and jokes
Lukas Šalkauskas
2008-09-09T12:30:43Z
2008-09-21T19:50:53Z
<p>if (APP.CRASH())
{
nuke_china;
}</p>
<blockquote>
<p>I have nothing bad in my mind about china, this is just our local joke with friends.</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/59344#59344
18
Answer by Peter Bernier for Computer Language puns and jokes
Peter Bernier
2008-09-12T15:39:03Z
2008-09-21T19:50:53Z
<p>Overhead in an ASP.Net user's group meeting.. (poking fun at Java..)</p>
<p><em>Knock Knock</em></p>
<p>Who's there?</p>
<p>...</p>
<p>...</p>
<p>... </p>
<p>(wait about 30 seconds)</p>
<p>"Java.."</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/59354#59354
4
Answer by harriyott for Computer Language puns and jokes
harriyott
2008-09-12T15:42:28Z
2008-09-21T19:50:53Z
<p>Hip hip... Array!</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/65525#65525
2
Answer by mamama for Computer Language puns and jokes
mamama
2008-09-15T18:40:44Z
2008-09-21T19:50:53Z
<p>Another koan:</p>
<blockquote>
<p>The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?" Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.</p>
<p>On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures." Qc Na responded by hitting Anton with his stick, saying "When will you learn? Closures are a poor man's object." At that moment, Anton became enlightened.</p>
</blockquote>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/67535#67535
1
Answer by Paul Reiners for Computer Language puns and jokes
Paul Reiners
2008-09-15T22:11:24Z
2008-09-21T19:50:53Z
<p>There's Bill Gosper's famous <a href="http://sunsite.ualberta.ca/jargon/html/p-convention.html" rel="nofollow">"Split-p soup?"</a> quote.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/67869#67869
3
Answer by JohnFx for Computer Language puns and jokes
JohnFx
2008-09-15T23:14:20Z
2008-09-21T19:50:53Z
<p>
<B> All
Products | Support |
Search | microsoft.com
Home | Bestiality.Net </B>
<B> Support Home |
Self Support | Self
Abuse | Assisted Support | Custom
Support | Worldwide Support | </B>
<B>HOWTO: Read the Fucking
Manual</B>
<HR>
The information in this article applies
to: <BR>
<UL>
<LI>General Lamers </LI></UL>Prerequisites: <BR>
<UL>
<LI>The ability to Read
<LI>Basic Brain Function
</LI></UL>
<HR>
<BR>
<H2>SUMMARY</H2>
<P>This article demonstrates how to read
the fucking manual, as popularised by the RTFM
directive.</P><BR>
<H2>SYMPTOMS</H2>
<P>After asking a truly pathetic
question, you are instructed to RTFM:-</P>
<BR><strong>* Lamer (~SomePunk@AOL.com) has joined
#visualbasic <BR><BR>[10:24] <Lamer> How do i
<I>[Your obvious/lame question]</I>? <BR>[10:25] <@oper>
RTFM bitch <BR><BR>*</strong> Lamer was kicked by
@oper (fuckwit) <BR>[10:27] <VBg0d> i made a irc
client!!!!!! <BR>*** assmaster83 (~dubya@oval.whitehouse.gov)
invites you to join #animalsex <BR>[10:27] <Guest50468>
VBg0d, c00l, i made a webbrowser!!
<BR><BR><BR><BR><BR>
<H2>CAUSE</H2>
<P>Lameness</P><BR><B>MORE INFORMATION</B>
<P></P>Step-by-Step Procedures <BR></B>
<UL>
<LI>Locate a <I>Manual</I>, either in
printed form or on your <I>MSDN</I> CD's, if you're a
punk/bitch/h4x0r and don't have the MSDN collection on disk, view
the online version at msdn.microsoft.com/library/ <BR><BR>
<LI>Using either the <I>Index</I> or
<I>Search</I> feature, locate a keyword relating to you're
question/problem <BR><BR>
<LI>If you're using a printed manual,
flip to the page(s) as detailed in your search of the index,
alternatively, if you're using the MSDN library, click the link(s)
in the search results window. <BR><BR>
<LI>Read the information. If you have
problems understanding the information, read it again. Repeat
until enlightenment is achieved. <BR></LI></UL>
<H2>REFERENCES</H2>
<P>For additional information, please see
the following articles in the Microsoft Knowledge Base:
</P>
<BLOCKQUOTE>Q166392
HOWTO: Read</BLOCKQUOTE>
<BLOCKQUOTE>Q147875
HOWTO: Apply for employment with McDonalds</BLOCKQUOTE>
<BLOCKQUOTE>Q171146
HOWTO: Convert absolutely everything to XML</BLOCKQUOTE>
<BLOCKQUOTE>Q181290
HOWTO: Add a #, + or .Net to your old software to keep it cutting
edge</BLOCKQUOTE>
<BLOCKQUOTE>Q102496
INFO: How to use the HOWTO's HOWTO document</BLOCKQUOTE>
<P><BR><B>Additional query words:</B> XML
l33t fool dumbass lamer monkey semen bigAl[work] Lurve
god</P>
<P>Version : 1.6¾ <BR>Platform : Thing to
stand on <BR>Issue type : Type of Issue <BR>Technology :
Limited</P>
<P></P>
<BR>Last
Reviewed: February 23, 2000 <BR><B>©
2000 Microsoft Corporation. All rights reserved. Terms of
Use.</B> <BR>New:
The CorporateWarfare.net SDK for win64/Itanium
<BR><BR>
</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/79519#79519
2
Answer by pjz for Computer Language puns and jokes
pjz
2008-09-17T03:02:19Z
2008-09-21T19:50:53Z
<p>Ghosts are real! unless declared int...</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/79611#79611
0
Answer by hex for Computer Language puns and jokes
hex
2008-09-17T03:21:31Z
2008-09-21T19:50:53Z
<p>Be sure to check out this epic collection of real-life gems over at the WikiWikiWeb.</p>
<p><a href="http://c2.com/cgi/wiki?FunnyThingsSeenInSourceCodeAndDocumentation" rel="nofollow">Funny Things Seen In Source Code And Documentation</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/79751#79751
1
Answer by Durf for Computer Language puns and jokes
Durf
2008-09-17T03:46:35Z
2008-09-21T19:50:53Z
<p>Computers are a lot like air conditioners.
They both work great until you start opening windows.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/82299#82299
3
Answer by allo for Computer Language puns and jokes
allo
2008-09-17T11:52:47Z
2008-09-21T19:50:53Z
<p>A Computer is like a submarine. When you open Windows, the trouble begins.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/83288#83288
11
Answer by jake for Computer Language puns and jokes
jake
2008-09-17T13:36:43Z
2008-09-21T19:50:53Z
<blockquote>
<p><strong>The 12 most common statements you are likely to hear from a Klingon
programmer</strong> </p>
<ul>
<li>“Specifications are for the weak and
timid!”</li>
<li>“This machine is a piece of GAGH! I
need dual Pentium processors if I am
to do battle with this code!”</li>
<li>“You cannot begin to appreciate
Dilbert unless you have read it in
the original Klingon!”</li>
<li>“Indentation?! I will show you how
to indent when I indent your skull!”</li>
<li>“What is this talk of ‘release’?
Klingons do not ‘release’ software.
We uncage our software, letting it
leave a bloody trail of designers
and quality assurance people in its
wake.”</li>
<li>“Klingon function calls do not have
‘parameters.’ They have ‘arguments’
. . . and they ALWAYS WIN THEM!”</li>
<li>“Debugging? Klingons do not debug.
Our software does not coddle the
weak.”</li>
<li>“I have challenged the entire
quality assurance team to a Bat-Leth
contest. They will not trouble us
again.”</li>
<li>“A TRUE Klingon programmer does not
comment his code!”</li>
<li>“By filing this PTR you have
challenged the honor of my family.
Prepare to die!”</li>
<li>“You question the worthiness of my
code? I should kill you where you
stand!”</li>
<li>“Our users will know fear and cower
before our software! Ship it! Ship
it and let them flee like the dogs
they are!”</li>
</ul>
</blockquote>
<p>anon</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/83707#83707
29
Answer by glenatron for Computer Language puns and jokes
glenatron
2008-09-17T14:16:49Z
2008-09-21T19:50:53Z
<p>If you hold a Unix shell up to your ear you can hear the C.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/91592#91592
2
Answer by Matthew Scharley for Computer Language puns and jokes
Matthew Scharley
2008-09-18T10:53:35Z
2009-01-12T04:07:40Z
<p>This'll probably get lost somewhere in the back there, but here goes anyway. I once wrote this a while back, fed up with the abundance of "Hello World!" programs.</p>
<pre><code>#!/usr/bin/perl
for $i (1..10) {sleep 1; print ((10-$i)."\n");}
print "Goodbye world!";
&global_thermonuclear_meltdown;
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/91604#91604
1
Answer by GHad for Computer Language puns and jokes
GHad
2008-09-18T10:56:25Z
2008-09-21T19:50:53Z
<p>When somthing goes wrong you can't explain, just say: Must be a layer 8 problem...</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/91704#91704
1
Answer by Eduard Wirch for Computer Language puns and jokes
Eduard Wirch
2008-09-18T11:17:09Z
2008-09-21T19:50:53Z
<p>Here's my favorite (in Visual Basic):</p>
<pre><code>Sub doSomething
on error goto hell
doStuff()
hell:
End Sub
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/91754#91754
3
Answer by Valerion for Computer Language puns and jokes
Valerion
2008-09-18T11:27:42Z
2009-03-16T18:02:01Z
<p>Something I came up with many years ago that I've still got:</p>
<p>If the software in The Matrix had been developed by Microsoft:</p>
<ol>
<li>Earlier versions of The Matrix that failed for being "too perfect" were developed by Apple Computer.
<li>The Matrix not actually developed by Microsoft at all, but instead purchased from Matrix Computer Systems Ltd.
<li>The Oracle would be known as The SQL Server (and wouldn't know so much...)
<li>The entire Matrix would require rebooting every week for Security Hotfixes.
<li>The Architect would be a guy in rubbish glasses with a never-changing haircut...
<li>Agent Smith would be known as Dr. Watson.
<li>The Microsoft Vison: A Computer In Every Home? Now A Computer In Every Mind!
<li>10% of humans would be incompatible with The Matrix without updated drivers.
<li>The fact that the humans can broadcast into The Matrix shows a basic lack of default WiFi security settings.
<li>Bullet Time - not a cool special effect, but caused by computer slow-down while the system writes to the Page File.
</ol>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/91950#91950
0
Answer by goths for Computer Language puns and jokes
goths
2008-09-18T12:12:15Z
2008-09-21T19:50:53Z
<p>What is the common question asked when two programmers meet and when two beggars meet?</p>
<p>.
.
.
.
.
.
Which platform are you working in?</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/92018#92018
1
Answer by SelvirK for Computer Language puns and jokes
SelvirK
2008-09-18T12:21:58Z
2009-03-16T15:46:21Z
<p><code>SELECT DISTINCT users.id, users.membership, (((acos(sin((35.7589*pi()/180)) * sin((users.latitude*pi()/180))+cos((35.7589*pi()/180)) * cos((users.latitude*pi()/180)) * cos(((-78.7798- users.longitude)*pi()/180))))*180/pi())*60*1.1515) as distance
FROM users
INNER JOIN laston ON users.id = laston.user_id INNER JOIN z_9 AS s9 ON users.id = s9.user_id INNER JOIN z_12 AS s12 ON users.id = s12.user_id INNER JOIN z_13 AS s13 ON users.id = s13.user_id INNER JOIN z_14 AS s14 ON users.id = s14.user_id INNER JOIN z_15 AS s15 ON users.id = s15.user_id INNER JOIN z_16 AS s16 ON users.id = s16.user_id INNER JOIN z_17 AS s17 ON users.id = s17.user_id INNER JOIN z_18 AS s18 ON users.id = s18.user_id INNER JOIN z_19 AS s19 ON users.id = s19.user_id INNER JOIN z_21 AS s21 ON users.id = s21.user_id INNER JOIN z_22 AS s22 ON users.id = s22.user_id INNER JOIN z_23 AS s23 ON users.id = s23.user_id INNER JOIN z_24 AS s24 ON users.id = s24.user_id INNER JOIN z_25 AS s25 ON users.id = s25.user_id INNER JOIN z_27 AS s27 ON users.id = s27.user_id INNER JOIN z_29 AS s29 ON users.id = s29.user_id INNER JOIN z_31 AS s31 ON users.id = s31.user_id INNER JOIN z_32 AS s32 ON users.id = s32.user_id INNER JOIN z_33 AS s33 ON users.id = s33.user_id INNER JOIN z_35 AS s35 ON users.id = s35.user_id INNER JOIN z_38 AS s38 ON users.id = s38.user_id INNER JOIN z_39 AS s39 ON users.id = s39.user_id INNER JOIN z_40 AS s40 ON users.id = s40.user_id INNER JOIN z_41 AS s41 ON users.id = s41.user_id INNER JOIN z_42 AS s42 ON users.id = s42.user_id INNER JOIN z_50 AS s50 ON users.id = s50.user_id INNER JOIN z_51 AS s51 ON users.id = s51.user_id INNER JOIN z_53 AS s53 ON users.id = s53.user_id INNER JOIN z_55 AS s55 ON users.id = s55.user_id INNER JOIN z_58 AS s58 ON users.id = s58.user_id INNER JOIN z_60 AS s60 ON users.id = s60.user_id
WHERE 1 AND users.gender = '4112' AND users.seeking = '4092' AND (s9.option_id = '137' OR s9.option_id = '138' OR s9.option_id = '139' OR s9.option_id = '140' OR s9.option_id = '141' OR s9.option_id = '142' OR s9.option_id = '433' OR s9.option_id = '434' OR s9.option_id = '481' OR s9.option_id = '482') AND (s12.option_id = '214' OR s12.option_id = '215' OR s12.option_id = '216' OR s12.option_id = '217' OR s12.option_id = '218' OR s12.option_id = '220') AND (s13.option_id = '221' OR s13.option_id = '222' OR s13.option_id = '223' OR s13.option_id = '224' OR s13.option_id = '225' OR s13.option_id = '226' OR s13.option_id = '227' OR s13.option_id = '429' OR s13.option_id = '435' OR s13.option_id = '495') AND (s14.option_id = '228' OR s14.option_id = '229' OR s14.option_id = '230' OR s14.option_id = '231' OR s14.option_id = '488' OR s14.option_id = '489' OR s14.option_id = '646') AND (s15.option_id = '232' OR s15.option_id = '233' OR s15.option_id = '234' OR s15.option_id = '645') AND (s16.option_id = '238' OR s16.option_id = '239' OR s16.option_id = '240') AND (s17.option_id = '242' OR s17.option_id = '243' OR s17.option_id = '244' OR s17.option_id = '245' OR s17.option_id = '246' OR s17.option_id = '436') AND (s18.option_id = '248' OR s18.option_id = '249' OR s18.option_id = '250' OR s18.option_id = '251' OR s18.option_id = '252' OR s18.option_id = '253' OR s18.option_id = '254' OR s18.option_id = '437') AND (s19.option_id = '256' OR s19.option_id = '257' OR s19.option_id = '258' OR s19.option_id = '259' OR s19.option_id = '260' OR s19.option_id = '261' OR s19.option_id = '262' OR s19.option_id = '263' OR s19.option_id = '264' OR s19.option_id = '265') AND (s21.option_id = '276' OR s21.option_id = '277' OR s21.option_id = '278' OR s21.option_id = '279' OR s21.option_id = '280' OR s21.option_id = '281' OR s21.option_id = '282' OR s21.option_id = '283') AND (s22.option_id = '285' OR s22.option_id = '286' OR s22.option_id = '287' OR s22.option_id = '288' OR s22.option_id = '492' OR s22.option_id = '493' OR s22.option_id = '494') AND (s23.option_id = '290' OR s23.option_id = '291' OR s23.option_id = '292' OR s23.option_id = '491' OR s23.option_id = '663') AND (s24.option_id = '294' OR s24.option_id = '295' OR s24.option_id = '296' OR s24.option_id = '297' OR s24.option_id = '298') AND (s25.option_id = '299' OR s25.option_id = '300' OR s25.option_id = '301' OR s25.option_id = '302' OR s25.option_id = '454' OR s25.option_id = '455') AND (s27.option_id = '312' OR s27.option_id = '313' OR s27.option_id = '314' OR s27.option_id = '315' OR s27.option_id = '316' OR s27.option_id = '317' OR s27.option_id = '318' OR s27.option_id = '319' OR s27.option_id = '320' OR s27.option_id = '344') AND (s29.option_id = '321' OR s29.option_id = '322' OR s29.option_id = '323' OR s29.option_id = '324' OR s29.option_id = '325' OR s29.option_id = '326' OR s29.option_id = '327' OR s29.option_id = '328' OR s29.option_id = '329' OR s29.option_id = '330') AND (s31.option_id = '333' OR s31.option_id = '334' OR s31.option_id = '335' OR s31.option_id = '336' OR s31.option_id = '337' OR s31.option_id = '338' OR s31.option_id = '339' OR s31.option_id = '341' OR s31.option_id = '342') AND (s32.option_id = '348' OR s32.option_id = '350' OR s32.option_id = '351' OR s32.option_id = '352' OR s32.option_id = '353' OR s32.option_id = '354' OR s32.option_id = '355' OR s32.option_id = '356' OR s32.option_id = '357' OR s32.option_id = '358') AND (s33.option_id = '362' OR s33.option_id = '363' OR s33.option_id = '364' OR s33.option_id = '365' OR s33.option_id = '366' OR s33.option_id = '367' OR s33.option_id = '368' OR s33.option_id = '369' OR s33.option_id = '370' OR s33.option_id = '371') AND (s35.option_id = '372' OR s35.option_id = '373' OR s35.option_id = '374' OR s35.option_id = '375' OR s35.option_id = '449' OR s35.option_id = '450' OR s35.option_id = '567' OR s35.option_id = '568' OR s35.option_id = '569' OR s35.option_id = '571') AND (s38.option_id = '376' OR s38.option_id = '377' OR s38.option_id = '378' OR s38.option_id = '379' OR s38.option_id = '380' OR s38.option_id = '381' OR s38.option_id = '382' OR s38.option_id = '383' OR s38.option_id = '384' OR s38.option_id = '385') AND (s39.option_id = '386' OR s39.option_id = '387' OR s39.option_id = '388' OR s39.option_id = '389' OR s39.option_id = '390' OR s39.option_id = '391' OR s39.option_id = '392' OR s39.option_id = '393' OR s39.option_id = '394' OR s39.option_id = '395') AND (s40.option_id = '402' OR s40.option_id = '403' OR s40.option_id = '404' OR s40.option_id = '405' OR s40.option_id = '406' OR s40.option_id = '407' OR s40.option_id = '408' OR s40.option_id = '409' OR s40.option_id = '410' OR s40.option_id = '411') AND (s41.option_id = '413' OR s41.option_id = '414' OR s41.option_id = '415' OR s41.option_id = '416' OR s41.option_id = '417' OR s41.option_id = '418' OR s41.option_id = '419') AND (s42.option_id = '421' OR s42.option_id = '422' OR s42.option_id = '423' OR s42.option_id = '424' OR s42.option_id = '425' OR s42.option_id = '426' OR s42.option_id = '427' OR s42.option_id = '453' OR s42.option_id = '641' OR s42.option_id = '643') AND (s50.option_id = '496' OR s50.option_id = '497' OR s50.option_id = '498' OR s50.option_id = '499' OR s50.option_id = '500' OR s50.option_id = '501' OR s50.option_id = '502' OR s50.option_id = '503' OR s50.option_id = '504' OR s50.option_id = '505') AND (s51.option_id = '509' OR s51.option_id = '510' OR s51.option_id = '511' OR s51.option_id = '512' OR s51.option_id = '513' OR s51.option_id = '514' OR s51.option_id = '515' OR s51.option_id = '516' OR s51.option_id = '517' OR s51.option_id = '518') AND (s53.option_id = '538' OR s53.option_id = '539' OR s53.option_id = '540' OR s53.option_id = '541' OR s53.option_id = '542' OR s53.option_id = '543' OR s53.option_id = '544' OR s53.option_id = '545' OR s53.option_id = '546' OR s53.option_id = '547') AND (s55.option_id = '4152' OR s55.option_id = '4162' OR s55.option_id = '4172' OR s55.option_id = '4182' OR s55.option_id = '4192' OR s55.option_id = '4202' OR s55.option_id = '4212' OR s55.option_id = '4222' OR s55.option_id = '4232' OR s55.option_id = '4242') AND (s58.option_id = '605' OR s58.option_id = '606' OR s58.option_id = '607' OR s58.option_id = '608' OR s58.option_id = '609' OR s58.option_id = '610' OR s58.option_id = '611' OR s58.option_id = '612' OR s58.option_id = '613' OR s58.option_id = '614') AND (s60.option_id = '682' OR s60.option_id = '683') AND users.approved = '1' AND users.deleted = '0' and users.main_photo_id !=0 AND (users.latitude > 35.3239421622 AND users.latitude < 36.1938578378) AND (users.longitude > -79.3142578966 AND users.longitude < -78.2453421034) AND users.dob > '1957-03-19' AND users.dob < '1988-03-19' AND users.id != '1' AND users.id NOT IN (SELECT blocked_user_id FROM blocked WHERE user_id = '1') AND users.id NOT IN (SELECT user_id FROM personal_definitions_attention) ORDER BY distance ASC LIMIT 500</code></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/92180#92180
4
Answer by tardate for Computer Language puns and jokes
tardate
2008-09-18T12:41:30Z
2008-09-21T19:50:53Z
<p>From an <a href="http://www.phenoelit.net/lablog/oracle.sl" rel="nofollow">analysis</a> of the Linux ELF binary executable files for Oracle Database 11g:</p>
<p>The set of hashing algorithm identifier values (used as a parameter to the ztv2ghashs hashing function)..</p>
<pre><code>0xf00d means: Use MD4
0xdead means: Use SHA1
0xbeaf means: Use MD5
</code></pre>
<p>Some programmer at Oracle has a (schoolboy;-) <a href="http://tardate.blogspot.com/2007/09/proof-oracle-development-have-funny.html" rel="nofollow">sense of humour</a>!</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/92350#92350
11
Answer by Desiato for Computer Language puns and jokes
Desiato
2008-09-18T13:06:44Z
2008-09-21T19:50:53Z
<p>variation:
There are 10 types of people:
Those who understand binary and those who get laid.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/92632#92632
4
Answer by Joe for Computer Language puns and jokes
Joe
2008-09-18T13:42:30Z
2008-09-21T19:50:53Z
<p>One of my favorites is "FREE THE MALLOCS!"</p>
<p>Trying to explain your activism to non-programmer friends doesn't work very well though.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/97455#97455
4
Answer by Tom Ritter for Computer Language puns and jokes
Tom Ritter
2008-09-18T22:02:10Z
2008-09-21T19:50:53Z
<p>I don't write bugs, I write typos that are syntactically correct.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/100186#100186
0
Answer by PatrickvL for Computer Language puns and jokes
PatrickvL
2008-09-19T07:12:56Z
2008-09-21T19:50:53Z
<p>In VBScript: Dim Sum</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/100448#100448
0
Answer by Ebircsa for Computer Language puns and jokes
Ebircsa
2008-09-19T08:16:57Z
2008-09-21T19:50:53Z
<p>"A System Error has occurred...<br>
<strong>Error Message:</strong> Keyboard not attached<br>
Press F1 to continue"</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/101889#101889
6
Answer by craig for Computer Language puns and jokes
craig
2008-09-19T13:39:39Z
2008-09-21T19:50:53Z
<p>Theres no place like 127.0.0.1</p>
<p>127.0.0.1
sweet
127.0.0.1</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/101940#101940
6
Answer by Adam Neal for Computer Language puns and jokes
Adam Neal
2008-09-19T13:46:26Z
2008-09-21T19:50:53Z
<p>Jesus and the devil are in a programming contest. As the hours pass by, they both work furiously and there is no clear front runner.</p>
<p>Then, just as time is almost up, there's a power failure that causes both machines to reboot. The devil is furious, shouting and cursing, and works quickly to finish the contest. Jesus calmly waits for his machine to come back up, and works quietly until the end of the contest.</p>
<p>When time is up, Jesus is declared the winner. The devil asks the judges, "How did he win?!!?" They reply, "Jesus saves."</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/106309#106309
3
Answer by Slace for Computer Language puns and jokes
Slace
2008-09-19T23:09:59Z
2008-09-21T19:50:53Z
<pre><code>if(you.AreHappy && you.KnowIf){
you.ClapHands();
}
[TestMethod]
public void Paradox(){
while(shrodingersCat.InTheBox){
Assert.IsTrue(shrodingersCat.IsAlive);
Assert.IsTrue(shrodingersCat.IsDead);
}
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/110998#110998
8
Answer by Timbo for Computer Language puns and jokes
Timbo
2008-09-21T13:16:06Z
2008-09-21T19:50:53Z
<p>There are 10 types of people in the world, those who understand binary, those who don't and those who understand grey code.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/429406#429406
1
Answer by Jesse Stone for Computer Language puns and jokes
Jesse Stone
2009-01-09T19:40:39Z
2009-03-16T16:20:19Z
<p>ascii a stupid question, get a stupid ansi</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/429429#429429
13
Answer by Ferruccio for Computer Language puns and jokes
Ferruccio
2009-01-09T19:45:38Z
2009-01-09T19:45:38Z
<p>Attributed to Dr. Niklaus Wirth when asked about the pronunciation of his name:</p>
<p>"Whereas Europeans generally pronounce my name the right way ('Nick-louse Veert'), Americans invariably mangle it into 'Nickel's Worth.' This is to say that Europeans call me by name, but Americans call me by value."</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/429540#429540
0
Answer by P Daddy for Computer Language puns and jokes
P Daddy
2009-01-09T20:14:47Z
2009-01-09T20:14:47Z
<p>Ooh, I've got one!</p>
<p><strong>VB</strong></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/429553#429553
8
Answer by P Daddy for Computer Language puns and jokes
P Daddy
2009-01-09T20:17:02Z
2009-01-09T20:17:02Z
<pre><code>if(!this.Kill(me))
me.Strength++;
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/429562#429562
2
Answer by Uri for Computer Language puns and jokes
Uri
2009-01-09T20:19:07Z
2009-01-09T20:19:07Z
<p>When we had an "out of order" sign on our office restroom, we added a line "please redirect your output to /dev/null" </p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/430147#430147
1
Answer by Rulas for Computer Language puns and jokes
Rulas
2009-01-09T23:38:58Z
2009-01-09T23:38:58Z
<p><a href="http://www.ahajokes.com/cartoon/anykey.jpg" rel="nofollow">I like this</a></p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/584898#584898
1
Answer by Evan for Computer Language puns and jokes
Evan
2009-02-25T06:11:09Z
2009-02-25T06:11:09Z
<p>Q: How many IBM CPUs does it take to execute a process?</p>
<p>A: Five. Four to hold it down and one to rip its head off.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/588184#588184
0
Answer by Atomiton for Computer Language puns and jokes
Atomiton
2009-02-25T22:19:44Z
2009-02-27T00:15:53Z
<h2>A couple of good ones for those that are into number systems:</h2>
<ul>
<li>If you feel the metric system is
confusing should try hex. The
Drinking age is 15 and you can get
married at 10.</li>
</ul>
<p>Or along similar lines:</p>
<p><strong>Q:</strong> How do you know your child will grow up to be a good programmer?</p>
<p><strong>A:</strong> His favorite game is Crazy 10's (base 8)</p>
<p><strong>Q</strong> Why don't you ever see a <strong>char</strong> or <strong>short</strong> at a buffet?</p>
<p><strong>A</strong> They're full after a couple of <strong>bytes</strong>.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/614612#614612
5
Answer by Jonas Kölker for Computer Language puns and jokes
Jonas Kölker
2009-03-05T12:42:44Z
2009-03-05T12:42:44Z
<p>Q. How many Haskell programmers does it take to change a light bulb?</p>
<p>A. Not defined: changing a light bulb is a side effect.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/614746#614746
2
Answer by Jonas Kölker for Computer Language puns and jokes
Jonas Kölker
2009-03-05T13:25:43Z
2009-03-05T13:25:43Z
<p>Q. How many Haskell semantics does it take to change a light bulb?</p>
<p>A. Impossible, they're all lazy.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/649984#649984
2
Answer by Sylverdrag for Computer Language puns and jokes
Sylverdrag
2009-03-16T11:09:27Z
2009-03-16T11:09:27Z
<p>This always makes me smile: VB</p>
<p>Dim User
...</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/651386#651386
0
Answer by Leonard for Computer Language puns and jokes
Leonard
2009-03-16T17:33:05Z
2009-03-16T17:33:05Z
<p>Q: How many object oriented programmers does it take to change a light bulb?</p>
<p>A: None: The light bulb will change itself!</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/652271#652271
0
Answer by chris for Computer Language puns and jokes
chris
2009-03-16T21:49:33Z
2009-03-16T21:49:33Z
<pre><code>you step into the stream
but the water has moved on
404 file not found.
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/800891#800891
0
Answer by yo_dawg for Computer Language puns and jokes
yo_dawg
2009-04-29T04:34:07Z
2009-04-29T04:34:07Z
<p>delete system 32. make your computer faster</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/845853#845853
1
Answer by Cristián Romo for Computer Language puns and jokes
Cristián Romo
2009-05-10T18:46:16Z
2009-05-10T18:46:16Z
<p>One that I came up with the other day:</p>
<pre><code>that | smoke
</code></pre>
<p>A.k.a. "Put that in your pipe and smoke it."</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/845906#845906
0
Answer by Martin Peck for Computer Language puns and jokes
Martin Peck
2009-05-10T19:16:36Z
2009-05-10T19:16:36Z
<p>I hear that FOX are producing a TV show about an object that gets converted into XML.</p>
<p>It's being serialized.</p>
<p>(sorry)</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/846007#846007
0
Answer by Bill99 for Computer Language puns and jokes
Bill99
2009-05-10T20:00:45Z
2009-05-10T20:00:45Z
<p>IF IF = THEN THEN THEN = ELSE ELSE ELSE = IF;</p>
<p>-- PL/1 --</p>
<p>Allegedly, any way.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/846016#846016
1
Answer by Mez for Computer Language puns and jokes
Mez
2009-05-10T20:08:04Z
2009-05-10T20:08:04Z
<pre><code>while (!$sleep)
{
$sheep++;
}
</code></pre>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/1111163#1111163
1
Answer by LiraNuna for Computer Language puns and jokes
LiraNuna
2009-07-10T18:20:04Z
2009-07-10T18:20:04Z
<p>C++ Is a modern language: your parents can't touch your privates, but your friends can.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/1127035#1127035
0
Answer by Victor for Computer Language puns and jokes
Victor
2009-07-14T18:06:21Z
2009-07-14T18:06:21Z
<p>Just thought of one, not sure how funny it is :P</p>
<pre><code>public enum ees{
John_Dillinger, Baby_Face_Nelson, Pretty_Boy_Floyd
}
</code></pre>
<p>LAWL right?
yeah it's lame.
the movie was alright btw.</p>