vote up 358 vote down star
510

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

var arbitraryNumber = 10; //I don't know why. Just move on.

link|flag
vote up 5 vote down
/**
 * Not even your mum thinks you're special if you call this method
 */    
onlyYourMumThinksYoureSpecialIfYouCallThisMethod() {...}
link|flag
vote up 5 vote down

I found this on Google Code Search

    // Constructs a tuple with 2 elements (fucking idiot, use std::pair instead!)
    template <typename T0,typename T1>
    inline tuple <T0,T1> make_tuple (const T0& t0,
            const T1& t1) {
            tuple <T0,T1> t;
            t.get<0>() = t0;
            t.get<1>() = t1;
            return t;
    }
link|flag
vote up 5 vote down

My favorite comment of all time was used by a gay friend of mine. He liked to mark all of his TODO comments in VB.NET as - 'TODO: Matt Damon

Sometimes additional information was provided but not usually.

link|flag
vote up 5 vote down
// Fuck.

That, and...

// This code worked before, but my cat decided to take a trip across my keyboard...
link|flag
vote up 5 vote down

/*And now, getting all of that to look half decent in the retarded step brother of the browser family, Internet Fucking Explorer */

link|flag
vote up 5 vote down
else
{
    // rien, c'est parfait.
}
link|flag
vote up 5 vote down

In the middle of a few thousand line JScript file after a completely arbitrary line...

// The world is a happy place.

link|flag
vote up 5 vote down
/**
 * Happy Javadoc haiku:
 *
 * Without Javadoc
 * Builds break in Maven site stage
 * This fixes the build.
 */
link|flag
vote up 5 vote down

BAck in the early eighties, I came across this in assembler (quoting from dim memory): "I don't understand how the following bit works, but it worked in the program I stole it from."

link|flag
vote up 5 vote down

From a battery monitor module in an embedded system:

// batmon.c drives the rastamobile
link|flag
vote up 5 vote down
Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
link|flag
1  
@__ > Then I suspect that you're in the minority. – SnOrfus Mar 6 at 22:38
show 6 more comments
vote up 4 vote down
{
This is a gathering place for all unit tests.
Create a TUnitTestWrapper, then call "RunAllUnitTests".

This class will create an instance of each thing to be tested, and call each of
their unit tests.

It does not really do any testing on it's own; it just gives a common place from
which to call everyone else's tests.

This way, one day, we can automate our testing with each build. [Cue laughter]
}
link|flag
vote up 4 vote down
/* logic */
#ifndef TRUE
# define TRUE 1
#endif /* TRUE */
#ifndef FALSE
# define FALSE 0
#endif /* FALSE */
#define EOF_OK TRUE
#define EOF_NOT_OK FALSE

and the rest of the glorious mkentry.c at the IOCCC page. I can't keep laughing every time I read through this source.

link|flag
vote up 4 vote down

-- Change Log: Not needed. The code is perfect 'cause I wrote it. --If you change it, it will break.

I'm in the middle of reviewing some code comments to check they make sense, and saw the modest line above.

link|flag
vote up 4 vote down

A few hours after showing a friend this post from Coding Horror, I saw this comment on his code:

// MrValdez is a violent Psychopath. Don't piss him off.

link|flag
show 1 more comment
vote up 4 vote down
/* My lawyer told me not to reveal */
link|flag
vote up 4 vote down

This is my favourite comment ever.

/// I intend to do this as shittily as possible because there are many better products that will totally blow this out of the water
/// and we don't have them so whatever

Later on in the file we have more fun like

/// sidestep a bug in WCF (that we can't send types across)
/// or, depending on how you look at, this issue is a Feature

And again later

if( where == null)//be nice
link|flag
show 2 more comments
vote up 4 vote down
// THE LOOP THAT DO EVERYTHING!!!!!!!
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 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 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 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 4 vote down

i++; //increment i

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

I like some of the comments in the GNU binutils. This one is from BFD som.c:

/* You'll never believe all this is necessary to handle relocations
   for function calls.  Having to compute and pack the argument
   relocation bits is the real nightmare.

   If you're interested in how this works, just forget it.  You really
   do not want to know about this braindamage.  */

This one too:

/* Don't ask about these magic sequences.  I took them straight
   from gas-1.36 which took them from the a.out man page.  */

...

/* Keep track of exactly where we are within a particular
   space.  This is necessary as the braindamaged HPUX
   loader will create holes between subspaces *and*
   subspace alignments are *NOT* preserved.  What a crock.  */

Another one:

/* We will NOT put a fucking timestamp in the header here. Every
   time you put it back, I will come in and take it out again. ... */

From gas:

/* Yes this is ugly (storing the broken_word pointer
   in the symbol slot).  Still, this whole chunk of
   code is ugly, and I don't feel like doing anything
   about it.  Think of it as stubbornness in action.  */
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 4 vote down
// TODO: Drive an ashen stake through the foul heart of this function.

And it was a foul function. I have nightmares about it to this day.

link|flag
vote up 4 vote down

Well, these are mine, so WTF is me, as CodingHorror said:

//#region Code for weird cases - do you really want to know?

I once left a comment like so in some ASP:

' Commented out following code, don't delete for when [CustomerName] changes his mind

As it happens, [CustomerName] didn't change his mind, but he DID have access to the web server, and he DID find that line...

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

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