vote up 358 vote down star
513

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 9 10 11 12 13 18 next
vote up 0 vote down

I once implemented some document workflow using MS SQL Server Developer 2000 (the human workflow stuff).

It consisted of a bunch of triggers that would be added to the database to make it follow workflow rules.

In one of the triggers, someone at Microsoft had written something along the lines of:

//Determine if the database has been "Grizzlified"

(The internal name of the product was "Grizzly", so I thought that was funny).

link|flag
vote up 40 vote down

on js code:

// hack for ie browser (assuming that ie is a browser)
link|flag
11  
ie is not a browser, it's a monsturous html viewer that enjoys torturing web developers! – hasen j Mar 16 at 11:07
1  
but there are ever firefox/chrome/safari - better than a M$ product – GIANCARLO Apr 24 at 9:12
show 2 more comments
vote up 4 vote down

I just ran across this one in a really simple test C++ program for a class in college.

I was commenting a class.

In the destructor...

// Choose! Choose the form of the Destructor!
// The choice is made! The Traveler has come!
link|flag
vote up 12 vote down
//  Hey, your shoe's untied!

Followed by some dubious code, and within that code,

//  Keep looking!  I think it was the other shoe!

Finally,

//  How strange -- I must be seeing things.  Anyhow, I'm going to go take a shower, now...
link|flag
vote up 2 vote down

I just checked this in the other day...

/// <STERNLY-WORDED-WARNING>
/// Pay attention to this or I will hunt you down.
/// ...
/// </STERNLY-WORDED-WARNING>

Where ("..." == "proprietary stuff that I can't post"). I just liked my STERNLY-WORDED-WARNING element.

link|flag
vote up 666 vote down

I am particularly guilty of this, embedding non-constructive comments, code poetry and little jokes into most of my projects (although I usually have enough sense to remove anything directly offensive before releasing the code). Here's one I'm particulary fond of, placed far, far down a poorly-designed 'God Object':

/**
* For the brave souls who get this far: You are the chosen ones,
* the valiant knights of programming who toil away, without rest,
* fixing our most awful code. To you, true saviors, kings of men,
* I say this: never gonna give you up, never gonna let you down,
* never gonna run around and desert you. Never gonna make you cry,
* never gonna say goodbye. Never gonna tell a lie and hurt you.
*/

I'M SORRY!!!! I just couldn't help myself.....!

And another, which I'll admit I haven't actually released into the wild, even though I am very tempted to do so in one of my less intuitive classes:

// 
// Dear maintainer:
// 
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
// 
// total_hours_wasted_here = 16
//
link|flag
5  
How am I supposed to get Rick A. out of my head. You better start running... – EricSchaefer Feb 2 at 12:39
128  
I love that "total_hours_wasted_here = 16." I'm going to have to use that in my code :) – Bernard Feb 2 at 20:56
11  
rickrolled awesome – DrG Apr 6 at 11:43
46  
+1 for the total hours wasted flag – lagerdalek Apr 14 at 21:30
12  
The counter is the best thing ever. It should be at the top of this thread. In fact I'm voting for this reply and no other. – dasil003 Apr 15 at 19:47
show 9 more comments
vote up 6 vote down

Linux Comments

There are heaps of good ones here ...

These are all comments in linux

http://lwn.net/1998/1015/a/f-word.html

My Favourites:

./arch/sparc/kernel/ptrace.c
/* Fuck me gently with a chainsaw... */

./drivers/scsi/qlogicpti.h
/* Am I fucking pedantic or what? */
link|flag
vote up 4 vote down

i++; //increment i

link|flag
vote up 26 vote down
// If you're reading this, that means you have been put in charge of my previous project.
// I am so, so sorry for you. God speed.
link|flag
vote up 51 vote down

On initialization of a linked list:

last = first; /* Biblical reference */

Succint and hilarious.

link|flag
vote up 4 vote down
// I love the smell of dirty XML in the morning
xml = xml.Replace("xmlns=\"urn:bsd.orion/inventory\"", "");
link|flag
3  
Nooooooo!!!! There are workarounds decent for this!! like (_xsNamespaces = new XmlSerializerNamespaces()).Add("", ""); – Andrei Rinea Apr 24 at 0:48
show 1 more comment
vote up 12 vote down

Honest to God:

// This is crap code but it's 3 a.m. and I need to get this working.
link|flag
show 1 more comment
vote up 26 vote down

I saw this comment on someone's code:

// This comment is self explanatory.

I guess he meant to say 'variable' but the mistake made one funny comment... Think of the circular logic here, and the futility of writing it.

Yuval =8-)

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

From a unit testing class in C#:

#region quis custodiet ipsos custodes?

[Fact]
public void TestPositive()
{
    Assert.Equal(4, 2 + 2);
}

[Fact]
public void TestNegative()
{
    Assert.Equal(5, 2 + 2);
}

#endregion
link|flag
show 1 more comment
vote up 1 vote down

Dennis M Ritchie has a page about some of the ancient UNIX comments here

link|flag
vote up 194 vote down
/**
 * Always returns true.
 */
public boolean isAvailable() {
    return false;
}

Never rely on a comment...

link|flag
20  
I always tell my co-workers. "Comments don't run!!" – Oscar Reyes Mar 27 at 0:43
3  
I believe you meant, "never rely on the code". I'm sure the spec, design and requirements required a return code or true :) – gbjbaanb Mar 29 at 14:28
1  
Things like this actually happen, people don't bother keeping documentation up to date with changes even if it's right above the function. – Henk Apr 23 at 16:28
show 5 more comments
vote up 3 vote down
# let's pretend we are free, for a while

Found this one in front of a class. What followed was a (naive) try to implement an ORM. I still don't understand why he wrote that.

link|flag
vote up 1 vote down

From Joomla! source:

// this is daggy??
link|flag
vote up 1 vote down

From Joomla! source:

// fudge the group stuff
link|flag
vote up 0 vote down

REM Don't delete this print statement ** will die

The process in question was a service in some legacy code

link|flag
vote up 47 vote down

Not quite a comment but a goto label

ICantBelieveImUsingAGoto:
link|flag
vote up 31 vote down
// The ratio of a circle's circumference to its diameter.  Remember to change
// this to 3.0 if you move to a site in Indiana.

#define Pi                                      3.1415927
link|flag
3  
I'm more impressed with the mind-boggling amount of space in that #define. I almost thought Pi was defined to nothing. – Branan Feb 2 at 23:10
1  
This one is ironically funny too. It ridicules Indiana about rounding pi to 1 digit when the very code given does the same thing to only a few more decimal places. – JohnFx Feb 13 at 1:04
8  
I wasn't familiar with the reference, so I wikipediad it: en.wikipedia.org/wiki/Indiana_Pi_Bill – thomasrutter Apr 23 at 2:41
show 2 more comments
vote up 1 vote down

In Latin, "Abandon hope all ye who enter here" from Dante's "Divine Comedy".

link|flag
1  
Why Latin? the original is Italian... "...Abbandonate ogni speranza, voi ch'entrate." – Adriano Varoli Piazza Dec 30 '08 at 13:42
vote up 1 vote down

// Description : !!! TODO

link|flag
vote up 4 vote down

In some assembler, at the end of a line that contained &h723

' RIP LVB

(get it?)

link|flag
2  
Rest In Peace Ludwig van Beethoven (1770 – 1827). 723 hex = 1827 decimal. An oldie but a goodie. +1. – Rontologist Jan 28 at 18:27
vote up 2 vote down

This was the only comment we found in a smartcard product that a previous employer bought in. A load of embedded C and assembler written by a bunch of Dutch cryptography PhDs

// echt halmaal gek - no way!

(It means something like "really completely stupid"...which didn't help us either)

link|flag
show 2 more comments
vote up 5 vote down
// This code was written by a genius so don't try to understand it with
// your tiny little brain.
link|flag
vote up 1 vote down

Sometime in the early 1980's we were writing financial modeling code for utilities in PL/I. Got a call from a client with code blowing up right after a comment

/* Honest this works */

The guy had taken our standard set of financial equations and done about 15 pages of algebra to combine a bunch of code into one equation. After Three Mile Island when utilities had to write off their nuclear plants at huge costs the equation failed because of a FIXED BIN 15 (integer) overflow that would not have happened if the algebra hadn't happened.

link|flag
3  
The compiler didn't believe him – Ikke Mar 9 at 14:42
show 1 more comment
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 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
prev 1 9 10 11 12 13 18 next

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