What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
133
|
|||||||||||||
|
|
|
Here was my thinking: "Okay, let's write that query to delete the user with the broken login!"
"And now I'll just write the WHERE statement..."
I will never forget that number. |
|||
|
|
A bug in the style of Office Space A while ago I had the first live purchase on a software shopping cart module that I coded in ASP.NET/C# for a popular CMS. We had tested and retested all aspects of the cart (except the live purchase, which we avoided because of the credit card bills). So the purchase goes through for $32.95 in all database records. For all intents and purposes, everything looks correct. The problem being that the Authorize.Net receipt shows another story. In reality, the customer paid $2.00. OMG Hacks! was my first thought. I retrace all the code to ensure nothing can influence the price besides the items in the cart. The item price is correct. The quantities are correct. The totals and subtotals are correct. Finally I trace the total to the last stage of the purchase process, wherein I format the System.Decimal type to a string for insertion into the authorization transaction via HTTPS. I see:
And now I see the source of the "$2.00". I rack my brain, trying to remember why on earth I would think this would work. I run a test and the string returned is "D2". I cry and wail. Evidently Authorize.Net thinks "D2" is close enough to the requisite "2.00" to charge $2.00. Finally I remember that I saw this as a forum post suggestion. (Where was Stackoverflow.com then?) When originally coding, I had planned to use the "C" (currency) formatting. This does everything correctly except for pre-pending a "$" to the string. The Authorize.NET API docs say they want it in decimal format without "$" or any other monetary symbol. So I went to the collective wisdom of other .NET developers for a quick workaround. I didn't like the idea of formatting as currency and then stripping the first character, so I saw an off-hand post about "D2" formatting causing essentially the same format but without the monetary symbol. I believed it and did not verify its output. Gah! Not to mention that this had been extensively tested in test mode. But for some reason we thought nothing of having Authorize.Net return transactions in test mode that had a purchase price of $2.00. Myself (and unnamed others) thought it was just a quirk of the test mode... The morals of the story are:
|
|||
|
|
When issuing a DELETE command to remove a record from a table in SQL, never forget to add the WHERE clause... |
||||||||
|
|
|
Conversation with a DB-Dev: me: Hi, can you fix the procedure xxx and add several other parameters? he: No problem ... done. Now I'll do it on the testenvironment. |
|||
|
|
|
|
In college, came in from the Pub one night and started writing code. Wrote FANTASTIC code for an hour, got tired and went to bed. I woke, remembering that I'd done some seriously cool stuff the night before, had insights I'd never dreamed of, and while slightly hungover opened up the code. To my horror I discovered a mishmash of absolute junk. I ruined about a weeks work on a project, had to throw it out and start again (no backups, in the days before source control). Lesson learned? Don't drink and code |
||||||||||||||||||||
|
|
|
I accidently deleted a database of over 100,000 customers.... |
||||
|
|
|
a company i was working for once used a bug in IE to access the clients machines from within a website to "increase usability" and making a seamless web/desktop integration. a few months after deployment the bugfix was rolled out with windows update and the customer wasn't able to use the features anymore. they were not able to work around this. not to say it was the last thing this customer paid the company for. exploiting bugs to implement features is probably not the best idea. |
||||
|
|
|
Not mine, but I was mentoring a (Windows centric) guy on a IBM DB2 database on AS400, and I told him to clear up some space on the box as we were running out. (My WTF was that) I should've kept an eye on what he was doing. He stumbled around, looking for something like the Recycle Bin. Inevitably, he deleted the bin directory. I still have a visual snapshot of the server room burnt into my memory of the very second I realised what had happened. |
||||
|
|
|
Long ago, I was testing some phone number formatting code in a very basic search screen. Instead of using something like 123-456-7890, I used my own home phone number, and forgot to take it out of there as the default text for the label caption. If an account did not have a phone number when displayed on the search screen it would display mine instead. Oh the phone calls and messages I would get about delinquent accounts for utility bills in other states.... |
||||||||||||
|
|
|
This application allows a bank to track charges that customers pay for their bills. At the end of the day, a bank worker "ends the day" and the charges are transferred to, say, electric company. For ending the day one must:
The customer requested a more error prone interface in this request. We could not understand how can they end the day accidentally but they told us they could. So, we added these extra steps at the end of the process:
After that last step, the customer could end the day. After the code went in the production, we called the bank to check if everything was fine. -- Did you see the updates? -- Yes, we were looking at that. While talking on the phone we heard a panicking sound at the background: -- Mike! What the hell did you just do? |
|||
|
|
This one won't trigger nuclear war, but its very easy to do at 3am. I wanted to find all the system includes in a C/C++ file I'd been working on since 8am. So naturally, " I sat there for while wondering why it was taking so long to parse the file when the penny dropped. No backups since the previous night. The moral of the story: Take a break before your IQ drops to 10. |
||||
|
|
|
I was in charge of a studio for a live TV breakfast show. We ran the closing credits etc... 5 minutes later the presenter stopped checking his email on the PC at the studio desk, looked around, then nonchalantly wandered into the control room to tell me he was still on air. I looked at a the televisions around the office and he was indeed, correct. I forgot to switch the transmission feed back to the network feed. oops. |
|||
|
|
|
|
wasn't me (this time) - Google Maps reckons you can't walk across the Sydney Harbour Bridge. You can of course. It is fine with driving directions via the bridge but not for walkers. See This map to see what I mean. The funniest part - Google Maps was started in Sydney. |
|||
|
|
This wasn't my biggest WTF moment but it was the biggest I have heard of to date. A decent sized grocery store chain that is based here in Grand Rapids had a developer that wrote a system for promotions. The system would take in SKU's and you could set rules like buy SKU "XYZ" and get SKU "ASDF" half off. This system was in production for a while and one of the "features" was that you could leave the SKU blank and it would apply to all SKU's. Someone on the business end didn't realize this and they accidentally set up buy one get one half off rule but without any SKU's. So basically anyone who checked out at any of the stores could buy a pack of gum and get the rest of their cart half off!!!! It made the news but they never really mention what really happened behind the scenes.... |
||||
|
|
|
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:
After an abnormally long time I was informed "Graphics: no such file or folder" |
||||
|
|
|
When saving reports to disk, I took the date and time and computed the MD5 hash and used this as the filename. I think I thought the MD5 would make the name more unique! They were displayed in alphabetical order, which meant every time a new report was created it popped into a seemingly random place in the list. I have absolutely no idea what was going through my mind that day. Once my colleagues spotted it, it was swiftly removed and the standard response to any question became "MD5 it". Doh! |
|||
|
|
|
|
Didn't happen to me personally, but a little while ago someone in my company renamed a cronjob file to cornjob, which caused mass confusion. For several days. Almost had a client drop us because of it. |
|||
|
|
Big press gathering. |
|||
|
|
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. |
|||
|
|
Worked on network test software at NASA; I wrote an app that could generate arbitrary packets including poisonously malformed ones to stress test network equipment. I had 2 nic's in my development computer: one connected to my private test network. The other connected to the Official Government Network which is super-secure and managed by a third-party contractor who is paranoid about everything that goes on on their network. Guess which nic I accidently had selected when I sent 10,000 malformed ping packets from a sham IP address of "0.0.0.0"? It took my boss a week to get access turned back on for me; I'm told the network admins had come to the building's utility room and physically removed my ethernet cable from the patch panel. But I was just a summer intern, so really, what could they do to me? |
|||
|
|
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!!! |
||||||||||||||||
|
|
|
Did an UPDATE without a WHERE clause. Lesson learned: begin all UPDATE queries with "BEGIN TRAN" |
|||
|
|
I once worked on some test software for a computer manufacturing center. The computers had sequentially numbered, six digit, Base 36 serial numbers that currently started with 'H1' and we tracked systems by those numbers. I needed a dummy serial number to unit test the software, so I made up one that wouldn't be hit in the normal sequence but would be recognizable, so I used:
Of course, one reference to it was left in an error check so after a few weeks of production, I got a call from the manufacturing floor because an error box had popped up that said:
|
|||
|
|
|
|
Years ago, my old man wanted me to reinstall windows for him. He had windows 2000 on drive C: (NTFS) and data such as family photos on drive D: (FAT). I placed all his documents and personal files on drive D before booting the Windows installation CD. Booting from CD didn't work for some reason, so I created a boot disk and typed "format C:/q" ENTER y ENTER Copied boot files and cd driver to C: so I was able to reboot from hard disk again and start the installation process from there. So, I rebooted and to my surprise I saw the windows 2000 screen come up. "Hmm, the format process went fine, what happened?" were my thoughts. And then it hit me. It really felt as if the ground underneath the chair disappeared as I realized that my boot disk couldn't see an NTFS drive, and as such it had mapped drive D: to drive C: and I had happily formatted all my dad's work on family photos and months of work on descratching is vinyl albums. Together with his documents and such. We now understand why people make backups. |
||||
|
|
|
One of the things we do at my company is instant win web sites, you know, the kind where you enter your info and you automatically get a winner/loser message? Yeah. Well our instant win system was designed to be completely random, but allowed for the ability to manually make the next X entries winners (for test purposes). Unfortunately, due to bad design, this ability was available in production too. Well, one day, I'm logged into my DEV sql box (I think) and testing something, so I design to make the next 5 entries winners. 3 minutes later I realize I was logged into production. The prizes were already claimed and the users notified. The prizes were worth approx. $5,000 each. |
||||
|
|
|
I'd have to say that forgetting to switch the 110/220V selector on the back of the disk drive enclosure (many years ago, obviously) before flipping the power switch and watching the white smoke that drives all electronics leak out the back of the power supply. |
||||
|
|
|
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:
... ehh, no. A Unix root account can be a bit like a loaded gun sometimes... JB |
|||
|
|
Poured a glass of red wine into a laptop. The leaden slosh of horror I experienced has traumatized me to this day. If you ever have the manic urge to totally deadify a laptop, I can heartily recommend it. |
|||
|
|
I think everybody who works with Linux's bind mounts and chroots has been burned by something like this at least once: $ mount --bind /home /chroot/home # sudo chroot /chroot # [...] # exit $ sudo rm -r /chroot ^C^C^C^C |
|||
|
|
I was working as an intern in my college's IT department and was asked to vacuum off the dust from the intake of the servers. The server room was on a platform and all of the power supplies were under the floor. I removed a panel to find a plug and when I went to unplug the vacuum I instead unplugged an entire rack of servers. All of those little green lights weren't green anymore and I almost singlehandedly brought down the entire campus computer network. I went and told my sup and we laughed about it. To this day (I have some friends that still work there), they still call it a CronJob (because of my last name). |
|||
|
|
