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 2 3 4 5 18 next
vote up 1 vote down

The ascii-art skull and crossbones (which is too difficult to recreate here) in Gosling's Emacs source (warning that the ultra-hot screen management package he wrote was not easily understood).

link|flag
vote up 33 vote down

Another classic, by Donald Knuth no less:

Beware of bugs in the above code; I have only proved it correct, not tried it.

link|flag
1  
Not actually a comment: www-cs-faculty.stanford.edu/~knuth/faq.html/… – mjs Apr 20 at 10:17
vote up 283 vote down
/*
 * You may think you know what the following code does.
 * But you dont. Trust me.
 * Fiddle with it, and youll spend many a sleepless
 * night cursing the moment you thought youd be clever
 * enough to "optimize" the code below.
 * Now close this file and go play with something else.
 */
link|flag
13  
Reminds me of a fellow who swore he could optimize a mechanical theorem-proving algorithm I wrote years ago in an AI project. He did improve performance but then the code didn't work...which he swore was my fault. – Mark Brittingham Dec 15 '08 at 15:39
26  
If it doesn't have to work, I can optimize any code to a runtime of zero. – Michael Borgwardt Apr 3 at 16:04
show 5 more comments
vote up 2 vote down
// set break point here - you'll never reach it
link|flag
vote up 3 vote down

A funny typo that was strangely appropriate:

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

link|flag
vote up 88 vote down
// I am not sure if we need this, but too scared to delete.
link|flag
11  
Fairly sure i have written that one – qui Oct 13 '08 at 15:05
2  
Story of my life. – John Lockwood Aug 23 at 20:44
vote up 65 vote down
if(m_measures =/*=*/ --index)
{
    ....
link|flag
1  
That's... just insanely stupid and ASKING for trouble... – Matthew Scharley Oct 12 '08 at 4:56
10  
Alternatively, like FALLTHRU, it's indicating that "this code which looks like a bug isn't" – James Ogden Oct 13 '08 at 8:06
2  
That's...horrible. – Robert Rossney Oct 18 '08 at 8:59
3  
Yeah, better to just pull things apart a bit... – Mark Brittingham Dec 15 '08 at 15:43
2  
Yet I'm strangely drawn to it ... – lagerdalek Jan 23 at 11:01
show 6 more comments
vote up 11 vote down

I don't remember exactly, but the idea was something like this:

Person p = new Person("John", "Doe", "male");
Collection women = new ArrayList();
women.insert(p.getTail());

It's dirty code ;)

link|flag
8  
There was no comment in this answer until I added this one. – Windows programmer Oct 14 '08 at 6:30
vote up 1 vote down

/*********************** Drag And Drop Section - Start (you should be me to mess with this section)*****************************************/

link|flag
vote up 1 vote down
if(count<0) count=0;    //don't get me wrong but this has to be done :p
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 1 vote down
		try {
			dataSource.close();
		}
		catch (SQLException ex) {
			// Do nothing, since we're going to trash this anyway
		}

Of course, this sort of thing is actually a wtf in JDBC (or at least Oracle's JDBC driver) as it can throw SQLExceptions when closing a connection...

link|flag
vote up 6 vote down

Beware of bugs in the above code; I have only proved it correct, not tried it.

That one is by Donald Knuth.

link|flag
2  
duplicate (see above) and it comes from an essay not from code – thomasrutter Apr 23 at 3:28
vote up 7 vote down

// Whoever put this here is an idiot...this doesn't work at all !

But the code is still there...

link|flag
vote up 1 vote down

Nice one in VB.NET that I ran into this morning, got a chuckle ...

''' <summary>
''' Represents an exception that was logged.  Since System.Exception implements IDictionary, it can't be
''' serialized, so I had to write this.  Pretty fucking stupid thing to have to do, System.Exception should
''' be serializable right out of the box, IMHO.
''' </summary>
''' <remarks></remarks>
Public Class LogException
link|flag
show 1 more comment
vote up 21 vote down
catch (Ex as Exception)
{
     // oh crap, we should do something.
}

Nothing like an empty catch block to make one feel that the code is robust....

link|flag
show 2 more comments
vote up 18 vote down
/// <summary>
/// The possible outcomes of an update operation (save or delete)
/// </summary>
public enum UpdateResult
{

    /// <summary>
    /// Updated successfully
    /// </summary>
    Success = 0,

    /// <summary>
    /// Updated successfully
    /// </summary>
    Failed = 1
}
link|flag
1  
Everybody's a winner! – Programmin Tool Apr 20 at 15:00
3  
Everybody's a loser, but the comments say everybody's a winner! – thomasrutter Apr 23 at 2:46
show 2 more comments
vote up 0 vote down

i just noticed myself writing this

// not brilliant solution, but fair enough heh.
link|flag
vote up 228 vote down
try {

} finally { // should never happen

}
link|flag
11  
++. others in my company write this all the time! – CVertex Dec 2 '08 at 16:34
7  
i've seen that comment (and even written it myself) in the past, for things that relalyt shouldn't ever happen (but just in case, here's code to handle the error). The funniest part is that ti's placed in a finally block, which means it should always happen... – Troy Howard Dec 5 '08 at 19:54
8  
Yes, that was the joke. =) – Erik Dec 10 '08 at 0:41
4  
If you have a System.exit() call in the try block, then YES, the finally should never happen ! – romaintaz Feb 6 at 10:06
3  
Reason #984 to use Debug.Assert(). ;) – Scott Hanselman Apr 28 at 19:43
show 6 more comments
vote up 8 vote down

i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....

Catch (Exception e) {
    //eat it
}
link|flag
show 2 more comments
vote up 82 vote down
/* Emits a 7-Hz tone for 10 seconds.
  True story: 7 Hz is the resonant frequency of a
  chicken's skull cavity. This was determined
  empirically in Australia, where a new factory
  generating 7-Hz tones was located too close to a
  chicken ranch: When the factory started up, all the
  chickens died.
  Your PC may not be able to emit a 7-Hz tone. */

main()
{
    sound(7);
    delay(10000);
    nosound();
}

(the sound function in the Turbo C version 2.0 Reference Guide)

link|flag
12  
You need a factory to create 7Hz tones? How do they package them, and what is their market? – lagerdalek Mar 16 at 1:45
1  
I read this comment in Turbo C a long time ago. It's amazing! – Diego Jancic Apr 20 at 1:03
1  
The comment is there. Not sure of the veracity of the story - that could be an urban legend, but I think it could be plausible. I know that resonant frequencies have even brought down stadiums and bridges... – Knobloch Apr 20 at 14:15
1  
It doesn't matter if it's true, its still just as funny. Maybe funnier. Can you imagine making it up? – Sam Hoice Apr 23 at 1:07
show 3 more comments
vote up 0 vote down
[onload_1;block=begin;when 1=0]

Some of the techinques in this template are rather obscure, just trust me, they need to be there.
OTOH a better sollution would be to create a few seperate templates and pick one in the php-script...

[onload_1;block=end]
link|flag
vote up 88 vote down
// I don't know why I need this, but it stops the people being upside-down

x = -x;
link|flag
4  
classic! ... a prof once told me that if you are having trouble with your open gl code just try flipping signs. it was really good advice – luke Nov 22 '08 at 21:45
2  
That's what made it the best comment -- it made no sense at all, and provided no good explanation as to why it worked :) – Chris Jefferson Mar 10 at 17:25
1  
I love this one :) – thomasrutter Apr 22 at 12:10
show 3 more comments
vote up 22 vote down
// This procedure is really good for your dorsolateral prefrontal cortex.

For those of you who are, for some peculiar reason, unaware of the DPC, it's the part of your brain that lights-up when you're deeply engaged in learning something new.

link|flag
vote up 34 vote down
// Any maintenance developer who can't quote entire Monty Python
// movies from memory has no business being a developer. 
const string LancelotsFavoriteColor = "$0204FB"
link|flag
10  
The real WTF is that he didn't use the Color class. Wait... wrong site. – Fowl Apr 19 at 10:56
show 1 more comment
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 152 vote down

From Java 1.2 SwingUtilities:

doRun.run();  // ... "a doo run run".
link|flag
11  
youtube.com/watch?v=dqgtsai2aKY – Sprintstar Apr 6 at 10:59
show 6 more comments
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 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 9 vote down

A German comment in some source-code, translated by machine or very tired human + Google

; Rechnen ja ; have faith in yes

I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life.

link|flag
1  
The original means: "Calculate yes". Hard to say what he tried to say without the context. Probably "Yes, calculate" from a conditional calculation. – Stefan Steinegger Apr 24 at 11:27
prev 1 2 3 4 5 18 next

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