vote up 358 vote down star
594

What is the best comment in source code you have ever encountered?

flag
show 3 more comments

locked by Jeff Atwood Apr 28 at 8:55

529 Answers

1 5 6 7 8 9 18
vote up 9 vote down

A modification log I noticed in a legacy code

05/17/99 D JONES COMMENT OUT THE BLOODY AUZIES CODE (02/19/99)

05/17/99 K ROBINSON BLOODY TEXAN CAN'T SPELL AUSSIE CORRECTLY (NO CODE CHANGE - JUST A COMMENT)

link|flag
vote up 9 vote down
public function get state( /* of Palestine back */ ):Boolean
link|flag
vote up 9 vote down

Stating the obvious?

/** Logger */
private Logger logger = Logger.getLogger();
link|flag
show 1 more comment
vote up 8 vote down

Actually saw this the other day, on some code that was written when there was a deadline rush.

//This was clearly written under duress
link|flag
vote up 8 vote down

I think I had something of this sort:


if (case1) { // trivial
...
}
else { // we are screwed
 /* fill in later */
}

ok, so I might have used a stronger word than screwed

link|flag
vote up 8 vote down
   // Some wanker in ISO got rid of ifstream(int), ofstream(int), and
   // fstream(int).  Twit.
link|flag
vote up 8 vote down
// A Gorgon class - For the love of Zeus don't look directly at it!
link|flag
vote up 8 vote down

My favorite (which I must admit I've used many times):

// Yes...I know this is repusive and stupid.
// But <%CompanyOwnerOrManagerToken%>, not knowing a thing about code,
// demanded I do it anyways. SO, go crap on their desk, not mine.
// K THX BYE
link|flag
vote up 8 vote down

First two lines of a file called monitoring.sh:

#!/usr/bin/perl
# perl script disguised as a bash script
link|flag
vote up 8 vote down
// BEGIN HACK
...
// END HACK: I feel dirty.
link|flag
vote up 8 vote down

// This will save us ~0.5 sec for every user and please the machine spirits.

Before very long procedure :)

link|flag
vote up 8 vote down

My favorite is from the late, great Paul DiLascia:

// Author: If this code works, it was written by Paul DiLascia. If not then I don't know who wrote it.

link|flag
3  
vote up 8 vote down

From a battery monitor module in an embedded system:

// batmon.c drives the rastamobile
link|flag
vote up 8 vote down

This whole function is pretty great (from the Linux sunhme.c driver, for the network card nicknamed the Happy Meal by Sun. Because the card that came before that was the "Big MAC". Get it? Get it?)

static void happy_meal_tcvr_write(struct happy_meal *hp,
                              void __iomem *tregs, int reg,
                              unsigned short value)
{
    int tries = TCVR_WRITE_TRIES;

    ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value));

    /* Welcome to Sun Microsystems, can I take your order please? */
    if (!(hp->happy_flags & HFLAG_FENABLE)) {
            happy_meal_bb_write(hp, tregs, reg, value);
            return;
    }

    /* Would you like fries with that? */
    hme_write32(hp, tregs + TCVR_FRAME,
                (FRAME_WRITE | (hp->paddr << 23) |
                 ((reg & 0xff) << 18) | (value & 0xffff)));
    while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
            udelay(20);

    /* Anything else? */
    if (!tries)
            printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");

    /* Fifty-two cents is your change, have a nice day. */

}

link|flag
2  
vote up 7 vote down

This was actually made by me when I was implementing a prototype turned into real code:

// Abandon all hope you who needs to debug this

Yes, someone smarter than me actually refactored the code afterwards (it had to have a good ending).

link|flag
vote up 7 vote down
// Bad Christian, No cookie

Cookie in this context does not refer to a browser cookie

link|flag
vote up 7 vote down
// TODO - Comment this function
link|flag
6  
Uh sorry. That was me. – JohnFx Feb 13 '09 at 1:04
vote up 7 vote down

In the header of an XSLT file:

DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic

link|flag
2  
I agree. Many years ago I did some XSLT wizardry. It was kinda voodoo, but I swear I had fun with it -- when I was not pulling my hair out, that is. – schonarth Oct 21 '08 at 12:33
1  
Right, complicated things are easy but simple things can drive you crazy in XSLT... – André Oct 24 '08 at 15:41
vote up 7 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
4  
duplicate (see above) and it comes from an essay not from code – thomasrutter Apr 23 '09 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 7 vote down

From a lad that clearly had been watching Monty Python:

> // And now, for something completely
> // different:

class theLarch{

link|flag
vote up 7 vote down

// Houston, we have a problem

link|flag
vote up 7 vote down
// fix for groupid > 9 
// if groupid ever gets to 100 everything will break (again)

if (groupid < 10) {
groupid = "0" + groupid;
}
link|flag
show 1 more comment
vote up 7 vote down

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

link|flag
vote up 7 vote down

Exhibit a:

return 0; // Happy ending

Exhibit B:

int32_t Interpolate1DSignal(
  Array1D<float64>::Handle hfInputSamples,         // samples to be interpolated
  Array1D<float64>::Handle hfInterpolationFilter,  // polyphase filter coefficients,
  int32_t iFilterInterpolationFactor,              // # of "rows" in polyphase filter
  int32_t iFilterLength,                           // Length of each row in filter
  float64 fInterpolationFactor,                    // Factor to interpolate the
                                                   // signal by
  float64 fTimingOffset,                           // Offset into the signal (units   
                                                   // of samples)
  Array1D<float64>::Handle hfOutputSamples         // left as an exercise for the reader
);
link|flag
vote up 7 vote down

From Apache Xalan source code:

/**
 * 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";

Further reading on The Daily WTF.

link|flag
1  
Literary References FTW – Frew May 31 at 17:51
vote up 7 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 7 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 7 vote down
// insert comment here
link|flag
vote up 7 vote down
// This is a walkaround for bug #7812

Written by one of our Chinese programmers, for whom English was not his first language.

I really liked this one. I happen to think "walkaround" is almost a better term than "workaround."

link|flag
1 5 6 7 8 9 18

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