Search Results

1
vote

What should be included in a programmer’s code of ethics?

Under no circumstances shall an ethical programmer create of or assist the creation of DRM Response to comment: That's not DRM that's security software for privacy protection. …
0
votes

What’s Your Motto As A Developer/Programmer?

Google knows everything. StackOverflow knows less, but it's better organized. …
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............ …
2
votes

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 …
609
votes

What real life bad habits has programming given you?

I try to compress orders at restaurants by giving all necessary information in one packet. This frequently does not work, because the order taker's task buffer is limited to one piece of data at a …
2
votes

Best programming novel to take on holiday

The Metamorphosis of Prime Intellect is an odd but fun story of a post singularity dystopia. …
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. …