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 |
|
|
I saw this comment on someone's code:
I guess he meant to say 'variable' but the mistake made one funny comment... Think of the circular logic here, and the futility of writing it. Yuval =8-) |
|||
|
|
|
|||
|
|
|
|
From one of our projects. /*@ /\ /\ * @ / \/ \ ----- | | ---- |---\ | | /--\ --- | | ---- /--\ /--\ * @ / -- | | | | | / | | | | |\ | | | | * \---\ / \ | |---| ---- |--/ | | \ | | \ | ---- \ \ * | \------------------------/ /-\ \ | | | | | \ | | -\ | | \| | -\ -\ * | \-/ \ | | | ---- |---/ \--/ \--/ --- | \ ---- \--/ \--/ * \ ------O * \ / --- | | ---- /--\ |--\ /--\ /--\ * | | | | / | |\ | | | | | | | | | * | | | |----- ------- | | \ | ---- | | | | | | | /-\ * | |\ /| | \ WWWWWW/ | | \| | | | | | | | | | * | | \ / | | \------- --- | \ | \--/ |--/ \--/ \--/ * | | \--------------/ | | * / | / | * \ \ \ \ * \-----/ \-----/ */ |
|||
|
|
|
|
|
|||
|
|
...it made my boss think someone had hacked in. He didn't know the joke. |
||||
|
|
|
|
|||
|
|
|
|
|
||||||||||||
|
|
|
// Catching exceptions is for communists |
|||
|
|
|
|
That was line 2 of a 4000+ line PL/SQL procedure. And the only comment. 4 years after that procedure was developed, later still hadn't come... |
|||
|
|
|
|
|
||||
|
|
|
Great one from leaked Windows 2000 source code :
|
|||
|
|
|
|
long time; /* just seems that way */ |
|||
|
|
|
|
I worked with a guy who was raised a Muslim, but had a rather tongue-in-cheek view of the religion. He left this comment above a particularly nasty chunk of code:
|
|||
|
|
|
|
Classic ASP:
|
||||
|
|
|
For those of you who are, for some peculiar reason, unaware of the DPC, it's the part of your brain that lights-up when you're deeply engaged in learning something new. |
|||
|
|
|
|
|
|||
|
|
|
|
Once I saw in another discussion something like this:
Clever solution, isn't it :) ? (It's a joke if someone's not sure) |
|||
|
|
From the leaked Win2K source code:
|
|||
|
|
|
|
|
|||
|
|
Nothing like an empty catch block to make one feel that the code is robust.... |
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
Top of sqlite source files:
|
|||
|
|
|
|
There was some old javascript code, quite well written tho. Then was a comment line
followed by a function 4 people spent a day to understand what it's doing. Finally we realised it's not even used and does nothing. |
||||
|
|
|
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
To protect the guilty the values have been changed This one was left behind by a contractor who had been working on a chunk of code responsible for testing email logins. We were in disbelief so we tried it out and it was a valid login to his personal account; we double-checked the revision history and he had two check-ins that edited it: one to add the code, and the second to comment it out. We added the artwork and left the rest alone; another dev decided it would be fun to send him emails from his future self (ala The Office) and said it took nearly two full weeks of daily emails before the login stopped working.
My favorite part isn't that he did it, or that he accidently left it in place for a check-in--but that when he came back across it he just commented it out rather than deleting it. We never would have looked at the original revision if we never knew it was there :-D |
|||
