bugs

Android 2.1 bug: uses res/layout-v3 instead of res/layout

In addition to the general res/layout folder I have a res/layout-v3 folder for backward compatibility with Android 1.5, which has problems with some RelativeLayout layouts. It works perfectly with all phones and emulator versions tested so far. Except of 2.1 (emulator and Nexus One). They choose to display the Android 1.5 layout (res/la...

Jquery Animate + Fade Effect bug

Hello, before posting I want to tell you "Sorry for my English". I've got a problem with JQuery. http://socialworld.den-style.net/ if you click "Nascondi" under the Logo you will see that the #post go to the right and then "comes back" to its old position. How do I can fix this error? Thanks a lot. ...

Biggest Delphi nitpicks

What sort of minor annoyances do you run into using Delphi? I'm not looking for major issues such as "I want a 64-bit compiler." Just little things that can be easily worked around but still should have been implemented better so you don't have to work around them? Marking this CW. I'm more interested in the answers than the points. ...

ccs compiler multiple compilation units feature

When using the CCS compiler's multiple compilation units feature, I stumbled upon what seems to be a pretty serious bug: The setup is a header file defining a #bit in a #byte, two compilation units #include-ing the header file and a function referring to said #bit. It seems that the function's code (specifically using the correct addre...

AsyncFileUpload has logic error in AjaxControlToolkit, when component in a different tab, so not displayed

I am using the Nov version of the AjaxControlToolkit, and I found a logic error, but I am trying to figure out the best way to fix this, by Saturday, so that the program will work on IE. This problem only has an error on IE, it works on Firefox3.5. I have a AsyncFileUpload component on a tab that appears to not be visible when this fun...

jQuery problem with .appendTo and ie?

Im not sure if this is an issue with .appendTo() or the way im using it, I've gone over the docs in the api several times now and its still unclear so I figured I would turn it over to the handsome geniuses at SO. I am trying to move some error li's generated by django and everything works fine so far in firefox however when the followi...

ASP.Net RegularExpression Validator - Parsing bug

I wanted to write a regular expression using the ASP.Net RegExp validator that would ensure a field contains only numeric and decimal values, and at least one character. ^[0-9]{1,40}(\.[0-9]{1,2})?$ Essentially: [0-9]{1,40} - meaning at least one to 40 numeric characters. The ASP.Net regexp validator does not fire for an empty field ...

Is there timezone offset bug in ruby on rails?

I'm in Korea. Rails version is 2.3.5 in my environment, config.time_zone = 'Seoul' config.active_record.default_timezone = 'Seoul' created_at and updated_at value is inserted with local time in database. but, when I access model.created_at or model.updated_at, the value is understanding with UTC +9:00 So, I insert model to da...

Multiple Inheritance in Python (Problem Specific)

Can anyone here identify why the TypeError is being raised at the bottom of this example shown below? >>> import threading >>> class SessionManager(threading.Thread, threading._RLock, dict): UPDATE = 60 * 60 def run(self): while True: time.sleep(self.UPDATE) with self: for key in...

AS3 - bug in Rectangle.inflatePoint() - doesn't deal with negative coordinates well

this seems a bit nutty: var r:Rectangle = new Rectangle(); trace("initial rect: " + r); // (x=0, y=0, w=0, h=0) var p:Point = new Point(-5, -3); // (x=-5, y=-3) trace("point: " + p); r.inflatePoint(p); trace("inflated rect: " + r); // (x=5, y=3, w=-10, h=-6) i would expect the result to be (x=-5, y=-3, width=5, heigh...

onclick event is broken in IE8

I have the following snippet which works as expected: <a href="http://google.com" onclick="return false;">Will go to google</a> Clicking on the href does not take me to google. But... if I include JQuery 1.4 and wire up a live click event to anything on the page (whether it exists or does not) this unrelated event handler stops wor...

Having issues with IE7 and floated elements (of course)

I'm working on a site that has a wrapper element, with a left and right sidebar, each floated within the wrapper. The left sidebar (which contains navigation) is clearing the right sidebar and pushing it to the bottom for some reason. I've tried fixing it in about 50 different ways. I originally thought changing the size and or margin ...

Is Perl's flip-flop operator bugged? It has global state, how can I reset it?

I'm dismayed. Ok, so this was probably the most fun perl bug I've ever found. Even today I'm learning new stuff about perl. Essentially, the flip-flop operator .. which returns false until the left-hand-side returns true, and then true until the right-hand-side returns false keep global state (or that is what I assume.) My question is c...

Feature or bug? 3D perspective in Flash Player 10 changes as objects are added to the stage

In my AS3/Flash Player 10 app, I've got a movieclip on the stage with its own transform.perspectiveProjection properties configured; in particular, I'm explicitly setting its projectionCenter so that it has its own vanishing point (see this question for details). I'm adding functionality to my application so that if a user clicks one of...

Doctype bug z-index

Hey guys, i got this code: <div style="position:relative; font-size:50px; z-index:2;"> LAYER 1 </div> <div style="position:relative; top:-50; left:5; color:red; font-size:80px; z-index:1"> LAYER 2 </div> where layer 2 should be under layer 1. It works fine without any doctype. If i add one, the divs acts standard: layer 1 layer...

what does "&key" means in php?

I have a very weird problem. I am using php. In my php code, I wrote the email content and generate this link: .... <a href="http://www.domain.com/act.php?id=' . $userid . '&key=' . $actkey . '">http://www.domain.com/act.php?id=' . $userid . '&key=' . $actkey . '</a> .... Most of the times, it works fine. Then, I receive lots of comp...

Should I create a new branch for every new bug that gets reported?

We use a JIRA as our ticket system. New bugs/tickets are submitted to that system. Once a bug is fixed, we create a new build and test it on our dev server. If everything is good we push it to the live server. Now I usually work on the trunk without any branching to fix the bugs. This is of course a problem. Because there can be many bug...

Bug in CF9: values for unique struct keys referenced and overwritten by other keys.

We've run into a serious issue with CF9 wherein values for certain struct keys can be referenced by other keys, despite those other keys never being set. See the following examples: Edit: Looks like it isn't just something our servers ate. This is Adobe bug-track ticket 81884: http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/m...

JSplitPane giving wrong resize cursor with GTK LAF?

Running the official JSplitPane demo http://java.sun.com/docs/books/tutorial/uiswing/components/splitpane.html on my Ubuntu system gives a resize cursor like --> over the divider. The behavior of native split panes gives <--> resize cursors. Does this qualify as a bug that should be reported to Sun (eh, Oracle)? Is there a workaround? ...

Cmdline Bash Variable Weirdness

I want to set an alias like so: alias hi='TEST=ok echo $TEST' However, it doesn't seem to work reliably. I start with: unalias hi unset TEST Then: $ alias hi="TEST=ok echo $TEST" $ hi $ This is on MacOSX: $ bash --version GNU bash, version 3.2.17(1)-release (i386-apple-darwin9.0) Copyright (C) 2005 Free Software Foundatio...