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 4 5 6 7 8 18 next
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 12 vote down
//If you're reading this, then my program is probably a success
link|flag
vote up -1 vote down
// GK Experimental

(GK being the initials of the coder)

Used to indicate parts of code which are, indeed, kind of experimental. :)

A great flag to know that when you hit it during debugging you're probably busy for the upcoming few hours fixing the hack.. ;)

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

All bugs added by David S. Miller davem@redhat.com

link|flag
vote up 3 vote down
struct core_unlocker
{
    core_unlocker(lock)
    {
        m_lock = lock
        unlock(lock)  //Abandon All Locks, Ye Who Enter Core!
    }
    ~core_unlocker()
    {
        lock(m_lock)
    }  
    private:
    Corelock m_lock;
}
link|flag
vote up 2 vote down

first line of a javascript function:

// this part is more difficult

WTF?

link|flag
vote up -1 vote down

I am looking at this in ASP right now,

'SELECT CASE SELECT CASE Department

And I am thinking, Is there any purpose for this at all.

link|flag
vote up 3 vote down

In SJ CA back during the early days of the auction business I worked with a guy named Rick Dorin. He wrote compilers back when you had to poke at cards all day long. One of his error messages was "Too Many Errors... Make fewer!"

link|flag
vote up 0 vote down

at the end of a rather long and convoluted set of while loops and if blocks, the developer in question inserted this final comment:

else { // wobbly wilson said this would never happen!! }

a laconic mixture of wit and sarcasm :)

link|flag
vote up 3 vote down

This is one from my own code, but it's still really funny, and I figure I might as well put it up because it's in public SVN.

// These were orginally up and down. When it was clear the names were
// inapplicable, they were renamed to retain the joke.
// Sorry if you were hoping for useful variable names.
quantum strange, charm;
link|flag
vote up 23 vote down
aComment = 'this is not aComment' # this is aComment
class T(object):
    def f(this):
        this is not aComment
link|flag
4  
+1 because I'm a Crocodile Dundee fan :) – BenAlabaster Dec 30 '08 at 16:10
show 1 more comment
vote up 1 vote down

Some years ago I was working in a large code base that had no unit-testing to speak of.

There was a method buried deep within the code that performed some calendar calculations. It was somewhat broken, had to deal with daylight savings in a very clumsy way due to some unfortunate circumstances.

We had to fix it a couple of times, and every time, we would find something broken some months after.

After spending a whole day fixing it and analyzing it, I put the code in source control, along with a comment that said something like this:

// this code was written after a version trying to do {this} failed because of {reason},
// previously we were doing {this} which failed because of {reason}. This is 
// now written {this} way so that {lots of reasons here}. If you want to touch
// this code, please make sure that it produces the right answers when tested with:
//
// {some sort of unit test}

Ultimately, my team was outsourced. Some days I wonder what happened to this code :)

link|flag
vote up 0 vote down

I've just placed this comment:

// this control (Resistance) is FUTILE!

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

A large project I worked on used StyleCop and FXCop in the automated build with rules to prevent people checking in code with uncommented fields, methods, properties etc., etc.

Someone got so pissed off with having to add comments like "Gets or sets the full name." to self-documenting properties like FullName, that they went to the effort of writing a macro to get around the rules.

The macro inserted XML summary tags for methods, properties etc. with a single non-displaying Unicode character as the tag content which would fool the build rules whilst simultaneously striking his minor blow against mindless insistence on commenting stuff for the sake of it...

...at least until they introduced another rule to check for Unicode characters in comments.

link|flag
vote up 2 vote down

From a legacy Perl CGI script:

# This is convoluted and evil, sorry.
link|flag
vote up 26 vote down

From one of our projects.
Somewhere at the end of one source file.

/*@                                    /\  /\
 * @                                  /  \/  \                        ----- |   | ----      |---\ |    | /--\  --- |   |  ---- /--\ /--\
 *  @                                /        --                        |   |   | |         |   / |    | |      |  |\  |  |    |    |
 *   \---\                          /           \                       |   |---| ----      |--/  |    |  \     |  | \ |  ----  \    \
 *    |   \------------------------/       /-\    \                     |   |   | |         |  \  |    |   -\   |  |  \|  |      -\   -\
 *    |                                    \-/     \                    |   |   | ----      |---/  \--/  \--/  --- |   \  ---- \--/ \--/
 *     \                                             ------O
 *      \                                                 /                 --- |   | ----  /--\        |--\   /--\   /--\
 *       |    |                    |    |                /                   |  |\  | |    |    |       |   | |    | |
 *       |    |                    |    |-----    -------                    |  | \ | ---- |    |       |   | |    | | /-\
 *       |    |\                  /|    |     \  WWWWWW/                     |  |  \| |    |    |       |   | |    | |    |
 *       |    | \                / |    |      \-------                     --- |   \ |     \--/        |--/   \--/   \--/
 *       |    |  \--------------/  |    |
 *      /     |                   /     |
 *      \      \                  \      \
 *       \-----/                   \-----/
 */
link|flag
vote up 4 vote down

I didn't encounter this firsthand, but it makes for a good story (see explanation in my comment):

#define MSGTAG_B33R     0x723 /* RIPLVB */
link|flag
show 3 more comments
vote up 2 vote down

Just added this one today:

// Hardcoded this for time sake ... will make andrew fix later :)
link|flag
vote up 0 vote down
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
'
'  NOTE: DON'T SCREW WITH THIS CODE UNLESS YOU REALLY UNDERSTAND IT!
'
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
link|flag
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 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
12  
That's more like an infinite loop, there's no need for a stack with that example. – Bernard Feb 2 at 21:04
5  
How about "# To understand recursion, see line X" on line X? – Chris Lutz Feb 13 at 1:48
8  
Good. But "To know what recursion is, you have to know what recursion is" is better :) – lk Mar 10 at 15:15
12  
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 2 vote down

In a class named "Bar" (which was a UI Control with a less than descriptive name), the class header:

  /// <summary>I pity the "foo".</summary>

And the Remove() method:

  /// <summary>A "foo" and his money are soon parted.</summary>

Even worse, it was a business partner that pointed it out from the generated documentation. Even worse than that, is those are probably the closest things to useful documentation we ever got out of the guy.

link|flag
vote up 1 vote down
<!-- THIS IS THE MAIN CONFIGURATION FILE FOR THE ENTIRE BLOODY DIRECTORY    -->
<!--    WHATEVER YOU DO, DO NOT EDIT THIS FILE WITHOUT TALKING TO ME FIRST  -->
<!--                                I'M SERIOUS                             -->
<!-- (scroll down) -->
link|flag
vote up 49 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 478 vote down
//When I wrote this, only God and I understood what I was doing
//Now, God only knows
link|flag
41  
That's a phrase from Karl Weierstrass, the mathematician who gave us the wonderful epsilon and delta continuity definition. – Augusto Radtke Dec 5 '08 at 18:32
1  
It's still great. – Friedrich Dec 20 '08 at 9:21
2  
ROFL! ROFL! ROFL! – Trap Mar 1 at 1:50
show 5 more comments
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 22 vote down

Great one from leaked Windows 2000 source code :

!!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!! *
!!!!!!!!!!!!!!DOING SO FUCKS THE BUILD PROCESS!!!!!!!!!!!!!!!! *
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

http://www.kuro5hin.org/story/2004/2/15/71552/7795

link|flag
vote up 1 vote down

Seen in some COBOL back in 1983:

   C   I don't know what this next bit does so I'll jump around it
       GOTO DONE.
link|flag
show 1 more comment
prev 1 4 5 6 7 8 18 next

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