What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
133
|
|||||||||||||
|
|
|
I once worked on a project with a multi-architecture build, spread over several machines. Occasionally, a build would fail on one machine, and leave files lying around. To fix this, I would log onto the offending machine and clear down the directory - conveniently named /tmp/build. I found I could do this remotely in a nice simple commandline:
This seemed to work fine. But one day the build failed for a slightly different reason, and the /tmp/build directory wasn't there. Just to add to the fun, the user was root, and the default home directory was /. |
|||
|
|
|
|
Near the end of the dot com bubble, my company was doing research on a sector of the market. We had been given a database with company names in that sector, and we weren't sure if many of them were still viable companies. I wrote a quick and dirty app which looped through the database and tried the URLs to see if it got a valid response... the assumption being that a 404 would be a failed company. The app used the IE browser COM component and actually displayed the pages while it processed. I split the database into three sections and set it to run on three machines beginning at the close of business and running overnight. My cube was extremely proximate to the CEO and CFO. Upon arrival the next day, I discovered that the database was not at all accurate. Apparently it was open to the public for update, and numerous spammers and porn companies had inserted records and URLs of their own. This, in itself, was not terrible. What was terrible is that many of the pages when loaded, spawned pop-up windows of extremely explicit details and while the program moved on to the next page, the pop-up windows were orphaned and visible for all to see. I had some 'splaining to do. |
||||||||
|
|
|
two cock-ups from my younger days (mid 90s): I meant to do this: adminbox# rsh otherbox 'sync; reboot' instead I did this: adminbox# rsh otherbox sync; reboot (huh? why did my xterm disappear?) No lasting harm done, all I did was annoy my boss for the five minutes or so it took the thing to reboot. But the next one was catastrophic. The usenet news server had run out of disk space (too much pr0n). So I thought I'd remove some older articles to make room. news# find . -mtime +60 |xargs rm It worked well enough, and gave us plenty of space. An hour or two later, I was still on that server. I was looking for a config file, I think, so I did something like news# find . |grep conf that didn't work, and I got distracted; when I returned to this task I still wanted to find that config file, so I did something like this: news# cd /usr/local news# !find Unfortunately, I didn't type "!find" in the same window where I'd been looking for the config file earlier; I typed it in the window where I did that other find: news# !find find . -mtime +60 |xargs rm and in a few seconds the news server binaries were wiped out, along with anything else in /usr/local. Naturally, there were no backups, and I spent the rest of the day compiling and installing INN. These mistakes cured me of the habit of remaining logged in as root. |
|||
|
|
Back in the DOS 6 days, I was playing on my Dad's work computer (he's an accountant) and I discovered the deltree C:*.* command. To complicate matters, he was using Stacker to gain some hard disk space. It took a long time to recover from that, and it was quite a while before I got to use the computer again. |
|||
|
|
|
|
find ... | xargs rm -rf * That last '*' is a doozy. I found out that our organizational restore procedures are somewhat lacking. |
|||
|
|
|
|
You can't beat the old: UPDATE mobile_phone_repairs SET booking_date = GETDATE(); and forgetting the WHERE clause.... 2 million+ records cabbaged in 2 minutes, with no backup, on the live server.... Doh... |
|||
|
|
I managed to cause a subtle bug that lasted dozens of revisions, caused random errors in output, and took days to track down... by misspelling the name of a preprocessor #define. It was worse because I made the assumption that if the code was broken it would be immediately obvious, but for extremely subtle reasons the broken code would only cause problems in unbelievably rare circumstances, but just often enough to be a major issue. This also makes the record of my shortest bugfix ever, a bugfix which added two characters. |
|||
|
|
Boy! We're talking about 15-years ago, working on a 64 user DEC VAX running VMS. I'm debugging a program I wrote to scan through a bunch of files because it is hanging in an infinite loop. I made a small fix (moving the loop brackets), run and then... the whole system crashed, not just my login but the whole multi-user system, and left about 50+ people twiddling there thumbs. 2-hrs later, the system is back up, I login, I get back to my program and run it... and the whole system crashes again. Late afternoon, the system comes up and I am just logging in when my phone rings. It's the sys admin, shouting abuse and telling me not to run that $^&*ing program again! Turns out I had made an infinite loop that continuously opened file handles. There were no quotas set on the DEC VAX I was using so when the system ran out of file handles it just crashed and burned taking down everyone else logged in as well (most of my division). Both the sys-admin and I got a bollocking.link text Pev |
|||
|
|
|
|
Once I were injected into a classic ASP to Asp.net conversion project.[total 1.5 months and we have no contact with the client during this he just give a Classic Asp site code] Login module is completed by the fellow developer.After all the hard work and even working from home when i have completed the project a week and a half before the schedule.I check the the login pages of old application then certainly found out that my other developer have hardcoded a single role sign up.[Where there are roles with there respected pages.] This wasn't even checked by the Project manager who given the task sheet for completetion.Left out pages were equal to the one I have developed.Eventually i check all those pages of classic asp again and due to Full OOP approach I were used in the project and working from home I were able to complete the Project a Day ago. And Thanks to God Project were very happily accepted by the client with more then expected Performance and reliability. |
|||
|
|
|
|
Formatting a floppy disk - but instead of "format a:" I typed "format c: " and didn't notice until I got past all the prompts ... |
|||
|
|
|
|
I installed a software firewall on a dedicated server that I was administering. Problem was I forgot to allow an exception for remote desktop. |
|||
|
|
|
|
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. |
|||
|
|
When issuing a DELETE command to remove a record from a table in SQL, never forget to add the WHERE clause... |
||||||||
|
|
|
I once drove two hours to our datacenter to install a new production box. After getting back and spending the next day configuring the server and installing our software, the last thing I needed to do was change the password. Somehow I managed to enter the new password twice with the same typo. After trying a couple of dozen permutations to no avail, I finally gave up and had to explain to the team why I would be spending the next day back at the datacenter. |
|||
|
|
|
|
On a day of particularly bad judgement... tired I guess... I was in the lab making some last minute fixes prior to a customer trial, if I recall correctly. It was crunch time anyway, and I was behind the eightball. It was a windows dev machine with mingw installed. I did this: grep texttofind *.txt | output.txt Oh, power of recursion! It filled the C drive in seconds. "Out of system resources" message boxes were poping up all over the place. I was frantically trying to clear them so I could kill the grep command when a ill conceived Windows message came up: "Drive C is full do you wish to format? Ok / Cancel" Before I realized what the message read, I clicked "Yes". That was all she wrote, I was staring face to face with "non-system disk error". Simultaneously both stunned and pissed, I tossed the dead machine aside, grabbed my personal machine from my cubical, pulled a copy of the trunk from subversion and I was back in action in a couple of hours. Thankfully, I did a commit earlier that morning. All hail source control, couldn't live with out it!!! |
||||||||||||||||
|
|
|
Once, our credit card processing system was down, so we just collected charges to be put through once it came up. When it was available, we wrote a script to collect the charges and input them into the credit card processing app. To make the coding and rounding easier, we treated the numbers in the script as cents (i.e. we multiplied by 100). Of course, we forgot to divide by 100 before submitting the charges. Even worse, we realized the problem after only a few charges went through, but the application would not let us remove the items or even void the transactions until it cleared its queue, so we had to wait for it to finish mischarging about a hundred people before we could void any of the transactions. Lesson #1: Make sure that your data is presentable at all times. |
|||
|
|
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 first job was working at an ISP back in the 90s. We all brought our computers in from home to play Doom during my first month of work. When it came time to leave, I disconnected my computer from the network... and apparently I took the network terminator with me (not realizing what a network terminator was at the time). Doh! |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
rm -rf $BACKUPDIR * (/ missing) |
|||
|
|
|
|
Hard coded my Google username and password into a python project (used the GData API), then forgot I had done so and committed the code to SVN. And of course SVN commits cannot be undone. |
|||
|
|
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. |
|||
|
|
|
|
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 :( |
|||
|
|
|
|
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. |
|||
|
|
|
|
Always check your web.config or app.config files before uploading them or checking them into source control. You don't want to leave your passwords and localized settings in there. I've done this more than once. |
|||
|
|
|
|
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.... |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Big press gathering. |
|||
