What is the best comment in source code you have ever encountered?
|
506
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
// 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(); |
|||
|
|
|
|
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). |
|||
|
|
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Looking back at old code from classes is fun...
While going through some things, it makes me wish I left more comments at 4 AM when I was hacking together random code... |
|||
|
|
|
|
//The below code needs to be commented out. |
|||
|
|
|
|
//Maybe you should make anyone knows your code's purpose. |
|||
|
|
|
|
Our team, just tonight, released a new version of a CSS file that removed the comments from a file which was structured like this:
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 :( |
|||
|
|
|
|
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;
}
|
|||
|
|
|
|
// 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... |
|||
|
|
|
|
|
|||
|
|
|
|
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 |
|||
|
|
|
|
|
|||
|
|
|
|
A compilation of my greatest hits:
|
|||
|
|
|
|
(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.. ;) |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
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.
No prices for guessing the output from lint. And for the curious, that entry is here. |
||||
|
|
|
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;
}
|
|||
|
|
