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 8 9 10 11 12 18 next
vote up 1 vote down
try
{
...
}
catch(Exception ex)
{
//if this happens the world is going to end...
}

now guess what happened...

link|flag
show 2 more comments
vote up 15 vote down
//  If you delete the credits, I will fucking kill you.

found in a joomla module.

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

don't know if it it's funny or sad..but one intern I had working with me had this little gem to calculate the price per unit

...

// get the units from the form 
int numUnits = Integer.parseInt(request.getParameter("num_pieces")); // this break at random times

//price 
float price = Float.parseFloat(request.getParameter("price")); // same as above

// Under certain conditions the following code blows up. I don't know those conditions.
float pricePerUnit = price / (float)numUnits;

...
link|flag
3  
This would make a good "what is wrong with this code" interview question, actually. – Cory R. King Mar 29 at 14:43
1  
It's funny because the flaws are obvious – Mark Mar 31 at 6:45
3  
Hm, so the coder didn't notice the DivideByZeroException which would be exclaimed in a stack trace by whatever IDE he/she would ever use. – Nailer Apr 20 at 14:42
3  
Yea he didn't make it through the summer. He kept bugging me about stuff, I'd ask him what errors he was getting in the logs and he was like "huh? my code compiles just fine." He would always ask me the same questions over and over again. This was the last time we offered an internship for the person who scored the highest grade in the class that my company sponsored. This was also a guy who was less than a year from his degree. – ahiru Apr 20 at 18:54
vote up 37 vote down

... or die // bitch

link|flag
show 1 more comment
vote up 6 vote down
/**---------START-----------**/

  //  IMPLEMENTATION GOES HERE

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

But No Code ;)

link|flag
vote up 39 vote down
// John! If you'll svn remove this once more,
// I'll shut you, for God's sake!
// That piece of code is not “something strange”!
// That is THE AUTH VALIDATION.

And what do you think? The code below was safely ‘svn removed’.

link|flag
vote up 2 vote down

This is a comment of mine which I found today while refactoring some code

if( year < 100 ): year += 2000 #lol, Y2K
link|flag
2  
Hmm, a Y2K1C bug in the making – lagerdalek Mar 26 at 22:59
show 3 more comments
vote up 12 vote down
$this->getSelect()->where ('main_table.product_id = -1'); // Mom, Dad... sorry
link|flag
vote up 7 vote down
// insert comment here
link|flag
vote up 44 vote down
            } catch (PartInitException pie) {
                // Mmm... pie
link|flag
show 3 more comments
vote up 2 vote down

I just ran into this in some of my own code. It was in a magento admin template for category selection:

        /*
         * OK; before you read the following code know what I am trying to do.
         * I needed to get the list of child catagories from the root node so that
         * the root node didnt appear in the selection box. But for some stupid
         * fucking reason the stupid fucking DBA wont let me acess the items using
         * indicies and I instead have to use their stupid fucking Iterator
         * implementation. So there.
         */
        $firstList = $this->getRootNode()->getChildren();
        foreach ($firstList as $node)
        {
        	$nodes = $node->getChildren();
        	break;			// wtf?
        }

I am going to remove the language of course out of our flagship product; but I remember I was super frustrated. If I hadn't left a comment, I would try to revise it but then run into the same problems I had before.

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

Back around the time the Hitchhiker's Guide game was new, I had a case where I was testing whether something was scrollable and whether the user was trying to scroll, in a language that restricted variable length. So:

if (scroll and noScroll) # or tea and no tea

link|flag
vote up 5 vote down
// nobody read comments!
link|flag
show 1 more comment
vote up 31 vote down

this has turned up in my own code a few times. obviously I touched it more than once:

// TODO: Fix this.  Fix what?
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 1 vote down
// The hackiest hack that ever did hack

It's in the WordPress blog engine (wp-admin/includes/user.php - if anyone actually wants to see the hacky hack itself).

link|flag
vote up 1 vote down
//If the Current Record is Getting End Dated, We should not create New History Entry. 
//We Just need to Update the Previous History Entry
//If the History is already End Dated and the New Record is now removing End Date, Then 
//We should not update the Previous History End Date. 
//We Just need to Create the New History Record Only.
//Alright.. 
//Alright.... 
//Enough Comments. Code it. :-)
link|flag
vote up 1 vote down
#define SHIT_HAPPENED (BASE + 1)   /* generic shit happened */
link|flag
vote up 0 vote down

In eMule, Preferences.cpp, in the method that forces a minimum upload speed limit proportional to your download speed limit:

uint16 CPreferences::GetMaxDownload(){
//dont be a Lam3r :)
    uint16 maxup=(GetMaxUpload()==UNLIMITED)?GetMaxGraphUploadRate():GetMaxUpload();
    if( maxup < 4 )
    	return (( (maxup < 10) && (maxup*3 < prefs->maxdownload) )? maxup*3 : prefs->maxdownload);
    return (( (maxup < 10) && (maxup*4 < prefs->maxdownload) )? maxup*4 : prefs->maxdownload);
}
link|flag
vote up 10 vote down
/* FIXME This must absolutely be removed before 4.0.7 release
 * TODO really remove this */

we have since released a 4.0.7, 4.0.8, 4.0.9 and 4.1 version...

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

Mine fave was a variable name inside some of the business logic of a school project written in java.

int StupidJava = -1;
link|flag
vote up 1 vote down

Just found this in some Actionscript I have to update...

/*
* spaghetty code in this module.
* hardcoded variables for load paths for the content window.
* Needs (vast) improvement.
*/

..great :(

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

Once I saw in another discussion something like this:

// I can't divide with zero, so I have to divide with something very similar
result = number / 0.00000000000001;

Clever solution, isn't it :) ? (It's a joke if someone's not sure)

link|flag
show 6 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 2 vote down

Classics from the old netscape mozilla code. Personally I like

just can't fuck around. Oh, also moving memory would doom us anyway, and it'll all just be too damn hard to figure out. So, I give up, the Mac just completely utterly sucks complete rocks

but there are a lot of other fun ones.

link|flag
vote up 4 vote down
// TODO: Drive an ashen stake through the foul heart of this function.

And it was a foul function. I have nightmares about it to this day.

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

Back in college:

//why the f*** we have to move this here to make it work

It was highlighted in a printed source when we went to review with the professor.

The reason: some really nasty bug related to a buffer overflow, that affected an unrelated variable with a file handler in other place of the code. Moving the variable would make it work again.

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.