Tagged Questions
A bug is a software or hardware error / mistake that produces an incorrect or unexpected result or behavior.
71
votes
29answers
3k views
Do Programmers Create Bugs? [closed]
Recently I had an unfriendly discussion with a client with him stating that "he can't pay for fixing the bugs in the application that I built for him".
His reason is simple:
I can't pay for bugs ...
64
votes
3answers
2k views
Strange behaviour after loop by reference - Is this a PHP bug?
I just had some very strange behavior with a simple php script I was writing. I reduced it to the minimum necessary to recreate the bug:
<?php
$arr = array("foo",
"bar",
...
55
votes
3answers
3k views
How serious is the Java7 “Solr/Lucene” bug?
Apparently Java7 has some nasty bug regarding loop optimization: Google search.
From the reports and bug descriptions I find it hard to judge how significant this bug is (unless you use Solr or ...
42
votes
2answers
1k views
Stupefyingly weird IE 9 Javascript bug: Altering doc title makes subsequent code execute
I don't understand this at all. Here is some Javascript code that works in every browser but IE 9. It is called from a Flash movie using ExternalInterface, and is meant to dynamically resize the movie ...
39
votes
4answers
1k views
C# 4.0 Compiler Crash
This code sample is not able to be compiled. Any work arounds out there?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
...
35
votes
0answers
716 views
Mathematica evaluates expression once, then returns the expression unevaluated [closed]
Mathematica 8.0.1 on Mac OS X 10.7.2 does this: Quit the kernel and execute
MathieuS[MathieuCharacteristicA[ 1, -(1/4)], -0.25`, 15.707963267948966`]
MathieuS[MathieuCharacteristicA[ 1, -(1/4)], ...
18
votes
4answers
354 views
Point Renderings Slightly Off in Mathematica
The Mathematica code
f := #1 + Sin[2 #1] &;
inflectionPoints = Table[{x, f[x]}, {x, -Pi, Pi, Pi/2}];
stationaryPoints = Union[
Table[{x, f[x]}, {x, -2 Pi/3, Pi/3, Pi}],
Table[{x, f[x]}, ...
16
votes
2answers
471 views
Getting the Mathematica front end to obey the FontFamily option
When it comes to Chinese characters, I am unable to get the Front End of Mathematica to use the fonts of my choice. How can I get it to use the fonts I need?
Here I provide two screenshots to show ...
15
votes
2answers
247 views
Is Java 7 at least as stable as Java 6? [closed]
I remember when Java 7 was initially released, there were many suggestions not to use it for anything as there were some bugs in compiler optimizations. This was apparently not merely hypothetical. ...
15
votes
3answers
341 views
Java breaks strong typing! Who can explain it? [closed]
Possible Duplicate:
Varying behavior for possible loss of precision
I found an inconsistence in Java strong typing check at compile time.
Please look at the following code:
int sum = 0;
...
15
votes
2answers
211 views
Why do some floating point numbers appear with a trailing 0
Does anyone know why the numbers 0.001 to 0.009 are rendered to a String with a trailing 0 but other numbers do not. e.g. numbers 0.01 to 0.09 do not.
System.out.println(Locale.getDefault());
for ...
15
votes
2answers
248 views
Why do those Thai characters display on the web page with a long tail?
ด้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้дด็็็็็้้้้้็็็็้้้้้็็็็็้้้้้็็็็็้้้้้็็็็็้้้้้
I found some interesting characters just as I pasted above which takes ...
15
votes
5answers
2k views
Is History API broken on iOS? (Location bar doesn't update on pushState)
Filing this under the either the I Can't Believe No One Noticed This Before or the I Must Be Missing Something categories:
It appears that if you do a simple window.history.pushState on iOS, the ...
14
votes
3answers
281 views
Why does Default behave like this?
One may set a Default value for the arguments of a function:
Default[f] = 5;
And then use:
f[a_, b_.] := {a, b}
f[1, 2]
f[1]
{1, 2}
{1, 5}
This creates the following Values:
...
14
votes
7answers
1k views
really weird eclipse keyboard behavior/bug?
I am using Helios on Mac Snow Leopard. I don't know why but all of a sudden my arrow keys and delete button start not working only on Eclipse(so Eclipse ignores them) but the rest of the buttons works ...
13
votes
1answer
208 views
Issue with Sum of Floors in Mathematica
I'm using Mathematica 8. When I try the command
Sum[r^n Floor[n/2], {n, 0, Infinity}]
I get
r^2/((-1 + r)^2 (1 + r))
which is correct, but starting from 1 instead of 0:
Sum[r^n Floor[n/2], ...
13
votes
1answer
270 views
Java regex anomaly?
Can anyone tell me why
System.out.println("test".replaceAll(".*", "a"));
Results in
aa
Note that the following has the same result:
System.out.println("test".replaceAll(".*$", "a"));
I have ...
13
votes
1answer
272 views
Is this an C# 4.0 compiler optional parameters bug?
I'm writing custom security attribute and got strange compiler behaviour... When I'm using the attribute at the same file, default parameter values works fine:
using System.Security.Permissions;
...
10
votes
1answer
100 views
Can you explain this Mathematica $Assumptions behaviour?
Consider the following three lines of Mathematica code and note that input line 1 and 3 are exactly the same (This is the smallest piece of code I found to demonstrate this behaviour).
>> ...
10
votes
4answers
211 views
Odd typing bug in Scala
Take a look at this:
scala> class Container(val rows: Iterable[Iterable[Option[Any]]]) {}
defined class Container
scala> val row1 = Array(Some("test"),Some(1234))
row1: Array[Some[Any]] = ...
9
votes
1answer
165 views
Strange behavior of Set4 in scala 2.9.1?
Making a migration from 2.8.1 to 2.9.1 found interesting thing.
Tried to write this in console:
>>import collection.immutable.Set.Set4
>>new Set4[Int](1,2,3,4)
It gives:
...
9
votes
1answer
87 views
php static in if statement
I have a construction like this in my config file:
<?php
if (true) {
$nonstatic = 1;
static $config = 1;
}
else {
$nonstatic = 2;
static $config = 2;
}
echo $nonstatic;
echo ...
9
votes
4answers
407 views
Qt style sheets bugs?
I have a many bugs at simple QSS(Qt style sheets). Is it bugs of Qt?
Example:
Style sheets:
#check1 {
color: red //didn't work here
}
#check2 {
color: red; ...
9
votes
3answers
227 views
Known issues with copying code from Mathematica to other platforms?
I just noticed that if you have this in MMA (8.0.1 / win7-64):
and you copy it to SO (just ctrl-c ctrl-v), you get this:
(maxY - minY)/stepy/(maxX - minX)/stepx
which is not mathematically ...
8
votes
0answers
62 views
Sometimes GTK modal dialogs are not modal — bug or feature?
When I create a custom dialog in GTK (both, GTK2 or GTK3) and set it to be modal, all input to other windows of my application is ignored. This works nearly always, but it fails under certain ...
8
votes
3answers
120 views
Nested Default Maps in Scala
I'm trying to construct nested maps in Scala, where both the outer and inner map use the "withDefaultValue" method. For example, the following :
val m = HashMap.empty[Int, ...
8
votes
1answer
88 views
scope of $this is funked in PHP is it a bug or a feature?
I have this code:
class a(){
function b(){
if(isset($this){
echo 'instance! ';
echo get_class($this);
}else{
echo 'static';
}
...
8
votes
1answer
235 views
Most sophisticated CSS rendering bug of all time (IE9)
Take a look at this in IE9:
http://jsfiddle.net/dalgard/n6PDB/show/
screen dump:
Read these comments:
/*
* IE9: Upon moving the mouse a ghostly 1px vertical line appears 53px into the
* blue ...
8
votes
1answer
209 views
Overflow: hidden does not apply in Firefox 5 when set via JavaScript
This is confirmed to be a bug in Firefox and you can learn more about it at https://bugzilla.mozilla.org/show_bug.cgi?id=686247
I am setting overflow to hidden via jQuery but it does not get applied ...
8
votes
4answers
188 views
Java missing 28 seconds
I'm trying to extract a table from a database and reloading it in another type of database. The problem is that with my local settings the date 1 july 1937 poses a problem of gettng the timestamp when ...
8
votes
1answer
333 views
Reading an UTF-8 encoded text file in Mathematica
How can I read a utf-8 encoded text file in Mathematica?
This is what I'm doing now:
text = Import["charData.txt", "Text", CharacterEncoding -> "UTF8"];
but it tells me that
...
7
votes
3answers
131 views
How to stop barchart from hiding labels for data value 0 in Mathematica?
I use this to create a Bar Chart:
BarChart[
Reverse@data,
BarOrigin -> Left,
ChartLabels ->
Placed[{Reverse@labels, Reverse@data}, {Before, After}],
ChartElementFunction -> ...
7
votes
2answers
127 views
Illegal forward reference error for static final fields
I'm trying to compile a Java class which javac rejects with an illegal forward reference error, where the offending reference is lexically after the referenced field. The following class is stripped ...
7
votes
2answers
158 views
Why doesn't “use overload” work with “use namespace:autoclean”?
Ok just to sanity check overload doesnt seem to be working for me. I don't know if it's the version of perl I have, or the version of overload.pm, or something wrong with how I've implemented it, but ...
7
votes
0answers
401 views
XCode 4.2 - Has anyone else found Storyboard on Lion to be very buggy? [closed]
I'm using Storyboard in full screen on Lion with Xcode 4.2 . I'm encountering what appear to be several obvious bugs in the feature, and wondered whether anyone else is experiencing the same?
Here ...
7
votes
1answer
95 views
No mouse-scrolling in Pane objects?
The following Pane object does not scroll when the mouse wheel is used. Does anyone experience the same behaviour? Is it the default behaviour? Any idea why? Could it be platform-specific?
...
7
votes
2answers
202 views
MVC3 Json Bind Bug?
I recently encountered an issue while implementing a JSON solution for a client. If the action parameter name matches a property name of the model, the binder fails to bind ANY properties.
An ...
7
votes
1answer
136 views
Delphi 2010 - weird behaviour using refactoring->extract methode
Im facing this issue when i try to extract a methode in the if statement. i couldnt find any reported bug on it.
procedure TForm1.BitBtn3Click(Sender: TObject);
var
x: integer;
b: boolean;
begin
...
7
votes
2answers
571 views
IE9 JavaScript array initialization bug
Apparently JS implementation in IE9 contains (IMO, critical) bug in handling array literals.
In IE9 in some cases this code:
var a = [1,2,3,4,];
will create array of length 5 with last element ...
7
votes
2answers
754 views
ASP.Net MVC3 model binding bug
I've found a wierd scenario that prevents a bool? being posted back to the controller correctly. It's a very specific problem so follow the steps to recreate.
The application must be deployed as a ...
7
votes
3answers
599 views
Uncomprehensible jQuery $.ajax() behavior when data contains consecutive question marks
I hope this is clear enough, I have wasted a lot of my energy trying to pin this problem down, so I may not have much left for writing a perfect question. Besides, this might have to go into a jQuery ...
7
votes
1answer
88 views
Mathematica: Grokking 'maximal number of evaluations' argument for `NestWhileList`
I am using NestWhileList in a situation where it often hits the 'maximum number of evaluations'. After getting some curios results, I took a closer look at how NestWhileList reacts to having a maximum ...
6
votes
1answer
137 views
Using a compiled listable function on non tensor lists
I am interested in using a Listable Compiled function on lists that need not be tensors. I want to understand why some functions work, where as others do not and shut down the kernel. Here is an ...
6
votes
2answers
63 views
Workaround for bugs in Python packages
I recently had the following problem: I'm developing a numerical library in Python (called spuq) that needs scipy at its core. Now one of the functions in scipy, its called btdtri, had a bug for a ...
6
votes
2answers
135 views
Is there a CSS workaround for Firefox' bug: inline-block + first-letter with changed size
It's better to see a bug for yourself in Firefox: http://jsfiddle.net/kizu/btdVd/
The picture, showing the bug:
And the bug filled in 2007 on bugzilla.
The bug appears when you're adding ...
6
votes
2answers
209 views
In python shell, “b” letter does not work, what the?
Well hello, this is the most interesting bug/conflict I've ever faced.
In python shell, I cannot type lowercase "b". At first I thought something was under the key, but no, in everywhere else it ...
6
votes
2answers
166 views
IE CSS “filters” break alpha transparency
I'm trying to figure out whether there's a weird solution to this weird problem.
Basically, IE >= 7 supports PNG transparency perfectly, and it has also supported a lot of the new cool stuff in CSS3 ...
6
votes
3answers
935 views
Incorrect width in Android webkit browser
I noticed a problem on Android's default browser, where 100% width may actually go past the edge of the screen. Here's a minimal test case:
<div class='separator' width=100% style='border: ...
6
votes
1answer
668 views
Could not load file or assembly App_Web_xxxxxxxx or one of its dependencies
The full error is:
Could not load file or assembly 'App_Web_xxxxxxxx, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
...
6
votes
2answers
203 views
Mathematica execution-time bug: symbol names
There is a strange bug that has been in Mathematica for years, at least since version 5.1, and persisting through version 7.
Module[{f, L}, L = f[];
Do[L = f[L, i], {i, 10^4}]] // Timing
...