vote up 358 vote down star
511

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 2 3 4 5 18 next
vote up 116 vote down
//I am not sure why this works but it fixes the problem.

This was before a set of code that technically did fix the problem it was meant to but broke 3 other things....

link|flag
show 2 more comments
vote up 105 vote down
# To understand recursion, see the bottom of this file

At the bottom of the file:

# To understand recursion, see the top of this file
link|flag
11  
That's more like an infinite loop, there's no need for a stack with that example. – Bernard Feb 2 at 21:04
4  
How about "# To understand recursion, see line X" on line X? – Chris Lutz Feb 13 at 1:48
6  
Good. But "To know what recursion is, you have to know what recursion is" is better :) – lk Mar 10 at 15:15
11  
When doing my A Level computing course we had a book, in the book the glossary contained two entries: Endless Loop - See 'Loop, Endless' ... Loop, Endless - See 'Endless Loop' – Piku Apr 19 at 21:46
show 7 more comments
vote up 103 vote down

Try typing your favourite profanity into google code search, it whiles away many a dull hour. Some of my favourite examples:

/* These magic numbers are f*cking stupid. */

/* Dear free software world, do you NOW see we are f*cking
   things up?! This is insane! */

/* We will NOT put a f*cking timestamp in the header here. Every
   time you put it back, I will come in and take it out again. */

# However, this only works if there are MULTIPLE checkboxes!
# The f*cking JS DOM *changes* based on one or multiple boxes!?!?!
# Damn damn damn I hate the JavaScript DOM so damn much!!!!!!

/* TODO: this is obviously not right ... this whole f*cking module
   sucks anyway */

/* FIXME: please god, when will the hurting stop? Thus function is so
   f*cking broken it's not even funny. */

and my personal favourite

 # code below replaces code above - any problems?
 # yeah, it doesn't f*cking work.
link|flag
7  
Posted HTML checkbox value handling is a WTF in its own right. – Rob Howard Apr 22 at 7:36
show 2 more comments
vote up 97 vote down
/* Halley's comment */
link|flag
5  
hahah brilliant. you only see one every 75 years, and the last one was in 1986. – nickf Oct 13 '08 at 7:12
show 2 more comments
vote up 97 vote down
long long ago; /* in a galaxy far far away */
link|flag
show 2 more comments
vote up 89 vote down
// I am not sure if we need this, but too scared to delete.
link|flag
11  
Fairly sure i have written that one – qui Oct 13 '08 at 15:05
2  
Story of my life. – John Lockwood Aug 23 at 20:44
vote up 89 vote down
/* Please work */
link|flag
3  
I know the feeling :) – lagerdalek Jan 23 at 11:02
1  
i'll try this to see if it helps any... :D – MasterPeter Apr 6 at 11:52
54  
My boss tells me this whenever he sees me reading SO. – Mike Miller Apr 20 at 20:10
2  
@"My boss tells me this whenever he sees me reading SO.": OMG!!! I can't stop laughing!!! – Andrei Rinea Apr 23 at 23:53
vote up 88 vote down
// I don't know why I need this, but it stops the people being upside-down

x = -x;
link|flag
4  
classic! ... a prof once told me that if you are having trouble with your open gl code just try flipping signs. it was really good advice – luke Nov 22 '08 at 21:45
2  
That's what made it the best comment -- it made no sense at all, and provided no good explanation as to why it worked :) – Chris Jefferson Mar 10 at 17:25
1  
I love this one :) – thomasrutter Apr 22 at 12:10
show 3 more comments
vote up 82 vote down
/* Emits a 7-Hz tone for 10 seconds.
  True story: 7 Hz is the resonant frequency of a
  chicken's skull cavity. This was determined
  empirically in Australia, where a new factory
  generating 7-Hz tones was located too close to a
  chicken ranch: When the factory started up, all the
  chickens died.
  Your PC may not be able to emit a 7-Hz tone. */

main()
{
    sound(7);
    delay(10000);
    nosound();
}

(the sound function in the Turbo C version 2.0 Reference Guide)

link|flag
12  
You need a factory to create 7Hz tones? How do they package them, and what is their market? – lagerdalek Mar 16 at 1:45
1  
I read this comment in Turbo C a long time ago. It's amazing! – Diego Jancic Apr 20 at 1:03
1  
The comment is there. Not sure of the veracity of the story - that could be an urban legend, but I think it could be plausible. I know that resonant frequencies have even brought down stadiums and bridges... – Knobloch Apr 20 at 14:15
1  
It doesn't matter if it's true, its still just as funny. Maybe funnier. Can you imagine making it up? – Sam Hoice Apr 23 at 1:07
show 3 more comments
vote up 81 vote down

#define TRUE FALSE
//Happy debugging suckers

link|flag
11  
That made me spray coffee over my screen. – Mike Kushner Jun 23 at 9:37
show 2 more comments
vote up 79 vote down
//Dear future me. Please forgive me. 
//I can't even begin to express how sorry I am.  
link|flag
2  
I'm always leaving comments for myself in the future... – David A Gibson Apr 14 at 14:39
6  
Future-self is who your comments should be written for anyway. – Commander Keen Apr 20 at 10:50
show 2 more comments
vote up 76 vote down

This one was a living proof, in production code, of micro-management effects in our team:

// I am not responsible of this code.
// They made me write it, against my will.

Followed by less than optimal code, conceived by a braindead zombie someone in my last company mistook for a technical director (*), and who was fond of forcing down code in developer's throats despite his own stupidity.

Of course, when the project leader searched for the cause of the bug, and found it was inside the "less than optimal code", he was less than amused.

(*) I am, of course, mentioning the mighty VB King. If you want to assess the full magnitude of the power of the VB King, you can read the following SO post: http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow#220101..."

link|flag
14  
Your comment in the other posts links back to this one, sending me into an infinite loop for all eternity! – Outlaw Programmer Jan 27 at 3:29
show 3 more comments
vote up 75 vote down

http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107

        // At this point, I'd like to take a moment to speak to you about the Adobe PSD format.
        // PSD is not a good format. PSD is not even a bad format. Calling it such would be an
        // insult to other bad formats, such as PCX or JPEG. No, PSD is an abysmal format. Having
        // worked on this code for several weeks now, my hate for PSD has grown to a raging fire
        // that burns with the fierce passion of a million suns.
        // If there are two different ways of doing something, PSD will do both, in different
        // places. It will then make up three more ways no sane human would think of, and do those
        // too. PSD makes inconsistency an art form. Why, for instance, did it suddenly decide
        // that *these* particular chunks should be aligned to four bytes, and that this alignement
        // should *not* be included in the size? Other chunks in other places are either unaligned,
        // or aligned with the alignment included in the size. Here, though, it is not included.
        // Either one of these three behaviours would be fine. A sane format would pick one. PSD,
        // of course, uses all three, and more.
        // Trying to get data out of a PSD file is like trying to find something in the attic of
        // your eccentric old uncle who died in a freak freshwater shark attack on his 58th
        // birthday. That last detail may not be important for the purposes of the simile, but
        // at this point I am spending a lot of time imagining amusing fates for the people
        // responsible for this Rube Goldberg of a file format.
        // Earlier, I tried to get a hold of the latest specs for the PSD file format. To do this,
        // I had to apply to them for permission to apply to them to have them consider sending
        // me this sacred tome. This would have involved faxing them a copy of some document or
        // other, probably signed in blood. I can only imagine that they make this process so
        // difficult because they are intensely ashamed of having created this abomination. I
        // was naturally not gullible enough to go through with this procedure, but if I had done
        // so, I would have printed out every single page of the spec, and set them all on fire.
        // Were it within my power, I would gather every single copy of those specs, and launch
        // them on a spaceship directly into the sun.
        //
        // PSD is not my favourite file format.
link|flag
1  
s/PSD/Internet Explorer/g. s/file format/web browser/g. Now it matches my thoughts. – tj111 Apr 23 at 18:07
show 1 more comment
vote up 73 vote down
/////////////////////////////////////// this is a well commented line
link|flag
7  
+1, I lol'd on this one too! – Michael G Apr 9 at 21:33
vote up 71 vote down
options.BatchSize = 300; //Madness? THIS IS SPARTA!
link|flag
3  
Haha, that's a good one... – Cotton Apr 4 at 18:48
vote up 70 vote down
  mov si, pCard      ; captain?
link|flag
show 3 more comments
vote up 68 vote down

Next to a local variable that had to be declared just to pass a constant to a library function:

// This only exists because Scott doesn't know how to use const correctly
link|flag
3  
God. I'd love to sprinkle comments like that THROUGHOUT our codebase, only "Scott" is my boss. – mos Oct 9 '08 at 3:30
2  
Crap, I am Scott! (joking a different Scott but I still like it) – smaclell Dec 24 '08 at 6:15
2  
Who found my old projects? – Scottie Jun 16 at 19:31
show 1 more comment
vote up 68 vote down

Somebody complained that the "best" comment was bringing up the worst comments. IMHO, they're funnier, and so "better", but here's the honest best comment I've ever read:

/*
Major subtleties ahead:  Most hash schemes depend on having a "good" hash
function, in the sense of simulating randomness.  Python doesn't:  its most
important hash functions (for strings and ints) are very regular in common
cases:

>>> map(hash, (0, 1, 2, 3))
[0, 1, 2, 3]
>>> map(hash, ("namea", "nameb", "namec", "named"))
[-1658398457, -1658398460, -1658398459, -1658398462]
>>>

This isn't necessarily bad!  To the contrary, in a table of size 2**i, taking
the low-order i bits as the initial table index is extremely fast, and there
are no collisions at all for dicts indexed by a contiguous range of ints.
The same is approximately true when keys are "consecutive" strings.  So this
gives better-than-random behavior in common cases, and that's very desirable.

OTOH, when collisions occur, the tendency to fill contiguous slices of the
hash table makes a good collision resolution strategy crucial.  Taking only
the last i bits of the hash code is also vulnerable:  for example, consider
[i << 16 for i in range(20000)] as a set of keys.  Since ints are their own
hash codes, and this fits in a dict of size 2**15, the last 15 bits of every
hash code are all 0:  they *all* map to the same table index.

But catering to unusual cases should not slow the usual ones, so we just take
the last i bits anyway.  It's up to collision resolution to do the rest.  If
we *usually* find the key we're looking for on the first try (and, it turns
out, we usually do -- the table load factor is kept under 2/3, so the odds
are solidly in our favor), then it makes best sense to keep the initial index
computation dirt cheap.

The first half of collision resolution is to visit table indices via this
recurrence:

    j = ((5*j) + 1) mod 2**i

For any initial j in range(2**i), repeating that 2**i times generates each
int in range(2**i) exactly once (see any text on random-number generation for
proof).  By itself, this doesn't help much:  like linear probing (setting
j += 1, or j -= 1, on each loop trip), it scans the table entries in a fixed
order.  This would be bad, except that's not the only thing we do, and it's
actually *good* in the common cases where hash keys are consecutive.  In an
example that's really too small to make this entirely clear, for a table of
size 2**3 the order of indices is:

    0 -> 1 -> 6 -> 7 -> 4 -> 5 -> 2 -> 3 -> 0 [and here it's repeating]

If two things come in at index 5, the first place we look after is index 2,
not 6, so if another comes in at index 6 the collision at 5 didn't hurt it.
Linear probing is deadly in this case because there the fixed probe order
is the *same* as the order consecutive keys are likely to arrive.  But it's
extremely unlikely hash codes will follow a 5*j+1 recurrence by accident,
and certain that consecutive hash codes do not.

The other half of the strategy is to get the other bits of the hash code
into play.  This is done by initializing a (unsigned) vrbl "perturb" to the
full hash code, and changing the recurrence to:

    j = (5*j) + 1 + perturb;
    perturb >>= PERTURB_SHIFT;
    use j % 2**i as the next table index;

Now the probe sequence depends (eventually) on every bit in the hash code,
and the pseudo-scrambling property of recurring on 5*j+1 is more valuable,
because it quickly magnifies small differences in the bits that didn't affect
the initial index.  Note that because perturb is unsigned, if the recurrence
is executed often enough perturb eventually becomes and remains 0.  At that
point (very rarely reached) the recurrence is on (just) 5*j+1 again, and
that's certain to find an empty slot eventually (since it generates every int
in range(2**i), and we make sure there's always at least one empty slot).

Selecting a good value for PERTURB_SHIFT is a balancing act.  You want it
small so that the high bits of the hash code continue to affect the probe
sequence across iterations; but you want it large so that in really bad cases
the high-order hash bits have an effect on early iterations.  5 was "the
best" in minimizing total collisions across experiments Tim Peters ran (on
both normal and pathological cases), but 4 and 6 weren't significantly worse.

Historical:  Reimer Behrends contributed the idea of using a polynomial-based
approach, using repeated multiplication by x in GF(2**n) where an irreducible
polynomial for each table size was chosen such that x was a primitive root.
Christian Tismer later extended that to use division by x instead, as an
efficient way to get the high bits of the hash code into play.  This scheme
also gave excellent collision statistics, but was more expensive:  two
if-tests were required inside the loop; computing "the next" index took about
the same number of operations but without as much potential parallelism
(e.g., computing 5*j can go on at the same time as computing 1+perturb in the
above, and then shifting perturb can be done while the table index is being
masked); and the dictobject struct required a member to hold the table's
polynomial.  In Tim's experiments the current scheme ran faster, produced
equally good collision statistics, needed less code & used less memory.

Theoretical Python 2.5 headache:  hash codes are only C "long", but
sizeof(Py_ssize_t) > sizeof(long) may be possible.  In that case, and if a
dict is genuinely huge, then only the slots directly reachable via indexing
by a C long can be the first slot in a probe sequence.  The probe sequence
will still eventually reach every slot in the table, but the collision rate
on initial probes may be much higher than this scheme was designed for.
Getting a hash code as fat as Py_ssize_t is the only real cure.  But in
practice, this probably won't make a lick of difference for many years (at
which point everyone will have terabytes of RAM on 64-bit boxes).
*/
link|flag
3  
I'd heard of literate programming, but this is crazy. Great comment! – sep332 Dec 19 '08 at 16:11
6  
Great comment, but IMHO one that doesn't really belong in the source but rather in an accompanying document. This is why document control is just as important as source control. – Konrad Rudolph Feb 9 at 8:52
4  
I don't think this is user-level documentation, you should never need to know this when writing your code. Seems fine where it is to me. – llimllib Feb 10 at 20:58
7  
A comment that explains exactly what was done and why. This is why Python is my favorite language. – cygil Mar 16 at 11:53
9  
To commentators: If its a blog post or a separate document, it's NOT THERE when someone goes to modify the code. Having it in the code is the most convenient for future maintainers. And if the code is changed, there's a good chance the maintainer will update the comment; there's less chance a document or blog post would be changed (and if it was changed then you lose the docs for old versions; comments get versioned in the version control system with the code). – user9876 Apr 20 at 12:50
show 7 more comments
vote up 68 vote down
double penetration; // ouch
link|flag
1  
Any good physics simulation will have a million double-entendres involving the word "penetration." – Charlie Tangora May 21 at 22:04
1  
That's where it came from. The guy who wrote it started to chuckle (in the same room as me), then he added the comment. I suppose initializing it to DOUBLE_MAX would've been even funnier. :) – Marcus Lindblom May 22 at 9:56
vote up 65 vote down

The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the source code was released, I was looking through the code and saw this in the source file for handling doors, at the start of a big block of commented-out code:

// UNUSED
// Separate into p_slidoor.c?

#if 0           // ABANDONED TO THE MISTS OF TIME!!!
//
// EV_SlidingDoor : slide a door horizontally
// (animate midtexture, then set noblocking line)
//
link|flag
2  
I always wondered why that was! – Zachary Yates Oct 9 '08 at 21:15
5  
Basically, the 2D geometry of the level is precompiled into a tree structure that allows efficient sorting of walls during rendering. But, because it's precompiled, you can't change it at runtime. Hexen, which was based on Doom, had a hack for moving walls (doors etc), but it was very limited. – Simon Howard Oct 10 '08 at 10:53
1  
That is some serious obscura. – __ Oct 11 '08 at 18:42
show 1 more comment
vote up 65 vote down
if(m_measures =/*=*/ --index)
{
    ....
link|flag
1  
That's... just insanely stupid and ASKING for trouble... – Matthew Scharley Oct 12 '08 at 4:56
10  
Alternatively, like FALLTHRU, it's indicating that "this code which looks like a bug isn't" – James Ogden Oct 13 '08 at 8:06
2  
That's...horrible. – Robert Rossney Oct 18 '08 at 8:59
3  
Yeah, better to just pull things apart a bit... – Mark Brittingham Dec 15 '08 at 15:43
2  
Yet I'm strangely drawn to it ... – lagerdalek Jan 23 at 11:01
show 6 more comments
vote up 60 vote down
int MyFunction()
{
    // There once was a man named Dave
    int Result = 0

    // Whose code just wouldn't behave
    MyObject *Ptr = new MyObject();

    // He left to go to a meetin'
    Result = Ptr->DoSomething();

    // And left his memory a leakin'
    return Result;
}

C++ Comment

link|flag
2  
why not fix the leak instead? – hasen j Dec 15 '08 at 15:49
34  
It's nice that, just as the memory is left leaking, the limerick is left unended. – Adriano Varoli Piazza Dec 18 '08 at 12:02
2  
I hate meetings. – Dave Nov 14 at 0:18
vote up 56 vote down
// I know the line below is wrong, but it came that way from our IP vendor, and 
// the driver won't work if you "fix" it. I've had to revert this change 4 times
// now. Leave it alone, or I will hunt you down and hurt you
if (r = 0) {
    /* bunch of code here */
}
else
{
   /* even more code here */
}
link|flag
3  
I just love this, it makes my heart smile that someone just couldn't stand leaving the line as it was. Classic. – Banang Apr 15 at 4:27
3  
Wouldn't it be better to replace it with just r = 0; – thomasrutter Apr 22 at 12:09
8  
unless r is an object that overloads the = operator, and they grossly misused operator overloading. – Nelson LaQuet May 5 at 18:17
show 5 more comments
vote up 55 vote down

LANGUAGE!

## fucking imap fucking sucks. what the FUCK kind of committee of
## dunces designed this shit.

## imap talks about 'unique ids' for messages, to be used for
## cross-session identification. great---just what sup needs! except
## it turns out the uids can be invalidated every time the
## 'uidvalidity' value changes on the server, and 'uidvalidity' can
## change without restriction. it can change any time you log in. it
## can change EVERY time you log in. of course the imap spec "strongly
## recommends" that it never change, but there's nothing to stop
## people from just setting it to the current timestamp, and in fact
## that's exactly what the one imap server i have at my disposal
## does. thus the so-called uids are absolutely useless and imap
## provides no cross-session way of uniquely identifying a
## message. but thanks for the "strong recommendation", guys!

## so right now i'm using the 'internal date' and the size of each
## message to uniquely identify it, and i scan over the entire mailbox
## each time i open it to map those things to message ids. that can be
## slow for large mailboxes, and we'll just have to hope that there
## are no collisions. ho ho! a perfectly reasonable solution!

## fuck you, imap committee. you managed to design something as shitty
## as mbox but goddamn THIRTY YEARS LATER.

...

 ## ok, this is FUCKING ANNOYING.
    ##
    ## what imap.rb likes to do is, if an exception occurs, catch it
    ## and re-raise it on the calling thread. seems reasonable. but
    ## what that REALLY means is that the only way to reasonably
    ## initialize imap is in its own thread, because otherwise, you
    ## will never be able to catch the exception it raises on the
    ## calling thread, and the backtrace will not make any sense at
    ## all, and you will waste HOURS of your life on this fucking
    ## problem.
    ##
    ## FUCK!!!!!!!!!
link|flag
1  
I wonder how happy this person would be to learn that Mark Crispin (the one person who developed IMAP; there never was an "IMAP committee" to my knowledge) got laid off from the University of Washington recently, and so the uw-imapd IMAP server is now basically abandonware. – crosstalk Nov 29 '08 at 4:36
16  
This is actually an excellent comment in that it very clearly describes what problems exists, the causes and the chosen remedies. Granted the language is a bit colourful, however that does not in any way change the fact that this is very valuable comment for someone to understand the code later. – hlovdal Apr 10 at 21:16
6  
And also, who cares if he drops the F-bomb, if its useful? How many children will be maintaining this code later? – John Cocktoastan Apr 15 at 20:53
3  
I like both your attitude and your name, John Cocktoastan. – paniq May 5 at 9:25
show 3 more comments
vote up 54 vote down

At the top of a header file:

/* Project : XYZ (Please somebody shoot me!)
 *
 * File : $Id: defs.h,v 1.1 $
 *
 * Purpose : Create havoc rather than peace among many nations
 *
 * History : Back-ported changes that were not in CVS.  Please somebody,
 *  shoot us and put us all out of our misery.
 */

The "XYZ project" (name changed) was a seven-year ordeal. That last comment was written by the one stalwart soul who was involved from the very beginning through to the end.

link|flag
5  
To paraphrase Adrian Monk, he's praying for the sweet release that only death can bring. – __ Oct 11 '08 at 18:39
vote up 53 vote down
// I have to find a better job
link|flag
1  
I'm feeling exactly that. – chakrit Nov 21 '08 at 21:47
vote up 51 vote down

On initialization of a linked list:

last = first; /* Biblical reference */

Succint and hilarious.

link|flag
vote up 48 vote down

Taken from the Quake III source, I stumbled across this in some random slashdot posting. Full source of the file can be found here. It's a particularly fast method of calculating an inverse square root. As for the best comment? It's a common one to be sure, but given that it's attached to the line that does the magic is what makes it great.

float Q_rsqrt( float number )
{
  long i;
  float x2, y;
  const float threehalfs = 1.5F;

  x2 = number * 0.5F;
  y  = number;
  i  = * ( long * ) &y;  // evil floating point bit level hacking
  i  = 0x5f3759df - ( i >> 1 ); // what the fuck?
  y  = * ( float * ) &i;
  y  = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
  // y  = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed

  #ifndef Q3_VM
  #ifdef __linux__
    assert( !isnan(y) ); // bk010122 - FPE?
  #endif
  #endif
  return y;
}
link|flag
3  
The algorithm has a bit of a history: beyond3d.com/content/articles/8. I personally like to think the comment is from Mr. Carmack himself. – bikesandcode Mar 8 at 4:29
1  
I'm pretty sure that's my all-time favorite bit of cryptic code. – ojrac Apr 6 at 18:27
3  
lomont.org/Math/Papers/… – Dan Apr 20 at 9:24
show 3 more comments
vote up 47 vote down

Not quite a comment but a goto label

ICantBelieveImUsingAGoto:
link|flag
vote up 47 vote down
// somedev1 -  6/7/02 Adding temporary tracking of Login screen
// somedev2 -  5/22/07 Temporary my ass
link|flag
1  
Ah, the good permanent temporary solutions :) – Michael Stum Apr 24 at 10:01
prev 1 2 3 4 5 18 next

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