vote up 358 vote down star
525

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 14 15 16 17 18 next
vote up 1 vote down

I once got a call from the client years after working on a big budgeting system written in Paradox 3.5 -

"We've come across a bit of commenting that came up in a debug " -

// This shouldn't happen, if it does, then the bits that automagically 
// worked when I wrote it have stopped working

... !

link|flag
vote up 1 vote down
public GetRandomNumber()
{
    // Chosen by a fairly rolen dice
    return 12;
}
link|flag
show 8 more comments
vote up 1 vote down

Found over a complex code -

//Jesus and this code have one thing in common: both were resurrected

link|flag
vote up 1 vote down

// Holy moses! I've never seen anything so ridiculous in all my life.

// Why do we need to query the AlarmIDs table twice.

// Please tell me sir; I would really like to know.

// This like all the other services have been mangled

// to the point where they are nearly impossible to determine what kind of side affects might occur.

// I am making the smallest changes I can to this code.

// The GetAlarmId method gets the alarm id from the AlarmIDs table.

// Novel idea, why didn't we query for the values be get below all in the same place.

// This should be changed, but right now it will have to remain as is due to time constraints.

// This like all other services really don't do anything fantastically hard, but after the original coders got

// done with them; they are difficult to work with and have an acceptable comfort level.

link|flag
vote up 1 vote down

First at the beginning of an Update to a huge object:

        /*General note to all who tread in the <ObjectName>() code...
         * The SetOriginals() method from the BaseEntity class should be called (and only called) right after the Get() method
         * call as seen above.  Calling the SetOriginals method elsewhere will result in bugs and all kinds of other nasty suprises.
         */

Then after some 200 lines of logic to update the object:

                    //Attempt to explain this confusing mess of code:
                    //First time you save an actual absence this is what happens:
                    //0. The first save saves to the <TableName> table (among other things). (Fig. A)
                    //1. The <CalculationMethod> method is called next which inserts to the <OtherTableName> table. 
                    //(This is the table that keeps track of credits to the case.) (Fig. B)
                    //2. So then you have to call <UpdateCalculations> to move the <TableName> records to the <ThirdTableName> table. (Fig. C)
                    //3. Then you go back and run calculations since you have the debits table (<ThirdTableName>) populated. (Fig D.)
                    //4. Then a final save to save the calculations back to the case. (Fig. E)
                    //Yeah, I know what you're thinking:  this sucks. 10/01/07 XXX

And the developer was right... This sucked HARD!

link|flag
vote up 1 vote down

//Dave chapelle reports errors.

function reporterror() {

davechapelle.trace("FUCK!");

}

link|flag
vote up 1 vote down

# as you can see: I comment the code!

link|flag
vote up 1 vote down
// now that's compact!
list->insert(list->end(),**pitch)->IdxOfSample=(pitch->pos-Offset)*SamplingRate;
link|flag
vote up 1 vote down

[center]

[vrk:Cloud ID="cTags" runat="server" DataTextField="Tag" DataWeightField="Total"
    Width="100%" DataHrefField="Tag" DataHrefFormatString="~/tags.aspx?tag={0}"]
[/vrk:Cloud]

[!--if anybody would like to change the control's color contact with FLORJON--]

[/center]

link|flag
vote up 1 vote down

I just finished a logging framework (that uses Trace, why nothing like this exists I don't know). I made a convenience base class that inherits from TraceListener. It overrides all of the TraceListener methods and routes them into one method - so that is a lot of doc commenting:

// TODO: Need some codemonkey to doc comment this class.
link|flag
vote up 1 vote down

In a bunch of poorly cut & pasted source code for a content management web app:

// load image 1 - JPEG 240x320
img = f1.getImage();
if (check(img))
{
   load(img, Constants.JPEG_240x320);
}

// load image 2 - JPEG 128x128
img = f2.getImage();
if (check(img))
{
   load(img, Constants.JPEG_128x128);
}

...

// load image 13 - GIF 256x256
img = f13.getImage();
if (check(img))
{
   load(img, Constants.GIF256x256);
}

// loaded all of the motherfucking images

note: roughly translated from italian :-)

link|flag
vote up 1 vote down

//too much log will kill you

This comment I wrote it myself, when lowering the priority of some logs which otherwise would write hundreds of MB of crap and seriously crippled an application performance.

link|flag
show 1 more comment
vote up 1 vote down
// The following array may contain either TexturedObjects or ColoredObjects.
// I know, it sucks.
link|flag
vote up 1 vote down
'Mind boggling, gibberish version of a SQL statement, but it work's, so dont touch it
link|flag
show 1 more comment
vote up 1 vote down

In some really crappy vb code (I know it is all crappy but) I found this a comment in an empty if control block that said something like:

If bFound Then
     'I love it when I write kick ass code like this
Else
  .
  .
link|flag
vote up 0 vote down

If you have reached this part in the code, then this program sucks.

link|flag
vote up 0 vote down

(A bunch of code that's really weird looking) //Kludge.

link|flag
vote up 0 vote down

i just noticed myself writing this

// not brilliant solution, but fair enough heh.
link|flag
vote up 0 vote down
[onload_1;block=begin;when 1=0]

Some of the techinques in this template are rather obscure, just trust me, they need to be there.
OTOH a better sollution would be to create a few seperate templates and pick one in the php-script...

[onload_1;block=end]
link|flag
vote up 0 vote down

// Jay knows what's going on here, but will he remember in a year? Not very likely, this code sucks, but it works so do not change it.

This comment was posted above a huge while-if-for block... Oh, and it manipulated an object array of object arrays of object arrays of strings that could be strings or numbers, depending on at least 3 factors... (yes, I had to debug this code and change it and I wrote the comment, however I did not write the original code). ;)

link|flag
vote up 0 vote down
Fix problem where Nulls don't work properly.  Stupid Microsoft!

Code converted Nulls to zero-length strings line by line in roundabout way because the stupid programmer did not understand what Nulls are and had never heard of the Nz() function.

link|flag
vote up 0 vote down

at the end of a rather long and convoluted set of while loops and if blocks, the developer in question inserted this final comment:

else { // wobbly wilson said this would never happen!! }

a laconic mixture of wit and sarcasm :)

link|flag
vote up 0 vote down

I've just placed this comment:

// this control (Resistance) is FUTILE!

link|flag
vote up 0 vote down

A large project I worked on used StyleCop and FXCop in the automated build with rules to prevent people checking in code with uncommented fields, methods, properties etc., etc.

Someone got so pissed off with having to add comments like "Gets or sets the full name." to self-documenting properties like FullName, that they went to the effort of writing a macro to get around the rules.

The macro inserted XML summary tags for methods, properties etc. with a single non-displaying Unicode character as the tag content which would fool the build rules whilst simultaneously striking his minor blow against mindless insistence on commenting stuff for the sake of it...

...at least until they introduced another rule to check for Unicode characters in comments.

link|flag
vote up 0 vote down
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
'
'  NOTE: DON'T SCREW WITH THIS CODE UNLESS YOU REALLY UNDERSTAND IT!
'
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
link|flag
vote up 0 vote down

Near the top of a unit:

// Oh what a tangled web we weave
// When first we practice to deceive
// ASTA
link|flag
vote up 0 vote down

REM Don't delete this print statement ** will die

The process in question was a service in some legacy code

link|flag
vote up 0 vote down

I once implemented some document workflow using MS SQL Server Developer 2000 (the human workflow stuff).

It consisted of a bunch of triggers that would be added to the database to make it follow workflow rules.

In one of the triggers, someone at Microsoft had written something along the lines of:

//Determine if the database has been "Grizzlified"

(The internal name of the product was "Grizzly", so I thought that was funny).

link|flag
vote up 0 vote down
    // long live COM'n'Roll
    public enum StatusCode
    {
        //success codes
        S_OK                                            = 1,
        S_NONE                                          = 2,
        S_SQL_OPERATIONS_LISTS_EMPTY                    = 3,

        //error codes
        E_NO_MATCHING_END_FOUND                         = -1,
        E_SEQUENCE_NUMBER_NOT_FOUND_AT_BEGINNING
= -2,
        E_SEQUENCE_NUMBER_NOT_FOUND_AT_END    
= -3,
        E_FORWARD_AND_BACKWARD_OPS_COUNT_DO_NOT_MATCH
= -4,
        E_FORWARD_AND_BACKWARD_IDS_DO_NOT_MATCH         = -5,
        E_IDS_DO_NOT_MATCH                              = -6

    }
link|flag
vote up 0 vote down

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

followed shortly thereafter by:

// TODO: end this lunacy

link|flag
prev 1 14 15 16 17 18 next

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