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

1 2 next
vote up 81 vote down check

The best bug report I ever got was for the Sims 2. The bug report was, "Ugly naked guy appears."

The bug turned out to be that the NPC in question had clothing from an expansion pack, and the expansion pack wasn't available so he would turn up to your house naked.

link|flag
show 2 more comments
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
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 6 vote down

A long time ago, I knew a guy that had to create a left to right scrolling banner with Javascript for a website.

When he was done, it turned out that if you made the window smaller than the width of the site, the whole site would scroll right to left, while the banner held still.

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 6 vote down

Coding some assembler on an old Amiga A1200 (15-17 years ago) I was trying to blit an image onto the framebuffer in my program. Didn't work, but it still ran through the loop without hitch.

I shifted between the asm and the program a few times, then I decided to give up for the day

Now, the Amiga had fast preemptive multitasking (for its time) due to the lack of inter-process memory protection (i.e. no MMU/TLB).

So, when I closed the assembler and saw the desktop, in the background was my picture!!

(I had copied the image alrigth, to the wrong place, which was on top of the desktop background picture, managing to not overwrite any critical code or data. It was there until the next reboot. 8-D)

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

Programming a boss monster for a platforming shooter. The boss had a very simple behavior pattern: if at long range, throw a grenade. Otherwise, occasionally fire bursts from a machine gun. In any case, close to within a certain distance from the player. Simple, right? I went with a simple signum function to determine which direction to move. (If it matters, positive x is to the right.)

x+= 3 * sign(x - Player.x);

See the problem?

Consider Player.x = 200, Boss.x = 400. sign(400-200) = +200, and the boss moves RIGHT.

Enemies were also coded to die immediately if they left the play area.

Battle starts, boss walks backwards off the screen, dies horribly, battle ends.

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

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

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 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 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 2 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

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 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 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 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 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 52 vote down

At Microsoft, there's a hardware test lab that's responsible for testing the zillions of webcams out there against each new build of Windows to make sure it doesn't break anything. One of the webcams was rolling when the 2001 Seattle earthquake hit.

After that earthquake, every bug database in the entire company had a few bugs entered of the form "when I click on the Update button, the entire lab starts shaking", or "when I deleted the file, things started falling off the shelves".

Most of the bugs of that form were closed "not repro".

link|flag
show 2 more comments
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 7 vote down

An employee added some grid adorner code to the OOFILE report-writer engine, to draw borders around tables. It crashed the Mac every time he printed.

After an unknown time it was turned over to me to debug, being responsible for most of the report writer code - I was expected to have some magic insight.

It was only through very slow sing-stepping that I noticed that at one point he redrew a line on top of itself, rather than having more complex conditional logic deciding when to draw a line or not. On nothing more than instinct, I took that code out and it fixed the crash.

I came to the conclusion that the Laserwriter printer driver, which was converting Macintosh PICT drawing commands to a Postscript program, was unable to handle identical line segments drawn on top of each other.

Thats my funniest bug I can remember, in over 25 years. I can't remember what time in the morning I finally found the bug but I'm pretty sure my ecstatic yell set off a few car alarms in the adjacent park.

link|flag
vote up 13 vote down

I was recently debugging some code on a coworker's machine and noticed subtle typos peppered throughout his code. Every lowercase letter l had been replaced by an almost-identical number 1. I was about to point this out, amazed that the code even compiled, but stopped myself when I realized the problem.

Many moons ago, when we were first learning linux, I figured I'd help him hone his troubleshooting skills by creating an alias in his .bashrc startup file. (Right about now, the corner of your mouth is curling up in a smirk, isn't it?)

Right: I aliased the cat command to make that replacement each time he typed a file. And in all these years, he'd never noticed anything wrong, and he never found my joke!

It's still there ... waiting.

link|flag
1  
You're evil. – OregonGhost Sep 23 at 10:08
vote up 21 vote down

While editing Rise of the Triad I forgot to place the stopper code that should prevent a moving wall from 'walking off the map' and all of a sudden, this drawing popped-up:

link|flag
1  
Oh very nice, lol – Erik Dec 6 '08 at 0:53
2  
Classic. Game programming bugs usually amuse me more because instead of dealing with a program, you're dealing with a creation, you think of it differently. That monster AI that you couldn't get to stop running in circles? Yeah that got implemented as a feature for drunk monsters. – Sneakyness Jul 24 at 22:10
1  
A sense of humor and an Easter Egg? +1 Classic! – Avery Payne Sep 3 at 19:31
vote up 21 vote down

While learning a new computer system, I wrote a program to play blackjack. One of the people using it discovered that he could enter a -negative- value for the bet and then deliberately lose the hand. When this happened, the program obediently subtracted the negative value from the player's money total, thus giving him more money every time that he lost.

Since that day, I have been a lot better at checking user-entered input values.

link|flag
show 1 more comment
vote up 0 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 5 vote down

Not really a bug, exactly. But, on one of my first paid gigs I was working with an ISAM database library that prefixed all of its error-reporting functions, constants, and other related stuff with "wtf_". Being young and rather naive, I didn't understand the significance of the prefix until the first time it actually reported an error, and I uttered the three magic words.

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 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 4 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
1 2 next

Your Answer

Get an OpenID
or

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