What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
137
|
|||||||||||||
|
|
|
i developed a diagnostic system for machines that should be used by several hundred persons all over the world. the application also showed some pictures of the machines that could get changed by the technical staff of the machine producer. while testing we didn't had all images of coffee machines and used some "bikini"-pictures instead. needless to say that quality management was not existant and the test-database became production db. thank's to automatic softwareupdating we only had to wait 20 mins till the first customers called and asked why their "coffe machine" looks like a D-Cup brunette. |
|||
|
|
|
|
Not so much a huge mistake, but it took me a minute to figure out why this command wouldn't work:
|
|||
|
|
|
|
An old Linux system once greeted me with the following error after login: "You don't exist. Go away!" Head-scratching. Virus? April 1st? Keyboard or screen highjacking? A grep -r /usr/src/linux returned a line in login.c which triggered a though. A check. Ah, yes, I had just deleted /etc/passwd. |
|||
|
|
|
|
A previous boss of mine once set up a monitoring system based on mail. If something went wrong, it would send a mail. Well, something went wrong and roughly 30'000 mails were sent. That wasn't the problem. The first problem was that the Exchange admins came complaining that he was "abusing" their server. After they were gone, he tried to delete the mails and found out that Outlook couldn't. Apparent, no one had ever tested Outlook with a big inbox. All he could do was select the mails 100 at a time and then delete them. After that Outlook would allow him to select another set of 100 mails. |
|||
|
|
|
|
I worked for a startup doing some Sega Dreamcast development. The devkits were pretty expensive and we only had 3 or 4 that we shared around. They had a nasty habit of frying if you plugged a cable into the RCA video-out jack while the system was powered on. I found this out because a senior dev on the team did this one day. BZZZT! A few weeks later we got our replacement dev kit. Same senior dev fired it up... plugged in the video cable... BZZZT. |
||||
|
|
|
I had an automatic update utility that was working fine. But sometimes a download would fail, and the update would fail. So I added a CRC check. If the download failed, it would fail the CRC check and download it again. Unfortunately there was an overflow issue in the CRC calculation, which meant that after about 3 months of normal operation, a file was uploaded that mis-calculated and the downloads could never work. So it sat there downloading again and again and again. The $40/month server that hosted the downloads went over its allocation, and the ISP billed for an extra $4,000. They wouldn't budge on reducing it either. Oops. |
|||
|
|
I got a few of these moments, but this one was one of the first. I was getting increasingly annoyed at having to connect to the database server to run the Perl's $dbh->quote() function to properly sanitize the records about to be inserted. Additionally, I thought it was too slow. So, I decided to write my own quote() function and roll it into production, after some testing. Well, there was a little tiny corner case (ok, it was huge), I forgot to escape the escape symbol - All 50 million rows in the table were overwritten with one completely insane looking value (insane enough to end in To add insult to injury, the backups were failing for about a month, and there wasn't a single full copy of the database anywhere. Additionally, my own quote() function was actually slower, even though it didn't connect to a remote server. Perl is slower than CPP, after all. Lessons learned: test more, think more, and make sure your backups work. We now have a slave running that is purposedly delayed by 12 hours, which makes it a very effective rolling backup. |
|||
|
|
In Windows ME, I somehow turned off the "Don't show hidden or system files" (default is on), and others, option in Windows Explorer. Later I browsed through C:\, noticing some new files I had never seen before. I tried deleting those in C:\, later on I rebooted, but at the next reboot I figured out I should probably have left those semi-transparent icons alone. |
|||
|
|
|
|
I used to do some work in Emacs under Unix, and some in Visual Studio under Windows. For some reason, I had over the years picked up the meaningless habit of always going to the beginning of the line before I saved the file in Emacs. One day, I was sitting there writing code in Visual Studio, and suddenly when I looked up, the screen was blank and the file had been written to disk. Puzzled, I retraced my steps. I had just tried to save the file when this happened. So, I had hit Ctrl-A, which is "go to the beginning of the line" in Emacs, but "Select All" in VS. Ctrl-X, which is the beginning of the save command in Emacs, but "Cut" in VS. Ctrl-S, which ends the save command in Emacs, but "Save" in VS. To add insult to injury, "Save" in Visual Studio used to flush the undo buffer, so hitting Ctrl-Z to undo didn't help. Thankfully, once I realized the problem, I realized I could just do Ctrl-V to paste back the now missing code. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. :( |
|||
|
|
|
|
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...) |
|||
|
|
|
|
I started a project without a specification. When I asked if I could work out what was wanted I was told not to speak to the client. It's a meal ticket for life. |
|||
|
|
rm -rf .* deletes more than you would expect.... I'm just sayin' |
|||
|
|
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... |
|||
|
|
In my first year as a developer, I accidentally pointed the production app to the testing DB. Nine days later I cleared out the testing db. One day after that, I realized what I'd done, but it was too late. Nine days of registrations and financial transactions were gone. |
|||
|
|
|
|
I was young. My manager didn't like the numbering scheme of the backup tapes and told me to recreate the backup tapes with better numbers. He told me to use [some specific command syntax I've forgotten] and I used that verbatim, as instructed. It released the backup tapes for reuse instead of renumbering them. We caught some of them, but some were overwritten. For the next eight years I was afraid that this major metropolitan hospital would be audited and have no financial data. I think most of my major mistakes have come from trusting someone who said "do it this way" and not researching the method myself. |
|||
|
|
|
|
It was the first computer I owned, paid for with my own money. Windows 2000 suddenly decided it would not power the computer down anymore, but would give me the "It is now safe to shut your computer off." This annoyed me so I started googling a solution, and someone recommended flashing my bios. Not even knowing what bios were, I thought this was a brilliant idea. Unfortunately, my floppy drive died in the middle of the update on the computer I had owned for only 2 months. My next computer had recoverable bios. |
|||
|
|
We had two prototypes of the new hardware. I was working late trying to get them to boot. This was in the days before Flash chips: the EEPROMs had to be removed from the board and inserted into a programming device to erase and rewrite them, a process I had done several dozen times that night. I thought I'd fixed the problem, and was sure it would boot. My fingers must have been tired, it seemed like it was harder to push the EEPROM into its socket than it had been, but whatever. Powered it on... nothing. What could be wrong? I started poring over the changes I'd just made, until I smelled it. That horrible melting plastic smell. I had put the EEPROM in backwards, shorting power to ground and ruining one of the only two prototypes. My colleagues did not allow me unsupervised access to the other one until the production boards came in. |
|||
|
|
|
|
Not exactly programming, but probably a good lesson nonetheless. I once configured our MS Exchange Server as an open relay. (I didn't know what an "Open Relay" was at that point, so I just ticked the box). Ooops. Went home on the Friday, everything was normal. Came in on the Monday morning, email was down - clogged up with thousands of spam emails. Lesson learned: never, ever, tick boxes on production systems when you don't know what they do! |
|||
|
|
|
|
I pressed the reset button on my computer for like 20 times in a row... Just for fun :-X then both of my HDDs died together with windows :))) |
|||
|
|
|
|
I had a lot of data on an external drive which needed backing up. So I got another external drive, and plugged them in ready to copy from one to the other. There was a funny smell, followed by a few whiffs of smoke, as I watched four years of photos burn up, not to mention several hundred dollars of equipment. The two drives, both made by the same manufacturer, had identical power supplies. Or should I say, apparently identical power supplies, but with the 12V and 5V lines swapped. There was NO way to tell which power supply belonged to which drive! I did manage to recover the data though - I ordered an identical hard drive and swapped the controller boards. It worked. Score: Seagate 1, Akasa 0. |
|||
|
|
|
|
I tried to fix a typo in four or five item names at the production server UPDATE art set artName=REPLACE("bad string", "good string", ArtName); Affected rows: 16241 WTF!!! Oh S@#$^ I got the parameters backwards. Now all the items are called "bad string" Time to get a backup |
|||
|
|
While I was working on my coop (paid internship in college) I was developing a small testing framework which queried a database and generated an HTML page with test results. One day my manager had planned to show some of our work with others at the company. I forget exactly what it was, but I apparently did something to screw up the current tests immediately before the meeting. So, during the meeting when the time came to show everyone the test results page, instead of showing a bunch of 'green' test results (results were color coded) everything was red which meant that all the tests were failing, and very quickly (the test programs were failing to execute). Needless to say I learned a hard lesson that you should never make any changes to a system before a demonstration without verifying that everything is still working correctly. I was quite embarrassed. |
|||
|
|
|
|
I was REALLY green, and I was working on a web application for network security alert analysis and response. Since I was new, I was tasked with a large amount of testing. One part of the testing was to analyze the captured data for the alert and send out a message to the offending party's ISP. Well, for one such intruder, I noted the offending IP address, cobbled together the warning message, looked up the whois record, and fired off the stern warning message. Oh, the kicker.....the IP address was somewhere in the range of 192.168.x.x and I sent the message to IANA. Someone responded. Humiliation followed. |
|||
|
|
|
|
Years and years ago, I had written a database migration tool that was going to be used once and then get discarded. The tool was tested on the staging server and proved to be doing its job. It was ready to be used in production. I sent the binary to the server admins and then realized that I had accidentally wiped the source code, without committing the latest version to source control. I was just left with the binary. Then, I was told that I needed to change a hard-coded numeric parameter that the tool was going use (it could have been a port number, or some threshold value -- I don't remember.) I fired up the hex editor, guessed which occurrence would be that parameter and changed it and sent the updated binary to the server guys. The tool did its job and nobody learned about the source code screw up. Oh, and the WTF is that we were using SourceSafe. |
|||
|
|
This one belongs to my boss, but I don't think he's on here and it's a good story so I'll share it. He used to have a habit of putting nasty words in as debug output. He thought he was pretty good about cleaning them up until one day one of our clients sent an email with a screen shot of a pop-up window saying, "F*(*& You!" after one of the values they entered didn't validate. Needless to say, he quit that habit very quickly. |
|||
|
|
|
|
Many years ago I was swapping my 286 with my aunt's 386. Armed with a copy of pkzip I backed up everything I needed to keep onto a large stack of floppies and we switched machines. After copying the contents of all the floppies onto the new machine it was time to unzip them. Where did I put pkunzip again? Oh, there it is, pkunzip.zip. CRAP! With the old 286 reformatted and not being able to find a friend that had pkunzip.exe on a floppy I was SOL. Being only 12 years old at the time and well before Al Gore invented the internet in our home, I had no means to replace it. |
|||
|
|
