vote up 149 vote down star
133

What wonderful advice can we learn from the "What not to do" school of hard knocks?

flag
1  
Hopefully no one is contemplating downvoting the question, but if you are, keep in mind that we learn better from hearing other's mistakes than we learn from so called 'best practices'. – Adam Davis Sep 15 '08 at 15:10
8  
There is already an entire web site dedicated to this subject: thedailywtf.com – Anders Sandvig Sep 15 '08 at 17:01
1  
The dailywtf is very cool for pointing out others mistakes, but they are not voted on. – DrFloyd5 Sep 15 '08 at 20:42
show 4 more comments

239 Answers

1 2 3 4 5 8 next
vote up 614 vote down check

Our product was used by police forces to input data about people that are arrested and what they are charged with. It would also store digital mugshots and fingerprints, and electronically submit the fingerprints to the FBI. While testing, we would routinely use our own fingerprints for fake bookings that got inserted into the test database. Except for the time that I "temporarily" switched the test machines over to the production database and forgot to switch them back...

Cleaning up our production database was easy, but it took a court order signed by the superintendent of the Boston Police Department to remove my colleague's fingerprints from the FBI database -- she had booked herself under the name "Elroy Jetson".

link|flag
8  
This story would have been better if your co-worker had been arrested. :) – MusiGenesis Dec 12 '08 at 19:52
49  
Please do send it to the DailyWTF. With a better narrative, this will be one of the hottest stories. – Ubersoldat Jan 8 at 11:02
16  
Why did the developers even have acccess to the product database? – Ian Ringrose Mar 20 at 9:11
1  
+1 to Ian Ringrose comment, i don't buy it, I work in the federal government in the banking commission in Mexico and even in my third world country I don't have access to the production database – Juan Zamudio Mar 29 at 7:54
22  
This story is 100% true. At the time, the security was terrible. We could walk into the police HQ, by the front door guard who didn't know us, and get into the server room with just a 3-digit door lock. They have since improved it, and I doubt we'd have direct access to the DB now. – Graeme Perrow Mar 29 at 18:20
show 17 more comments
vote up 0 vote down

Typing in 'rm -rf *' in the wrong command window, you know, the one logged in as root that happened to be cd'd into /bin. Thankfully rm deleted itself before any catastrophic damage was done.

link|flag
5  
rm -rf * won't stop when it deletes itself. – ΤΖΩΤΖΙΟΥ Sep 15 '08 at 22:54
3  
I'm calling shenanigans. – Bernard Sep 16 '08 at 3:36
show 8 more comments
vote up 36 vote down

http://thedailywtf.com

link|flag
2  
That site might be a better place to post these kind of stories though. I think this post would get pretty cluttered with everybody's wtf and especially the ensuing arguments over whether it truly is a wtf or not. – Bloodhound Sep 15 '08 at 16:55
show 5 more comments
vote up 3 vote down

When trying to root out record locks on the live system of one of the biggest warehouses in the UK at 1:30am, don't accidentally kill the procman.

link|flag
vote up 23 vote down

Joined an open source project. Got the latest code. Made a change. Checked it in. Broke the build. Spent an hour trying to figure out how to undo my changes and get the build working again.

Its one thing screwing up when nobody else can see you. Its another to do it where everybody has a notification tray app that pops up a nice red X when you screw up.

Lessons learned: Know you tools before using them. Follow this pattern when working on a project with multiple contributors: Get latest, make changes, test, get latest, run all tests, check in.

link|flag
2  
Breaking the build on one's very first commit to a big open source project, where have I heard that before? Oh wait, I did it! Oops. :D – KTC Sep 20 '08 at 4:37
show 4 more comments
vote up 26 vote down

Probably when I used a hardcoded password for the administrative dashboard of one of my earliest php sites. The client never noticed, but I felt really bad about it. Best of all, the password was submitted via GET. Later a prospective employer noticed. I just shrugged because what could be said?

There's basically no excuse for that.

link|flag
1  
I've seen worse. Every PC in every government hospital in the state of a certain western country has software which uses Crystal Reports via ODBC for reporting. One day I was trying and find out why a report wasn't working after one of their updates (I was working in the hospital at the time). I loaded up the report into Crystal Reports and it prompted me for a password for the "Report" user. Of course I guessed it first time...the problem? This "Report" user was (and may still be) in the database admin group. So basically every PC could connect to and alter any database or table... – Si Sep 24 at 5:03
2  
...I couldn't believe this, double and triple checked, then modified my own user to prove it. Some of the DB's have VERY sensitive medical data. So I report it to my boss and we quietly have a word with the team responsible...yeah, they know about it, too hard to fix. WTF! So we formally notify the team and it gets "actioned". Nothing changed in the 2 years after I reported it, and this was ~5 years ago and the AFAIK the software is still in use today. – Si Sep 24 at 5:06
show 4 more comments
vote up 0 vote down

Similar to MikeReedell, I did an rm -rf, but instead of typing in the pathname, I was just wildly bashing tab, relying on bash completion. Which was missing. And soon, so was /usr/.

link|flag
show 2 more comments
vote up 30 vote down

Hit my credit card with 182 x £150 transactions. I then send refund requests, called them to ask what was going to happen and they didn't couldn't give me a better answer than "Wait and see"

link|flag
1  
Same here, only it maxed out the card then the remaining 28 were over-drafts at $25 or the first 2 and $35 for the rest. – Unkwntech Sep 15 '08 at 15:49
2  
Normally you can cancel CC transactions before they're settled which usually happens at midnight. And yes, never use real card details for testing, use the magic numbers. – Totophil Mar 13 at 11:56
show 2 more comments
vote up 42 vote down

I was using a third-party COM object for sending email from a Classic ASP page.

It was a pretty simple process.

  1. Loop over a list of users from a database.
  2. Send each user an email.

The problem was that the COM object didn't reset itself after each call to the sendEmail() method. I didn't know it but, you had to explicitly clear it.

That meant that the first email went to Alice.

The second email went to Alice & Bob.

The third email went to Alice, Bob, & Charlie.

I was, luckily, using the BCC field so no email addresses were exposed but I still ended up spamming about 100 people before I got IIS shut down.

link|flag
1  
AspEmail let me guess? Guy at my work did that. Easily done. Also a guy at that same work had a mail sending app that had a bug which went into an infinite loop sending the same email. He was using our office Exchange server as the relay which got hammered, eventually ran out of disk space and pretty totally f***ed out and went into the feotal position, so no email for a day. People were not best pleased... – JonoW Jun 22 at 8:32
show 3 more comments
vote up 1 vote down

Errant PHP script that generated 5,000 emails before Apache took a poop, and until our ISP blacklisted us. It's been about nine years, and it taught me to enable sendmail on my local box to test mail generating scripts from then on. Or else, you know. Fail.

link|flag
vote up 20 vote down

Trying to cleanup old emacs auto-save files (end in ~) by typing

prompt>rm *~<enter>

Instead, I hit

prompt>rm *<enter>
prompt>~
link|flag
6  
We've all been there. :D – KTC Sep 20 '08 at 4:36
3  
I did something similar in the /etc/modprobe.d directory, I wanted to delete some files called test, test2, etc. so I did: sudo rm test *. Had to reinstall Ubuntu :( – Firas Oct 28 '08 at 13:36
show 5 more comments
vote up 2 vote down

When I first started programming in VB, I didn't know how to use the DAO object correctly, ended up writing a routine that would query each field one by one from a given recordset. Yeah that app was real slow.

link|flag
vote up 6 vote down

I deleted a symlink to a directory containing very important data.

Or at least I thought it was a symlink...

Doh.

link|flag
1  
What command did you run? If you "rm" (with no options), you get back "rm: cannot remove `foo': Is a directory". If you "rmdir", you get back "rmdir: failed to remove `foo': Directory not empty". But "rm -rf" is entirely unnecessary ... – A. Rex Sep 16 '08 at 14:44
show 1 more comment
vote up 41 vote down

Connected through remote desktop to a production windows box to make a change that's in a another city, when I was done making my change I did a 'shutdown' instead of 'logoff'!!! Since it was at a remote location and not a local box I had to own up to my stupid mistake and call to get the machine turned back on by someone at that site. I now overly pay attention to 'logoff' and 'shutown'.

link|flag
1  
I had a situation like this before - thats why I never use the start bar, I always go Start -> Run -> "logoff" – pzycoman Sep 15 '08 at 16:23
4  
If you're quick enough, you can run this at a command prompt to abort the shutdown: shutdown /a – DOK Oct 24 '08 at 18:48
1  
I tried to do that and got lucky with the "are you SURE you want to shut down the REMOTE MACHINE?" prompt. – CindyH Mar 20 at 16:13
3  
In remote desktop, shutdown is removed from the start menu. AND, if you attempt a shutdown anyway, it gives a warning that it is a remote machine. – Nick Whaley Apr 30 at 16:29
1  
We had some servers that sometimes wouldn't restart when you told them to. It just logged you off the RDP session, then stopped doing very much. So I used shutdown -i to tell it to restart. Sadly, I forgot to change it to restart instead of shutdown. Sadly, as a dev I don't have physical access to the equipment room and had to ask one of our server team if they could please go and press the power button... – pipTheGeek Sep 24 at 11:50
show 6 more comments
vote up 2 vote down

During testing of my prototype, I needed more data than what I had available. I connected the prototype to the production data feed, watched it for a bit to make sure nothing was going wrong, then let it accumulate data for a while.

I checked on it two hours or so later and found that my program had quit. Not a big deal, but I couldn't connect to the production feed again. Oops, it's down! During my program's long processing, the data backed up on the production server side and eventually crashed the feed. They had to manually reload the data from hard-to-access tapes.

My main saving grace was that I was the one who reported it first. The person who usually monitored the feed was out, and his replacement hadn't noticed it was down for over an hour. I got a little talking to, but nothing too serious.

We did however add a buffer process so that if my system bogged down again, it wouldn't take everyone else down with us.

link|flag
vote up 13 vote down

I accidently deleted a database of over 100,000 customers....
I learned at that exact moment, one and only one lesson. BACKUP BACKUP BACKUP.

link|flag
1  
And they're no good if nobody knows the password for recovering. Happened at a Fortune 100 company I worked for. Apparently, they'd let the contractor go who set up the recovery process. – DOK Oct 24 '08 at 19:07
show 2 more comments
vote up 1 vote down

While removing old entries from our development server crontab, I accidentally copied the pared-down dev crontab onto our production server. Our flagship app uses about a dozen cron jobs to poll a database every 5 minutes for job processing. Within an hour the cron error emails going out to our dev team shut down the corporate email server.

Oops!

link|flag
vote up 52 vote down

I rewrote a whole module that was working perfectly but that looked "messy" to me. I had managed to convince my boss that it was the Right Thing To Do, and the rewrite took me 3 weeks.

I still remember the pearls of sweat running from my armpits as my boss, looking over my shoulder, was commenting on bug after bug in my new shiny super-clean module...

I'm no longer "rewriting from scratch" without a really good reason.

link|flag
3  
lesson learned through experience is worth more than lesson learned through teachings – thomasrutter Mar 20 at 9:12
5  
Ehhh... only rewrite with unit test harness in place, anyone...? – peSHIr Jun 29 at 17:55
show 5 more comments
vote up 2 vote down

Moved instead of copied a svn repository for use in a new project. The old project was in maintenance mode and so I didn't realize my error until several weeks later (and after we'd long since overwritten the backups). Luckily, I was able to export the first revision of the new project, but we'd lost all the revision history from the old project. :(

link|flag
vote up 0 vote down

When i just started out I didn't understand how to get an identity back off a seeded primary key in the database. Instead I did a full select on the table and looped through until I found an unused key.

Ewwwwwwwww. Thankfully that never made it into production.

link|flag
vote up 146 vote down

I shipped my administrator password for an FTP site inside an open source project I was working on. ;)

link|flag
11  
which project was that? – steffenj Sep 27 '08 at 23:04
3  
Have you changed your password after the incident :p – dr. evil Dec 8 '08 at 13:45
55  
"Have you changed your password after the incident" --- No, but I have :D – Jonas Kölker Jun 7 at 3:57
show 7 more comments
vote up 132 vote down

I had just imported a bunch of old data into a new system, had taken about 5 hours and was due to go live two hours later, this was around 4 in the morning.

For some reason I tried to delete something:

DELETE from important_table; where id=4

Yeah, I didn't notice the semicolon either. And no, there was no safety net.

link|flag
40  
And THAT is the reason why overtime is absolutely NOT WORTH IT. – Jon Limjap Sep 16 '08 at 0:39
6  
Before I run any delete, even on a test table, I run Select count(*) from important_table where id = @id. If it's a lot of data and I wasn't expecting a lot, my spider sense starts to go off. – Anthony Potts Jan 23 at 22:10
7  
In that moment, when you suddenly realised, something, somwhere, had gone horribly wrong, did you, for just a second, consider just leaving and possibly emigrating? – lagerdalek Mar 19 at 21:45
26  
A similar incident taught me to always "SELECT from important_table; where id=4" before I "DELETE from important_table; where id=4". – Bill the Lizard Mar 20 at 15:28
5  
BEGIN TRANSACTION; COMMIT; ROLLBACK; ftw – Jon Erickson Jul 6 at 23:10
show 11 more comments
vote up 7 vote down

This is always one of my questions when I interview somebody... it can be very informative about a candidates honesty, problem management, and ability to learn from mistakes.

So some beauties:

  1. Implementing password aging as a risk "0" (i.e. did not show on change reports) on the financial systems of a fortune 100 company. Who would have guessed that the many many oracle and application accounts wouldn't be able to specify a new password when their old ones immediatley expired. 6 hours downtime.

  2. Never ever use the console of one server to connect through to another. A newbie, first day out of college and on the job, was asked to reboot a test server. No biggie. Connects to console, and reboots. Little did he know someone else had used the console to connect to the production server. Brought down a factory, but at least this company wasn't in the top 100 of the Fortune list :-)

  3. So your manufacturing lines are run by some old HPUX machines. You have some vague knowledge of Unix, and you are annoyed that people keep changing settings on the server. I know, make the files read only, from root, with no backups:

    chmod -R -w *

... ehh, no.

A Unix root account can be a bit like a loaded gun sometimes...

JB

link|flag
show 6 more comments
vote up 8 vote down

Good old rm -r *

While at school I wanted to delete my Graphics folder (and any folders it contained) and so from my user folder (bad idea) I typed:

rm -r * Graphics

After an abnormally long time I was informed "Graphics: no such file or folder"

link|flag
9  
I (deliberately) did this to an old laptop that was running Linux as I was going to reformat it anyway and I wanted to see what happened. A kindly friend advices I unmount network shares first. – xan Dec 8 '08 at 16:34
show 2 more comments
vote up 2 vote down

When running an UPDATE/FROM statement on a large million+ record table, don't forget to comment out the SELECT line you just used to test the FROM clause (i.e. I updated the entire table rather than the 10 records I was looking for...)

link|flag
vote up 1 vote down

I deleted a swap file to free up space for Doom (or some other Id title) on my dad's 386. He was not pleased.

link|flag
vote up 0 vote down

When I architected my "second system" I hit the "syndrome" real bad. To "simplify" things I gave all the business objects .Save() and .Update() methods..... then I passed those objects into the UI.

Lets just say that WinForm events that trigger one another plus embedded round trips to the database made for an architecture that is bettered by a bowl of soup.

link|flag
vote up 0 vote down

I almost hit a zero bug count for a complete upgrade for a particular client. One of the last things I did was ensure that all exceptions were caught and recorded. Only issue was that I added exception handling into the exception logging code. This had a bug in it and that was that if there was no existing log file it would throw an exception which it would then try to log. Stackoverflow!

I blue-screened the client's laptop. :(

Still after that was fixed it was zero-bug (or rather 1-bug) so my blushes were somewhat spared/limited.

link|flag
vote up 23 vote down

edited command.com and changed ". . ." to "..." since I though it was a grammar mistake. DOS 5 did not like that and would not boot

link|flag
12  
You're concerned about typography in system files? I actually like that! – MattW. Sep 15 '08 at 16:52
show 3 more comments
vote up 86 vote down

This isn't my bug but it still made me lol. The Dev manager was responsible for developing one component for a really important release. The week before the release the Dev Manager went on holiday and people tried to use his component. It worked for about 10 minutes and then fell over, the office was in panic. The very best devs on the team were assigned to find out the problem.

Eventually one of my colleagues burst into laughter and I swiveled my chair to see the following C# code (or thereabouts) on his screen.

public string GetNewGuid()
{
   SqlConnection connection = new SqlConnection(Resources.ConnectionString);
   connection.Open();
   SqlCommand command = connection.CreateCommand();
   command.CommandText = "select new_id()";
   SqlDataReader reader = command.ExecuteReader();
   reader.Read();
   string guid = reader.GetString(0);
   connection.Close();
   return guid;
}

The problem (aside from the REAL WTF) was due to the fact that he didn't dispose the DataReader. After about 10 minutes of the app executing a ridiculous number of round trips to the database the database refused to give out any new readers (or the app ran out of memory, I forget) and the whole thing fell over.

This method was replaced by:

public string GetNewGuid()
{
	return Guid.NewGuid().ToString();
}
link|flag
8  
Why even have a method like GetNewGuid() when a simple Guid.NewGuid().ToString() call would be just as fine.. – Andrei Rinea Jan 27 at 3:02
2  
... plus are you sure you need to pass it around as a string? Maybe a true Guid object would do just as well (and would be easier on the RAM and the CPU too) – Andrei Rinea Jan 27 at 3:02
10  
The existing code wanted a string. There were already a large number of calls to this method and I couldn't be bothered to replace them (CLR would probably inline it anyway). – Quibblesome Jan 28 at 20:08
show 8 more comments
1 2 3 4 5 8 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.