What is the best comment in source code you have ever encountered?
|
509
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
LANGUAGE!
...
|
||||||||||||||||
|
|
|
One of the most classic ones is the comment made by Pierre de Fermat about his well-known "Last theorem": "The margin of this page is a bit too small to write down the proof". It took more than 350 years before the proof was found... (According to wikipedia this is the original text:)
...and translated into English:
|
||||||||||||||||||||
|
|
|
Found in the JUnit API:
|
|||
|
|
|
|
|
||||||||||||||||||||
|
|
|
Some of the very few comments in 5000+ lines of code in one file
I love the switch!
and no, there are no comments explaining what "modif A" is in the header.
and what's 720? |
||||
|
|
|
Spelunking through the Hardware Abstraction Layer while working for a certain Finnish Mobile Network Equipment Manufacturer I found 100+ occurrences of the Finnish word "puukko". A 'puukko' is an all purpose knife that every Finn has in their toolbox or around the house. It is used for everything from pealing potatoes to performing computer repairs (my observations). I believe in this context it is the Finnish equivalent of the word 'Hack'. My Finnish colleagues denied this and said it meant something more like 'surgical procedure/intervention'... and I almost believed them until I found the comment: /* Perkele ISO Puukko! */ -> Fucking Big Hack! |
|||
|
|
|
|
Seen in the source code for LucasArts' computer game 'The Eidolon' (Which was wierd and wacky in it's own right)...
|
|||
|
|
|
|
|
|||
|
|
|
|
|
||||||||||||||||||||
|
|
|
|
||||||||||||
|
|
|
|
||||
|
|
|
A classic case of why you shouldn't off shore your software development:
|
||||||||||||||||||||
|
|
|
|
|||
|
|
-- Change Log: Not needed. The code is perfect 'cause I wrote it. --If you change it, it will break. I'm in the middle of reviewing some code comments to check they make sense, and saw the modest line above. |
|||
|
|
|
|
|
||||||||||||||||
|
|
|
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
Comment in our Enterprise Class system used for Government purposes
Good ole RH.....company Prez/Lead Developer |
|||
|
|
|
|
//open lid //take sh!t //close lid Comments for a File open, data dump, file close... |
|||
|
|
When writing some Perl years ago, I added these comments at the top and bottom:
The next guy to look at it wasn't so hot at Perl, and spent a while searching documentation for what 'magic' and 'voodoo' did. Since then, I've tried to add more helpful comments... |
||||||||||||
|
|
|
// Catching exceptions is for communists |
|||
|
|
|
|
In the header of an XSLT file: DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic |
|||
|
|
It ended up being broken, too. No wonder it was hard to explain |
|||
|
|
|
|
I believe in JBoss somewhere there was a line that read return null; //Not really null I always liked that line. |
|||
|
|
|
|
* ...and don't just declare it volatile and think you've solved
* the problem. You young punks think you know what volatile
* means... why in my day we had to cast it volatile uphill
* both ways, and the code still didn't work! Whippersnappers...
|
|||
|
|
// The following strings are meant to be funny. Do not edit these strings // unless you are funny, too. If you don't know if you're funny, you're // not funny. If fewer than 2 people unrelated to you have told you that // you're funny, you're not funny. |
|||
|
|
|
|
Upon being forced to write unit tests for anemic domain objects that are nothing but bags of getters and setters (which I was forced to write as well):
|
|||
|
|
|
|
I still don't fully understand what it means, but I have found it to be very true about a lot of code. |
||||
|
|
|
|
||||||||||||
|
