vote up 42 vote down star
37

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

1 2 3 4 next
vote up 58 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 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 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 43 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 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 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
2  
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 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 25 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 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 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 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 23 vote down

I was writing a class to crawl the web so naturally the class definition was like this:

public class WebCrawler //: public SpiderMan, private PeterParker
{
};
link|flag
show 1 more comment
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 21 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 21 vote down
// every time you call this a kitten dies somewhere

O(n3) method follows...

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

Here's another one:

while ("my guitar gently weeps") {
...
}
link|flag
show 2 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 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 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 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 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 9 vote down

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

link|flag
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 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 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 5 vote down
children.each do |puppy|
    ...
end
link|flag
show 1 more comment
1 2 3 4 next

Your Answer

Get an OpenID
or

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