vote up 358 vote down star
517

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 2 vote down

//Iterate by one
$i++;

Unfortunately it was mine, during my "Must comment everything phase".

link|flag
3  
additionally, you probably meant "increment by one." – x0n Dec 2 '08 at 16:26
show 1 more comment
vote up 2 vote down
// good luck!
link|flag
show 1 more comment
vote up 21 vote down
//Mr. Compiler, please do not read this.
link|flag
vote up 1 vote down

While working on some websites I found this at the start of the embedded JS:

I feel so dirty doing this but the guy wanted it in .NET

link|flag
vote up 2 vote down

From C#

#region Hack - Shield Eyes Before Expanding

/// <summary>
/// A single uint with all of the bits set to represent the different tracing
/// </summary>
/// <remarks>
/// Ugly I know, so if you can think of a better way, feel free to rewrite.
/// </remarks>
[Browsable(false)]
public uint TraceBitfield
{
    // Snip
}

#endregion

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

Quite a while ago I came across some connection script and while I don't remember the syntax I do recall the comments as I'm a Pink Floyd fan.

//Attempt Handshake: Hello? This is London calling. Are we reaching you?

//Handshake Failed: I don't understand...he just hung up.

link|flag
show 1 more comment
vote up 17 vote down
//Visual Studio Bug Workaround:
//http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=101677

//To fix 'CJumpToHelper::GetInstance()' : undeclared identifier compiler errors, change the number lines below
//until the file compiles correctly. (This needs to be done anytime a change is made to this file)

    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
    //////////////////////////////////////: There should be 1-10 of these lines
link|flag
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
3  
I hate meetings. – Dave Nov 14 at 0:18
vote up 2 vote down

I just found this one in a custom Linq provider for .net:

//select is a royal pain in the ass where 
//the parameter passed to CreateQuery isn't actually the one that goes in the call
//requiring this workaround.  Not sure how straight Linq to Objects does it.

And this one

//expressions have to be compiled in order to work with the method call on 
//straight Enumerable somehow, LINQ to objects itself magically does this.  
//Reflector shows a mess, so I (Aaron) invented my own way.  God love unit tests!

And i just found this one as well... it just gets better

  //ok, this is a hairy, dirty, and nasty piece of code
  //the alternatives are substantially worse than this though
  //i.e. when you do your own provider, LINQ assumes that
  //you are going to implement your own expression tree visitor and
  //do it all yourself.  Frankly, I still have xmas shopping to do
  //and I really don't want us to be foobared when we get
  //even more extension methods added to LINQ
  //therefore, we are pulling execute based on taking the calling the 
  //standard execute on enumerable, but using our own class
  //
  //optimization can occur from here on an as needed basis, that is
  //check for the value of mex.Method.Name, and write a handler for
  //that method
  //
  //also, it may not be a bad idea to rather than do this reflection 
  //each and every time somehow cache the reflected methodinfos and do 
  //lookups that way that said, we need a complete red/green/refactor 
  //cycle here before I am touching that one

And this one

//Compile that mutherf-ker, invoke it, and get the resulting hash
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 0 vote down

Near the top of a unit:

// Oh what a tangled web we weave
// When first we practice to deceive
// ASTA
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 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 4 vote down

I don't have the exact code package anymore, but I remember the comment vividly.

// The code below needs to be changed immediately.
// I wish I was a little bit taller
// I wish I was a baller
// I wish I had a girl who looked good, I would call her.
link|flag
show 1 more comment
vote up 3 vote down
catch (Domain.ConcurrencyException)
{
    // somebody changed it between the time we loaded it and now.
    // weird, huh?
}
link|flag
vote up 2 vote down

An HORRIBLE patch for a decode (Translation by italian language):

/**
*@return the value 
*@param key: the id of the list of instruments
*@PS this function is a violation of all the laws of the 
*software engineering, 
*commons sense, highway code 
*and ONU decision about the coding.
That sh*t...
*/
link|flag
show 1 more comment
vote up 1 vote down

That one is well-known but I like it (in sys/ufs/ufs_vnops.c:

/*
 * A virgin directory (no blushing please).
 */

in the FreeBSD kernel source tree (and even before, back into 4.xBSD)

link|flag
vote up 3 vote down

In an LKM:

/*
* Dear Richard Stallman,
*
* This one's for you.
*
* Sincerely,
* Me
*
*/
MODULE_LICENSE( "GPL" );
link|flag
vote up 1 vote down
/* Hammer Time! */

I have no idea why or whether he was wearing ripstop nylon parachute pants while writing the code

link|flag
vote up 69 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 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 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 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 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 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 1 vote down

// Description : !!! TODO

link|flag
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 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 47 vote down

Not quite a comment but a goto label

ICantBelieveImUsingAGoto:
link|flag
show 1 more comment
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
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.