More funny source code comments (originally from Stack Overflow)

A few more funny source code comments that I think were originally posted on Stack Overflow:

// no comments for you
// it was hard to write
// so it should be hard to read

//Dear future me. Please forgive me.
//I can't even begin to express how sorry I am.

# To understand recursion, see the bottom of this file.
#
# ...
# ...
#
# To understand recursion, see the top of this file.

// drunk, fix later

//somedev1 - 6/7/02 Adding temporary tracking of Logic screen
//somedev2 - 5/22/07 Temporary my a--

This last one isn't a comment, but it's a pretty funny use of throwing catching and throwing an Exception:

catch (Exception up) {
  throw up;
}