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 10 11 12 13 14 18 next
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 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

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 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 3 vote down
catch (Domain.ConcurrencyException)
{
    // somebody changed it between the time we loaded it and now.
    // weird, huh?
}
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 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 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 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 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 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 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 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 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 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 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 21 vote down
//Mr. Compiler, please do not read this.
link|flag
vote up 2 vote down
// good luck!
link|flag
show 1 more comment
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 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
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 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 477 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 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 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 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 106 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 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 0 vote down
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
'
'  NOTE: DON'T SCREW WITH THIS CODE UNLESS YOU REALLY UNDERSTAND IT!
'
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
link|flag
vote up 2 vote down

Just added this one today:

// Hardcoded this for time sake ... will make andrew fix later :)
link|flag
prev 1 10 11 12 13 14 18 next

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