12
votes
0answers
421 views
Is this is an ExpressionTrees bug? #3
Expressions class should be more accurate while searching for user-defined operators?
sealed class Foo
{
// just the private static method!
private static int op_Implicit() { return 1; }
…
8
votes
2answers
499 views
NHibernate.Spatial and Sql 2008 Geography type - How to configure
I am trying to use Nhibernate with the Sql 2008 Geography type and am having difficulty. I am using Fluent Nhibernate to configure which I am fairly new to so that may be the problem as well.
First, …
7
votes
7answers
429 views
Why does the Flash Player throw a sandbox error in this case?
I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache.
The sequence is as follows...
1 Java server …
6
votes
0answers
178 views
Vim: wrap text (ie, “gq”) without breaking strings?
I often use gq to wrap code⦠But it isn't very smart when it comes to strings. For example, wrapping:
foo = bar("a b c d e f")
Might result in:
foo = bar("a b c
d e f")
Which, …
5
votes
1answer
29 views
Mono compatible Dependency Injection Framework
Which Dependency Injection frameworks are compatible (and tested) against the Mono 2.4.2.3 runtime (Release Notes)?
5
votes
4answers
91 views
Tips for Setting Up Complex CTAGS Search Paths
I want to be able to start up vim in an arbitrary subdirectory in my project and have it search up to the project root for the tags file, and then to search in an unrelated directory outside the …
5
votes
2answers
80 views
OpenSource library to make OpenGL ES GUIs on the iPhone?
I'm looking for some kind of OpenSource library that allows me to make OpenGL GUIs on the iPhone ( for example the game menu , and some in-game pieces of interface like a player inventory ).
Does …
5
votes
0answers
51 views
How to detect if a Unicode character maps to the missing-symbol square?
Is there a way to detect whether a Unicode character is present in a font on the iPhone, i.e., to detect whether the character will map to a printable glyph or instead to the square "missing …
5
votes
0answers
109 views
Google OpenID/federated login periodically fails
I'm developing a Django app that uses python-openid. The app is running on my development server at home.
Similar to stackoverflow's login mechanism, I'd like users to login to my website using …
4
votes
2answers
37 views
RESTful PUT and DELETE and firewalls
In the classic "RESTful Web Services" book (O'Reilly, ISBN 978-0-596-52926-0) it says on page 251 "Some firewalls block HTTP PUT and DELETE but not POST."
Is this still true?
If it's true I have to …
4
votes
4answers
69 views
URL Escaping Chinese/Japanese Unicode Characters for Internet Explorer
I'm trying to URL-escape (percent-encode) non-ascii characters in several URLs I'm dealing with. I'm working with a flash application that loads resources like images and sound clips from these URLs. …
4
votes
2answers
84 views
Duplicate Referrer Header - HTTP.sys barfs
I have been testing the PS3 browser (NetFront) with embedded Flash components on a web page and there seems to be a rather serious bug with the way that any requests from Flash are issued. The browser …
4
votes
1answer
134 views
Android and Protocol Buffers
I am writing an Android application that would both store data and communicate with a server using protocol buffers. However, the stock implementation of protocol buffers compiled with the LITE flag …
4
votes
3answers
278 views
UDP real-time games in Flash/Flex available Open source RTMFP implementation
Are there any examples of using the Flash 10 beta RTMFP UDP based protocol to build real-time Flash games. The RTMFP examples so far seem to focus on P2P networking between flash clients does anyone …
4
votes
3answers
352 views
Interpolation in SciPy: Finding X that produces Y
Is there a better way to find which X gives me the Y I am looking for in SciPy? I just began using SciPy and I am not too familiar with each function.
import numpy as np
import matplotlib.pyplot as …
