What wonderful advice can we learn from the "What not to do" school of hard knocks?
|
133
|
|||||||||||||
|
|
|
This isn't my bug but it still made me lol. The Dev manager was responsible for developing one component for a really important release. The week before the release the Dev Manager went on holiday and people tried to use his component. It worked for about 10 minutes and then fell over, the office was in panic. The very best devs on the team were assigned to find out the problem. Eventually one of my colleagues burst into laughter and I swiveled my chair to see the following C# code (or thereabouts) on his screen.
The problem (aside from the REAL WTF) was due to the fact that he didn't dispose the DataReader. After about 10 minutes of the app executing a ridiculous number of round trips to the database the database refused to give out any new readers (or the app ran out of memory, I forget) and the whole thing fell over. This method was replaced by:
|
||||||||||||
|
|
|
edited command.com and changed ". . ." to "..." since I though it was a grammar mistake. DOS 5 did not like that and would not boot |
||||
|
|
|
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. |
|||
|
|
|
|
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 deleted a swap file to free up space for Doom (or some other Id title) on my dad's 386. He was not pleased. |
|||
|
|
|
|
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...) |
|||
|
|
|
|
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" |
||||
|
|
|
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 |
|||
|
|
I had just imported a bunch of old data into a new system, had taken about 5 hours and was due to go live two hours later, this was around 4 in the morning. For some reason I tried to delete something: DELETE from important_table; where id=4 Yeah, I didn't notice the semicolon either. And no, there was no safety net. |
||||||||||||||||||||
|
|
|
I shipped my administrator password for an FTP site inside an open source project I was working on. ;) |
||||||||||||
|
|
|
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. |
|||
|
|
|
|
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. :( |
|||
|
|
|
|
I rewrote a whole module that was working perfectly but that looked "messy" to me. I had managed to convince my boss that it was the Right Thing To Do, and the rewrite took me 3 weeks. I still remember the pearls of sweat running from my armpits as my boss, looking over my shoulder, was commenting on bug after bug in my new shiny super-clean module... I'm no longer "rewriting from scratch" without a really good reason. |
||||||||
|
|
|
While removing old entries from our development server crontab, I accidentally copied the pared-down dev crontab onto our production server. Our flagship app uses about a dozen cron jobs to poll a database every 5 minutes for job processing. Within an hour the cron error emails going out to our dev team shut down the corporate email server. Oops! |
|||
|
|
|
|
I accidently deleted a database of over 100,000 customers.... |
||||
|
|
|
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. |
|||
|
|
|
|
Connected through remote desktop to a production windows box to make a change that's in a another city, when I was done making my change I did a 'shutdown' instead of 'logoff'!!! Since it was at a remote location and not a local box I had to own up to my stupid mistake and call to get the machine turned back on by someone at that site. I now overly pay attention to 'logoff' and 'shutown'. |
||||||||||||||||||||
|
|
|
I deleted a symlink to a directory containing very important data. Or at least I thought it was a symlink... Doh. |
||||
|
|
|
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. |
|||
|
|
|
|
Trying to cleanup old emacs auto-save files (end in ~) by typing
Instead, I hit
|
|||
|
|
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. |
|||
|
|
|
|
I was using a third-party COM object for sending email from a Classic ASP page. It was a pretty simple process.
The problem was that the COM object didn't reset itself after each call to the sendEmail() method. I didn't know it but, you had to explicitly clear it. That meant that the first email went to Alice. The second email went to Alice & Bob. The third email went to Alice, Bob, & Charlie. I was, luckily, using the BCC field so no email addresses were exposed but I still ended up spamming about 100 people before I got IIS shut down. |
||||
|
|
|
Hit my credit card with 182 x £150 transactions. I then send refund requests, called them to ask what was going to happen and they didn't couldn't give me a better answer than "Wait and see" |
||||||||
|
|
|
Similar to MikeReedell, I did an |
|||
|
|
Probably when I used a hardcoded password for the administrative dashboard of one of my earliest php sites. The client never noticed, but I felt really bad about it. Best of all, the password was submitted via GET. Later a prospective employer noticed. I just shrugged because what could be said? There's basically no excuse for that. |
||||||||
|
|
|
Joined an open source project. Got the latest code. Made a change. Checked it in. Broke the build. Spent an hour trying to figure out how to undo my changes and get the build working again. Its one thing screwing up when nobody else can see you. Its another to do it where everybody has a notification tray app that pops up a nice red X when you screw up. Lessons learned: Know you tools before using them. Follow this pattern when working on a project with multiple contributors: Get latest, make changes, test, get latest, run all tests, check in. |
||||
|
|
|
When trying to root out record locks on the live system of one of the biggest warehouses in the UK at 1:30am, don't accidentally kill the procman. |
|||
|
|
|
|
|
||||
|
|
|
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. |
|||
