What is the best comment in source code you have ever encountered?
|
525
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
I once got a call from the client years after working on a big budgeting system written in Paradox 3.5 - "We've come across a bit of commenting that came up in a debug " -
... ! |
|||
|
|
|
|
|
|||
|
|
Found over a complex code - //Jesus and this code have one thing in common: both were resurrected |
|||
|
|
|
|
// Holy moses! I've never seen anything so ridiculous in all my life. // Why do we need to query the AlarmIDs table twice. // Please tell me sir; I would really like to know. // This like all the other services have been mangled // to the point where they are nearly impossible to determine what kind of side affects might occur. // I am making the smallest changes I can to this code. // The GetAlarmId method gets the alarm id from the AlarmIDs table. // Novel idea, why didn't we query for the values be get below all in the same place. // This should be changed, but right now it will have to remain as is due to time constraints. // This like all other services really don't do anything fantastically hard, but after the original coders got // done with them; they are difficult to work with and have an acceptable comfort level. |
|||
|
|
|
|
First at the beginning of an Update to a huge object:
Then after some 200 lines of logic to update the object:
And the developer was right... This sucked HARD! |
|||
|
|
|
|
//Dave chapelle reports errors. function reporterror() { |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
[center]
[/center] |
|||
|
|
|
|
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:
|
|||
|
|
|
|
In a bunch of poorly cut & pasted source code for a content management web app:
note: roughly translated from italian :-) |
|||
|
|
|
|
//too much log will kill you This comment I wrote it myself, when lowering the priority of some logs which otherwise would write hundreds of MB of crap and seriously crippled an application performance. |
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
In some really crappy vb code (I know it is all crappy but) I found this a comment in an empty if control block that said something like:
|
|||
|
|
|
|
If you have reached this part in the code, then this program sucks. |
|||
|
|
|
|
(A bunch of code that's really weird looking) //Kludge. |
|||
|
|
|
|
i just noticed myself writing this
|
|||
|
|
|
|
|
|||
|
|
|
|
This comment was posted above a huge while-if-for block... Oh, and it manipulated an object array of object arrays of object arrays of strings that could be strings or numbers, depending on at least 3 factors... (yes, I had to debug this code and change it and I wrote the comment, however I did not write the original code). ;) |
|||
|
|
|
|
Code converted Nulls to zero-length strings line by line in roundabout way because the stupid programmer did not understand what Nulls are and had never heard of the Nz() function. |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
I've just placed this comment: // this control (Resistance) is FUTILE! |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
Near the top of a unit:
|
|||
|
|
|
|
REM Don't delete this print statement ** will die The process in question was a service in some legacy code |
|||
|
|
|
|
I once implemented some document workflow using MS SQL Server Developer 2000 (the human workflow stuff). It consisted of a bunch of triggers that would be added to the database to make it follow workflow rules. In one of the triggers, someone at Microsoft had written something along the lines of:
(The internal name of the product was "Grizzly", so I thought that was funny). |
|||
|
|
|
|
|
|||
|
|
|
|
// Oh crap, i think i'm gonna yack followed shortly thereafter by: // TODO: end this lunacy |
|||
|
|
