vote up 150 vote down star
133

What wonderful advice can we learn from the "What not to do" school of hard knocks?

flag
1  
Hopefully no one is contemplating downvoting the question, but if you are, keep in mind that we learn better from hearing other's mistakes than we learn from so called 'best practices'. – Adam Davis Sep 15 '08 at 15:10
8  
There is already an entire web site dedicated to this subject: thedailywtf.com – Anders Sandvig Sep 15 '08 at 17:01
1  
The dailywtf is very cool for pointing out others mistakes, but they are not voted on. – DrFloyd5 Sep 15 '08 at 20:42
show 4 more comments

239 Answers

1 2 3 4 5 8 next
vote up 616 vote down check

Our product was used by police forces to input data about people that are arrested and what they are charged with. It would also store digital mugshots and fingerprints, and electronically submit the fingerprints to the FBI. While testing, we would routinely use our own fingerprints for fake bookings that got inserted into the test database. Except for the time that I "temporarily" switched the test machines over to the production database and forgot to switch them back...

Cleaning up our production database was easy, but it took a court order signed by the superintendent of the Boston Police Department to remove my colleague's fingerprints from the FBI database -- she had booked herself under the name "Elroy Jetson".

link|flag
8  
This story would have been better if your co-worker had been arrested. :) – MusiGenesis Dec 12 '08 at 19:52
51  
Please do send it to the DailyWTF. With a better narrative, this will be one of the hottest stories. – Ubersoldat Jan 8 at 11:02
17  
Why did the developers even have acccess to the product database? – Ian Ringrose Mar 20 at 9:11
1  
+1 to Ian Ringrose comment, i don't buy it, I work in the federal government in the banking commission in Mexico and even in my third world country I don't have access to the production database – Juan Zamudio Mar 29 at 7:54
22  
This story is 100% true. At the time, the security was terrible. We could walk into the police HQ, by the front door guard who didn't know us, and get into the server room with just a 3-digit door lock. They have since improved it, and I doubt we'd have direct access to the DB now. – Graeme Perrow Mar 29 at 18:20
show 17 more comments
vote up 160 vote down

Dude working at a bank was asked to write a mail merge to send out invitations to the top 10,000 richest clients.

First he wrote up the invitation letter and addressed it to Mr Rich Bastard. Once he was happy with the letter, he replaced all the static information fields with meil merge tokens ... all but the saluting title.

You guessed it, the top 10,000 richest clients of this bank received their invitation addressed to Mr Rich Bastard.

The bank had some egg on its face and the guy no longer works there.

Lesson: never use test data that can fire you later.

link|flag
19  
Was that really you or did you just read it on snopes.com/business/consumer/… – ConcernedOfTunbridgeWells Oct 31 '08 at 14:12
6  
I flagged this as spam, since it appears to be cloned from the Snopes entry or some equivalent rumor. It certainly isn't the poster's "worst WTF moment." – mquander Mar 4 at 20:34
4  
This reminds me of the time I almost got arrested at Del Taco trying to pay with a $2 bill! – overslacked Mar 19 at 21:32
5  
@mquander, how does that make it "spam"? You fail sir. – Mithrax Apr 18 at 8:38
6  
@mquander answerer did not make any attempt to pretend the story was personal (says "Dude" and "he", not "I"). – Rex M May 1 at 3:21
show 7 more comments
vote up 147 vote down

I shipped my administrator password for an FTP site inside an open source project I was working on. ;)

link|flag
11  
which project was that? – steffenj Sep 27 '08 at 23:04
4  
Have you changed your password after the incident :p – dr. evil Dec 8 '08 at 13:45
58  
"Have you changed your password after the incident" --- No, but I have :D – Jonas Kölker Jun 7 at 3:57
show 7 more comments
vote up 143 vote down

I was given a GPS system that was used on ships and given the task of getting a program to interface with it and collect co-ordinates. We didn't have a manual for the device, but once I got it powered on, I found a big help button. I thought that might at least get us started with how to use it.

After pressing the button, it beeped a couple of times, and then the screen started flashing: Sending S.O.S. signal

Gosh damn - I unplugged the power cable, hoping the thing would turn off, but it must have had an emergency battery inside, because it carried on going, and there was no stopping it.

I waited, very anxiously, expecting a Sea King helicopter to appear outside the office at any moment, wondering how I was going to explain what had happened.

Fortunately - either because I was indoors and the signal didn't get through or because the receiver of the signal realized an S.O.S. originating 100 miles inland probably wasn't a real shipping incident - no sea king turned up. Phew.

link|flag
6  
Ah, to distinguish between "help" and "SOS" and "manual". – Jonta Nov 21 '08 at 14:52
4  
great stuff, "Big Help Button" interpretation, how naive of you! – dr. evil Dec 8 '08 at 13:49
show 4 more comments
vote up 134 vote down

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.

link|flag
41  
And THAT is the reason why overtime is absolutely NOT WORTH IT. – Jon Limjap Sep 16 '08 at 0:39
6  
Before I run any delete, even on a test table, I run Select count(*) from important_table where id = @id. If it's a lot of data and I wasn't expecting a lot, my spider sense starts to go off. – Anthony Potts Jan 23 at 22:10
7  
In that moment, when you suddenly realised, something, somwhere, had gone horribly wrong, did you, for just a second, consider just leaving and possibly emigrating? – lagerdalek Mar 19 at 21:45
27  
A similar incident taught me to always "SELECT from important_table; where id=4" before I "DELETE from important_table; where id=4". – Bill the Lizard Mar 20 at 15:28
5  
BEGIN TRANSACTION; COMMIT; ROLLBACK; ftw – Jon Erickson Jul 6 at 23:10
show 11 more comments
vote up 101 vote down

I was logged into my new dedicated server box and configuring some firewall rules over ssh. The first thing I did was set it to not accept any connections from anyone. Then I saved it to test that before going through and adding the various ports I wanted to allow.

Needless to say, the first rule worked...

link|flag
4  
I've made it into sacred routine that in any iptable table the first rule is: …-m state --state ESTABLISHED -j ACCEPT – ΤΖΩΤΖΙΟΥ Sep 15 '08 at 23:00
18  
This is why, whenever I'm making any changes to my Cisco router's config, I start off with a "reload in 10" command that forces the router to restart itself in 10 minutes unless I cancel it. That way, until I verify the changes work and save them, the router will automatically reset its config... – delfuego Sep 18 '08 at 19:49
2  
One friend of mine did something similar. He installed on his PC a "paranoid ultra secure OpenBSD variant"... Forgot to abilitate an account... root disabled by default... hd crypted away... Ah, the joy of reformatting!!! – Myrrdyn Oct 1 '08 at 15:46
show 5 more comments
vote up 87 vote down

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.

public string GetNewGuid()
{
   SqlConnection connection = new SqlConnection(Resources.ConnectionString);
   connection.Open();
   SqlCommand command = connection.CreateCommand();
   command.CommandText = "select new_id()";
   SqlDataReader reader = command.ExecuteReader();
   reader.Read();
   string guid = reader.GetString(0);
   connection.Close();
   return guid;
}

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:

public string GetNewGuid()
{
	return Guid.NewGuid().ToString();
}
link|flag
8  
Why even have a method like GetNewGuid() when a simple Guid.NewGuid().ToString() call would be just as fine.. – Andrei Rinea Jan 27 at 3:02
2  
... plus are you sure you need to pass it around as a string? Maybe a true Guid object would do just as well (and would be easier on the RAM and the CPU too) – Andrei Rinea Jan 27 at 3:02
10  
The existing code wanted a string. There were already a large number of calls to this method and I couldn't be bothered to replace them (CLR would probably inline it anyway). – Quibblesome Jan 28 at 20:08
show 8 more comments
vote up 79 vote down

I worked for a large bank and added an error message to a piece of code that the application should never have been able to reach (theoretically)...

One Monday morning the unthinkable happened. The error message was proudly displayed on over 10,000 monitors across 1800 branches, and would return when you dismiss the message.

The message read: "If you can see this message the system is all F**KED UP and we might as well go home. Have a nice day."

Thank goodness this happened before source control systems were implemented at the bank.

link|flag
show 3 more comments
vote up 76 vote down

When I set up a new VMware instance at the evening and went home keeping it running. What I didn't noticed was that I used the IP of the Nameserver as IP of the VMware instance. Suddenly all hosts in our building tried to connect to the VMware for DNS lookups.

Our whole network was practically down.

Since this was a VMware our Admins were not able to track down the MAC address. So they had to plug off every single computer in our office (~500) until the problem was gone.

At the next day I found a letter on my desk: "Who dares to switch this computer on will die".

link|flag
14  
Next time the admins will learn how to track a mac-address by using the port-table in the switch. This also works for VMs. – Espo Sep 18 '08 at 14:13
show 2 more comments
vote up 66 vote down

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.

link|flag
1  
That's a funny story, but was it really something you shouldn't have done? I think it was logical to write that script in that manner... – Albert Dec 8 '08 at 15:56
25  
Poor windows user who don't know the magic of wget – Ubersoldat Jan 8 at 11:08
show 2 more comments
vote up 52 vote down

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.

link|flag
4  
lesson learned through experience is worth more than lesson learned through teachings – thomasrutter Mar 20 at 9:12
5  
Ehhh... only rewrite with unit test harness in place, anyone...? – peSHIr Jun 29 at 17:55
show 5 more comments
vote up 42 vote down

I was using a third-party COM object for sending email from a Classic ASP page.

It was a pretty simple process.

  1. Loop over a list of users from a database.
  2. Send each user an email.

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.

link|flag
1  
AspEmail let me guess? Guy at my work did that. Easily done. Also a guy at that same work had a mail sending app that had a bug which went into an infinite loop sending the same email. He was using our office Exchange server as the relay which got hammered, eventually ran out of disk space and pretty totally f***ed out and went into the feotal position, so no email for a day. People were not best pleased... – JonoW Jun 22 at 8:32
show 3 more comments
vote up 41 vote down

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'.

link|flag
1  
I had a situation like this before - thats why I never use the start bar, I always go Start -> Run -> "logoff" – pzycoman Sep 15 '08 at 16:23
4  
If you're quick enough, you can run this at a command prompt to abort the shutdown: shutdown /a – DOK Oct 24 '08 at 18:48
1  
I tried to do that and got lucky with the "are you SURE you want to shut down the REMOTE MACHINE?" prompt. – CindyH Mar 20 at 16:13
3  
In remote desktop, shutdown is removed from the start menu. AND, if you attempt a shutdown anyway, it gives a warning that it is a remote machine. – Nick Whaley Apr 30 at 16:29
1  
We had some servers that sometimes wouldn't restart when you told them to. It just logged you off the RDP session, then stopped doing very much. So I used shutdown -i to tell it to restart. Sadly, I forgot to change it to restart instead of shutdown. Sadly, as a dev I don't have physical access to the equipment room and had to ask one of our server team if they could please go and press the power button... – pipTheGeek Sep 24 at 11:50
show 6 more comments
vote up 40 vote down

Mopping the computer room floor, and hitting the (uncovered) emergency shutdown button with the handle of the mop. I did not get points for mopping the floor.

The lesson here? If your emergency button is not protected, it's going to get tested.

link|flag
1  
Happened here, too. Someone just lend at the wall and did not realize what he has done until the administrators rushed out yelling. – Yaba Dec 15 '08 at 14:02
1  
One time when I switched the tape backup in our Novel server, the pen it my hand hit the power button. Thankfully it happened during lunch. – TravisO Dec 20 '08 at 21:33
2  
At my previous work, a guy had the computer, the tower, on the floor and the button for reseting it was prominently out and at the bottom of the machine. The result is that half the time someone sat with him to talk or pair, they would reset his machine. The problem was solved with a coke top and scotch tape. – J. Pablo Fernández Sep 22 at 8:26
show 3 more comments
vote up 36 vote down

http://thedailywtf.com

link|flag
2  
That site might be a better place to post these kind of stories though. I think this post would get pretty cluttered with everybody's wtf and especially the ensuing arguments over whether it truly is a wtf or not. – Bloodhound Sep 15 '08 at 16:55
show 5 more comments
vote up 33 vote down

Ooh! Embarrassing confessional time. The first one that comes to mind was shortly after I switched to OS X from years on Windows and had basically forgotten anything I knew about unix.

I was working on a personal project and decided I was at a point where I should backup my stuff. So I opened up the command line:

gzip *.py

Oh man! It zipped every file individually! Right, I have to tar them first. Okay

rm *.gz

Wait! Why is my directory empty?! Oh no....

Yeah, I also forgot that gz doesn't copy and zip, it zips in-place.

I got lucky, though, and still had most of the files open in my editor.

This was what convinced me to finally install a version control system on my home machine and use it for my own stuff.

link|flag
7  
I am of the opinion that gzip should not do that. Sigh. – Dietrich Epp Jun 4 at 0:13
1  
Everytime I read this it makes me wonder why people use command lines for such things... A GUI just sounds so much safer to use. – PRINCESS FLUFF Jul 25 at 8:18
2  
A GUI might be safer, but it doesn't offer the same speed or options, once you get back used to using a command line there normally isn't a problem and you can work much faster without the need for GUI programs. – scragar Aug 25 at 23:48
show 4 more comments
vote up 31 vote down

Removing safety checks in a sales application for a tradeshow and deploying it immediately is a bad idea :)

A few years ago, I was responsible for slapping together an ad-hoc sales program for a company that was selling its products at NAB. The system was to be run on laptops connected to USB card-reader out front, all connected to a "server" in the back part of the display. We ran a bunch of tests to make sure the card readers worked, and that we could properly charge credit cards and everything looked great.

The first morning we started off with pretty brisk sales, and it looked like the system was performing as expected. Then at about 11am, a guy gets shown into the back room and says that he went to use his credit card at another booth and it was declined; after calling his company they said he had reached his limit and the only other purchases today were listed as being from us.

This is what had happened: the salespeople were complaining that they had to press {ENTER} everytime after they swiped the card to verify the amount and send the credit charge through. Figuring that everything was ok, I circumvented the dialog and had the app just send the charge directly. What I didn't realise was that the USB card readers could actually send the "swipe" message several times in a row and now the program was merrily charging people far more than they expected.

I spent the remainder of that morning crawling through the hundreds of credit card transactions voiding all the duplicate/triplicate/.... charges we had made. Never, never again :)

link|flag
show 1 more comment
vote up 31 vote down

Built a new machine at home several years ago. Plugged it all in, and nothing worked - looked like the Motherboard was dead.

Spent a couple of hours removing and replacing stuff, including the PSU and the power cable. Called a friend for advice. Swore a lot. Convinced myself that I'd broken my shiny new toy.

I eventually thought I'd replace the 4-way extension lead it was plugged into. That's when I noticed that I'd switched it off at the wall.

link|flag
2  
At least that's better than rewiring an extension lead when it's still plugged in, which isn't an experience I want to repeat. – Pete Kirkham Nov 2 '08 at 13:57
6  
I screwed my mobo directly to my case once. That was before I learned about $4 standoff screws. Apparently they're cheaper than replacing your CPU.... – Mike Robinson Feb 23 at 17:19
show 1 more comment
vote up 30 vote 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"

link|flag
1  
Same here, only it maxed out the card then the remaining 28 were over-drafts at $25 or the first 2 and $35 for the rest. – Unkwntech Sep 15 '08 at 15:49
2  
Normally you can cancel CC transactions before they're settled which usually happens at midnight. And yes, never use real card details for testing, use the magic numbers. – Totophil Mar 13 at 11:56
show 2 more comments
vote up 27 vote down

Programming a data synchronization system trough FTP, I didn't think what would happend if the FTP wasn't able to CD into a directory. Well he wasn't able to do it so it stayed in the root.. and after finding a lot of files that didn't match the synchronized system. Well the script started to delete everything in the server.....everything.

I realized half an hour later when the script was around the WINDOWS\System32 folder....

link|flag
show 1 more comment
vote up 27 vote down

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.

link|flag
1  
I've seen worse. Every PC in every government hospital in the state of a certain western country has software which uses Crystal Reports via ODBC for reporting. One day I was trying and find out why a report wasn't working after one of their updates (I was working in the hospital at the time). I loaded up the report into Crystal Reports and it prompted me for a password for the "Report" user. Of course I guessed it first time...the problem? This "Report" user was (and may still be) in the database admin group. So basically every PC could connect to and alter any database or table... – Si Sep 24 at 5:03
2  
...I couldn't believe this, double and triple checked, then modified my own user to prove it. Some of the DB's have VERY sensitive medical data. So I report it to my boss and we quietly have a word with the team responsible...yeah, they know about it, too hard to fix. WTF! So we formally notify the team and it gets "actioned". Nothing changed in the 2 years after I reported it, and this was ~5 years ago and the AFAIK the software is still in use today. – Si Sep 24 at 5:06
show 4 more comments
vote up 26 vote down

As a vendor, I was working inside a data center of a private ATM (automated teller machine) network. One of the customers PIN had to be reset as part of our maintenance work. I knew the encrypted PIN block of 1234 and wrote something like the following in SQL Query Analyzer:

update atm_card set pin = 'BA3452318689A190'
where card_id = 5

and somehow I selected the first line and pressed F5!! I didn't realize my mistake till the call center started getting calls from customers that there PIN was not working. There were around 10 calls in 5 minutes. When somebody from the call center approached me, I realized the mistake and temporary delayed breaking the catastrophic news by saying that the PINs will work when the maintenance work was over.

I saved the day by looking for any backups the data center had taken that day; restoring the database with a separate name and running another update query referencing the external DB!

Lesson learnt: Always, disconnect production servers and take database backup before making any changes

link|flag
show 2 more comments
vote up 24 vote down

edited command.com and changed ". . ." to "..." since I though it was a grammar mistake. DOS 5 did not like that and would not boot

link|flag
12  
You're concerned about typography in system files? I actually like that! – MattW. Sep 15 '08 at 16:52
show 3 more comments
vote up 24 vote down

I once wrote a symbolic assembler in itself. I actually punched the source card deck and brought it into the machine room before realizing that I had no way to translate it the first time. Not a great public embarrassment but I did feel awfully stupid standing there trying to figure out which binary executable to load.

-Al.

link|flag
2  
What a cool way to discover the need for bootstrapping! – oefe Jan 18 at 16:52
2  
Dude! When was this? – Beska Mar 19 at 21:44
show 1 more comment
vote up 24 vote down

Keeping it on the police theme.

I was demoing some software our team developed, for a major credit card company, to the management. It was my first project and first demo, so I was a little bit nervous.

The software would automate incoming calls, from customers, after they had keyed in their credit card details. Once the call reached the correct hunt group (correct team\department), the software would retrieve all their details, including account history, faxes and scanned letters and images. This was quite leading edge at the time (early nineties).

Okay, I was sitting at the computer, with all the executives, managers and consultants, explaining how you just simply dial a number and the software just kicks in. I made a fictitious call typing 9999 on the office phone connected to the system, which invoked a dummy customer. All was well, I demonstrated the software and it's functions. Everyone seemed happy.

Towards the end of the demo a call came from ground floor reception, saying the police were downstairs and rushed in to a 999 call, from me - WTF! I forgot that dialing the first nine would make an outside call, then the next three nines, called emergency services.

The demo came to premature halt and I had to go and convince the police it was all my fault!

The credit card company took our software.

link|flag
show 3 more comments
vote up 23 vote down

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.

link|flag
2  
Breaking the build on one's very first commit to a big open source project, where have I heard that before? Oh wait, I did it! Oops. :D – KTC Sep 20 '08 at 4:37
show 4 more comments
vote up 21 vote down

Trying to cleanup old emacs auto-save files (end in ~) by typing

prompt>rm *~<enter>

Instead, I hit

prompt>rm *<enter>
prompt>~
link|flag
7  
We've all been there. :D – KTC Sep 20 '08 at 4:36
3  
I did something similar in the /etc/modprobe.d directory, I wanted to delete some files called test, test2, etc. so I did: sudo rm test *. Had to reinstall Ubuntu :( – Firas Oct 28 '08 at 13:36
show 6 more comments
vote up 21 vote down

Told wife the dress made her look fat. :)

No, really... I changed some value in sql 6.5 that told it how much memory to use. But the box was for physical memory, and I put in an amount more than the machine actually had installed. "You must restart the service for this change to take effect" which I did. At 1am, on a production server, and I didn't check the backups, which had been failing btw... anyway, the service wouldn't restart because it couldn't allocate the memory, and I couldn't change the setting because I couldn't connect to the server object because it wasn't running because it couldn't start because the value was wrong and I couldn't change it because, well, you can see the loop here...

$249 to mss and an hour on the phone with a Guru and we found the registry setting. I finally got to bed at about 4am...

link|flag
show 6 more comments
vote up 21 vote down

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.
Lesson #2: Make sure that your data doesn't ever look misleadingly correct.
Lesson #3: None of the credit card companies called us to ask why we were submitting so many transactions beyond people's credit limits.
Lesson #4: This is a good way to get a list of your customers with large credit limits.

link|flag
show 1 more comment
vote up 18 vote down

In a former life where I still had to do tech support and given that I still don't understand digital phones I had two very angry customers with different problems about different bits of software neither of whom were english-first-language, and I managed to connect them on a party line by themselves. I can only imagine how that played out.

link|flag
show 1 more comment
1 2 3 4 5 8 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.