vote up 358 vote down star
518

What is the best comment in source code you have ever encountered?

show 3 more comments

locked by Jeff Atwood Apr 28 at 8:55

closed as no longer relevant by Jeff Atwood Apr 28 at 8:51

529 Answers

prev 1 4 5 6 7 8 18 next
vote up 12 vote down
//I'm sorry, but our princess is in another castle.
link|flag
vote up 11 vote down

From a classic from usenet:

Deep inside the Teradyne hardware modeler code is a routine that feeds a whole bunch of hex numbers into a SYS$QIO call. The only comment is 'Weird magic happens here'.

link|flag
vote up 11 vote down

In the header of a code file heavily edited by everyone on the dev team:

'Avert your eyes, it may take on other forms!

Good ol' Flanders.

link|flag
1  
pretty sure that is what the nameless school teacher at a funadamentalist school Bart goes to says as he chases him with a paddle after Bart sang a song about beans or something. – Steven Adams Oct 9 '08 at 4:06
2  
Yep, "beans, beans, the musical fruit / the more you eat, the more you toot". It wasn't Flanders. – Blorgbeard Oct 9 '08 at 4:56
1  
Flanders was the name of the developer who wrote the code. But I like that you got the reference. :) – Robert S. Oct 10 '08 at 15:58
vote up 11 vote down
// Okay, let's do the loop, yeah come on baby let's do the loop
// and it goes like this ...
link|flag
vote up 11 vote down
//The following code is commented out
//(a load of commented out code followed)
link|flag
vote up 11 vote down
// Hard to explain

It ended up being broken, too. No wonder it was hard to explain

link|flag
vote up 11 vote down

I don't remember exactly, but the idea was something like this:

Person p = new Person("John", "Doe", "male");
Collection women = new ArrayList();
women.insert(p.getTail());

It's dirty code ;)

link|flag
8  
There was no comment in this answer until I added this one. – Windows programmer Oct 14 '08 at 6:30
vote up 11 vote down

Q: "What is the best comment in source code you have ever encountered?"

A: Easy - the one that helped me solve whatever problem I was having at the time, and there are lots of those!

Second best are those that help guide new development from avoiding known pitfalls.

link|flag
vote up 11 vote down

The favorite comment I ever wrote:

//the XML returned from this request is *mind-bogglingly* bad. Terrifyingly bad.
//a completed batch looks like this:
//<Batch>batchid=363777811 status=Done dateandtime=09/18/2007 09:53:10 PDT activateditems=335 numberofwarnings=0 itemsnotacivated=17 </Batch>
//and an incomplete batch like:
//<Batch>batchid=363778361 status=In Progress </Batch>
//so we'll just parse each item as a regex. Thanks Amazon.

And yes, Amazon actually returns XML like this.

link|flag
2  
It's even worse than that; it's not space-delimited. Note that both the date and status fields may have spaces in their values, defeating any possible easy parsing strategy. – llimllib Feb 5 at 3:57
2  
it's not a glitch! Read the docs if you dare: amazonsellercommunity.com/forums/ann.jspa?annID=18/… – llimllib Apr 19 at 21:03
show 2 more comments
vote up 11 vote down

In a game where this object can be stepped on, or:

stepOff(); //bitch
link|flag
vote up 11 vote down
// (c) 2000 Applied Magic, Inc.
// Unauthorized use punishable by torture, mutilation, and vivisection.

Ah, I always loved that one...

link|flag
vote up 11 vote down

In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:

// Joe is sorry

A few hundred lines later...

// Harry is sorry too
link|flag
vote up 11 vote down
/
//3.4  JeK  My manager promised me a lap dance if I can fix this release
//3.5  JeK  Still waiting for that dance from my manager
//3.6  JeK  My manager got changed, the new manager is hairy, dont want the dance anymore
//3.7  Jek  Got that dance, yuck!
//
link|flag
vote up 10 vote down

I believe in JBoss somewhere there was a line that read

return null; //Not really null

I always liked that line.

link|flag
vote up 10 vote down

Production source code:

// Remove this if you wanna be fired

link|flag
vote up 10 vote down

A few from the Linux kernel:

/* Sun, you just can't beat me, you just can't.  Stop trying,
* give up.  I'm serious, I am going to kick the living shit
* out of you, game over, lights out.
*/

-

/* 2,191 lines of complete and utter shit coming up... */

-

#if 0 /* XXX No fucking way dude... */
link|flag
show 1 more comment
vote up 10 vote down
/* FIXME This must absolutely be removed before 4.0.7 release
 * TODO really remove this */

we have since released a 4.0.7, 4.0.8, 4.0.9 and 4.1 version...

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

This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.

//**************************************
// Dear code maintainer:
//
// This source contains COM interfaces, not to be confused with interfaces 
// of any other sort, please do not just willy-nilly add additional methods 
// to these interfaces as they are truely immutable, unlike the interfaces 
// that other software vendors like Microsoft maintain.  IF you need to add 
// new functionality, then go thru the trouble of creating a NEW interface 
// and implement this functionality on only the objects you need.  
//
// While the money is good for fixing all of the problems caused by not 
// following the rules, I would rather work on things which actually have
// an impact on the future of the product rather than curse and yell 
// obsenities at the screen because someone didn't bother to understand the
// true meaning of IMMUTABLE.  
//**************************************
link|flag
vote up 10 vote down

In a well known commercial DOS spreadsheet application:

/* This comment was just added in order to check-in a file that was last 
checked in by [Insert Programmer FirstName] "Back-to-the-Future" [Insert 
Programmer LastName]. While testing for year 2000 problems, he accidentally 
checked-in this file while his machine clock was set forward to the year 2000. 
This meant that the source code was always newer than the object file and 
compiled every time the code was built. I'm checking this file in again to 
fix that. */
link|flag
1  
Interesting. What sort of stupid version control system would trust the clients' clocks? – Andrew Medico Apr 20 at 3:37
4  
And the winner is... VSS! – Kenneth Cochran Apr 20 at 13:45
show 1 more comment
vote up 9 vote down
int Q13Factor = 8125; // 2^13 for Q13
link|flag
show 1 more comment
vote up 9 vote down

A German comment in some source-code, translated by machine or very tired human + Google

; Rechnen ja ; have faith in yes

I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life.

link|flag
1  
The original means: "Calculate yes". Hard to say what he tried to say without the context. Probably "Yes, calculate" from a conditional calculation. – Stefan Steinegger Apr 24 at 11:27
vote up 9 vote down

This one i found it in the package "twisted" for Python 2.5 (the file is tcp.py at line 371)

# Limit length of buffer to try to send, because some OSes are too
# stupid to do so themselves (ahem windows)
return self.socket.send(buffer(data, 0, self.SEND_LIMIT))
link|flag
vote up 9 vote down
 /**
   * Returns cookies according to the filters specified.
   * 
   * @return array  Cookies!  Nom nom nom nom nom.
   */
 public function data_getCookies($uid, $name) {

Somewhere from the facebook api.

link|flag
vote up 9 vote down

A modification log I noticed in a legacy code

05/17/99 D JONES COMMENT OUT THE BLOODY AUZIES CODE (02/19/99)

05/17/99 K ROBINSON BLOODY TEXAN CAN'T SPELL AUSSIE CORRECTLY (NO CODE CHANGE - JUST A COMMENT)

link|flag
vote up 9 vote down
public function get state( /* of Palestine back */ ):Boolean
link|flag
vote up 9 vote down

My favorite is from the late, great Paul DiLascia:

// Author: If this code works, it was written by Paul DiLascia. If not then I don't know who wrote it.

link|flag
3  
Dupe: stackoverflow.com/questions/184618/… – Helen Jun 6 at 11:33
vote up 9 vote down

Some time ago I came across:

raise InvalidChild() # e.g. no legs

This is grotesque since "inwalida" in polish, means person with disability. silly me :)

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

About 10 years ago I was working at image processing, scanning microscope video frames to detect cell movement. I was working at a particulary intricated function and decided to go out and have a drink with friends. When I came back home I worked a little bit but not too much because I was drunk. The morning after I found a 10-line completely messed-up function with the following comment (obviously written by my other self):

/* Ah ah ah! You'll never understand why this one works. */

The strangest part was that it even worked.

link|flag
6  
It seems you achieved the Ballmer Peak: imgs.xkcd.com/comics/ballmer_peak.png – Jeff Barger Apr 19 at 13:36
vote up 8 vote down

Actually saw this the other day, on some code that was written when there was a deadline rush.

//This was clearly written under duress
link|flag
vote up 8 vote down

i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....

Catch (Exception e) {
    //eat it
}
link|flag
show 2 more comments
prev 1 4 5 6 7 8 18 next

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