vote up 358 vote down star
513

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 10 11 12 13 14 18 next
vote up 2 vote down
// good luck!
link|flag
show 1 more comment
vote up 2 vote down

From C#

#region Hack - Shield Eyes Before Expanding

/// <summary>
/// A single uint with all of the bits set to represent the different tracing
/// </summary>
/// <remarks>
/// Ugly I know, so if you can think of a better way, feel free to rewrite.
/// </remarks>
[Browsable(false)]
public uint TraceBitfield
{
    // Snip
}

#endregion

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

Quite a while ago I came across some connection script and while I don't remember the syntax I do recall the comments as I'm a Pink Floyd fan.

//Attempt Handshake: Hello? This is London calling. Are we reaching you?

//Handshake Failed: I don't understand...he just hung up.

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

I just found this one in a custom Linq provider for .net:

//select is a royal pain in the ass where 
//the parameter passed to CreateQuery isn't actually the one that goes in the call
//requiring this workaround.  Not sure how straight Linq to Objects does it.

And this one

//expressions have to be compiled in order to work with the method call on 
//straight Enumerable somehow, LINQ to objects itself magically does this.  
//Reflector shows a mess, so I (Aaron) invented my own way.  God love unit tests!

And i just found this one as well... it just gets better

  //ok, this is a hairy, dirty, and nasty piece of code
  //the alternatives are substantially worse than this though
  //i.e. when you do your own provider, LINQ assumes that
  //you are going to implement your own expression tree visitor and
  //do it all yourself.  Frankly, I still have xmas shopping to do
  //and I really don't want us to be foobared when we get
  //even more extension methods added to LINQ
  //therefore, we are pulling execute based on taking the calling the 
  //standard execute on enumerable, but using our own class
  //
  //optimization can occur from here on an as needed basis, that is
  //check for the value of mex.Method.Name, and write a handler for
  //that method
  //
  //also, it may not be a bad idea to rather than do this reflection 
  //each and every time somehow cache the reflected methodinfos and do 
  //lookups that way that said, we need a complete red/green/refactor 
  //cycle here before I am touching that one

And this one

//Compile that mutherf-ker, invoke it, and get the resulting hash
link|flag
vote up 2 vote down

An HORRIBLE patch for a decode (Translation by italian language):

/**
*@return the value 
*@param key: the id of the list of instruments
*@PS this function is a violation of all the laws of the 
*software engineering, 
*commons sense, highway code 
*and ONU decision about the coding.
That sh*t...
*/
link|flag
show 1 more comment
vote up 2 vote down

This was the only comment we found in a smartcard product that a previous employer bought in. A load of embedded C and assembler written by a bunch of Dutch cryptography PhDs

// echt halmaal gek - no way!

(It means something like "really completely stupid"...which didn't help us either)

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

I just checked this in the other day...

/// <STERNLY-WORDED-WARNING>
/// Pay attention to this or I will hunt you down.
/// ...
/// </STERNLY-WORDED-WARNING>

Where ("..." == "proprietary stuff that I can't post"). I just liked my STERNLY-WORDED-WARNING element.

link|flag
vote up 2 vote down

I saw this once:

//this used to be a comment

link|flag
vote up 2 vote down
try {
   doSomething();
} catch(err) {
   // Die quietly
   alert(err);
}
link|flag
vote up 2 vote down
// Iced odnako
bool Iced{get;set;}
link|flag
vote up 2 vote down

Something I saw in a .h file years ago.

// It may be a hack, but it works.
link|flag
vote up 2 vote down

Something I saw in a COBOL program that paralyzed me with fear

* All comments pertain to the lines which follow.

What does this mean?

  1. Someone was so uncomfortable with commenting that they had to write a meta-comment?

  2. Someone was in the habit of putting comments below the relevant code and had been told to put comments above? How did that happen?

link|flag
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 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 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 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 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 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 2 vote down
//marco 2007.1.23
//I didn't do it
link|flag
vote up 2 vote down
; I'm checking in this file because Roy (Back to the Future) Goodwin, 
; while testing for Year 2000 problems, inadvertently checked in this 
; file while his machine's clock was set to the year 2000. As a result 
; this file always newer than it's object file so is always recompiled
; after any change is made to any file. I'm checking it in without 
; change to revert the timestamp back to the present.

In the Assembly Language source code of Lotus 1-2-3 for DOS, sometime in the early 1990s before the year 2000 problem was widely anticipated.

link|flag
1  
You posted the same thing back in October: stackoverflow.com/questions/184618/… – Andrew Medico Apr 20 at 4:02
vote up 2 vote down
// haack, phil haack

and:

/* hack, hack, hack, hack, hack hack, hack, hack
 * hackity hack, oh wonderful hacks
 * wonderful hacks, oh wonderful hack, hack, hack
 * hack hack hack... and spam 
 */

EDIT: Just found this in some of my code (the project wishes to remain anonymous):

// yikes, we need to:
/*
 *       o
 *      -|-     < US CROSSING PLATFORM
 *       |\ 
 ************************************************
 *       |          ^ PLATFORM           |
 *       |                           T   |
 *       |                      TROLL^   |
 */
// right now:
/*
 *   o ./_  | 
 *  -|-[]\  |  (_'_) () (\) | ) \|/ (S) < WALL
 *   |\     |    ^ FRIENDLY MESSAGE FROM YOUR FRIENDS AT MICROSOFT
 *  ***********************************************
 *        | ^PLATFORM                       |
 *      ^ SPRAY CAN (IN HAND)
 */
public static class DefaultFonts
{
    public static string SansSerifPath
    {
        get { return @"C:\Windows\Fonts\arial.ttf"; }
    }
    public static string SerifPath
    {
        get { return @"C:\Windows\Fonts\times.ttf"; }
    }
    public static string MonospacePath
    {
        get { return @"C:\Windows\Fonts\courier.ttf"; }
    }
}

How I love puns.

link|flag
show 2 more comments
vote up 2 vote down
def leppard
# what, i cant have my own convention?
end
link|flag
vote up 2 vote down

I don't have the code to share, but imagine this scenario. About a month or two after our Linux Sys Admin left for greener pastures, I had the pleasure of opening a shell script he'd written. I can't recall why I needed to edit it, but that's not what matters. What's important is that the script was about 40 lines long. I scrolled past the commenting (of which there were 37 lines) to reach the actual working code (3 lines). The code was great, but I was curious - why 37 lines of commenting? So, I scrolled to the top and proceeded to read. To my surprise, the commenting was a rap about what the three lines of code did and how to change it. The best part - it was a partial rip off of Nothing But A G Thing by Dr. Dre and Snoop D O DOUBLE G. Thanks Brian!

link|flag
vote up 2 vote down

http://fxr.watson.org/fxr/source/pci/if_rl.c is a source of good ones.

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

//Please comment on your source code

link|flag
vote up 2 vote down
//If only humans could leave things be.

//Please do not edit this code, 
//if you do you wont go to jail, you wont go directly to jail, 
//you wont pass go, you wont collect 200 dollars
link|flag
vote up 2 vote down

I cried when I read this one on a project I was given to maintain.

//Write Code Here

I still cringe :)

link|flag
vote up 2 vote down
// The freshest corpse at the back please.
m_DeadCharacters.push_back( std::make_pair(character, 0.0f) );
// Get rid of the rotting surplus
while( m_DeadCharacters.size() > 3 )
    m_DeadCharacters.pop_front();
link|flag
vote up 2 vote down

/* * TODO: Remove this function

function remove($customer_id) { $this->Customer->remove($id); }

*/

link|flag
prev 1 10 11 12 13 14 18 next

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