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

prev 1 2 3 4
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

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

In unit tests, I'll do HHGTTG, Office Space, Idiocracy and occasionally (only occasionally) Star Wars references.

In my production code, no. No way. I try to keep that as professional as possible, down to the comments -- at least what gets checked in. Not only does it make my life easier when I'm maintaining it six months down the road, but it makes the lives of anyone else who has to maintain it easier. Humor has a place; in my mind production code isn't it.

(That said, I'm not above a little easter egg in an about box with some humor -- as long as it's zero-impact on the application's functionality.)

link|flag
vote up 1 vote down

23, 42, 69

For extra obscurity, I sometimes convert them to hex before.

link|flag
show 5 more comments
vote up 9 vote down

I try to avoid doing that. Can make it more difficult for others with different backgrounds to maintain the code.

link|flag
5  
You guys must be a lot of fun at work. – korona Dec 25 '08 at 22:29
show 4 more comments
vote up 22 vote down

There are so many funny comments in the OS-world. I like this one:

return(0); // Another brick in the -Wall

(It is one of those returns that never could be reached.)

link|flag
vote up 26 vote down

Monty Python references. But then, I'm a Python programmer.

link|flag
1  
Makes perfect sense! :) import spanish-inquisition; – steffenj Sep 26 '08 at 20:21
1  
This is specifically encouraged in the official language reference. – Colonel Sponsz Nov 7 '08 at 14:20
4  
Them: "I would redesign the architecture." Me: "It's only a model..." – crosvenir Feb 5 at 14:42
show 1 more comment
vote up 16 vote down

One wingnut I had the pleasure of working with used to work in the names of his ex-girlfriends to variable names.

Dim Jessica as String

Ugh.

link|flag
2  
Even worse, it looks like he's using VB so he can't even terminate his ex-girlfriend string. – polara Sep 26 '08 at 17:48
5  
Does he refactor all his code when he gets dumped? :) – steffenj Sep 26 '08 at 20:19
2  
If you name your functions/methods after girls, you can "call" them. – tsilb Feb 5 at 17:48
3  
and if your processes are named after girls, you can kill them – Jens Roland Feb 20 at 20:26
4  
I think someone took that joke past the end of the index. – uzbones May 24 at 3:54
show 6 more comments
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 7 vote down

I think one of the funnier ones I've seen is a perl function that had a hash named ofTheJedi (instead of some generic "this holds data" name).

Then only reason it was named that way was so the return statement was 'return %ofTheJedi'.

I've seen lots of HHGTTG references, lots of star wars references, and the odd Dr Who/Battlestar reference.

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

Not really a cultural reference, but I'm fond of using the HTML blink tag in my Javadoc.

link|flag
vote up 3 vote down

I used quotes from Office Space as strings in unit tests.

link|flag
1  
string multiline = ""Good evening Sir, my name is Steve. I come from a rough area. I used to be addicted to crack but now I am off it and trying to stay clean. That is why I am selling magazine subscriptions.""; // imdb.com/title/tt0151804/quotes – mikem Oct 14 '08 at 10:54
show 2 more comments
prev 1 2 3 4

Your Answer

Get an OpenID
or

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