What is the best comment in source code you have ever encountered?
|
527
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Stating the obvious?
|
|||
|
|
|
|||
|
|
|
|
In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:
A few hundred lines later...
|
|||
|
|
|
|
[center]
[/center] |
|||
|
|
|
|
From Python/ceval.c:
|
|||
|
|
|
|
|
|||
|
|
|
|||
|
|
|
|
This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.
|
|||
|
|
|
|
|
|||
|
|
|
|
//uncomment the following mind if the program manager changes her mind again this week |
|||
|
|
|
|
public static final void attachListener(Object listener) { /* ======================= */ // This does nothing, continue searching /* ======================= */ ... painful with listeners! |
|||
|
|
|
|
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." |
|||
|
|
|
|
Control + A, Rewrite This was a comment added to source control on a previous project as the check in comment. |
|||
|
|
|
|
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;
}
|
|||
|
|
|
|
|
|||
|
|
|
|
I wrote this comment, and now I can't remember WHY it's important... |
|||
|
|
|
|
'I hate nested regions and will delete them along with any code found in them. |
||||
|
|
|
This was for a custom DHCP server that we used in a university's dorms to put computers into 'clean' or 'dirty' IP address pools depending on whether or not they'd registered/installed patches and Antivirus:
|
|||
|
|
|
|
|
|||
|
|
|
|
The below code was seen in a mock tutorial for Python.
The author must have been a fan of Family Guy. ^_^ |
||||
|
|
|
// 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... |
|||
|
|
|
|
We had a group project to create a Connect 4 AI using Min-Max trees. In our move-scoring function, we had it calculate a score for the board, and above that block of code there was this comment:
But it gets better. Our instructor gave us some sample code from a crude AI he had made, and he left a great comment:
|
|||
|
|
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:
|
|||
|
|
|
|
Recompiling FreeTextBox3 for the first time in our application because we need IE8 support... And look what I've found:
|
|||
|
|
Well, here's one I just committed:
Someone could start something like greatcodecomments.com and make some cash. That person, however, is not me. |
|||
|
|
|
|
// need a coffee to fix this. |
|||
|
|
|
|
In a bunch of poorly cut & pasted source code for a content management web app:
note: roughly translated from italian :-) |
|||
|
|
|
|
|
|||
|
|
