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

Once I was going through some old application code for maintenance and I came across these comments within an empty function block:

"Alex will be coming tomorrow to write code here." It was commented with a very old date. Obviously, something happened to Alex or else it would not have remained empty.

I was curious and made some enquiries about Alex with some old timers. One of the guys mentioned that it might have been the guy who admitted he could not code from Day 1 and needed some training. He was fired the same day.

Not sure what happened to the guy who put the comments in the first place.

link|flag
show 2 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

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

I once saw an especially clever comment used Morse code as an implicit message....

// .... . .-.. .-.. ---  .-- --- .-. .-.. -..
// begin section
// .... . .-.. .-.. ---  .-- --- .-. .-.. -..

Love it... +1 with sentiment that shenanigans should be in comments and not variable names.

link|flag
4  
".... . .-.. .-.. --- .-- --- .-. .-.. -.." is Morse code for "HELLOWORLD". – cpeterso Feb 21 at 18:12
show 3 more comments
vote up 57 vote down

Ok, not actually real production code, more compilable doggerel...

public class MohammedAli {
  float like_a_butterfly;
  string like_a_bee;
}

and the somewhat more elaborate:

public class LunchOrder {
    double cheeseburger;
    char grilled;
    long drink;
    short cake;
}
link|flag
18  
class Employee { short hours; double pay; long lunches; }; – Adam Rosenfield Oct 8 '08 at 22:02
4  
I always declare the first double "d" – cciotti Oct 22 '08 at 18:36
show 3 more comments
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 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 9 vote down

There is an xkcd forum thread with quite a nice collection of Funniest/Most Annoying Code Comments

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

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

Microsoft Code has lots of good comments (Taken from Windows 2000)

// The specific idiot in this case is Office95, which likes
// to free a random pointer when you start Word95 from a desktop
// shortcut.

or:

private\genx\shell\inc\prsht.w:
// we are such morons. Wiz97 underwent a redesign between IE4 and IE5

private\shell\ext\ftp\ftpdrop.cpp:
// We have to do this only because Exchange is a moron.

private\shell\shdoc401\unicpp\desktop.cpp:
// We are morons. We changed the IDeskTray interface between IE4

private\shell\browseui\itbar.cpp:
// should be fixed in the apps themselves. Morons!

Or:

private\shell\ext\tweakui\genthunk.c:
/* CallProc32W is insane. It's a variadic function that uses
* the pascal calling convention. (It probably makes more sense
* when you're stoned.) */

Finally, this makes you wonder about the build process over at MS:

/*       !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 *       !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 *       !!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!!
 *       !!!!!!!!!!!!!!DOING SO F**KS THE BUILD PROCESS!!!!!!!!!!!!!!!!
 *       !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 *       !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 */
link|flag
2  
I take comfort in knowing our dev group isnt alone in needing anger management – MikeJ Sep 26 '08 at 21:33
show 7 more comments
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 5 vote down
children.each do |puppy|
    ...
end
link|flag
show 1 more comment
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 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 10 vote down

In the days when Pascal was a popular teaching language and a common exercise was to write a program to output graphics using a pen printer (one of those that moves a pen across a page, raising and lowering the pen to draw) we had a lecturer who used to delight in the pointing out the pitfalls of the convention of naming pascal variables by joining words and in fixing capitals, i.e. the common boolean variable name :-

PenIsUp

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

This is from the app we're currently working on. For all fans of dodgy 80's pop:

if($res) {
    $karma = $res['Karma']['karma']; // karma karma karma chameleon
}
link|flag
show 2 more comments
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 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 27 vote down

I giggle every time I shorten "Assembly" to "ass" in .net:

var myAss = this.GetType().Assembly;
link|flag
2  
I'm thinking more along the lines of something like: "When I call function X on 'myAss', it throws a NullPointerException. We need to make sure to double check that 'myAss' is not null!" – Outlaw Programmer Sep 26 '08 at 17:24
1  
But "myAss" is so much better, i guess i have to refactor! :) – steffenj Sep 26 '08 at 20:27
2  
Once I saw an application called MIARS, short for M*** Integrated Analytical Reporting System. The conversation was supposed to go: Where did the numbers come from ? ... – ConcernedOfTunbridgeWells Nov 7 '08 at 14:13
3  
I shortened "Performance analyst" to "perf_anal" once. The perf_anal himself wasn't too impressed. – Graeme Perrow Nov 7 '08 at 14:24
1  
As long as you don't start making ASSembly MANagers... – Artem Russakovskii May 24 at 3:47
show 7 more comments
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

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

http://kerneltrap.org/node/542

link|flag
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 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 13 vote down
for(int c = 0; c < 10;)
{
   c++; // < get it?  c++ ?  it's so... literal
}
link|flag
3  
The code says "c++", and C++ is a programming language (whose name comes precisely from the fact that ++ is the increment operator in its predecessor language C). Is that it? Is that the joke? Is that a joke? – ShreevatsaR May 26 at 22:21
show 10 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

Your Answer

Get an OpenID
or

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