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 1 vote down
If(true)
   //Just to be sure =)

Lol

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 1 vote down

I don't remember the exact original code and it no longer exists because it was a horrible hack but here's the story:

It was shipping date and we still had some "cleanup" to do, the final tests were running and only one, tiny bug was found by the tester: randomnly, when the user reloaded the application with the command "[app_name] reload" he couldn't get back the prompt and had to press Ctrl+C (the reloading worked fine, just the prompt didn't return sometimes).

The application was run by a bash script that managed more than one child process in the background, and to identify the current in scope process we named it as "me".

So we came up with the brilliant idea to kill the child process that do the reload after it was done:

doReloadInBackground
sleep(5) # Aproximately time taken to reload the application
kill $me # , please

It was a rather stressful day...

link|flag
vote up 1 vote down

from OpenRasta

public interface IHas : INoIzObject {}
link|flag
vote up 0 vote down

There's a database connection manager class in one particularly horrid third party app I work on. Every instance is called "connman".

While I'm sure it wasn't intentional humor, it seems appropriate. Sometimes, especially late at night, we break out laughing when we come across one of these.

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

It might be funny in the code that you write, but it's maddening to debug someone else's code that's littered with this kind of trite.

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

Another one I used to enjoy when I did COM programming was to place the following above a QueryInterface call:

// QueryInterface for the Straighty Interface

or, alternately:

// QI for the Straight Guy
link|flag
vote up 0 vote down

This is definitely not mine, but the Sun hme driver provides lots of fun!

http://kerneltrap.org/node/542

link|flag
vote up 0 vote down

We have a series of scripts that manage our automated promotion process named Travis and Franz (for no particular reason aside from the whims of the programmer who named them), and a cleanup script named Alice (from the maid in the Brady Bunch).

link|flag
vote up 0 vote down

I've never done it in code for work, but when I was in school I always enjoyed overly long acronyms for my app names. Also, recursive ones are fun. I named one MOOVIE - Movie Object Oriented Visual Information Exchange.

link|flag
vote up 0 vote down

Well, when just testing stuff out I used to name my command objects Arnold:) That and a lot of swearing in test strings:P

link|flag
vote up 0 vote down

I like belittling my programmer-colleagues in my code comments. It makes me feel better, and also tells me whether anyone reads my comments.

link|flag
vote up 0 vote down

I'll throw in random stuff when I'm working on a very difficult problem, due to my inability to think of appropriate variable names. I tend to try and tell a story to keep my excitement

$self = new User();
while($self->hungry()) {
    $bacon = $pig.Substr(...);
    $breakfast = getValue() + $bacon;
    $self->feed($breakfast);
}
link|flag
vote up 0 vote down

When ever I test a system that needs information about people I always use The Simpsons characters. There are lots of them and when I see "Ned Flanders 132 Evergreen Terrace. Springfield MA I know it's one i created.
(yes, I know it's the wrong state but I'm from MA and it's a debatable issue) It's also fun to see which of my co-workes notices it first.

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

Geeky pop culture things. Like Johnathan Coulton songs, or an XKCD comic. Maybe an obscure video game reference (like Leroy Jenkins or something). Generally my source code humor comes from whatever tickles my fancy at the moment.

link|flag
vote up 0 vote down

Wow. Just wow. This thread is awesome. I personally like a bit of humour in code, it keeps me awake on those extra early mornings when the 9:30 scrum is a bit too early.

On my last job we had a particularly colourful couple of coders who liked to get subtle jabs in through the comments. My favourite was one that had an excellent swear density, about every 4th word, and a blatant statement that he a) did not want to write this code and b) we would be better off using another product.

I thought the swearing might be a bit much but hey that little chunk of code could get me through even the most boring meetings.

link|flag
vote up 0 vote down

I came across a quite funny method, used seriously in the code, it made me laugh. :D. It did something, but it was hard to decipher what it did.

void Foo() {

// Some spaghetti code here 

}

Apparently there was no method 'Bar', I was disappointed.

link|flag
vote up 0 vote down

Got some nice comments with no reference at all :)

'2002 07 22 [Jon] Temporary fudge for AMEX
'2005-02-23 [Dominik] Temporary is relative ;)

(It's still in there ;) )

link|flag
vote up 0 vote down

We had a project whose title abbreviated to AU, so quite a few (private) functions were

gold_this() { ...}

or

gold_that() { ...}

after the chemical symbol ...

It was humour, although not particularly funny.

link|flag
vote up 0 vote down

There's some code at work along the lines of:

date midnight midnight = date("8:00")

link|flag
vote up 0 vote down

I worked with someone who put a variable named NotSoFastMonkeyBoy in the application. This popped up in an error message where some customers could see it. Management was not amused.

At the same place was a library for making multi-step wizards and named everything according to a wizard theme. Each page of the wizard was a spell, all the spells were in a grimoire, and the current page was pointed to by a wand.

link|flag
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 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 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 0 vote down
#ifndef PI
    const float PI = 3.141592654f;
#endif
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 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 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

Your Answer

Get an OpenID
or

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