What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
137
|
|||||||||||||
|
|
|
My boss called me panicked one day and told me to get into the office now. When I got there, I was told all of the customers data was deleted. After research, we found that a tech support person deleting one account did the following:
Beware of where you put your spaces kids. The only backup was a hard drive from months ago since the tape backup was being worked on by my boss. |
|||
|
|
|
|
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. :) |
|||
|
|
|
|
My sysadmin at the University made himself famous one day I went to his office to request a owner change. I don't remember why, but some files in my /home/users/mylogin directory appeared to be owned by root, so I came to his desktop to request him to execute a "chmod" on that files. Oh, wait, I forgot to mention, those files were "hidden files" (it's filenames starts with .). Oh, and one of this files it's a folder... So, the sysadmin, after a few moments of thinking, said to me: "Ok, this could be done very fast with just one command", and thinking "look at me, I'm a so clever kind of sysadmin" he quickly typed
My eyes caught fire as soon as I looked that "clever command line" this guy has just typed, and even more fire as I saw the sysadmin's face color turning red and then fading to green blue, and finally white, as he started to think "Hey, why the whole filesystem started to scroll in the screen? Hey, is the /etc folder what I saw in the screen? I've made some kind of mistake in the command, or is just my imagination? What could happen if I hit Ctrl-C now? HOLY F*** I'VE JUST MADE THE WHOLE SERVER OWNED BY THIS USER!!!!!! Ok, I'm guilty because I've been looking over the sysadmin's shoulder while he was typing that command, and instantly realized what will happen, but just kept quiet to stare the reaction of that poor guy as soon as he realized what a mess he just have made. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Late one evening, I logged a linux box and noticed "You have new mail." Checked it, and the account had 60,000+ messages, all STDERR from a cron job. Well I thought it would be funny to forward all of those messages to the inbox of the guy who wrote the cron job and was supposed to monitoring it. So a little proc mail recipe later and I decided to go ahead and call it a day and go home. When I came to work late the next morning, the mail admin guys were running around with their hair on fire. What I failed to consider is the company used Lotus Notes for email. And Lotus doesn't like a flood of email. My little stunt brought down all of the Lotus servers.. Which beside email, was trying to replicate data for other important systems, some in Korea, some in Germany. The system would crash every few thousand emails. The Admin's would clear the box, reset the server, and then three+ thousand messages later crash again. And the linux box doing the mailing was on the same LAN as the server, and the admin's couldn't figure where the mail was coming from, etc, etc. Lessons Learned:
|
|||
|
|
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 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. |
|||
|
|
