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 6 7 8 9 10 18 next
vote up 1 vote down

From Joomla! source:

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

From Joomla! source:

// this is daggy??
link|flag
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 193 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 1 vote down

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

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

On initialization of a linked list:

last = first; /* Biblical reference */

Succint and hilarious.

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

i++; //increment i

link|flag
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 665 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
127  
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 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 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 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 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 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 2 vote down

I saw this once:

//this used to be a comment

link|flag
vote up 3 vote down

Just found this one in some of our PHP code

$s=2; // chicken and bacon wrap for lunch

How useful, luckily $s was self explanatory

link|flag
vote up 1 vote down
-- Beyond this point, they'll be dragons

I find it more pleasingly illustrative with the longer saying ^^

link|flag
2  
here be dragons is better – hasen j Mar 16 at 11:05
show 1 more comment
vote up 0 vote down
    // long live COM'n'Roll
    public enum StatusCode
    {
        //success codes
        S_OK                                            = 1,
        S_NONE                                          = 2,
        S_SQL_OPERATIONS_LISTS_EMPTY                    = 3,

        //error codes
        E_NO_MATCHING_END_FOUND                         = -1,
        E_SEQUENCE_NUMBER_NOT_FOUND_AT_BEGINNING
= -2,
        E_SEQUENCE_NUMBER_NOT_FOUND_AT_END    
= -3,
        E_FORWARD_AND_BACKWARD_OPS_COUNT_DO_NOT_MATCH
= -4,
        E_FORWARD_AND_BACKWARD_IDS_DO_NOT_MATCH         = -5,
        E_IDS_DO_NOT_MATCH                              = -6

    }
link|flag
vote up 1 vote down
// HACK ! COPY/PASTE this and look for another job
link|flag
vote up 19 vote down
// Caveat implementor
link|flag
show 1 more comment
vote up 7 vote down

From Apache Xalan source code:

/**
 * As Gregor Samsa awoke one morning from uneasy dreams he found himself
 * transformed in his bed into a gigantic insect. He was lying on his hard,
 * as it were armour plated, back, and if he lifted his head a little he
 * could see his big, brown belly divided into stiff, arched segments, on
 * top of which the bed quilt could hardly keep in position and was about
 * to slide off completely. His numerous legs, which were pitifully thin
 * compared to the rest of his bulk, waved helplessly before his eyes.
 * "What has happened to me?", he thought. It was no dream....
 */
protected static String DEFAULT_TRANSLET_NAME = "GregorSamsa";

Further reading on The Daily WTF.

link|flag
1  
Literary References FTW – Frew May 31 at 17:51
vote up 1 vote down

This one was amusing for others but less so for me. I had inherited the code (which was ASP) from a developer who had himself inherited it. The first programmer had created some very hard to understand code. The second developer had added a comment as follows (names hidden to protect the not-so-innocent):

'This code was written by **************.
'I haven't a clue what it does. He hasn't a clue what it does.
'Nobody else has a clue what it does or how it does it.
'It is something to do with data but **** knows what.
'The ******* still works so please do not change this code,
'even though it is a complete pile of ****.

So why didn't I find it amusing? Well, it was ASP code for a customer's intranet.

...and it was the customer who highlighted the comment to me.

:-(

link|flag
vote up 20 vote down
//Woulda
if(x) {}
//Shoulda
else if(y) {}
//Coulda
else {}
link|flag
vote up 4 vote down

Not code comments, but SVN commit comments on the same file:

First commit (following of dozens of others after results coming back from testers):

Squashed some IPR mod bugs. The were big and juicy ones, too.

2nd commit:

Squashed some more mod bugs. Those are some nasty bugs, them mod bugs...

3rd:

Squashed some more mod bugs. They are like cockroaches: they'll live through a nuclear war.

4th:

Squashed some more John bugs. They too are like cockroaches: they appear anywhere John goes. Wait. That doesn't sound right.

And 5th:

Same John bug. It didn't die, just played 'possum.

Yes, I was tired of "Fixed bug".

link|flag
vote up 20 vote down

.class {border:1px solid gold;} /* I pitty the fool */

link|flag
prev 1 6 7 8 9 10 18 next

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