What is the best comment in source code you have ever encountered?
|
510
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
'I hate nested regions and will delete them along with any code found in them. |
|||
|
|
I wrote this comment, and now I can't remember WHY it's important... |
|||
|
|
|
|
|
|||
|
|
|
|
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;
}
|
|||
|
|
|
|
Control + A, Rewrite This was a comment added to source control on a previous project as the check in comment. |
|||
|
|
|
|
BAck in the early eighties, I came across this in assembler (quoting from dim memory): "I don't understand how the following bit works, but it worked in the program I stole it from." |
|||
|
|
|
|
public static final void attachListener(Object listener) { /* ======================= */ // This does nothing, continue searching /* ======================= */ ... painful with listeners! |
|||
|
|
|
|
//uncomment the following mind if the program manager changes her mind again this week |
|||
|
|
|
|
|
|||
|
|
|
|
This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
From Python/ceval.c:
|
|||
|
|
|
|
[center]
[/center] |
|||
|
|
|
|
In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:
A few hundred lines later...
|
|||
|
|
|
|
|
|||
|
|
|
|
Stating the obvious?
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
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 :( |
|||
|
|
|
|
//todo: never to be implemented |
|||
|
|
|
|
Using semi-colons in VB.NET
|
|||
|
|
|
|||
|
|
|
|
My favorite is from the late, great Paul DiLascia: // Author: If this code works, it was written by Paul DiLascia. If not then I don't know who wrote it. |
||||
|
|
|
//Maybe you should make anyone knows your code's purpose. |
|||
|
|
|
|
|
|||
|
|
|
|
This is just one of many... |
|||
|
|
|
|
long time; /* just seems that way */ |
|||
|
|
|
|
In the middle of a few thousand line JScript file after a completely arbitrary line... // The world is a happy place. |
|||
|
|
|
|
|
|||
|
|
