Unanswered Questions
90
votes
1answer
2k views
How to create “No Activate” form in Firemonkey
In XCode by adding these methods to your NSView subclass can prevent the window from becoming active when clicking on it:
- (BOOL)shouldDelayWindowOrderingForEvent:(NSEvent )theEvent {
return ...
47
votes
2answers
1k views
Powershell v3.0 pipe issue
I'm having trouble with this command:
gc .\domains.txt | Get-ADDomain
As the name implies, domains.txt contains a list of Active Directory to query (all domains are in the same forest).
If I run ...
47
votes
0answers
794 views
Parallel mapM on Repa arrays
In my recent work with Gibbs sampling, I've been making great use of the RVar which, in my view, provides a near ideal interface to random number generation. Sadly, I've been unable to make use of ...
38
votes
1answer
903 views
m_mainFrame->editor()->hasComposition not issue
In my application I have loaded MVC pages in android webview. MVC page has two text editor for username and password. While focusing on the Textbox, I am getting the warning: ...
38
votes
4answers
940 views
GLSurfaceView inside fragment not rendering when restarted
I have a GLSurfaceView set up and rendering as expected using a GLSurfaceView.Renderer. My App uses fragments from the android support package. When I navigate to a new fragment surfaceDestroyed is ...
34
votes
1answer
450 views
Detecting CGAssociateMouseAndMouseCursorPosition
We're making a user-space device driver for OS X that moves the cursor using Quartz Events, and we ran into a problem when games — especially ones that run in a windowed mode — can't properly capture ...
33
votes
1answer
920 views
“po” command in Xcode 4.6 is very slow the first time
I upgraded to Xcode 4.6 and whenever I debug and I execute "po" for the first time to inspect an object, the debugger takes like 1 minute to return. After that, every "po" command will work fast as ...
31
votes
0answers
648 views
Heroku truncates HTTP responses?
I am running a Flask/Gunicorn Python app on a Heroku Cedar dyno. The app returns JSON responses to its clients (it's an API server, really).
Once in a while clients get 0-byte responses. It's not me ...
31
votes
1answer
1k views
NodeJS and RED 5 media server via RTMP
This is more a conceptual question rather than a direct "how to do this".
Is it generally possible to implement a flash-like solution to stream the audio (independent of where we get the stream data ...
30
votes
1answer
626 views
Berkeley Socket facade for WinRT Networking plausibility?
This is a copy of a post I've sent to the ZeroMQ mailing list. However, the question is raises it not specific to ZeroMQ, but more generally regarding the need for a 'mapping' layer over the ...
28
votes
0answers
601 views
Independent subset of cabal packages set
Given a set of cabal packages, is there a way to automatically calculate subset of independent packages? In other words, subset of packages that will be sufficient to install them all?
For ...
28
votes
1answer
486 views
Custom animation when switching from one UICollectionViewLayout to another?
As a test I made one layout that displays cells in a vertical line and another that displays them in a horizontal layout. When I call [collectionView setCollectionViewLayout:layout animated:YES]; it ...
28
votes
1answer
740 views
How to fix IE select issue when dynamically changing options
I have a set of selects that all have the same options. Then I run those options through a filter so that any options that are selected in a different select don't show up in the select. See this ...
28
votes
8answers
2k views
How to unlock android phone through code remotely
I have written an application that locks android phone remotely. That is when a special code is sent from server then application locks the phone based on the special code. This is the code I am ...
26
votes
0answers
643 views
Eclipse RCP plugin + embedded Jetty + JSF
I made an RCP plugin with embedded Jetty as following:
1) In plugin.xml -> Dependencies, I have added the following:
org.eclipse.equinox.http.jetty
org.eclipse.equinox.http.registry
...