vote up 358 vote down star
526

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

managed to insert this bad pun into our code

for (bo_thans = 0 ; bo_thans < MAX ; bo_thans++)
{
    if(rs == thing[bo_thans])
    {
       found = true;
    }
}

if(!found)
{
   /* Failed to find rs with bo_thans */
   ...
}
link|flag
show 1 more comment
vote up 4 vote down
public int hashCode() {
//sucks, but what're you gonna do

/*
int hash = 7;
for (int i = 0; i < array.length; i++)
    hash = hash * 31 * (null == array[i] ? 0 : array[i].hashCode());
return hash;
*/

return 0;
}
link|flag
vote up 4 vote down

From the UNIX Version 6 Source Code, circa 1975:

/* You are not expected to understand this. */
link|flag
vote up 4 vote down
// TODO: not this

Written by a colleague above a query in desperate need of optimization. In his defense, we'd all been working 70-hour weeks for a few months at that point...

link|flag
vote up 4 vote down

While debugging someone else JavaScript I've seen the following comment:

// Notice: I feel so dirty doing this, but it's the only way to make it cross browser.

But while reading one post of Scott Hanselmen I came across the following quote that goes very well with the comments I found inside the code:

Every line of code you write that you feel gross about will ultimately come back to haunt you. Therefore, avoid writing code that makes you feel dirty.

That's funny :)

link|flag
vote up 4 vote down

I recently saw this:

// you just lost the game

if you don't know what the game is: http://en.wikipedia.org/wiki/The_Game_(mind_game) (it's very silly, but silly in a interesting in a way)

link|flag
show 3 more comments
vote up 4 vote down

This is so much nicer than the scary legal notices and disclaimers you see in many comment headers. From SQLite.

/*
** The author disclaims copyright to this source code.  In place of
** a legal notice, here is a blessing:
**
**    May you do good and not evil.
**    May you find forgiveness for yourself and forgive others.
**    May you share freely, never taking more than you give.
*/
link|flag
vote up 4 vote down

I've seen this code in a function FULL of Explicit weird casts:

// Since today's CPUs are really fast, this is dedicated to those who said:
// " You can't use Moore's Law as an excuse to write bad software. "

The code was horrendous :)

link|flag
vote up 4 vote down
var something TBoolean; //Pickins
link|flag
vote up 4 vote down
# There is a bug in the next line.  $searchParameters != {} will always return true, because {} is creating
# a new hash reference on the fly, and the inequality operater is comparing the memory location of it
# to the memory location of $searchParameters, and they will always be different. 
# This means that the following code will always get executed as long as $nodes is defined.
# I'm leaving it there because it has always been there, and although I'm sure it was originally meant to
# mean %$searchParameters (essentially "is this hash not empty"), I'm afraid to change it.
if ( $nodes && $searchParameters != {} )
{
link|flag
vote up 4 vote down
//BELOW IS THE REAL CODE...JABRONI
		//
		// Yeah, but can you play the outtro to Bark At The Moon?
		//

		//|--------------------------------------------------|------------------------------------------------|
		//|--------------------------------------------------|------------------------------------------------|
		//|--17^16-16-16-17^16-17^16-16-16-17^16-17^16----16-|-19^16----16-19^16-19^16---16-19^16-19^16----17-|
		//|--------------------------------------------19----|-------17----------------17---------------17----|
		//|--------------------------------------------------|----------------------------------------------
link|flag
vote up 4 vote down

public static final void attachListener(Object listener) {

/* ======================= */

// This does nothing, continue searching

/* ======================= */

...

painful with listeners!

link|flag
vote up 4 vote down

my favorite was something like this

 # commented out
 ...
 ### end of the formerly uncommented #2001-02-22 John Doe
link|flag
vote up 4 vote down
// woot, global var. I havent done this for a long time.
link|flag
vote up 4 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
2  
@__ > Then I suspect that you're in the minority. – SnOrfus Mar 6 at 22:38
show 6 more comments
vote up 3 vote down

A funny typo that was strangely appropriate:

assert(0); // should never shit this point

link|flag
vote up 3 vote down

Not really a comment:

DvLog::Log("This silly log message fixes a PSCRIPT5.DLL gpf when printing to Adobe.");

Sad thing is that without the comment, PSCRIPT5.DLL really did blow up ...

link|flag
show 1 more comment
vote up 3 vote down
' Oh man I'm pissed. I think I better go home.

where pissed = drunk

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 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 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 3 vote down
catch (Domain.ConcurrencyException)
{
    // somebody changed it between the time we loaded it and now.
    // weird, huh?
}
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 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 3 vote down

I once worked on the source code of Windows 3.0. (Not, I hasten to add, as a Microsoft employee!) There I came across a file loader that went re-entrant multiple times, and had one example of some nasty punning (just to show how clever the author was).

This mess of re-entrant code was executed with an Intel assembly jmp instruction (in the middle of C code), which went to the label "we_are_not_in_kansas_any_more_toto".

link|flag
show 2 more comments
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 3 vote down

From a contractor in an application for a UK bank.

// i don't know how this works but it does so i'll leave it here anyway

He also added BNP (British very right wing party) as 1 of the dummy customers for testing... our immediate boss was of Asian ethnicity.

link|flag
vote up 3 vote down
<!-- Here it is -->

No other comments anywhere. To this day I don't know what "it" was.

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

// This condition can't happen. Call the police or something.

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

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