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

Here's another one:

while ("my guitar gently weeps") {
...
}
link|flag
show 2 more comments
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 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 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 23 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 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 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 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

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 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 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 44 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 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

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

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

link|flag
vote up 43 vote down

Taken from the xkcd comic Random Number

int getRandomNumber()
{
    return 4; //chosen by fair dice roll.
              //guaranteed to be random.
}
link|flag
6  
I'm getting tired of xkcd though. – The Wicked Flea May 27 at 0:06
show 1 more comment
vote up 22 vote down

I've always waited for the occasion to write the following comment inside a C++ class declaration with private members and friend classes:

// Only friends are allowed to see each other's private members.
link|flag
vote up 42 vote down

I just found this Stored Procedure in our database.

ALTER PROCEDURE ORly 
AS

print ' {o,o}'
print ' |)__)'
print ' -"-"-'
print 'O RLY?'
print ' '
print '{o.o}'
print '|)_(|'
print '-"-"-'
print 'YA RLY'
print ' '
print ' {o,o}'
print ' (__(|'
print ' -"-"-'
print 'NO WAI!'
link|flag
show 1 more comment
vote up 1 vote down

I had written some code that needed to know if the person reported last month had passed on during the month. I created the method ISeeDeadPeople(...) as bool

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

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

One of my favorites was a file with in the header something like
// Author: Mike
and a bit later, in a function, something like
// Mike: whoever wrote this code should be put against the wall and shot

Anyway, be very careful about being too clever. Blowing off steam in comments is fun, but maintainability should always trump funny. Never, ever, try to be clever with variable naming.

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

I usually write very straight-edge code, and try to name things as clearly as possible. But sometimes a good, logical name turns out to be funny.

I was building a "safe search" filter for a popular online video site. You may have used it. It just keeps the sexier videos out of your sight unless you explicitly toggle your settings to include them.

So I needed to name a method for bringing the sexy videos back into the user's video queries.

I couldn't help myself:

UserManager.bringSexyBack();

It's in production. Millions of people bringSexyBack() every day.

link|flag
show 3 more comments
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 21 vote down
// every time you call this a kitten dies somewhere

O(n3) method follows...

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

We named an internal application LIGERS. Needless to say, we were thrilled to be able to fit in a reference to Napoleon Dynamite.

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

I sometimes use a pattern where a temp table has a boolean column named Kevorkian, initialized to true for all records. The process does some fancy dancing wherein records may be added, and Kevorkian may be set to false for certain existing records. Finally, a delete query removes all records where Kevorkian is still true.

I tried to think of a more serious name for a flag that means "after careful and mature consideration, this record still wishes to commit suicide" but Kevorkian was the best I could do.

-Al.

link|flag
vote up 23 vote down

SEX (SignEXtend) mnemonics was removed from the Assembly language for Intel microprocessors but ANL and ORL (Logical-And and Logical-Or) were allowed.

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

Your Answer

Get an OpenID
or

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