bugs

bug in android 2.1 xml drawables?

Looking at the following image, the button on the left is android 2.1, the one on the right is 2.2: As you can see the corners on the left image are not being applied correctly, but they look perfect in 2.2. The xml I'm using is here: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"&gt; <item android:right="0di...

UIImagePickerController Crashing Monotouch

I am trying to write an application, but it is constantly crashing when using the uiimagepickercontroller. I thought that it might be because I was not disposing of the picker after each use, but it will often freeze up on first run as well. Usually I'll take a picture and it just freezes, never asking to "use" the picture. Do you ha...

Visual Studio BookMarks Go Random

Prior to Visual Studio 2005, the bookmark feature worked perfectly. Then starting with VS 2005, I noticed that requesting the "next" or "previous" bookmark stopped working correctly. Sure it will take you to a different bookmark, but it takes you to a bookmark location that is the least relevant or most obscure based on your current lo...

Qt - There is a bug?

I face a very serious situation. By writing this question I hope that really professionals will express their opinion regarding to the problem I am going to describe. I have reported a bug in http://bugreports.qt.nokia.com/ : I have created QPropertyAnimation for maximumWidth property of QTextEdit and it does not work (it immediately...

Java thread question

Im trying to implement a scenario using threads to execute concurrent commands on a server. The commands just send requests to a service running on the server and in return get the required output. The commands are generated based on reading a file, whose path the user gives as input to the application. Based every line that is in the a...

SVN - how does removing a bin folder cause the src folder to be removed instead?

Hi all, There was a bin folder in version control with a bunch of .class files and other junk that should not be versioned. Could someone please explain to me how the following commit: 529 svn rm --force bin/ 530 svn ci -m "Bin should not be under version control." Leads to the following: Revision 249 Author: ndunn Date: Mo...

.change() not triggered in IE 6,7,8 on DropDownList - JQuery

I am trying to bind a change event to a dropdownlist. Works great in chrome and FF but it doesn't fire in IE. I saw a few other posts about this but they were asking about radio buttons and the suggestion was to use .click(), which obviously doesnt work for a DDL. Does IE6,7,8 not support .change()? What am I doing wrong / whats the ...

setInterval window focus and hibernation

I've run into an odd issue. I have a javascript which uses setInterval to keep a session alive. But, it seems that if the browser is left unattended for a period (either leaving it open over night, or out of focus working in another application) the setInterval is not firing in IE and the session is allowed to expire. This does not happe...

visual studio 2010 - control source keeps disappearing

Hi, From time to time i cannot see the ascx control source (not code behind). The only way i can really reproduce this is: If you have two controls and click from ascx source to ascx source (to and from each control) rapidly then you will eventually get one of the controls showing nothing in the source. The way to fix this (annoying ...

Duplicate key-value pairs returned by memcached

hi - We are using a cluster of memcached servers for caching purpose, in a Django(Python) production, having tried both cmemcache and python-memcache as the API. The problem is under high concurrency, we started to have duplicate key-value pairs, that is to say we are having multi values for a single key. Is there anyone having had the s...

Scala - menu bar only appears when window contents revalidated

import scala.swing._ import swing.event.{WindowClosing} import java.awt.Dimension object MenuBarTest { def main(args:Array[String]) { val frame = new Frame() { visible=true contents = new Panel() { preferredSize = new Dimension(600,400) } title = "Test" reactions += { case WindowClosi...

R: When using the rep(..,..) to replicate 1020 a character variables, the result contains just 1019 replicates?

When programming within the R environment I used rep("[35,40)",1020). This should give me a list with 1020 times "[35,40)". However, the result contains only 1019 of these elements. The programming was first done within a replicated for two vectors, but even when I split it up it doesn't work. What I tried is using differen versions of...

Where to find Qt's commits?

Hello, There's a regression in Qt 4.6.2 on Windows (setting border color from stylesheet does not work) that I decided to fix myself. This bug was originally reported in Qt 4.4, and was fixed in Qt 4.5, around December 2008. Unfortunately I cannot find the corresponding commit in http://qt.gitorious.org/, probably because the commit is...

How many hours per week do you spend fixing IE related bugs?

We are trying to estimate this: If you are a web developer, how many hours per week do you spend working on IE related issues and bugs, where other browsers dont find any problems at all. We're trying to find out if developers still waste a lot of time on it. I know it's difficult to estimate, but even % would help.. I spend ~3h each...

Visual Studio designer stops recognising changes occasionally

Hi all, Using VS2008 visual designer occasionally the designer seems to stop recognising changes. Normally you get a * next to the filename in the tabs when a change is made but sometimes this stops appearing when I am making changes. When this happens may changes are getting "lost" so if I close/reopen the file all my changes are gon...

How to investigate client side WSAECONNABORTED happening very often only on machines with NVDIA Quadro?

We have a C++ client/server application in which the client retrieves and renders 3D content from a server. Our client disconnects from the server very often (more than 50% of runs after less than 1 minute) with recv failing and WSAGetLastError returning WSAECONNABORTED. But the strange thing is that this happens only when: the client...

routing scope problem with form_for (partial)

Trying to route: scope :shortcut do resources :text_elems end Using basic scaffold with form partial *_form.html.erb* <%= form_for(@text_elem, :shortcut => @shortcut) do |f| %> ... Problem is: When I call the edit action, the form html shows as: <form ... action="/25/text_elems/25"> Note: The new action renders the form acti...

Project template missing in Visual Studio 2010

Today in one of the computer i installed visual studio 2010 professional edition, and successfully installed. But in my new project template "Asp.net MVC 2 website" is missing. Also I'm not able to open an already created MVC 2 project also. I'm also having MVC 2 installed with VS 2008 Sp1 in the same machine and is working fine. I unins...

Strange Google Chrome Bug. jQuery

Hello, I have used in my site jScrollPane jquery plugin. It is normally work in all browsers except Chrome. Take a look here: http://evarivas.com/bio In my Chrome I have no problems. Scroll works normally. On another computers sometimes works sometimes doesn't. After refresh works, or doesn't work... What is this? Very strange... ...

Performing Damage Control on Code Samples for an Interview?

While interviewing for a company, I was asked to submit several code samples that highlight my "best" work. I was pinged back with several questions regarding a specific code sample, one of which alluded to a bug. The code sample was a WCF Web service that uses AES to encrypt an opaque blob. The blob is used by the service to identify a...