What is the best comment in source code you have ever encountered?
|
518
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|
From a classic from usenet:
|
|||
|
|
|
|
In the header of a code file heavily edited by everyone on the dev team:
Good ol' Flanders. |
||||||||||||
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
It ended up being broken, too. No wonder it was hard to explain |
|||
|
|
|
|
I don't remember exactly, but the idea was something like this:
It's dirty code ;) |
||||
|
|
|
Q: "What is the best comment in source code you have ever encountered?" A: Easy - the one that helped me solve whatever problem I was having at the time, and there are lots of those! Second best are those that help guide new development from avoiding known pitfalls. |
|||
|
|
|
|
The favorite comment I ever wrote:
And yes, Amazon actually returns XML like this. |
||||||||
|
|
|
In a game where this object can be stepped on, or:
|
|||
|
|
|
|
Ah, I always loved that one... |
|||
|
|
|
|
In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:
A few hundred lines later...
|
|||
|
|
|
|
|
|||
|
|
|
|
I believe in JBoss somewhere there was a line that read return null; //Not really null I always liked that line. |
|||
|
|
|
|
Production source code: // Remove this if you wanna be fired |
|||
|
|
|
|
A few from the Linux kernel:
-
-
|
|||
|
|
we have since released a 4.0.7, 4.0.8, 4.0.9 and 4.1 version... |
|||
|
|
This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.
|
|||
|
|
|
|
In a well known commercial DOS spreadsheet application:
|
||||||||
|
|
|
|
|||
|
|
A German comment in some source-code, translated by machine or very tired human + Google
I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life. |
||||
|
|
|
This one i found it in the package "twisted" for Python 2.5 (the file is tcp.py at line 371)
|
|||
|
|
|
|
Somewhere from the facebook api. |
|||
|
|
|
|
A modification log I noticed in a legacy code
|
|||
|
|
|
|
|
|||
|
|
|
|
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. |
||||
|
|
|
Some time ago I came across:
|
|||
|
|
About 10 years ago I was working at image processing, scanning microscope video frames to detect cell movement. I was working at a particulary intricated function and decided to go out and have a drink with friends. When I came back home I worked a little bit but not too much because I was drunk. The morning after I found a 10-line completely messed-up function with the following comment (obviously written by my other self):
The strangest part was that it even worked. |
||||
|
|
|
Actually saw this the other day, on some code that was written when there was a deadline rush.
|
|||
|
|
|
|
i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....
|
|||
