1
vote
6answers
64 views
oracle pl/sql bug: can’t put_line more than 2000 characters
Has anyone else noticed this phenomenon where dbms_output.put_line is unable to print more than 2000 characters at a time?
Script is:
set serveroutput on size 100000;
declare
…
4
votes
13answers
212 views
Common reasons for bugs in release version not present in debug mode
What are the typical reasons for bugs and abnormal program behavior that manifest themselves only in release compilation mode but which do not occur when in debug mode?
1
vote
3answers
22 views
Is there a BUG Calatog, classifying the bugs with general descriptions?
Hi,
Is there any work done on classifying the bugs; practically categorizing and sub-grouping them based on their their occurrence place, side-effects, complexity and so on? With …
0
votes
1answer
45 views
Is jWYSIWYG editor too buggy for production use?
After reading the comments on this site:
http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/
There is a bit of consensus that jWYSIWYG editor is too bu …
3
votes
8answers
203 views
Help with strange Delphi 5 IDE problems
Ok, I'm going nuts here. For the last (almost) four years, I've been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include:
Seemingly random errors …
0
votes
1answer
70 views
Ie7 float right bug?
I have a div floated right. Inside that div are two other divs. The first div has a background color and when I refresh, it's "bleeding" into the second div. (Sometimes in front …
0
votes
1answer
84 views
Go bug tracking / report system?
Where can I file bug reports for the Go language? I mean reports about a crashing compiler or something else about Go that does not work as advertised. It would also be interesting …
0
votes
2answers
67 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 …
67
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 …
4
votes
2answers
86 views
Is this is an ExpressionTrees bug? #2
Looks like ExpressionTrees compiler should be near with the C# spec in many behaviors, but unlike C# there is no support for conversion from decimal to any enum-type:
using System …
2
votes
1answer
246 views
Did you ever encounter commercial VCL component/suite without bugs? [closed]
I've used a lot commercial components, over the time. Now I just use a few. Almost all came with bugs. Some were minor and some disastrous. This is not bashing. We all produce bugs …
0
votes
1answer
41 views
change the position of jQuery UI Datepicker
Hi all,
I am using the jQuery UI Datepicker.
However a vertical CSS scrollbar overflow-y:scroll causes a bug for Firefox, Opera and Safari.
This bug can easily be reproduced by …
9
votes
3answers
150 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 …
5
votes
2answers
209 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 …
11
votes
21answers
558 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 …
