vote up 358 vote down star
524

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

This comment is from an old project that i had to debug:

//Haleluya i can go home!
link|flag
2  
i'm not surprised you had to debug the code when he couldn't even spell hallelujah properly. – Abizern Mar 9 at 16:17
vote up 6 vote down

I had to add this one to our old datatable-driven rules engine before I decided to replace it with a scripting language.

		/************************************************************
		*                                                           *
		*  .=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-.       *
		*   |                     ______                     |      *
		*   |                  .-"      "-.                  |      *
		*   |                 /            \                 |      *
		*   |     _          |              |          _     |      *
		*   |    ( \         |,  .-.  .-.  ,|         / )    |      *
		*   |     > "=._     | )(__/  \__)( |     _.=" <     |      *
		*   |    (_/"=._"=._ |/     /\     \| _.="_.="\_)    |      *
		*   |           "=._"(_     ^^     _)"_.="           |      *
		*   |               "=\__|IIIIII|__/="               |      *
		*   |              _.="| \IIIIII/ |"=._              |      *
		*   |    _     _.="_.="\          /"=._"=._     _    |      *
		*   |   ( \_.="_.="     `--------`     "=._"=._/ )   |      *
		*   |    > _.="                            "=._ <    |      *
		*   |   (_/                                    \_)   |      *
		*   |                                                |      *
		*   '-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='      *
		*                                                           *
		*      LASCIATE OGNI SPERANZA, VOI CH'ENTRATE               *
		*************************************************************/
link|flag
vote up 6 vote down

I discovered this gem when viewing the HTML source of an earlier iteration of the TVNZ website (from line 571 if you're playing along at home):

<!-- Hopfully we can do this otherwise the nav is going to be pretty plain and Hong will go postal. -->
link|flag
vote up 6 vote down
// this error could never happen

And then -- customer's call saying he sees an error message saying "this error could never happen"

link|flag
show 1 more comment
vote up 6 vote down
catch (Exception ex)
{ 
    // just die already.
}
link|flag
vote up 6 vote down

/* Here I sit, Joe broken hearted, came to do some sh*t, but only just started. */

In regards to some heavy regular expression input validation.

link|flag
vote up 6 vote down
/**---------START-----------**/

  //  IMPLEMENTATION GOES HERE

/**---------END-----------**/

But No Code ;)

link|flag
vote up 6 vote down

When I was taking a CS class in Highschool, we were being taught in a regular classroom - no computers. All our tests were done on paper that we handed in - one class per sheet of paper. Our teacher was teaching the class in C++ for the first time and would occasionally switch into Pascal mode on the chalkboard. This was awkward, as few of us had interest in learning Pascal.

For larger than in class work, we would do them at home and hand in code + output printouts to be graded. After submitting a few code + output printouts, we collectively realized that the teacher wasn't actually reading the code - just the printouts. To test our theory, I put in a comment on the 3rd page of my code - right between some class declarations:

// If you are reading this, please place a checkmark here [  ]

Of course, I got it back with a big blue "A" on the front and no checkmark to be found.

link|flag
show 1 more comment
vote up 6 vote down
  rescue
    # silently, we fail
    # many validations fade
    # like tear drops in rain
  end

This is just one of many...

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

Using semi-colons in VB.NET

TextBox2.Visible = True';
For Each row In data.Tables(0).Rows
    If row("Customers.Id").ToString <> customerId Then
    	customerId = row("Customers.ID").ToString';
    	name = "Customer Name: " & row("Name").ToString & CrLf';
    	address = "Address: " & row("Address").ToString & CrLf & CrLf';
    	TextBox2.Text += name & address ';s
    End If';
Next';
link|flag
show 1 more comment
vote up 6 vote down

//todo: never to be implemented

link|flag
vote up 6 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 6 vote down
'Do not optimize these next two lines. Compiler bugs lurk.

And they did. Compacting the variable into the expression on the second line resulted in jumping into the middle of the heap and trying to execute data.

link|flag
vote up 6 vote down

$you = live("free") or die("hard");

link|flag
vote up 5 vote down
// TODO: Implement this function!
link|flag
show 2 more comments
vote up 5 vote down
  • THIS PROGRAM HAS CODE THAT DOES NOT MEET STANDARDS

That comment is in nearly every program we have here....

link|flag
vote up 5 vote down

"This will never happen".

Famous last words my friend...

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

Spelunking through the Hardware Abstraction Layer while working for a certain Finnish Mobile Network Equipment Manufacturer I found 100+ occurrences of the Finnish word "puukko".

A 'puukko' is an all purpose knife that every Finn has in their toolbox or around the house. It is used for everything from pealing potatoes to performing computer repairs (my observations). I believe in this context it is the Finnish equivalent of the word 'Hack'.

My Finnish colleagues denied this and said it meant something more like 'surgical procedure/intervention'... and I almost believed them until I found the comment:

/* Perkele ISO Puukko! */ -> Fucking Big Hack!

link|flag
vote up 5 vote down

Seen in the source code for LucasArts' computer game 'The Eidolon' (Which was wierd and wacky in it's own right)...

// He's dead, Jim!
link|flag
vote up 5 vote down

Not a comment but an attribute

[ThereBeDragons]

And one I have seen in an implementation of IHttpHandler

//What is this?
public bool IsReusable
{
    get{return false;}
}
link|flag
show 1 more comment
vote up 5 vote down
// Added because boss changed his mind : 20020111,20020501,20020820, ...
// Commented out because boss changed his mind : 20020201,20020614,20020908, ...

In an ETL script between a mostly hacked RPG database and an SQL Server one. I had something like 10 or 20 occurences of this comment...

link|flag
vote up 5 vote down

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

link|flag
vote up 5 vote down
// This code was written by a genius so don't try to understand it with
// your tiny little brain.
link|flag
vote up 5 vote down

Once, I asked a coworker how to do something (forgot exactly what, some obscure technical calls) with our in-house framework. He said "easy, look HERE", then opens a .java file in his editor and shows me this comment in the middle of several pages of code:

// HERE

I just checked, the comment is still there in this file :)

link|flag
vote up 5 vote down

I guess it got viral, I found the following in a daemon (Linux) that prevents the OOM killer from selecting it:

/*
 * Don't OOM me, bro!
 */

This was right after a mlockall() to prevent the process from swapping, commented:

/*
 * Don't swap me, bro!
 */
link|flag
show 1 more comment
vote up 5 vote down
// nobody read comments!
link|flag
show 1 more comment
vote up 5 vote down
# Don use this. Never!
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.