vote up 42 vote down star
36

When you are writing code or naming products, which sources of cultural references are you most likely to draw from? Which reference sources do you think are more likely to be universally understood?

For example when findbugs sees that you've implemented equals() without overriding hashCode() it suggest that you implement it by returning 42 (a reference from HHGTTG)

Or why we have big endian vs little endian encoding, referencing Gulliver's Travels

Not that we should act unprofessionally with our code, but if you going to tell a person that they could only (watch/read/...) one (book/movie/show/...) which one would allow them to 'get' the most jokes?

flag
show 1 more comment

102 Answers

vote up 42 vote down

Once, a couple of years ago, I was working with some custom XML for an installer. In my late night frustration I just couldn't figure out why this one "feature" wouldn't work. That is, until I got this error message:

The Product element contains an unexpected child element 'Bastard'.

This was totally unintended and has kept me laughing to this day...

link|flag
vote up 4 vote down

To answer your question, I suspect Hitchikers Guide to the Galaxy is the single book from which the most programmer humor comes from, but that may just be personal experience. I have seen very many comments and variable names that came from there.

But other than that, we're all over the board on our references... I remember seeing one comment in a chunk of perl code that had given the developer a lot of trouble:

# Touch this code and die like Biggie and Tupac
.
.
.
# /Touch
link|flag
show 1 more comment
vote up 6 vote down

Magic number in Java class files: 0xCAFEBABE

[localhost ~]$ hexdump -C Foo.class  | head
00000000  ca fe ba be 00 00 00 31  00 46 0a 00 14 00 1f 09  |Êþº¾...1.F......|
link|flag
show 1 more comment
vote up 0 vote down

The funniest thing I ever saw was in a c# application to replay captured drawings on the screen. In between the individual drawing of the samples of pen positions was a call to a function waitABit();, which was defined as follows:

void waitABit()
{
  for(int i = 0 ; i < 1000000 ; i++);
}
link|flag
show 1 more comment
vote up 0 vote down

In java code of huge old application I saw quite funny comment

// Fellow, modify this method if you understand EVERY SINGLE LINE in it
link|flag
vote up 10 vote down

I've twice had to create a Log class for message logging. Both times I put this comment in the class header:

// What rolls down stairs
// alone and in pairs
// and flattens the neighbor's dog?
// What's great for a snack
// and fits on your back?
// It's log, Log, LOG!
link|flag
1  
Lets not forget that its "Big its heavy its wood. Its better than bad its good" – Jon P Dec 10 '08 at 23:53
show 4 more comments
vote up 0 vote down

In my younger days When writing one-off perl programs I admit I had a penchant for just emitting code with colloquial meanings like:

open(FOO,"...") or die horribly;

or

foo() until $hell_freezes_over;

Though, that said, I try to make very few cultural references in my code.

link|flag
vote up 22 vote down

When I was using VB6, I often had my error handling look like:

On Error GoTo Hell

I used it again when writing code in VBA for access. My then very Christian manager nearly had a heart attack when he saw it, and made me change it :(

link|flag
12  
FAIL @ religious lack of humour – Jens Roland Feb 20 at 20:17
show 2 more comments
vote up 18 vote down

My favorite, and one I now sometimes borrow was seeing this in a Makefile:

love :  
     echo "not war"
link|flag
vote up 2 vote down

Looking through some code from earlier this year, I found some silly comments.

In a C file that converted to/from Roman numerals, the "last update" timestamp had the year written in Roman numerals. That was the only file in the project that had it. Later on, in another number crunching file, it included some things regarding the above-mentioned Roman numerals:

#include "roman.h" //He has a wife, you know... Know what's she called?"

There's also a function I first encountered in Nethack and lovingly adopted: strkitten(char*,char);

link|flag
vote up 0 vote down

I have a habit of making testing values the names of fictional countries. Leading to several co-workers playing "guess the movie" once.

link|flag
vote up 13 vote down

Here's another one:

while ("my guitar gently weeps") {
...
}
link|flag
show 2 more comments
vote up 1 vote down

A certain project I worked on had a LOT of complicated, big-ball-of-mud code. One of the older functions is prefixed by a quote from Through the Looking Glass:

/* "It seems very pretty," Alice said when she had finished it,
    "but it's rather hard to understand! Somehow it seems 
    to fill my head with ideas--only I don't exactly know what they are! 
 */

IMHO funny comments are OK, but funny-names or funny-values for variables are horrible:
-Why do we have a String login_is_ok and why does it contain "Listen, I'm not crazy ... yet"?!? +Well, one of the original developers thought it was funny, ROTFL-funny even.
-Aaargh!

link|flag
vote up 0 vote down
#ifndef PI
    const float PI = 3.141592654f;
#endif
link|flag
vote up -1 vote down
template < class T >
inline T DISTANCE(const T& V1, const T& V2)
{
    ASSERT(V1>=(T)0 && V2>=(T)0);
    return (T)(V1<V2?V2+V1/2:V1+V2/2) ;
}
link|flag
vote up 0 vote down

I inject a number of things in code that only I think are funny. :)

For example, instead of naming an interface IPacketViewer, I might name it ISeePackets.

Theoretically, I could mention my children's names in method parameters, assuming I was using the Dependency Injection pattern.

link|flag
vote up 4 vote down

To combat out project being offshored to Cambodia we try to include the occasional reference that other cultures might not understand.

i.e.

To find the parent site in MOSS:

WhoIsYourDaddy();
link|flag
vote up -1 vote down
template < class T >
inline T DISTANCE3D(const T& V1, const T& V2, const T& V3)
{
    ASSERT((V1>=(T)0) && (V2>=(T)0) && (V3>=(T)0));
    if (V1 > V3)
    {
        if (V1 > V2)
        {
            if (V2 > V3)
            {
                return (T)(V1 + V2/2 + V3/4);
            }
            else
            {
                return (T)(V1 + V3/2 + V2/4);
            }
        }
        else
        {
            return (T)(V2 + V1/2 + V3/4);
        }
    }
    else
    {
        if (V3 > V2)
        {
            if (V2 > V1)
            {
                return (T)(V3 + V2/2 + V1/4);
            }
            else
            {
                return (T)(V3 + V1/2 + V2/4);
            }
        }
        else
        {
            return (T)(V2 + V3/2 + V1/4);
        }
    }
}
link|flag
vote up 0 vote down

In a class to manage several threads:

public Collection getRuns()
{
    return new ArrayList( runs ); //return chinese food
}
link|flag
vote up 0 vote down

I really liked this one :


int OF_THE_JEDI = some value;
// code does something here with var
return OF_THE_JEDI;
link|flag
show 1 more comment
vote up 2 vote down
dobule pi = 3; //M:find correct value

This "inaccuracy" was hidden in the code for about 3 years before I discovered it.

link|flag
7  
Shouldn't the compiler have found it first? ;-) – Adam Liss Mar 25 at 22:53
vote up 1 vote down
If(true)
   //Just to be sure =)

Lol

link|flag
vote up 23 vote down

I was writing a class to crawl the web so naturally the class definition was like this:

public class WebCrawler //: public SpiderMan, private PeterParker
{
};
link|flag
show 1 more comment
vote up 0 vote down

My default new JSP text in eclipse used to read: "This is my JSP."

It now reads: "This is my JSP. There are many like it, but this one is mine."

link|flag
vote up 0 vote down

In (part of) our trading system the main errors are a Doosra and Googly from cricket terminology.

It's weird when you see an error message along the lines "You've been bowled a googly" and even weirder when people/users start talking about doosras/googlys in meetings, etc. ("Have you fixed that doosra").

There was even some talk of the US team replacing these with baseball references for their region. But they haven't so are stuck with cricket (hurrah).

link|flag
vote up 0 vote down

I write for a lot of school districts. I tend to keep humor out of my code but my test database has the teachers as the actors that played the Doctor and the students as the various companions over the years.

link|flag
vote up 3 vote down

I once worked on an app that had an interface for auto handling persistence of "dirty" objects. The interface was named...

ICanBeDirty

... and still makes me laugh, the guy who wrote it hadn't even realized that it was funny when I asked him about it.

link|flag
show 1 more comment
vote up 0 vote down
die (Strings::get('Obituary') . $e->getMessage());

or

$validArchType = array ('A-Frame', ..., 'McMansion', ...);

or

define ('DEVIANCY_OR_MALFEASANCE', -1);

or

<string key="VICE_PRESIDENT">Just making sure Kathy is paying attention.</string>
link|flag
vote up 1 vote down

This isn't really humor, but I find it funny. This is the fast inverse square root function from the Quake III source code. It uses some crazy hacks to get results that (at least, at the time) are up to four times faster than (float)(1.0/sqrt(x), even though sqrt is usually implemented in assembly.

Line 10 makes me laugh. Maybe it's just how ridiculous the whole thing is, and I can see John Carmack laughing while writing something so strange.

float Q_rsqrt( float number )
{
    long i;
    float x2, y;
    const float threehalfs = 1.5F;

    x2 = number * 0.5F;
    y  = number;
    i  = * ( long * ) &y;  // evil floating point bit level hacking
    i  = 0x5f3759df - ( i >> 1 ); // what the fuck?
    y  = * ( float * ) &i;
    y  = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
    // y  = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed

    #ifndef Q3_VM
    #ifdef __linux__
    	assert( !isnan(y) ); // bk010122 - FPE?
    #endif
    #endif
    return y;
}
link|flag
show 1 more comment
vote up 0 vote down

In FoxPro:

set bug on

or:

set bug off

link|flag

Your Answer

Get an OpenID
or

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