What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
133
|
|||||||||||||
|
|
|
I was testing a new linux server. I had a problem with permission and after some struggling I found the right directory, it had a bunch of subdirectories and just for testing I decided to put everything on 777. I don't know why (maybe I was tired), but I decided that adding a "/" was the best way to select the current directory. I issued this:
I immediatly realized what I had just done, but that damn command is fast! It had chmodded half of the system while I was founding the ctrl+c. Needless to say I had to start everything from scratch. That day I learned a valuable lesson: "You can't fuck up with linux" |
||||
|
|
|
Let the customer select the passwords. |
|||
|
|
|
|
In an attempt to avoid screwing up a delete statement I did a select to verify my where clause, and then wrote the delete. Unfortunately I didn't comment out my select, deleting the whole table (even though there is a where clause)
Thus deleting all records in the table. |
|||
|
|
|
|
We had a guy that wrote an error reporting component in .NET, and inside it he hard coded his email address as a CC. Well, he left, and they disabled his email account. Every time his component would process an error it would throw an exception because the email address was no longer valid. This component was used in a lot of different places. Oops! |
|||
|
|
Some time ago I was working on refactoring some project. And in one module I have found the following method (keep in mind that this method was called only once):
Anybody can correctly count number of parameters? I have tried twice, there is about ~180 parameters. :) |
|||
|
|
|
|
I was working on an online move ticket sales system. We had kiosks with credit card readers in the pilot movie theater. To unlock the kiosk to perform administrative operations, one would have to swipe a special card registered in the system. I had registered an old debit card that I wasn't using anymore and left it with the people at the ticket booth so that anyone from the development team could come into the theater to unlock the kiosk during emergencies. I advised to the booth denizens to stash the card somewhere easy to locate. One night, in another emergency where the kiosk bugged out and hijacked a majority of the theater's seats, I rushed to the theater and retrieved the card from ticket booth. Swipe, swipe, swipe, rub, rub, swipe, swipe... Nothing. The card didn't register. It was dead. I had to call a teammate to register my credit card in the system and ended up unlocking the kiosk after a lot of delay. The location that they had chosen for the unlock card was on top of a CRT monitor. |
|||
|
|
|
|
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. |
|||
|
|
Similar to MikeReedell, I did an |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
I was working on an iPhone version of a site. I had just woken up and didn't check what directory I ftp'ed to. Before I knew it, everyone visiting the site was seeing the iphone interface (which had administration links and the works, also not pretty). I didn't have a backup of the index.php file and panicked. Luckily, the site uses Wordpress as the frontend and was easy to fix. Now I double check my paths and never use index.php when testing things. |
|||
|
|
|
|
Trying to get rid of all duplicates in the code. |
|||
|
|
|
|
Back in 1995 I had multiple windows open... what's this stuff doing in D:\winnt? Ah, just old crap... I'll delete it... except it wasn't the local machine... it was our main server at our Internet Service, 25 miles away. After that ALL of my DOS prompts included the name of the server. |
|||
|
|
|
|
I added a new feature to update status on table with over a million records. The SQL update query was "UPDATE table ... WHERE id = id" instead of "WHERE id = :id". Thankfully this was infrequently used and the database server only crashed a half-dozen times before the problem was found and fixed. |
|||
|
|
|
|
Wrote a plug-in for MS's IIS web server that returned an XML-formatted dump of one of our application's databases, without taking into account the amount of data involved. Turns out IIS wasn't happy trying to return 10-15 MB in a single request, and would routinely drop the connection. Worked much better when we fixed the plug-in to send data in 64K chunks; even better when we came up with querying semantics more sophisticated than 'gimme all yer data'. :-) |
|||
|
|
|
|
Not making backups, and not using a source control system. Fortunately I learned that lesson about 15 years ago. |
|||
|
|
|
|
My worst was made years ago when importing a bunch of stored procedures to a live server. I didn't notice I had said to drop the existing data on import. (Why is that a default setting?) The backups failed because they were spread over two rather large files we couldn't get to download from the backup location. The site, a statewide system, was down for 3 days. And I made the mistake on Easter Sunday. |
|||
|
|
|
|
rm -rf is not something you want to get in the habit of using often. Leave off the -f unless you have a good reason to include it. Especially after you start a new job, it stinks to have to inquire--during your first week--about what automatic backups are in place. |
|||
|
|
|
|
I was prepping some data for a manual email marketing blast to some 2,800 users. I forgot to edit out the loop to send to all customers during my initial test run. So, when the loop over 2800 customer ran, it sent to my test address (my email address). To make matters worse, my browser crashed due to the POST, and when I brought it back up, re-triggered the action, sending a total of 4600 emails to my inbox. I'm the admin of my email server, so thankfully I was able to do some cleanup on the box, but not before it took me over-quota and nearly killed Outlook. |
|||
|
|
|
|
Started up a web proxy with a single allow requests to port 80 rule, oblivious to the fact that I had given no deny rules whatsoever. Jump forward 24 hours to phone calls from client site asking why the internet speed had slowed to a halt, queue searching and discovery of russian/chinese IP addresses running everything through my poor client site proxy. |
|||
|
|
|
|
when i was messing with intel 8086 instruction set, its MOV instruction set has 'MOV target source' but linux has 'mv source target' just image what could happen when get confused.... |
|||
|
|
|
|
First day on the job I was asked to set up a new machine for development. So I log onto the machine, sudo to root and start by covering all the basics... like the firewall. Ofcourse I previously had only configured such basics from the console, so it took me a few moments to figure out why I lost my connection right after the
Lucky for me the machine was one floor down, not half a country away. |
|||
|
|
|
|
Coding for an ARM processor... in c++... or what I thought was c++. Compiler didn't implement the '?' operator. Undefined behaviour sucks big time. 2 days of debugging later :( |
|||
|
|
|
|
A recent one for me (just last Friday): I wrote a "clean" script for a Mac project that I was working on that went something like:
It wasn't working when I ran it from the directory that contained the script, because I had the directory open in Filer, so I cd'd to my home directory and typed
As soon as I hit enter, I knew that I had just done something very bad. It deleted all of the files owned by root on the whole hard drive. Moral of the story: When you write a "clean" script, make sure that it is a specific as possible. |
|||
|
|
|
|
rm -rf $BACKUPDIR * (/ missing) |
|||
|
|
|
|
root]# mv / . I typed this by mistake while logged in as root. Every file on the server was moved to the /root directory. Had to wipe the drives and reformat. Wish I had known about the Coroner's Toolkit. |
|||
|
|
|
|
I once left in some testing code that caused a thread to sleep for 10 seconds during an important loop. Ground the system to a halt, and it took a lot longer to find than it should have. It's become the canonical example of screw-ups at my company. |
|||
|
|
|
|
I got a new version of an operating system and was all giddy to install it. I went through my files and thought I had backed everything up. Turned out I backed up everything BUT my programming projects. Lost LOTS of work to say the least. |
|||
|
|
|
|
My experience was last year, fall semester. It wasn't so much as a WTF on my part, rather a WTF on the instructor's part. She made us comment every line of code (including whitespace) the entire semester. She'd doc points too if you didn't comment properly. It was somewhat overbearing. |
|||
