Silly code comments you've left to yourself
14 comments
I can't think of any silly comments from my code right now, but I have a new one for you :-)
# ...your computer really doesn't care if you seperate the password from the nonce with a dash; it's a computer, not a 2nd grade teacher[1]
echo 'MD5(): ' . md5(date('ymdHis', time()) . 'password-is-yummy-salty-safety-' . $pw);
1. http://www.matasano.com/log/958/enough-with-the-rainbow-tabl...# Locked and loaded. Data structures assembled. Cry havoc and let slip the dogs of multi-pass rendering.
I can't remember a silly comment right now, but I do remember that, because I couldn't think of anything better, I named one of my variables "charlie" . It wasn't a serious program though and that wasn't an important variable either. Still, I then read it and laughed.
/ the bomb! /
just before an error-prone piece of code. My colleagues had a laugh when they found it. Since then, now I mark the "dangerous zones" with:
just before an error-prone piece of code. My colleagues had a laugh when they found it. Since then, now I mark the "dangerous zones" with:
/*** here be ASTEROIDS ***/[deleted]
I have a page on ourdoings.com that only I use, for the purpose of crediting users. (I've been given cash a few times, and I credit bug-finders.) Just now I added functionality to impersonate a user. The success message is:
You feel like a new person.
You feel like a new person.
My silliest yet...
#TODO:
#TODO:
[deleted]
// [-:) (:-[
I still don't know what I meant but I think I was just doodling.
I still don't know what I meant but I think I was just doodling.
echo 'MD5(): ' . md5(date('ymdHis', time()) . 'password-is-yummy-salty-safety-' . $pw);
A very silly, what-the-hell-was-I-thinking-when-I-wrote-this note to myself.