vote up 21 vote down star
32

I remember testing a geographical data normalizer written in Java that had concurrency problems. So, when you tried to normalize a city (say "Rome") and another guy did that too (say "New york"), you would get the other guy's data normalized ("NEW YORK") instead of your query.

What's the bug that mostly made you smile in your career?

flag
show 1 more comment

51 Answers

prev 1 2
vote up 3 vote down

As a teaching assistant in college I had a student come to me with a listing. "I don't understand why this doesn't work," he said. "It's too SHORT to have any bugs in it!"

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

Many moons ago the company I worked for changed the location where images for our web app were located. It took some time for this change to percolate thru the source tree, so for a few builds we had red X's on many of our web pages (buttons, logos, etc) as paths were adjusted. This was obviously frustrating to a lot of us...

After the dust settled several weeks later the red X's appeared again! The paths were right, the code looked good. What was wrong?

Some prankster (ahem) had checked-in an IMAGE of a red-X on top of most of the 'real' images - buttons, logos, etc. So on subsequent builds we DEPLOYED a bunch of red-X images!

TG for rollback.

Brilliant!

link|flag
vote up 3 vote down

the first time i ever learned about C, i tried homework #1

#include <stdio.h>;

int main() {
  printf("hello world");
  return 0;
}

and for an hour the program will not compile... and then later on, i found that "in C, every statement should end with a semicolon" doesn't apply to a preprocessor line...

link|flag
vote up 2 vote down

A friend in college asked me why his code wasn't compiling. I was reading over it and found he had a variable named IndexOfSmallest, but at one point he had misspelled it as IndexOfSmellest. Now that's what I call a code smell!

link|flag
vote up 2 vote down

In the college days, we were supposed to chose a classic concurrent problem and deliver a resolution on C. A friend was working on The Sleeping Barber problem and asked me why his code was not working. When he ran the program to show me what was happening, the following appeared on the screen:

I'm gonna release
I'm gonna release
Sit on the Barber!

I'm gonna release, in portuguese, is an obscure sexual pun...
The error was unrelated to the output, but the unexpected and hilarious image of customer asserting his homosexuality and sitting on the barber is something always remembered when there is a reunion of our old college gang.

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

When using TOAD for Oracle, I would get the error message "Error: No Error". Makes you scratch your head now and then and say "what!?"

link|flag
vote up 2 vote down

In C/C++:

 #define true false // happy debugging losers
link|flag
1  
I get it - you typed 'loosers' instead of 'losers'! – Andy Mikula Apr 17 at 16:16
vote up 2 vote down

when in junior high, a bunch of us were just learning to program in BASIC.

and we typed in a program

for i = 1 to 1O
print i
next i

and it couldn't run... so the few of us including a more senior guy was going over it about twenty times. and we thought, maybe the computer got crazy or maybe the motherboard was too hot... and then at last we found that the 0 was typed by the guy as a capital "o".

link|flag
vote up 2 vote down

When I was first working with ML for class, I wrote a quicksort method that just would not terminate, ever! I would enter my call to test quicksort in the interpreter, press enter, and then wait and wait and wait until I got fed up and killed it. Eventually, I stepped through my program by hand, step-by-step, through all the recursions, and proved to myself that it MUST be terminating. It was only then, after nearly an hour of debugging, that I realized the interpreter was simply waiting for me to enter a semi-colon to tell it I was finished with my input and to interpret my command. The quicksort method worked perfectly.

Another fun one I do ALL the time:

for (int i = 0; i < height; ++i)
{
    for (int j = 0; j < width; ++i)
    {
    }
}
link|flag
vote up 1 vote down

I added some test code that called our unexpected exception handler with the text "this is not an error", and put it in the File->Exit code to make it easier to test. I'm more of a "red X" guy, so I kinda sorta forgot about it... until a customer reminded me.

link|flag
vote up 1 vote down

I once misspelled the name of a constructor in C++:

class TotalBBBetaTeams {
    public void TotalBBetaTeams() {
       // code would never get called.
    }

};

Now, of course I got the compile error that I was missing a return type first, so the "void" there was added to fix that error, instead of fixing the spelling. Constructors don't (can't) have return types.

link|flag
vote up 1 vote down

When I had just met my future wife I was walking around twitter pated for a while.

After replacing a critical financial report formula with the following bug

SET A = A

my employees rebelled and forbid me to code for the next two weeks.

link|flag
vote up 1 vote down

While debugging i found something like this:

if(dataRow.isBirthDateNull)
{
  //some error handling code here...
  errorMessage = "..." + dataRow.BirthDate.toShortDateString();
}

First i thought was... omg this guy fails at fail!

link|flag
vote up 1 vote down

This is not a strict developer bug but anyways...

When building an electronic device for our company everything worked out very well. The PCB-layout turned out to work and every card we got manufactured worked.

We built a complete system and in our test bench everything worked out nice.

But when it was time to take the system live the communication between the "master" device and a computer would not work, we got strange messages and so on ... After a while we stumbled upon the solution, pick a 1 ohm resistor and put it in series with the power supply, everything worked! At present we do not really know why this solved our problem, some kind of low pass filter ... but hey ... it compiles, ship it.

link|flag
vote up 1 vote down

One of our programs had placeholder error messages during development, they were supposed to be replaced by localized messages before the release of the program. However, at least one of them wasn't. One day our support desk got a call from a scared customer who didn't dare to touch the computer after "TERRIBLE ERROR!" popped up on the screen...

link|flag
vote up 0 vote down

Trying to execute a 'dump' program but constantly misspelling it as 'dumb'.

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

A configuration file setting in a 3D simulation I wrote accidentally scaled everything by multiplying by zero. The result was that nothing appeared in the world. Several days of adding sanity checks finally found the culprit.

It's funny now, but not at the time. It taught me the value of adding asserts.

link|flag
vote up 0 vote down

I was writing some stock code to recursively delete all the files/directories after a process had been completed. Easy stuff.

I ran the program and imagine my surprise as all my source code files suddenly disappeared.

The working directory in question was a subdir of the bin directory, which was in turn a sub dir of the source code. No problem right? Except my base case test to halt the recursion had an error which caused it to perform 2 more iterations than necessary.

Due to the secure delete utility we were using, I lost about a week's worth of code.

I like to think that my software humbly committed suicide in protest against its massively incompetent creator.

link|flag
vote up 0 vote down

One of the very first programs I wrote was a small BASIC program that generated 7 random numbers for the Lotto. I won $7 the first week. The following week I ran the program again and was baffled by the output being something like 2,4,7,7,10,26,26. That was very hard problem for me at age 11. That ugly old ABC80 sure taught me a thing or two.

link|flag
vote up 0 vote down

My funniest bug was when I was just entering college. In high school, we were using Pascal, while the college class I took was using C++. Naturally, I was still using Pascal conventions.

While writing one application for the C++ class, I forgot about the C convention of () after a function name and was still working as I would a Pascal programmer. Instead of getting back something logical like "functions must be terminated" or something similar, the compiler was telling me that it was an invalid variable cast. Took me about an hour of searching for help on the problem to fix it, but I got MS to create a bug report and got my program finished. Never forgot the differences between conventions again.

link|flag
vote up 0 vote down

Ok, I just got a compiler message that seems like too funny of a bug and makes my previous answer look pathetic.

In Delphi 5 (maybe in others too), set a breakpoint on a begin statement, let the code run to the breakpoint, then do an evaluate/modify on the begin. The error message is "Expression too complicated".

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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