5
votes
2answers
189 views
Should this bug be fixed?
I found a bug in the .Net framework yesterday and found that it is a known bug that won't be fixed. In short the bug is that a class that contains a field of the type IComparable c …
-9
votes
2answers
113 views
For what reason does an IDE not check to see if it can create a binary before compiling? [closed]
Is there a specific reason as to why an IDE would go through the trouble of compiling a project only to have it fail when linking?
I won't tell you why this bothers me, because a …
0
votes
2answers
78 views
Has a bug in your software ever turned out to be a feature ?
Has this ever happened to you? What was the bug or situation which was ended up becoming a feature? What was your experience with this?
8
votes
3answers
131 views
Is this is an ExpressionTrees bug?
using System;
using System.Linq.Expressions;
class Program
{
static void Main()
{
Expression<Func<float, uint>> expr = x => (uint) x;
Func<float,uin …
0
votes
1answer
50 views
Graphical Bugs while programmatically creating UILabel, UITextField, etc…
I programmatically created a login view and a table view.
Under certain circumstances which i cannot reproduce there occur some strange visual bugs:
Text with some letters havin …
0
votes
3answers
59 views
Debugging: High-level versus low-level bugs
What is the approximate ratio of time you typically spend debugging high-level versus low-level bugs?
For the purposes of this discussion, high-level bugs are things like incorrec …
11
votes
21answers
541 views
What is your most useful technique for finding (or preventing) bugs?
I'm wondering from your experience, what is the most useful techniques for finding (or preventing) bugs? Or to ask this another way, how do rank these techniques in your own exper …
66
votes
110answers
11k 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 c …
0
votes
3answers
105 views
Win7: Out of Memory exception on Image.FromFile
The following piece of source does run nicely with Windows up until vista.
With Windows 7 (and the new .net 3.5) it always produces an out of memory exception, when I try to load a …
9
votes
6answers
123 views
Best ways to fit bug fixing into a Scrum process?
I have been studying and reading about Scrum in the last few days and reading about Spring Planning and tasks, one problem that popped into my mind is how to deal with bugs in Scru …
0
votes
3answers
77 views
PHP - Bug in polygon GD library?
Hi guys,
I have run into some trouble with the gd library's imagefilledpolygon().
For some reason some of my lines were ending up 1px out of place so I decided to debug it using …
36
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-experie …
20
votes
50answers
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 (s …
0
votes
3answers
24 views
MySQL 5.1 command line problem: delete last char doesn’t work
I can't delete the last character in a given line in the MySQL CLI, if I press "END", it will jump on the character and if I press "DEL", it will delete the char before that (like …
4
votes
8answers
189 views
Have you ever been the victim of a bug in a programming language or technology?
Bugs can be difficult enough to resolve when they're your (or a coworker's) fault. However, we all know that the technology we use to implement our programs is written by infallib …
