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

It's all fun and games, until a bug makes your attempt at humor visible to the customers...

link|flag
2  
Psh. The customer is the audience. (Just kidding. [Sort of.]) – eyelidlessness Oct 28 '08 at 4:10
show 4 more comments
vote up 5 vote down

If you're going to put jokes in your code, PLEASE for God's sake do it in the comments. There's nothing more annoying than variables or methods with "hilarious" names. It really does make the code more difficult to understand.

But I'm all for funny comments. (And there's more to humor than referencing obscure TV shows.)

link|flag
vote up 5 vote down
char coal;
short cut;
long way;
float assets;
string tanga;
double penetration;
object slide;

UserPermissionException up = new UserPermissionException();
throw up;  // lol

return off;// the Jedi;
link|flag
show 1 more comment
vote up 4 vote down

My favourite: 42, second place: Towel. And just to show that I have read other books too (3 or 6, depending on the way you count): Precioussssss...

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 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 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
vote up 3 vote down

My favorite is a comment a co-worker added to a safe-delete function we had in c++. It was very hackish, but it protected from some null problems in a code-base that wasn't checking nulls often enough.

    class WidgetBase
    {

      void SafeDelete()
      {
        if (this)
          delete this;
/*
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune,
Or to take arms against a sea of troubles,
And by opposing, end them. 
*/
      }
    }
link|flag
show 4 more comments
vote up 3 vote down

I would say, stay away from humor in code unless your program is written in lolcode.

lolcode.com

link|flag
show 1 more comment
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 3 vote down

acceptable usage of breaks and contunues in java:

dance:
while(some_bool){
    //something in loop
    ...
    if(some_condition)
        break dance;
}

and:

the_assault:
while(something){
    //body
    ...
    if(condition)
        continue the_assault;
}

or something to that effect.

link|flag
vote up 2 vote down

My test data for Gliffy's API is all based on Simpsons and Futurama. For example, the account named "BurnsODyne" has diagrams like "Reactor Control UI", "Mayoral LAN", "SNPP Domain Mode", and "Booze Database Design". A personal account owned by "robotdevil@robothell.com" has a flowchart called "Circuitous Plan to Get Hands Back". Test data just has to be kept interesting. I actually made them realistic, too:

![SNPP Domain Model] (http://www.naildrivin5.com/davec/SNPP.jpg).

link|flag
show 2 more comments
vote up 2 vote down

I prefer unintentional humor...

Legacy code is perfect for that.

Dim intOrderID AS Long

Or sometimes when the comments have long ago become out of sync with the code they were referring to.

Reality truly is stranger than fiction....

link|flag
vote up 2 vote down

I don't know about anything funny.. but it's always a hoot to lie in your comments. Not little white lies, but huge blatant ones.

'//do not remove following code or app will stop running
Dim n as string
For n = 1 to 10000000
   n = n & rnd()
Next
link|flag
1  
Looks like a loop to introduce a delay. That was often used to work around bugs (i.e. the Borland Pascal runtime error on newer PCs) or when there is an external component that takes a moment to initialize. In any case, that code will break at some point in the future when run on a faster machine... – Michael Stum Nov 24 '08 at 19:36
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 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 2 vote down

For the rare occasion I need to raise exceptions, I have reserved a special identifier:

var up:Error = new Error();
throw up;
link|flag
vote up 2 vote down

A friend of mine uses this status message when he's asleep :)

while(awake) sheep++;
link|flag
show 1 more comment
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 1 vote down

This wasn't used in any program, I just thought it was funny.

<?php
$iShower = $_GET['clean'];
if ($iShower) {
     echo getdate();
}
?>
link|flag
show 3 more comments
vote up 1 vote down

So this isn't directly answering the question - but definitely is good not to take yourself to seriously when you're programming - have a good time and don't worry - that proverbial next programmer will be smart enough to figrure out what's going on regardless your oddball sense of humor.

Had a senior project I was working on for my under-grad degree - we had a "project manager" who also participated in some of the coding. I was almost in tears when he took personallly a comment I made about "the stupid database" or something like that - he thought I needed counseling or something (not that I don't)... but again, let's not take ourselves to seriously, cause no one else does.. :)

link|flag
vote up 1 vote down

One of my favourites that I have come across:

my $ofTheJedi = x;
return $ofTheJedi;
link|flag
show 2 more comments
vote up 1 vote down

A friend of mine wrote a program that would communicate with another via two pipes. One for each communication direction (send/receive). The variable that held the descriptor/handle for the pipe for receiving data was named "bagpipe".

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

Personally, I keep the comments straight forward and to the point... The svn check-in logs however... recently full of references to Dr. Horrible's Sing Along Blog.

link|flag
vote up 1 vote down

This didn't directly relate to the code in the script, but I wrote a VBScript called psexecWizard. It basically called psexec en-mass based on some database criteria and did some other random/cool stuff. In between the functions, I made comparisons between psexecWizard and "Pinball Wizard". Other wizard references eventually cropped up (allusions to the Washington Wizards, Wizards of the Coast, and Harry Potter, boy wizard).

sample:

' Pinball Wizard was written by Pete Townshend of "The Who".  Dan Coates* wrote PsExec_wizard.  According
' to both authors, each item was "the most clumsy piece of writing [he'd] ever done."

' * Not the more famous Dan Coates that wrote "Lean on Me", but the less famous one who was in a
' a cappella group YouTube video performing Nintendo songs.
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 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 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 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 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

Your Answer

Get an OpenID
or

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