vote up 358 vote down star
511

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 7 8 9 10 11 18 next
vote up 1 vote down
#define SHIT_HAPPENED (BASE + 1)   /* generic shit happened */
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
// 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 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 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 5 vote down
// nobody read comments!
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 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 44 vote down
            } catch (PartInitException pie) {
                // Mmm... pie
link|flag
show 3 more comments
vote up 7 vote down
// insert comment here
link|flag
vote up 12 vote down
$this->getSelect()->where ('main_table.product_id = -1'); // Mom, Dad... sorry
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 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 6 vote down
/**---------START-----------**/

  //  IMPLEMENTATION GOES HERE

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

But No Code ;)

link|flag
vote up 38 vote down

... or die // bitch

link|flag
show 1 more comment
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 8 vote down
   // Some wanker in ISO got rid of ifstream(int), ofstream(int), and
   // fstream(int).  Twit.
link|flag
vote up 15 vote down
//  If you delete the credits, I will fucking kill you.

found in a joomla module.

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

Not in code, but in a related bugtracking system: "This can't be a bug in my code. I coded it very carefully."

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 15 vote down
try {

}
catch (SQLException ex) {
    // Basically, without saying too much, you're screwed. Royally and totally.
}
catch(Exception ex)
{
    //If you thought you were screwed before, boy have I news for you!!!
}
link|flag
vote up 30 vote down
class Act //That's me!!!
{

}
link|flag
1  
+1, Out of all the ones I've read so far, this one made me laugh out loud – Michael G Apr 9 at 21:30
vote up 0 vote down

// Oh crap, i think i'm gonna yack

followed shortly thereafter by:

// TODO: end this lunacy

link|flag
vote up 26 vote down

in a homework assignment in college for a teacher who was particularly adamant that we comment our code:

//I wonder if she actually reads these.

When the assignment was returned, in red pen next to that comment "Yes, I do"

link|flag
vote up 2 vote down

For a memcache wrapper/handler interface pattern class I wrote, I had the following method implemented.

/**
*  Do not use, ever - left in place for testing purposes
*/
function  I_David_WillHuntYouDownAndHurtYou_Badly_IfIFindThisUsedAnyWhereInTheAppLibrary(){
...
}

This was basically a super nuke function to tell all the indvidual memcache services to completely flush themselves, and start over with the individual name space counters I used for keys ( ex .{_counter_key value}_.{_counter_key value} )

Another minor novella I wrote was for an automated downloader for a data vendor, detailing how much I hated this vendor and went to great lengths of postulating that their infrastructure's batch system was run by a gerbil, running on a wheel and after so many revolutions of the wheel the next queued task would be started. It was written over the course of 6 months of adding additional exception handling, estoric checks like ( if we got 768 Bytes of \s characters, that means the query to their DB timed out and the spaces are the result of empty failure print statements.

link|flag
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 97 vote down
long long ago; /* in a galaxy far far away */
link|flag
show 2 more comments
vote up 2 vote down

For one project we had pwlib as a dependency, and at that time it's FreeBSD port was somewhat screwed so I had to build it manually from source. It didn't work out right away, and I had to look into the code; there was some complicated class hierarchy with parts of code generated by macros and its parent calss declaration started with

// The root of all evil ... umm classes
link|flag
vote up 11 vote down

In a game where this object can be stepped on, or:

stepOff(); //bitch
link|flag
prev 1 7 8 9 10 11 18 next

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