Actually it's far more common to get the "You broke Reddit" error message. There are a couple more in rotation. I haven't seen the "9/11 changed everything" one in a while, so they may have wisely stopped using that one.
All those creative error pages make me think that it might be a great "dear team, maybe you fancy hacking some funny or exciting non-related webdesign stuff in your free time. If you create something nice and want to, we can use it as our error page" motivation to have your programmers space out and hack as they like while still contributing to the project.
Am I the first person to go "Woah! That's cool!" then look at the code and instantly go "WTF?!"?
- Browser sniffing using `document.all` to test for IE
- Browser sniffing at all!
- Aborting `trace` rather than just removing it
- In `init`, repeatedly calling `document.getElementById` with the same `id`
instead of storing them in variables
- Calling `document.getElementById` every time `parallax`, the `mousemove` event
handler, is triggered rather than `init` storing them *once* in variables that
`parallax` has access to
reply