vote up 358 vote down star
499

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 5 6 7 8 9 18 next
vote up 8 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
5  
It seems you achieved the Ballmer Peak: imgs.xkcd.com/comics/ballmer_peak.png – Jeff Barger Apr 19 at 13:36
vote up 7 vote down
// Bad Christian, No cookie

Cookie in this context does not refer to a browser cookie

link|flag
vote up 7 vote down

// Whoever put this here is an idiot...this doesn't work at all !

But the code is still there...

link|flag
vote up 7 vote down

From a lad that clearly had been watching Monty Python:

> // And now, for something completely
> // different:

class theLarch{

link|flag
vote up 7 vote down

Exhibit a:

return 0; // Happy ending

Exhibit B:

int32_t Interpolate1DSignal(
  Array1D<float64>::Handle hfInputSamples,         // samples to be interpolated
  Array1D<float64>::Handle hfInterpolationFilter,  // polyphase filter coefficients,
  int32_t iFilterInterpolationFactor,              // # of "rows" in polyphase filter
  int32_t iFilterLength,                           // Length of each row in filter
  float64 fInterpolationFactor,                    // Factor to interpolate the
                                                   // signal by
  float64 fTimingOffset,                           // Offset into the signal (units   
                                                   // of samples)
  Array1D<float64>::Handle hfOutputSamples         // left as an exercise for the reader
);
link|flag
vote up 7 vote down

Back when I worked for Reuters there was a comment in one of our feed handlers that made some people think the Almighty was helping us out...

// Jesus told me to skip to the end of the message here

We found out later that there was a Latin-American contact named Jesus (HeyZus).

link|flag
vote up 7 vote down

From Apache Xalan source code:

/**
 * As Gregor Samsa awoke one morning from uneasy dreams he found himself
 * transformed in his bed into a gigantic insect. He was lying on his hard,
 * as it were armour plated, back, and if he lifted his head a little he
 * could see his big, brown belly divided into stiff, arched segments, on
 * top of which the bed quilt could hardly keep in position and was about
 * to slide off completely. His numerous legs, which were pitifully thin
 * compared to the rest of his bulk, waved helplessly before his eyes.
 * "What has happened to me?", he thought. It was no dream....
 */
protected static String DEFAULT_TRANSLET_NAME = "GregorSamsa";

Further reading on The Daily WTF.

link|flag
1  
Literary References FTW – Frew May 31 at 17:51
vote up 7 vote down
   // Some wanker in ISO got rid of ifstream(int), ofstream(int), and
   // fstream(int).  Twit.
link|flag
vote up 7 vote down
// insert comment here
link|flag
vote up 7 vote down
// This is a walkaround for bug #7812

Written by one of our Chinese programmers, for whom English was not his first language.

I really liked this one. I happen to think "walkaround" is almost a better term than "workaround."

link|flag
vote up 7 vote down
i++; // increment variable i
link|flag
show 1 more comment
vote up 7 vote down

My favorite (which I must admit I've used many times):

// Yes...I know this is repusive and stupid.
// But <%CompanyOwnerOrManagerToken%>, not knowing a thing about code,
// demanded I do it anyways. SO, go crap on their desk, not mine.
// K THX BYE
link|flag
vote up 7 vote down
// For the sins I am about to commit, may James Gosling forgive me
link|flag
vote up 7 vote down

First two lines of a file called monitoring.sh:

#!/usr/bin/perl
# perl script disguised as a bash script
link|flag
vote up 7 vote down
// BEGIN HACK
...
// END HACK: I feel dirty.
link|flag
vote up 7 vote down

// This should fix something that should never happen

link|flag
vote up 7 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
2  
Dupe: stackoverflow.com/questions/184618/… – Helen Jun 6 at 11:33
vote up 7 vote down

Stating the obvious?

/** Logger */
private Logger logger = Logger.getLogger();
link|flag
show 1 more comment
vote up 7 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 6 vote down

This was actually made by me when I was implementing a prototype turned into real code:

// Abandon all hope you who needs to debug this

Yes, someone smarter than me actually refactored the code afterwards (it had to have a good ending).

link|flag
vote up 6 vote down
# absolutely foul heuristic code.
# ..it's dirty, but you want it.

and:

# VERY USEFUL DEBUGGING AID, for when the above all goes pearshaped:
link|flag
vote up 6 vote down

I found this when re-using a PHP class I wrote a fair amount of time ago. I still cant remember what went there and I still have found no use for it... I actually don't even remember me writing that comment; so I literally laughed out loud when I found it.

		try
		{				
		    // Some database logic
		}
		catch (Exception $ex)
		{
			// sure, it looks silly and I honestly cant remember what code used to go here... but i swear i will
			// find a use for this code.... eventually....
			throw $ex;
		}
link|flag
vote up 6 vote down

Found in the JUnit API:

/**
 * ...as the moon sets over the early morning Merlin, Oregon
 * mountains, our intrepid adventurers type...
 */
public Test createTest(Class theClass, String name) {
    ...
}
link|flag
vote up 6 vote down

Some of the very few comments in 5000+ lines of code in one file
I actually has an argument with the coder who defended his coding style...
No comment!
And there were no comments;-) (or very few)
Sadly this is production code.


offset=1;
for (i=0;i<=len;i++)
    {
    if ((i!=0)&&(i<len)) //-3
    	{
    	switch(mess[i])
    		{
    		case ETX:
    		case ETB:
    		case DLE:
    			buf[offset]=DLE;
    			offset++;
    			break;
    		}
    	}
    buf[offset]=mess[i];
    offset++;
    }


I love the switch!


for (n=0;n<offset;n++)
    {
    Sleep(TR);	//Modif A
    Sleep(T);//
    FWriteFile(hCom,buf+n,1,&dwMot,NULL);
    if (ECHO)
    	FReadFile(hCom,tab,1,&dwMot,NULL);
    }

and no, there are no comments explaining what "modif A" is in the header.


    if (GetFileSize(hSlotFile,NULL)==3600)	//5*720


and what's 720?

link|flag
3  
720 is 2 * 2 * 2 * 2 * 3 * 3 * 5, duh. – configurator Apr 29 at 17:01
show 1 more comment
vote up 6 vote down
// TODO - Comment this function
link|flag
3  
Uh sorry. That was me. – JohnFx Feb 13 at 1:04
vote up 6 vote down

In the header of an XSLT file:

DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic

link|flag
2  
I agree. Many years ago I did some XSLT wizardry. It was kinda voodoo, but I swear I had fun with it -- when I was not pulling my hair out, that is. – schonarth Oct 21 '08 at 12:33
1  
Right, complicated things are easy but simple things can drive you crazy in XSLT... – AndrĂ© Oct 24 '08 at 15:41
vote up 6 vote down

Beware of bugs in the above code; I have only proved it correct, not tried it.

That one is by Donald Knuth.

link|flag
2  
duplicate (see above) and it comes from an essay not from code – thomasrutter Apr 23 at 3:28
vote up 6 vote down

// Houston, we have a problem

link|flag
vote up 6 vote down
// fix for groupid > 9 
// if groupid ever gets to 100 everything will break (again)

if (groupid < 10) {
groupid = "0" + groupid;
}
link|flag
show 1 more comment
vote up 6 vote down

In a large investment bank that required all application outages be logged and commented I saw

Without a crash 

Or mighty bang 

The sync disk 

Did it's process hang
link|flag
prev 1 5 6 7 8 9 18 next

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