vote up 358 vote down star
521

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

I think I had something of this sort:


if (case1) { // trivial
...
}
else { // we are screwed
 /* fill in later */
}

ok, so I might have used a stronger word than screwed

link|flag
vote up 8 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 8 vote down
   // Some wanker in ISO got rid of ifstream(int), ofstream(int), and
   // fstream(int).  Twit.
link|flag
vote up 8 vote down
// A Gorgon class - For the love of Zeus don't look directly at it!
link|flag
vote up 8 vote down
i++; // increment variable i
link|flag
show 1 more comment
vote up 8 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 8 vote down

This whole function is pretty great (from the Linux sunhme.c driver, for the network card nicknamed the Happy Meal by Sun. Because the card that came before that was the "Big MAC". Get it? Get it?)

static void happy_meal_tcvr_write(struct happy_meal *hp,
                              void __iomem *tregs, int reg,
                              unsigned short value)
{
    int tries = TCVR_WRITE_TRIES;

    ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value));

    /* Welcome to Sun Microsystems, can I take your order please? */
    if (!(hp->happy_flags & HFLAG_FENABLE)) {
            happy_meal_bb_write(hp, tregs, reg, value);
            return;
    }

    /* Would you like fries with that? */
    hme_write32(hp, tregs + TCVR_FRAME,
                (FRAME_WRITE | (hp->paddr << 23) |
                 ((reg & 0xff) << 18) | (value & 0xffff)));
    while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
            udelay(20);

    /* Anything else? */
    if (!tries)
            printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");

    /* Fifty-two cents is your change, have a nice day. */

}

link|flag
2  
Dupe: stackoverflow.com/questions/184618/… – Andrew Medico Apr 20 at 4:15
vote up 8 vote down
// For the sins I am about to commit, may James Gosling forgive me
link|flag
vote up 8 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 8 vote down
// BEGIN HACK
...
// END HACK: I feel dirty.
link|flag
vote up 8 vote down

Stating the obvious?

/** Logger */
private Logger logger = Logger.getLogger();
link|flag
show 1 more comment
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
// TODO - Comment this function
link|flag
4  
Uh sorry. That was me. – JohnFx Feb 13 at 1:04
vote up 7 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 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

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
// 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

// This will save us ~0.5 sec for every user and please the machine spirits.

Before very long procedure :)

link|flag
vote up 7 vote down

// This should fix something that should never happen

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
4  
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

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

That one is by Donald Knuth.

link|flag
3  
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
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.