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 still chuckle a little when I read that one... |
|||
|
|
in a homework assignment in college for a teacher who was particularly adamant that we comment our code:
When the assignment was returned, in red pen next to that comment "Yes, I do" |
|||
|
|
|
|
|
|||
|
|
|
|||
|
|
...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... |
|||
|
|
|
|
|
||||
|
|
|
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. |
|||
|
|
|
|
Great one from leaked Windows 2000 source code :
|
|||
|
|
|
|
|
|||
|
|
|
|
From the leaked Win2K source code:
|
|||
|
|
|
|
|
|||
|
|
Nothing like an empty catch block to make one feel that the code is robust.... |
|||
|
|
Once I saw in another discussion something like this:
Clever solution, isn't it :) ? (It's a joke if someone's not sure) |
|||
|
|
|
|||
|
|
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 |
|||
|
|
This is actual code I once had to support. After struggling to comprehend the logic in AstaSaysGooGoo and AstaSaysGaaGaa (where many more astaTempVars were declared and used ) I was ready to give up. I finally looked up and saw the "@author" comment and the whole thing began to makes sense.
PS I changed the actual authors real name so as to avoid me getting in any disputes etc... |
||||||||||||
|
