What is the best comment in source code you have ever encountered?
|
521
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
This one was a living proof, in production code, of micro-management effects in our team:
Followed by less than optimal code, conceived by a braindead zombie someone in my last company mistook for a technical director (*), and who was fond of forcing down code in developer's throats despite his own stupidity. Of course, when the project leader searched for the cause of the bug, and found it was inside the "less than optimal code", he was less than amused. (*) I am, of course, mentioning the mighty VB King. If you want to assess the full magnitude of the power of the VB King, you can read the following SO post: http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow#220101..." |
||||
|
|
|
|
|||
|
|
|
|
(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.. ;) |
|||
|
|
|
|
In a large investment bank that required all application outages be logged and commented I saw
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
first line of a javascript function:
WTF? |
|||
|
|
|
|
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. |
|||
|
|
|
|
In SJ CA back during the early days of the auction business I worked with a guy named Rick Dorin. He wrote compilers back when you had to poke at cards all day long. One of his error messages was "Too Many Errors... Make fewer!" |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
This is one from my own code, but it's still really funny, and I figure I might as well put it up because it's in public SVN.
|
|||
|
|
|
|
|
||||
|
|
|
Some years ago I was working in a large code base that had no unit-testing to speak of. There was a method buried deep within the code that performed some calendar calculations. It was somewhat broken, had to deal with daylight savings in a very clumsy way due to some unfortunate circumstances. We had to fix it a couple of times, and every time, we would find something broken some months after. After spending a whole day fixing it and analyzing it, I put the code in source control, along with a comment that said something like this:
Ultimately, my team was outsourced. Some days I wonder what happened to this code :) |
|||
|
|
|
|
I've just placed this comment: // this control (Resistance) is FUTILE! |
|||
|
|
|
|
Exhibit a:
Exhibit B:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
From a legacy Perl CGI script:
|
|||
|
|
|
|
From one of our projects. /*@ /\ /\ * @ / \/ \ ----- | | ---- |---\ | | /--\ --- | | ---- /--\ /--\ * @ / -- | | | | | / | | | | |\ | | | | * \---\ / \ | |---| ---- |--/ | | \ | | \ | ---- \ \ * | \------------------------/ /-\ \ | | | | | \ | | -\ | | \| | -\ -\ * | \-/ \ | | | ---- |---/ \--/ \--/ --- | \ ---- \--/ \--/ * \ ------O * \ / --- | | ---- /--\ |--\ /--\ /--\ * | | | | / | |\ | | | | | | | | | * | | | |----- ------- | | \ | ---- | | | | | | | /-\ * | |\ /| | \ WWWWWW/ | | \| | | | | | | | | | * | | \ / | | \------- --- | \ | \--/ |--/ \--/ \--/ * | | \--------------/ | | * / | / | * \ \ \ \ * \-----/ \-----/ */ |
|||
|
|
|
|
I didn't encounter this firsthand, but it makes for a good story (see explanation in my comment):
|
|||
|
|
Just added this one today:
|
|||
|
|
|
|
|
|||
|
|
|
|
I think I had something of this sort:
ok, so I might have used a stronger word than screwed |
|||
|
|
|
|
At the bottom of the file:
|
||||||||||||||||
|
|
|
In a class named "Bar" (which was a UI Control with a less than descriptive name), the class header: /// <summary>I pity the "foo".</summary> And the Remove() method: /// <summary>A "foo" and his money are soon parted.</summary> Even worse, it was a business partner that pointed it out from the generated documentation. Even worse than that, is those are probably the closest things to useful documentation we ever got out of the guy. |
|||
|
|
|
|
|
|||
|
|
|
|
Taken from the Quake III source, I stumbled across this in some random slashdot posting. Full source of the file can be found here. It's a particularly fast method of calculating an inverse square root. As for the best comment? It's a common one to be sure, but given that it's attached to the line that does the magic is what makes it great.
|
||||||||||||
|
|
|
|
||||||||||||
|
|
|
|
||||
|
|
|
Great one from leaked Windows 2000 source code :
|
|||
|
|
|
|
Seen in some COBOL back in 1983:
|
|||
