71
votes
116answers
12k views
What bug tracking software do you use?
I'm currently looking at Bugzilla and Trac, as they seem to be the most popular (and I'm hoping that also means if there are any problems, it will be easier to get help), but I'm curious what …
37
votes
69answers
8k views
What’s the toughest bug you ever found and fixed?
What made it hard to find? How did you track it down?
Not close enough to close but see also
http://stackoverflow.com/questions/175854/what-is-the-funniest-bug-youve-ever-experienced
33
votes
47answers
6k views
What is the most frequent concurrency problem you’ve encountered in Java?
This is a poll of sorts about common concurrency problems in Java. An example might be the classic deadlock or race condition or perhaps EDT threading bugs in Swing. I'm interested both in a breadth …
25
votes
25answers
2k views
Perl - Common gotchas?
The question on Hidden features of Perl yielded at least one response that could be regarded as either a feature or a mis-feature. It seemed logical to follow up with this question: what are common …
21
votes
51answers
4k views
What is the funniest bug you’ve ever experienced?
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 …
18
votes
12answers
2k views
IE 8 dropping memory pages?
This question is a spin-off/evolution of this question. (That question got marked as resolved because I put a bounty on it and it auto-resolved, but it never really got answered.)
The summary is …
18
votes
16answers
906 views
When should assertions stay in production code?
Hi all,
There's a discussion going on over at comp.lang.c++.moderated about whether or not assertions, which in C++ only exist in debug builds by default, should be kept in production code or not.
…
16
votes
16answers
794 views
Comb Technology
This question is about the rare case of software that is neither in active development nor moribund.
First, why is it so rare for software to ever be finished? It seems "no longer in active …
16
votes
24answers
1k views
Java - Common Gotchas
In the same spirit of other platforms, it seemed logical to follow up with this question: What are common non-obvious mistakes in Java? Things that seem like they ought to work, but don't.
I won't …
15
votes
28answers
2k views
What is the most interesting bug you have fixed?
On a recent round of interviews, one interviewer at "a leading brand technology company" asked - as an ice breaker - this question. I thought it was a good question, worth asking (and warning) others.
…
13
votes
1answer
537 views
Is this is an ExpressionTrees bug? #3
Expressions class should be more accurate while searching for user-defined operators?
sealed class Foo
{
// just the private static method!
private static int op_Implicit() { return 1; }
…
13
votes
21answers
770 views
What about fixing actual bugs in an interview?
My primary responsibility is a software developer, but I have also been tasked with doing the first level technical interviews of perspective clients. I enjoy it, so I am glad to do it, but I am …
13
votes
35answers
1k views
Hardest types of bugs to track?
What are some of the nastiest, most difficult bugs you have had to track and fix and why?
I am both genuinely curious and knee deep in the process as we speak. So as they say - misery likes company.
…
13
votes
25answers
1k views
What interesting programming bugs have you seen?
Finding bugs is part of a programmer's lifestyle. But there are some bugs that are just plain weird and the solution to them are unintuitive.
Post stories that has happened to you or someone else …
12
votes
30answers
2k views
What is your best/funniest/annoying performance tuning experience?
Often we find changing a few lines of code makes n-fold performance increases in applications.
One such experience for me was fixing an issue in the configuration library. The library was based on …
