Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

135
votes
14answers
44k views

PHP and Enums

I know that PHP doesn't have native Enumerations. But I have become accustomed to them from the Java world. I would love to use enums as a way to give predefined values which IDEs' auto completion ...
90
votes
10answers
16k views

Ways to circumvent the same-origin policy

The same origin policy I wanted to make a community wiki regarding HTML/JS same-origin policies to hopefully help anyone searching for this topic. This is one of the most searched-for topics on SO ...
56
votes
8answers
10k views

Workarounds for JavaScript parseInt octal bug

Try executing the following in JavaScript: parseInt('01'); //equals 1 parseInt('02'); //equals 2 parseInt('03'); //equals 3 parseInt('04'); //equals 4 parseInt('05'); //equals 5 parseInt('06'); ...
40
votes
8answers
8k views

Ruby: require vs require_relative - best practice to workaround running in both Ruby <1.9.2 and >=1.9.2

What is the best practice if I want to require a relative file in Ruby and I want it to work in both 1.8.x and >=1.9.2? I see a few options: just do $LOAD_PATH << '.' and forget everything do ...
19
votes
6answers
14k views

Simulating “focus” and “blur” in jQuery .live() method

Update: As of jQuery 1.4, $.live() now supports focusin and focusout events. jQuery currently1 doesn't support "blur" or "focus" as arguments for the $.live() method. What type of work-around could ...
14
votes
1answer
1k views

IB complains that a new window has contents that go off screen

Interface Builder gives me a warning about the set up of my .xib file. It says, in a dialog called "MainMenu.xib Info", Object: Window ID: 21 Type: Illegal Configuration Issue: This window's ...
11
votes
3answers
541 views

Java bug in sleep() when changing OS time : any workaround?

The bug that annoys me is the same than this ticket. Basically, if you change the OS clock to a date in the past, all the thread that were sleeping at the time of the change won't wake up. The ...
10
votes
1answer
642 views

Workaround for the Mono PrivateFontCollection.AddFontFile bug

When I call the PrivateFontCollection.AddFontFile method in Mono.net It always returns a standard font-family. This bug has already been reported on several websites, but as far as I know without a ...
9
votes
3answers
5k views

Same-origin policy workaround using document.domain in Javascript

I am running into same-origin policy issues in Javascript. I've read about a workaround for this using the document.domain variable, but I cannot get the workaround to work. The workaround is that ...
5
votes
10answers
5k views

IE warning workaround? Page w/Secure and insecure items

I have a page that is viewed secured with 'https' in the URL, that also contains youtube urls to play video from youtube. Since the youtube URL contains 'http' with no 's' IE is giving an a warning ...
4
votes
1answer
83 views

Java 1.5 JOptionPane paint bug when using panel message/workaround?

I have a JOptionPane with a custom message panel in it, in an application targeted for Java 1.5. The panel contains, among other things, a JTextField. Every 20 invocations or so, nothing in the dialog ...
4
votes
4answers
338 views

How to work around the lack of transactions in MongoDB?

I know there are similar topics on the site but they are either telling me to switch back to regular RDBMS systems if i need transactions or use atomic operations or two-phase commit. The second ...
4
votes
2answers
504 views

ASP.NET MVC Validationsummary with excludePropertyErrors = true renders empty if the model is invalid

Say you have a standard ValidationSummary: <%: Html.ValidationSummary(excludePropertyErrors: true) %> If the ModelState contains model errors for properties but not for the model itself the ...
4
votes
2answers
201 views

Working around Python bug in different versions

I've come across a bug in Python (at least in 2.6.1) for the bytearray.fromhex function. This is what happens if you try the example from the docstring: >>> bytearray.fromhex('B9 01EF') ...
4
votes
1answer
252 views

Easy way to access private fields/methods/properties using f# interactive

F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there. This gives a way for a 'try-before-you code' approach. Very often I ...
4
votes
1answer
160 views

Handling Y2.036K & Y2.038K bugs

I am currently working on a project with a requirement that our software must operate until at least 2050. Recently we have run into problems dealing with the Y2.036K "bug" in the NTP protocol and ...
4
votes
1answer
976 views

Firefox hide embeded object bug workaround?

Hi there is a well documented bug in firefox(since version 0.9!) where hidding a flash, java applet, quicktime... really anything you can put in a "embed" or "object" tag makes the embeded content be ...
3
votes
1answer
58 views

Is there a way to work around this issue with ordered lists and update panels in IE9?

I have discovered an annoying issue with ordered lists in IE9 and am wondering if there's a way to fix it without changing the ordered list into something else or getting rid of the update panel ...
3
votes
4answers
76 views

How Do I Avoid Line-Break Padding?

My biggest gripe with HTML is that line breaks add a tiny bit of space between elements. (jsFiddle.) This can screw up layouts where child elements are sized to exactly fit their parents. I read ...
3
votes
1answer
232 views

Samsung and android 2.2.1 shared pref issue

I'm writing my first app for android and I already faced a irritating bug on Samsung devices with android 2.2.1. http://code.google.com/p/android/issues/detail?id=14359 The problem is that the ...
3
votes
3answers
2k views

c++, usleep() is obsolete, workarounds for Windows/MingW?

I already found out with another question that Windows/MingW doesn't provide the nanosleep() and setitimer() alternatives to the obsolete usleep(). But my goal is to fix all warnings that cppcheck ...
3
votes
9answers
252 views

Pointer to a pointer's attribute

is there any way to simulate this situation in C++? I have two objects A and B, each one has one attribute, for example, int i; Also I have one pointer po pointing to an object and one pointer pi ...
3
votes
5answers
1k views

Java Runtime Exec on Windows Fails with Unicode in Arguments

I want to launch a browser and load a web page using Java's Runtime exec. The exact call looks like this: String[] explorer = {"C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE", ...
3
votes
3answers
335 views

What should I do or don't do to avoid Delphi “push dword” bug

I found that Delphi 5 generates invalid assembly code in specific cases. I can't understand in what cases in general. The example below produces access violation since a very strange optimization ...
3
votes
3answers
2k views

Alternative to poseAsClass in Mac OS X 10.5 and higher?

Apple has deprecated NSObject's poseAsClass: method for OS X v10.5 and above. Is there another way to make class posing work?
3
votes
5answers
10k views

window.location.hash issue in IE7

We have a javascript function that should "move" a page to a certain position using anchors. This function just does window.location.href = "#" + hashName. This works in FF, but not in IE. I tested ...
3
votes
4answers
330 views

Is there a way besides Mono to run Microsoft .NET on a Mac or Linux?

I'm currently deprived from any Windows machine, and Mono doesn't run my application. Is there another way that might get around any reason why Mono wouldn't work? (I don't have the error message at ...
3
votes
1answer
1k views

Can I disable Firefox' image scaling with CSS on a per image basis?

There are two occasions on my web page where I don't want Firefox to automatically scale the images when zooming in and out. Can I circumvent this feature on these images specifically, and have the ...
3
votes
2answers
4k views

JavaScript: Change browser window status message

It was once possible to change the message a browser shows in the status bar at the bottom of the window. This functionality has been disabled in newer browser versions due to abuse. <script ...
2
votes
5answers
68 views

document.getElementByClassName - Cross Browser Fix

I have looked at previous asks for help in a cross browser fix for document.getElementByClassName and found this link - http://robertnyman.com/2008/05/27/the-ultimate-getelementsbyclassname-anno-2008/ ...
2
votes
1answer
59 views

Polyfill or workarounds for ECMAScript5 new features?

I want to write my JS code with the new ECMAScript5 features that working today and in the future. As not all browsers support all the features (especially IE) such as Object.create, Array.isArray ...
2
votes
1answer
50 views

Nested templates workaround for MSVC2010?

I stumbled on the same problem of nested templates described here. The following code : # include <cstdlib> // for std::size_t template<std::size_t N> class Outer { public : ...
2
votes
4answers
104 views

How can I work around a Scala compiler crash?

I am compiling a project with Scala 2.9.1 and getting java.lang.AssertionError: assertion failed at scala.Predef$.assert(Predef.scala:89) at ...
2
votes
1answer
182 views

jquery remove “selected” attribute of option?

Why doesn't this work in IE8 to deselect all options in a multiline selectbox? $("#myselect").children().removeAttr("selected"); Is there a workaround? Nothing I could think of (attr("selected","") ...
2
votes
1answer
149 views

BeautifulSoup parser appends semicolons to naked ampersands, mangling URLs?

I am trying to parse some site in python that has links in it to other sites, but in plain text, not in "a" tag. Using BeautifuSoup I get the wrong answer. Consider this code: import BeautifulSoup ...
2
votes
1answer
66 views

Air Application affected by Computer's Set Date

I'm working on creating a 30 day free trial of my Air app. When the 30 day trial begins the current date is stored in the local encrypted database. Then the date is checked against the current date ...
2
votes
1answer
708 views

Using class based generic view DetailView with a ModelForm reveals a bug - how to proceed?

I've been impressed how rapidly a functional website can go together with generic views in the tutorials. Also, the workflow for form processing is nice. I used the ModelForm helper class to create a ...
2
votes
4answers
308 views

How can I get rid of “ghost” text that appears in UITextField after clearing the field programmatically?

I have a strange problem with a UITextField - I am setting the value of it to @"" (or anything else still causes it) and then shrinking the field with to zero. Next time I unshrink it, it displays the ...
2
votes
3answers
140 views

How to initialize a certain MBean first when navigating to a page

I have a page split in 3. First part is a list of links which is bound to a mBean (MLeft), and the second is the current mBean (MCenter) of the page I'm in. MCenter inserts data into MLeft so that the ...
2
votes
2answers
296 views

Substitute or workaround for asprintf on AIX

I'm trying to build python-kerberos on AIX. kerberospw.c uses a call to asprintf, but from what Google is telling me, asprintf does not exist on AIX. I saw ...
2
votes
1answer
457 views

Workaround for Entity Framework Context.Refresh bug?

I ran into this problem using EF4 and a self-referential table (implementing an adjacency list hierarchy). NOTE: not a many-to-many reference, just a one-to-many on a single table. Attempts to resolve ...
2
votes
1answer
361 views

web2py like equivalents with google app engine

Is there any way to generate queries similar to the like, contains, startswith operators with app engine BigTable database? So that I could do something similar to: ...
2
votes
2answers
139 views

C++ template work-around

On my C++ project, I recently stumbled upon a little problem: Templates. I declared a class, Data in my header file (which is shared by each .cpp), and gave it a template function. I implemented it ...
2
votes
1answer
215 views

SWF loaded twice in Firefox, workaround needed

I have the same problem as the following stackoverflow question: http://stackoverflow.com/questions/499949/flash-loads-twice-workaround but the provided solution is not working for me (my script ...
2
votes
0answers
722 views

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 ...
2
votes
5answers
245 views

Chrome and Safari strange behaviour in Javascript

i've written this peace of code: var a=function(){ }; a.name="test"; a.prop="test2"; Now if i debug the code with the console: console.log(a.name); console.log(a.prop); In Firefox i get ...
2
votes
1answer
65 views

How do I clone over HTTP a repository that has no info/refs?

Given a repository served over HTTP whose owner forgot to chmod +x hooks/post-update, is there a workaround for cloning it? I tried running wget --mirror url, but rather than fetching the subtree ...
2
votes
3answers
197 views

How to workaround gcc-3.4 bug (or maybe this is not a bug)?

Question Following code fails with a error message : t.cpp: In function `void test()': t.cpp:35: error: expected primary-expression before '>' token t.cpp:35: error: expected primary-expression ...
2
votes
2answers
391 views

Is there a workaround to Safari's/Opera's bug that you can't tab through hyperlinks?

In IE, Firefox, Chrome and most Windows-based interfaces that I've used, the Tab key can be used to navigate from one form field or hyperlink to the next (e.g. "actionable" items) (note: I have not ...
2
votes
2answers
1k views

log in with browser and then ruby/mechanize takes it over?

is that even possible? what I need to pass to mechanize? With what url I can start then? I cannot manage (so far) to log into one website using mechanize so I was thinking if I can do this little ...

1 2 3