Here is the link What is the best comment in source code you have ever encountered? - Stack Overflow
Couple of my favorite ones Its a must read
//When I wrote this, only God and I understood what I was doing
//Now, God only knows
// somedev1 - 6/7/02 Adding temporary tracking of Login screen
// somedev2 - 5/22/07 Temporary my ass
// drunk, fix later
// Magic. Do not touch.
#define TRUE FALSE //Happy debugging suckers
const int TEN=10; // As if the value of 10 will fluctuate...
:rotfl:
us1415
June 6, 2014, 11:07am
2
Re: Best comments in source code
I have had some too. These are from the code at work:
//Please don't use this code.
//Ok, use it but not for long
//It's not going away ever, is it?
//Hey! Get out of here....3...2....1...
Re: Best comments in source code
Oh those are some good ones. Love the 1st one. Hilarious.
Re: Best comments in source code
Revenge of the programmer!
Re: Best comments in source code
Here are some more from the link above:
Exception up = new Exception("Something is really wrong.");
throw up; //ha ha
// Autogenerated, do not edit. All changes will be undone.
// I dedicate all this code, all my work, to my wife, Darlene, who will
// have to support me and our three children and the dog once it gets
// released into the public.
Monk
June 7, 2014, 2:32pm
7
Re: Best comments in source code