vote up 358 vote down star
506

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

// var r = dojo.doc.selection.createRange(); // hack to get IE 6 to play nice. What a POS browser. var tr = dojo.doc.selection.createRange().duplicate();

link|flag
vote up 0 vote down

Re eating one's own dogfood: We have the same term in our workplace (granted, only because I introduced it). My code is peppered with comments that say "TODO" and indicate something that ought to be done eventually, but a comment saying "DOGFOOD" (both keywords are always at the beginning of the comment, in all caps) means something that must be done before this program can be used even internally. It's a handy thing to search for, as the word "dogfood" is never going to appear in a quoted string - if it does, I can always just say "dog-food" or something - so even a case-insensitive search will come up with the right results.

Regarding zeroing the accumulator: I've done exactly the same thing when programming an Intel 80x86 (I started on the 8086 and moved up from there into the modern Pentiums). XORing a register with itself is the quickest and tightest way to clear it. Using "MOV AX,0" requires three bytes (opcode and two bytes of literal 16-bit zero), whereas "XOR AX,AX" is only two; it's even more noticeable with the 386-and-higher extended registers, where "MOV EAX,0" requires five bytes (four bytes of 32-bit zero). My C/C++ compiler always zeroes registers this way, so I'd assume it's still the best way (although I haven't studied opcode timing tables in ages, and probably both XOR reg,reg and MOV reg,imm take one clock).

link|flag
show 1 more comment
vote up 0 vote down
%%return_median
hit_the_sweet_spot(Arg)->
.
.
link|flag
vote up 0 vote down

I was doing a database in Access, very simple thing - at least it was supposed to be at the start or I would have done it in Delphi. The client wanted to be able to get the customer info out of the database but they would not enter enough information to reliably identify the customer. I told them to use the phone number as the key as each customer (the way they worked, not for everyone) would have a different number. After a few frantic calls from them, (It's not working we can't enter the customer) I discovered that they were too lazy to look up the phone numbers from their old system and were trying to enter all the numbers they did not know as "n/a". In trying to sort this out for them I ended up with a lot of checking loops in the code and had the comment beside one outcome "This should never be reached if they do what they are supposed to do!!!!!!!!!"

They also asked me once "How can we find the right customer even if we put in the wrong address?" And all for peanuts.

link|flag
vote up 0 vote down

Looking back at old code from classes is fun...

    cardDeck.push_back(*(new card((rank)r, (suit)s)));  // Push each card onto the deck
                                                        // Temp. objects are overrated

While going through some things, it makes me wish I left more comments at 4 AM when I was hacking together random code...

link|flag
vote up 0 vote down

//The below code needs to be commented out.

link|flag
vote up 0 vote down

//Maybe you should make anyone knows your code's purpose.

link|flag
vote up 0 vote down

Our team, just tonight, released a new version of a CSS file that removed the comments from a file which was structured like this:

@charset "UTF-8";
/* Who knew comments here could COMPLETELY ruin our page in Safari? */
body {
        /* Really important stuff here */
        /* Of course, comment or not, this will all get ignored by Safari because 
           its the first rule after the comments which break everything.
           see http://www.w3.org/International/questions/qa-css-charset for the exact details!
        */
}

The funny thing is on the web you'll find people's solutions are to just enter in a bogus element as the first rule below the charset statement to get ignored and proceed as normal...

Food for thought: Where does one put the comment not to comment?

Sidenote: I know this shouldn't be needed due to headers, meta rules etc. Unfortunately we need it as a catch all :(

link|flag
vote up 0 vote down

I really almost like the oh_my_gawd tag better than the comment...

    /*
     * IOC3 is fucked fucked beyond believe ...  Don't even give the
     * generic PCI code a chance to look at it for real ...
     */
    if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 b_type0_cfg_dev[slot].f[fn].c[where ^ (4 - size)];

    if (size == 1)
    	res = get_dbe(*value, (u8 *) addr);
    else if (size == 2)
    	res = get_dbe(*value, (u16 *) addr);
    else
    	res = get_dbe(*value, (u32 *) addr);

    return res ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;

oh_my_gawd:

    /*
     * IOC3 is fucked fucked beyond believe ...  Don't even give the
     * generic PCI code a chance to look at the wrong register.
     */
    if ((where >= 0x14 && where = 0x48)) {
    	*value = 0;
    	return PCIBIOS_SUCCESSFUL;
    }
link|flag
vote up 0 vote down

// TODO: what the hell is this all about?

And then some commented out code.

This was found in our code in work earlier today. I'm not sure if I should laugh or cry...

link|flag
vote up 0 vote down
// TODO: remember to end this part
link|flag
vote up 0 vote down

When coding MAPPER Apps we had some standards and one of these was that there was a list of standard variables in use throughout the suite. One of these - 'V43' was always used to hold a Surname. So imagine my annoyance when the only comment in a big cryptic chunk of MAPPER code I'd been asked to fix was:

Here V43 contains the Surname

link|flag
vote up 0 vote down
// if the resultMap size is less than or equal to zero
// then the product is added
if (resultMap.size() <= 0)
link|flag
vote up 0 vote down

A compilation of my greatest hits:

// Thats the end of the While loop
// Clean up last row.  I really must program better than this.

// Note: You can't immediately tell if the line below works.

// Rounding - blech.  It's assumed that all .5s are rounded up.

// Sort out predictions first.  Seems like the right place for a prediction, 'first'.

// Let's interpret!
link|flag
vote up -1 vote down
// GK Experimental

(GK being the initials of the coder)

Used to indicate parts of code which are, indeed, kind of experimental. :)

A great flag to know that when you hit it during debugging you're probably busy for the upcoming few hours fixing the hack.. ;)

link|flag
vote up -1 vote down

I am looking at this in ASP right now,

'SELECT CASE SELECT CASE Department

And I am thinking, Is there any purpose for this at all.

link|flag
vote up -1 vote down
TextBox1.Text = TextBox1.Text; //Point less yes, who writes this crap?
link|flag
vote up -2 vote down

This is from an old IOCCC winning entry, I had to download the whole archive of winners -- a humongous 1.4 M -- and grep for several phrases I remembered wrong before finding it.

Syntactically this is probably not a comment. Or may be it is. I haven't figured it out. It definitely does not have comment delimiters, but it doesn't have String delimiters either.

C="Lint says "argument Manual isn't used."  What's that
mean?";

No prices for guessing the output from lint.

And for the curious, that entry is here.

link|flag
1  
@coppro, it does compile when you compile the whole thing. Maybe your compiler is broke. – Joshua Apr 20 at 2:46
show 1 more comment
vote up -9 vote down

From an absolutely lovely project I worked on up until recently (yes, I admit, some of those are mine, but I won't tell you which):

if(FAILED(hr))
{
    char fuck[256];
    sprintf(fuck, "GetBuffer() fucking fucked the fuck: %d", hr);
    MessageBoxA(0, fuck, fuck, MB_OK | MB_ICONERROR);
    return;
}


// This is for Chris, since he gets all hot and horny over "uint" instead of "unsigned int"
// ... or maybe he's just a lazy fuck. Who knows!?
using Ogre::uint; 
// movable texts, fucktory
MovableObjectTextFactory* m_pMovableObjectTextFactory;
// diarrhea... shitting CR from the string. complete run...

What he meant was that he's splitting the string by carriage returns to render separately.

// unlock shit (duh, this comment is useless)
pixelBuffer->unlock();
// :HACK: remove me after demo is shipped

Of course, it's still in there ;)

// it's 4am and I can't think of a decent error message.
// my lead just fell asleep at his desk, so I can't ask him.
// [name] went home because he didn't want to get divorced.
// and so it's little ol' me, sitting here, comin up with an
// error message for something that should never ever happen.
ASSERT0(in_len == max_in, "http://www.youtube.com/watch?v=oHg5SJYRHA0"); 
// you want hungarian, you GET hungarian!
for(int fcknglpidxcntvrI = 0; fcknglpidxcntvrI < len; fcknglpidxcntvrI++)
bool bKillSomethingAlive = false; // beating the dead horse instead

Of course, we also have a nice collection of interesting ways to say "Hack":

// HACKOMATIC 
// HMM... HACKXOR?
// HACK'O'ROONY
// AR; yeah I know it's HACKsoup
// HACK SHOT! DOMINATING!
// HACK'KIDO
// HACKku. sepukku. harakiri. kamikaze. ninja.
// HACK'o'NEIL
// HACKsaw

link|flag
prev 1 14 15 16 17 18

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