139
votes
What are some funny loading statements to keep users amused?
Loading Infinite Monkeys....
Monkey 1....................Loaded
Monkey 2....................Loaded
Monkey 3....................Loaded
Monkey 4....................Loaded
Monkey 5............ …
1
vote
What is the most useful script you’ve written for everyday life?
A Quick and Dirty Python script that looked up the DNS for google.com every 5 seconds and beeped once if it succeeded and twice if it failed.
I wrote this during a time when I had to live …
3
votes
What is the best comment in source code you have ever encountered?
struct core_unlocker
{
core_unlocker(lock)
{
m_lock = lock
unlock(lock) //Abandon All Locks, Ye Who Enter Core!
}
~core_unlocker()
{
lock(m_lock …
0
votes
Best error names, failures or exceptions.
I saw an Application throw a "ProgrammerIsStupidException". Apparently it was in response to some kind of can't happen condition. I was never able to reproduce the error.
…
