vote up 783 vote down star
1,070

When I teach introductory computer science courses, I like to lighten the mood with some humor. Having a sense of fun about the material makes it less frustrating and more memorable, and it's even motivating if the joke requires some technical understanding to 'get it'!

I'll start off with a couple of my favorites:

Q: How do you tell an introverted computer scientist from an extroverted computer scientist?

A: An extroverted computer scientist looks at your shoes when he talks to you.

And the classic:

Q: Why do programmers always mix up Halloween and Christmas?

A: Because Oct 31 == Dec 25!

I'm always looking for more of these, and I can't think of a better group of people to ask. What are your best programmer/computer science/programming jokes?

flag
13  
Godwin's law! Godwin's law! – Erik Oct 24 '08 at 18:27
43  
please do NOT close this. this is so fun haha – Johannes Schaub - litb Nov 23 '08 at 14:18
135  
hahaha I understand now Octal 31 is equal to Decimal 25 – Jader Dias Dec 28 '08 at 19:36
16  
Subjective is a reason for closing? Does that mean that every question with a "Subjective" tag is going to be closed now? Or is argumentative the only reason for closing? When comments and answers are argumentative, the question gets blamed? – Windows programmer Feb 26 at 2:17
29  
I don't think this question is doing any harm. If you don't like jokes, don't view it! The clue's in the title. – MarkJ Apr 21 at 8:26
show 26 more comments

543 Answers

prev 1 5 6 7 8 9 19 next
vote up 4 vote down

Chuck Norris’s programs are always one word - work - and they do

link|flag
vote up 5 vote down

Not really a joke, but every time i'm having pointer problems on a linux machine I giggle.

(~/) $ cd /dev
(/dev/) $ cat mouse
link|flag
vote up -10 vote down

> cat crap

link|flag
vote up -2 vote down
-Hello girl, what is your name?

-Ruth.

-Root, nice. And what is your password?
link|flag
4  
Um...what? Is this a joke, or just an attempt to be the most surreal? – Beska Jun 9 at 21:10
show 2 more comments
vote up 36 vote down

alt text

link|flag
1  
That is a really good one!!!! – dplante Jun 10 at 2:41
9  
maybe it's classic C. I think it's missing a \n at the end of that string there though. – wds Jul 8 at 11:41
show 5 more comments
vote up 28 vote down

An actual conversation I had with my fiancée:

Me: I just saw a red-black squirrel!
Her: Was it in a red-black tree?

link|flag
1  
She's a keeper. – jmucchiello Aug 21 at 20:46
3  
Yup, marry that woman. – Jeff V Oct 6 at 11:32
show 1 more comment
vote up 36 vote down

Q: 0 is false and 1 is true, right?

A: 1.

link|flag
show 3 more comments
vote up 34 vote down

Q: How come there is not obfuscated Perl contest?

A: Because everyone would win.

link|flag
vote up 12 vote down

This is just a geeky joke rather than programming but anyway...

Q: Why did the chicken cross the Möbius strip?
A: To get to the same side.

link|flag
vote up 55 vote down

Sorry, this one is quite huge, got as mail from a friend

The Evolution of a Programmer


High School/Jr.High

   10 PRINT "HELLO WORLD"
   20 END


First year in College

   program Hello(input, output)
     begin
       writeln('Hello World')
     end.


Senior year in College

   (defun hello
     (print
       (cons 'Hello (list 'World))))


New professional

   #include 
   void main(void)
   {
     char *message[] = {"Hello ", "World"};
     int i;

     for(i = 0; i < 2; ++i)
       printf("%s", message[i]);
     printf("\n");
   }


Seasoned professional

   #include 
   #include 

   class string
   {
   private:
     int size;
     char *ptr;

   public:
     string() : size(0), ptr(new char('\0')) {}

     string(const string &s) : size(s.size)
     {
        ptr = new char[size + 1];
       strcpy(ptr, s.ptr);
     }

     ~string()
     {
       delete [] ptr;
     }

     friend ostream &operator <<(ostream &, const string &);
     string &operator=(const char *);
   };

   ostream &operator<<(ostream &stream, const string &s)
   {
     return(stream << s.ptr );
   }

   string &string::operator=(const char *chrs)
   {
     if (this != &chrs)
     {
       delete [] ptr;
      size = strlen(chrs);
       ptr = new char[size + 1];
       strcpy(ptr, chrs);
     }
     return(*this);
   }

   int main()
   {
     string str;

     str = "Hello World";
     cout << str << endl;

     return(0);
   }


Master Programmer

   [uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)]
   library LHello
   {
       // bring in the master library
       importlib("actimp.tlb");
       importlib("actexp.tlb");

       // bring in my interfaces
       #include "pshlo.idl"

       [
       uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)
       ]
       cotype THello
    {
    interface IHello;
    interface IPersistFile;
    };
   };

   [
   exe,
   uuid(2573F890-CFEE-101A-9A9F-00AA00342820)
   ]
   module CHelloLib
   {

       // some code related header files
       importheader();
       importheader();
       importheader();
       importheader("pshlo.h");
       importheader("shlo.hxx");
       importheader("mycls.hxx ");

       // needed typelibs
       importlib("actimp.tlb");
       importlib("actexp.tlb");
       importlib("thlo.tlb");

       [
       uuid(2573F891-CFEE-101A-9A9F-00AA00342820),
       aggregatable
       ]
       coclass CHello
    {
    cotype THello;
    };
   };

   #include "ipfix.hxx"

   extern HANDLE hEvent;

   class CHello : public CHelloBase
   {
   public:
       IPFIX(CLSID_CHello);

       CHello(IUnknown *pUnk);
       ~CHello();

       HRESULT  __stdcall PrintSz(LPWSTR pwszString);

    private:
       static int cObjRef;
   };

   #include 
   #include 
   #include 
   #include 
   #include "thlo.h"
   #include "pshlo.h"
   #include "shlo.hxx"
   #include "mycls.hxx"

   int CHello::cObjRef = 0;

   CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
   {
       cObjRef++;
       return;
   }

   HRESULT  __stdcall  CHello::PrintSz(LPWSTR pwszString)
   {
       printf("%ws\n", pwszString);
       return(ResultFromScode(S_OK));
   }

   CHello::~CHello(void)
   {

   // when the object count goes to zero, stop the server
   cObjRef--;
   if( cObjRef == 0 )
       PulseEvent(hEvent);

   return;
   }

   #include < windows.h>
   #include 
   #include " pshlo.h"
   #include "shlo.hxx"
   #include "mycls.hxx"

   HANDLE hEvent;

    int _cdecl main(
   int argc,
   char * argv[]
   ) {
   ULONG ulRef;
   DWORD dwRegistration;
   CHelloCF *pCF = new CHelloCF();

   hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);

   // Initialize the OLE libraries
   CoInitializeEx(NULL, COINIT_MULTITHREADED);

   CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,
       REGCLS_MULTIPLEUSE, &dwRegistration);

   // wait on an event to stop
   WaitForSingleObject(hEvent, INFINITE);

   // revoke and release the class object
   CoRevokeClassObject(dwRegistration);
   ulRef = pCF->Release();

   // Tell OLE we are going away.
   CoUninitialize();

   return(0);
   }

   extern CLSID CLSID_CHello;
   extern UUID LIBID_CHelloLib;

   CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */
       0x2573F891,
       0xCFEE,
       0x101A,
       { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
   };

   UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */
       0x2573F890,
       0xCFEE,
       0x101A,
       { 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
   };

   #include 
   #include 
   #include < stdlib.h>
   #include 
   #include 
   #include "pshlo.h"
   #include "shlo.hxx"
   #include "clsid.h"

   int _cdecl main(
   int argc,
   char * argv[]
   ) {
   HRESULT  hRslt;
   IHello        *pHello;
   ULONG  ulCnt;
   IMoniker * pmk;
    WCHAR  wcsT[_MAX_PATH];
   WCHAR  wcsPath[2 * _MAX_PATH];

   // get object path
   wcsPath[0] = '\0';
   wcsT[0] = '\0';
   if( argc > 1) {
       mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);
       wcsupr(wcsPath);
       }
   else {
       fprintf(stderr, "Object path must be specified\n");
       return(1);
       }

   // get print string
   if(argc > 2)
       mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);
   else
       wcscpy(wcsT, L"Hello World");

   printf("Linking to object %ws\n", wcsPath);
   printf("Text String %ws\n", wcsT);

   // Initialize the OLE libraries
   hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);

   if(SUCCEEDED(hRslt)) {

       hRslt = CreateFileMoniker(wcsPath, &pmk);
       if(SUCCEEDED(hRslt))
    hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&pHello);

       if(SUCCEEDED(hRslt)) {

    // print a string out
    pHello->PrintSz(wcsT);

    Sleep(2000);
    ulCnt = pHello->Release();
    }
       else
    printf("Failure to connect, status: %lx", hRslt);

       // Tell OLE we are going away.
       CoUninitialize();
       }

   return(0);
   }


Believe me, all this gives the same output "Hello World"  :-)
link|flag
18  
+1 and a sad smile. – eJames Jul 13 at 4:33
10  
Then finally the enlighten programmer. print "hello world\n" and perhaps print "how silly have i been." – acidzombie24 Aug 16 at 10:11
1  
The Hello World collection: roesler-ac.de/wolfram/hello.htm – Druid Sep 27 at 5:43
show 3 more comments
vote up 7 vote down

I think a lot of the best jokes come during a dull lecture. In a course I was in where we were doing a fast Poisson solver and during a derivation the teacher said "Something's fishy here", to which I and the professor had a riotous laugh, but everyone was just a little confused. Sometimes they're hilarious when you don't expect them to be. Sometimes it just happens. Just be "up" in your lectures. That's all that matters.

link|flag
3  
Poisson is French for fish – Jader Dias Aug 16 at 3:48
show 1 more comment
vote up 2 vote down

reparare scarabaeus ergo sum.

link|flag
1  
I fix bugs therefore I am? – docgnome Jun 6 at 0:53
show 3 more comments
vote up 27 vote down

KDE or Gnome - it's like deciding which fat girl you want to date.

link|flag
vote up 4 vote down

Bill Gates and Marc Andressen (from Netscape for those who don't know) die and go to heaven. Peter meets them and announces that they will get stabbed with a needle for each major bug in their browser software. First it's Marc's Turn: "In Navigator 1.0 there was a big security hole" PRICK! "In Navigator 1.1 you couldn't empty the cache" PRICK! Marc rubs his butt and looks around: "Where did Bill go?" Peter says in reply: "He's just being clamped into the sewing machine..."

link|flag
show 1 more comment
vote up 5 vote down

IEnumerator? I barely knew her!

link|flag
2  
I work a lot with .NET and I don't get it – Jader Dias Aug 16 at 3:49
vote up 5 vote down

Go the extra mile. It's never crowded.

link|flag
vote up 2 vote down

It's the fragments from a dream of a bad telling of a bad joke, so it might need reworking later on, but something about:

"...the end of the world as foretold in Revelations , Fire and Brimestone, and the Beast and it's minions had surfaced from the lair under the earth's crust. Summoned by God Almighty to spread terror and destroy any lasting civilizations, any life that hadn't been worth salvation. The Beast called to the minions, planning how the world would be undone, communications were written and dispatched around the globe.

From up high, God watched on, noting the detail in the organisation, and was confident that all was to go as planned.

However, days, weeks, months passed, and finally God confronted the Beast. 'Why no progress? Such organisation, yet those who were not salvaged still work the earth! Why do you fail me?'

'Forgive me Lord, I have but permission to read and write.'"

link|flag
vote up 33 vote down

This is one I've been telling for years and I'm always surprised when people haven't heard it:

Three programmers meet accidentally at the urinal while attending a technical conference. The first programmer finishes up his business, washes his hands with loads of water, walks over to the towels and uses almost the entire roll to dry his hands. He turns to the other two and says "At Microsoft, we are trained to be extremely thorough."

The second programmer finishes up, walks over to the sink and washes his hands with much less water, then uses a single towel to dry his hands. He remarks to the other two "At IBM, we are trained not only to be very thorough, but also very efficient."

The third programmer finishes his business, walks right past the sink and towel rack and lauds over his shoulder as he walks out the door: "At Apple we don't piss on our hands!"

The original way I heard it was with Motorolla / DEC and Sun I think but you can change the joke depending on who you are telling it to :)

link|flag
show 1 more comment
vote up 9 vote down

If computer languages were car.

  • C is a racing car that goes incredibly fast but breaks down every fifty miles.

  • C++ is a souped-up racing car with dozens of extra features that only breaks down every 250 miles, but when it does, nobody can figure out what went wrong.

  • Java is a family station wagon. It's easy to drive, it's not too fast, and you can't hurt yourself.

  • C# is a competing model of family station wagons. Once you use this, you're never allowed to use the competitors' products again.

  • Lisp looks like a car, but with enough tweaking you can turn it into a pretty effective airplane or submarine.

  • Perl is supposed to be a pretty cool car, but the driver's manual is incomprehensible. Also, even if you can figure out how to drive a perl car, you won't be able to drive anyone else's.

  • Python is a great beginner's car; you can drive it without a license. Unless you want to drive really fast or on really treacherous terrain, you may never need another car.

  • Ruby is a car that was formed when the Perl, Python and Smalltalk cars were involved in a three-way collision. A Japanese mechanic found the pieces and put together a car which many people think was better than the sum of the parts.

  • Fortran is a pretty primitive car; it'll go very quickly as long as you are only going along roads that are perfectly straight. It is believed that learning to drive a Fortran car makes it impossible to learn to drive any other model.

  • Cobol is reputed to be a car, but no self-respecting driver will ever admit having driven one.

  • Assembly Language is a bare engine; you have to build the car yourself and manually supply it with gas while it's running, but if you're careful it can go like a bat out of hell.

link|flag
vote up 7 vote down

Eight bytes walk into a bar. The bartender asks, “Can I get you anything?”

“Yeah,” reply the bytes. “Make us a double.”

link|flag
show 1 more comment
vote up 5 vote down

Chuck Norris counted to infinity twice.

link|flag
15  
nice, but it's all in the delivery: try it this way: "Chuck Norris counted to infinity... twice!". See? ;) – Jeffrey Kemp Jun 17 at 6:37
2  
Just don't actually pronounce the ellipsis. – jmucchiello Aug 21 at 20:51
show 2 more comments
vote up 14 vote down

Q. How did the programmer die in the shower?

A. He read the shampoo bottle instructions: Lather. Rinse. Repeat.

link|flag
show 1 more comment
vote up 48 vote down

Your mommas so fat that not even Dijkstra is able to find a shortest path around her.

link|flag
4  
+1 for getting a your mom joke in there – ojblass Jun 1 at 1:39
vote up 7 vote down

I'm nervous about programming in an untyped language---my penmanship is awful!

link|flag
vote up 35 vote down

One of my favorites...

Robin Hood And Friar Tuck

The following story was posted in news.sysadmin recently.

The more things change, the more they stay the same...

Back in the mid-1970s, several of the system support staff at Motorola (I believe it was) discovered a relatively simple way to crack system security on the Xerox CP-V timesharing system (or it may have been CP-V's predecessor UTS). Through a simple programming strategy, it was possible for a user program to trick the system into running a portion of the program in "master mode" (supervisor state), in which memory protection does not apply. The program could then poke a large value into its "privilege level" byte (normally write-protected) and could then proceed to bypass all levels of security within the file-management system, patch the system monitor, and do numerous other interesting things. In short, the barn door was wide open.

Motorola quite properly reported this problem to XEROX via an official "level 1 SIDR" (a bug report with a perceived urgency of "needs to be fixed yesterday"). Because the text of each SIDR was entered into a database that could be viewed by quite a number of people, Motorola followed the approved procedure: they simply reported the problem as "Security SIDR", and attached all of the necessary documentation, ways-to-reproduce, etc. separately.

Xerox apparently sat on the problem... they either didn't acknowledge the severity of the problem, or didn't assign the necessary operating-system-staff resources to develop and distribute an official patch.

Time passed (months, as I recall). The Motorola guys pestered their Xerox field-support rep, to no avail. Finally they decided to take Direct Action, to demonstrate to Xerox management just how easily the system could be cracked, and just how thoroughly the system security systems could be subverted.

They dug around through the operating-system listings, and devised a thoroughly devilish set of patches. These patches were then incorporated into a pair of programs called Robin Hood and Friar Tuck. Robin Hood and Friar Tuck were designed to run as "ghost jobs" (daemons, in Unix terminology); they would use the existing loophole to subvert system security, install the necessary patches, and then keep an eye on one another's statuses in order to keep the system operator (in effect, the superuser) from aborting them.

So... one day, the system operator on the main CP-V software-development system in El Segundo was surprised by a number of unusual phenomena. These included the following (as I recall... it's been a while since I heard the story):

  • Tape drives would rewind and dismount their tapes in the middle of a job.

  • Disk drives would seek back&forth so rapidly that they'd attempt to walk across the floor.

  • The card-punch output device would occasionally start up of itself and punch a "lace card" (every hole punched). These would usually jam in the punch.

  • The console would print snide and insulting messages from Robin Hood to Friar Tuck, or vice versa.

  • The Xerox card reader had two output stackers; it could be instructed to stack into A, stack into B, or stack into A unless a card was unreadable, in which case the bad card was placed into stacker B. One of the patches installed by the ghosts added some code to the card-reader driver... after reading a card, it would flip over to the opposite
    stacker. As a result, card decks would divide themselves in half when they were read, leaving the operator to recollate them manually.

I believe that there were some other effects produced, as well.

Naturally, the operator called in the operating-system developers. They found the bandit ghost jobs running, and X'ed them... and were once again surprised. When Robin Hood was X'ed, the following sequence of events took place:

!X id1

id1: Friar Tuck... I am under attack! Pray save me! (Robin Hood)
id1: Off (aborted)

id2: Fear not, friend Robin! I shall rout the Sheriff of Nottingham's men!

id3: Thank you, my good fellow! (Robin)

Each ghost-job would detect the fact that the other had been killed, and would start a new copy of the recently-slain program within a few milliseconds. The only way to kill both ghosts was to kill them simultaneously (very difficult) or to deliberately crash the system.

Finally, the system programmers did the latter... only to find that the bandits appeared once again when the system rebooted! It turned out that these two programs had patched the boot-time image (the /vmunix file, in Unix terms) and had added themselves to the list of programs that were to be started at boot time...

The Robin Hood and Friar Tuck ghosts were finally eradicated when the system staff rebooted the system from a clean boot-tape and reinstalled the monitor. Not long thereafter, Xerox released a patch for this problem.

I believe that Xerox filed a complaint with Motorola's management about the merry-prankster actions of the two employees in question. To the best of my knowledge, no serious disciplinary action was taken against either of these guys.

Several years later, both of the perpetrators were hired by Honeywell, which had purchased the rights to CP-V after Xerox pulled out of the mainframe business. Both of them made serious and substantial contributions to the Honeywell CP-6 operating system development effort. Robin Hood (Dan Holle) did much of the development of the PL-6 system-programming language compiler; Friar Tuck (John Gabler) was one of the chief communications-software gurus for several years. They're both alive and well, and living in LA (Dan) and Orange County (John). Both are among the more brilliant people I've had the pleasure of working with.

Disclaimers: it has been quite a while since I heard the details of how this all went down, so some of the details above are almost certainly wrong. I shared an apartment with John Gabler for several years, and he was my Best Man when I married back in '86... so I'm somewhat predisposed to believe his version of the events that occurred.

Dave Platt Coherent Thought Inc. 3350 West Bayshore #205 Palo Alto CA 94303

link|flag
show 1 more comment
vote up 5 vote down

There are two things in life that you can't live without them: sex and bandwidth, and there is people trying to survive without the first one.

link|flag
1  
sadly ... (ok15charkthxbey) – hasen j May 21 at 18:54
show 1 more comment
vote up 60 vote down
99 little bugs in the code,
99 bugs in the code,
fix one bug, compile again,
100 little bugs in the code.

100 little bugs in the code, ...

... continue until 0 bugs reached

link|flag
5  
is 100 a short? At least then the end is in sight :) – Arcturus Aug 14 at 15:03
show 3 more comments
vote up -7 vote down
UsEconomy = "OPTIMIZE FOR UNKOWN usEconomy";
link|flag
vote up 8 vote down

A programmer walks in the forest and finds a frog. To his great disbelief, the frog begins to talk:

"Hey, I'm a gorgeous princess trapped by an evil curse. If you kiss me, I'll turn back into a human shape and we'll live happily everafter!"

The programmer takes the frog and put it in its pocket.

"What!? You're not going to kiss me?"

"No, having a princess for girlfriend would be nice, but a talking frog is so freaking cool!"

link|flag
3  
this is already on here at least twice – Cuga Jun 10 at 18:55
vote up 4 vote down

unzip.zip...

link|flag
prev 1 5 6 7 8 9 19 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.