vote up 358 vote down star
527

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
// TODO: Delete
link|flag
vote up 0 vote down

// fix it!

link|flag
vote up 1 vote down

// This is a kind of magic...

link|flag
vote up 5 vote down
else
{
    // rien, c'est parfait.
}
link|flag
vote up 0 vote down
/**
 * Hexadecimal digit
 */
protected $version = -1;
link|flag
vote up 9 vote down
public function get state( /* of Palestine back */ ):Boolean
link|flag
vote up 2 vote down

Many years ago I picked up the job to provide support to a project that ran real time on a Z80 and was in assembly (is there any other way to do Z80??) Anyway, the original author was a Nigerian guy by the name of Moses. Maybe I should just stop there. Anyway, scattered throughout the code was this:

XRA A ;MT

Took me awhile to figure out what this was. The instruction itself does nothing more than clear the accumulator. It's a slick way, although I'm not sure if there is an advantage or not. you can just do: LDA 0 But maybe XRA A saves a byte or something. What is does is exclusive or the accumulator with itself. The result is, of course, always zero.

Back to the MT - Empty (get it?)

That's the best I've run across.

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

#define TRUE FALSE
//Happy debugging suckers

link|flag
13  
That made me spray coffee over my screen. – Mike Kushner Jun 23 at 9:37
show 3 more comments
vote up 1 vote down

DataRow[] foundrows = FilterCalendarEntriesBecauseDotNETIsFuckedUp(tbtemp,CalDate);

Not a comment but an interesting function name

link|flag
vote up 0 vote down

//this is a crap way to do this but I ran out of patience

DelButton.click();

link|flag
vote up 0 vote down
catch
{     
    // you’re fucked
    // write out the file somewhere and start screaming “Connection down! Connection down!”
}
link|flag
vote up 5 vote down
/**
 * 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";
link|flag
vote up 15 vote down

An old boss of mine was always going on about how we had to use our own products internally i.e. "Eat our own dog food..."

Many years later I find embedded in some some source that a temporary coworker had done, every function he touched is tagged with:

/* NOT FIT FOR HUMAN CONSUMPTION */
link|flag
vote up 0 vote down

// repopulate, slight hax (or strong assumptions :P) below

link|flag
vote up 7 vote down

// This should fix something that should never happen

link|flag
vote up 0 vote down

Some old fortran code I saw:

 integer *4 one,two,three;

c asssign one to 100 before entering the loop
one=100;

link|flag
vote up 3 vote down

// no comment

link|flag
show 2 more comments
vote up 32 vote down

Our DBA found this in the middle of a 3000 line stored procedure written by a third party.

/* IF DOLPHINS ARE SO SMART, HOW COME THEY LIVE IN IGLOOS? */
link|flag
2  
Page 3, and finally one makes me LOL. – tsilb Nov 20 at 3:43
show 1 more comment
vote up 0 vote down

Whenever we decide to test whether or not execution reaches a certain line in ActionScript, we have a tradition. It has become known as a "balletrace", which comes from doing a trace statement with the string "balle" in it. "Balle" is one of many dirty Norwegian synonyms for testicles, and is used as a curse word. I down't know how many times we've seen this in places it shouldn't be after release...

trace("balle");
link|flag
vote up 76 vote down
double penetration; // ouch
link|flag
1  
Any good physics simulation will have a million double-entendres involving the word "penetration." – Charlie Tangora May 21 at 22:04
1  
That's where it came from. The guy who wrote it started to chuckle (in the same room as me), then he added the comment. I suppose initializing it to DOUBLE_MAX would've been even funnier. :) – Marcus Lindblom May 22 at 9:56
vote up 1 vote down

From http://www.madore.org/~david/computers/callcc.html:

/* Yow!  DEMONS are flying through my NOSE! */
link|flag
vote up 18 vote down

// I put on my robe and wizard hat...

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

Well-written Lisp is one of the easiest to read languages and I love it. But poorly written Lisp can be a nightmare so much worse than bad Java, etc.

Here, we need to create a "group file" if there exist 3 variants of an original file named with the suffixes a, b and c. I had been trying to track down a strange bug where we were getting unnecessary group files...

  (let ((varianta (format nil "~aa" problem))
        (variantb (format nil "~ab" problem))
        (variantc (format nil "~ac" problem)))
    ;;if the A and B variants exist, create a group file
    ;;(why not just check for a? I don't know, this just feels right)
    (when (and (probe-file varianta)
               (probe-file variantb))
      ...)))

Bug: 1, Gut: 0.

Apparently it didn't occur to whoever wrote this that perhaps checking for all three variants would be a good idea. Of course, that was the bug I ended up tracking down a decade after this code was originally written (it predates the first SVN log).

link|flag
vote up 3 vote down
/**
 * This run through all the guipublisherbuyRecord , the records those have
 * diff. is buytotal and prior to buy isRecommendedBillingClickedWarning flag
 * is set if priously RB ran and this time not.
 * 
 * --What?
 * 
 * @return
 * @throws AppException
 */
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

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

http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107

        // At this point, I'd like to take a moment to speak to you about the Adobe PSD format.
        // PSD is not a good format. PSD is not even a bad format. Calling it such would be an
        // insult to other bad formats, such as PCX or JPEG. No, PSD is an abysmal format. Having
        // worked on this code for several weeks now, my hate for PSD has grown to a raging fire
        // that burns with the fierce passion of a million suns.
        // If there are two different ways of doing something, PSD will do both, in different
        // places. It will then make up three more ways no sane human would think of, and do those
        // too. PSD makes inconsistency an art form. Why, for instance, did it suddenly decide
        // that *these* particular chunks should be aligned to four bytes, and that this alignement
        // should *not* be included in the size? Other chunks in other places are either unaligned,
        // or aligned with the alignment included in the size. Here, though, it is not included.
        // Either one of these three behaviours would be fine. A sane format would pick one. PSD,
        // of course, uses all three, and more.
        // Trying to get data out of a PSD file is like trying to find something in the attic of
        // your eccentric old uncle who died in a freak freshwater shark attack on his 58th
        // birthday. That last detail may not be important for the purposes of the simile, but
        // at this point I am spending a lot of time imagining amusing fates for the people
        // responsible for this Rube Goldberg of a file format.
        // Earlier, I tried to get a hold of the latest specs for the PSD file format. To do this,
        // I had to apply to them for permission to apply to them to have them consider sending
        // me this sacred tome. This would have involved faxing them a copy of some document or
        // other, probably signed in blood. I can only imagine that they make this process so
        // difficult because they are intensely ashamed of having created this abomination. I
        // was naturally not gullible enough to go through with this procedure, but if I had done
        // so, I would have printed out every single page of the spec, and set them all on fire.
        // Were it within my power, I would gather every single copy of those specs, and launch
        // them on a spaceship directly into the sun.
        //
        // PSD is not my favourite file format.
link|flag
2  
s/PSD/Internet Explorer/g. s/file format/web browser/g. Now it matches my thoughts. – tj111 Apr 23 at 18:07
show 2 more comments
vote up 3 vote down

My personal favorite is documentation in limerick form:

        Subclassing made Zope and TR
        much harder to work with by far.
            So before you inherit,
            be sure to declare it
        Adapter, not PyObject*

This probably spoils the joke a bit, but since it's a bit obscure I'll explain:

"TR" here refers to "Twisted Reality". Zope 2 and the original twisted.reality package made extensive and unfortunate use of multiple inheritance, which could make it difficult to understand what was going on when you saw a method call. Zope 3, Twisted itself, and twisted.reality's successors (including the most recent, Imaginary) instead generally favor component composition.

link|flag
vote up 22 vote down

From the leaked Win2K source code:

// The magnitude of this hack compares favorably with that of the national debt.

link|flag
vote up 1 vote down
// This part is more difficult

At the top of a method.

That was about 5 lines long.

And not very difficult.

It was the only comment.

In the entire application.

link|flag
prev 1 2 3 4 5 18 next

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