Unanswered Questions
7,249,605 questions with no upvoted or accepted answers
31
votes
1
answer
691
views
How to debug Fable using Visual Studio (not Code)
I know it is possible to debug Fable apps in VS Code and hit breakpoints, but I haven't seen any examples of such when using Visual Studio. How can one debug Fable apps using Visual Studio, being able ...
31
votes
1
answer
7k
views
CertPathValidatorException: Trust anchor for certification path not found
I added HTTPPinning to OKHTTPClient the sample code is:
OkHttpClient client = new OkHttpClient();
client.setSslSocketFactory(getPinnedCertSslSocketFactory(context));
private ...
31
votes
0
answers
422
views
Compatibility of impredicative Set and function extensionality
The Coq FAQ says that function extensionality is consistent with predicative Set. It's not fully clear to me from this whether it's consistent with impredicative Set (or maybe the consistency is ...
31
votes
1
answer
1k
views
Why is IE11 "Total memory" so much larger than heap snapshot size?
I'm investigating what looks like a memory leak under IE. The amount of memory consumed by IE keeps growing and growing up to 1 GB and more...
To solve the problem, I started having a look at the "...
31
votes
0
answers
796
views
AudioUnit: Error reported by mediaserverd - "Error 'what' getting client format for physical format"
I have a VOIP application that uses AudioUnit. On iOS 9, I see an error message that says the following. I do not see this in iOS 8:
mediaserverd[43] : 13:16:38.880 ERROR: [0x1f72d000] >va>
...
31
votes
0
answers
2k
views
Using min_id in the Instagram API
Just the fact that I can find no-one else having this problem with the Instagram API indicates to me that I am doing something wrong.
If I was to enter: https://api.instagram.com/v1/users/334250900/...
31
votes
0
answers
480
views
Always having to sign into Apple Game Center in simulator in iOS7?
I'm working on a game which requires the user to have an Apple Game Center account. Prior to XCode 5/iOS7 I would run the game in the simulator, if the player wasn't signed into GC it would show the ...
31
votes
2
answers
935
views
Click overlay marker in Google Maps with capybara-webkit
Is there a way to click a Google Maps overlay with capybara-webkit? What about Capybara using Selenium? I want to test the content of the info window once the marker is selected. I also want to test ...
31
votes
5
answers
2k
views
Get Download Url after firebase's resize extension completed
This is what I am trying to achieve, implement the firebase's resize image extension, upload an image, then when the resize is completed, add that dowloadUrl's thumbs to a Cloud Firestore document. ...
31
votes
1
answer
6k
views
StrictMode policy violation: android.os.strictmode.LeakedClosableViolation in my app?
New to Android development and trying out StrictMode on my app for the first time. I noticed the following and would like to know if this is a problem in my app or a library—it’s not readily clear to ...
31
votes
4
answers
7k
views
How to get rollup to include a dependency from another package in a lerna monorepo in its transpilation (TypeScript)?
I created a minimal example to show the question I have: Github repo.
I have a lerna monorepo with two npm packages in the packages folder, the packages are called:
utils: exports a function:
...
30
votes
0
answers
2k
views
Android Studio not suggesting Firebase BoM new versions
I am using firebase in my android app, and I have included several firebase client libraries in my build.gradle, each with its own version.
When a new version of each library was available, Android ...
30
votes
0
answers
8k
views
Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted"
I have an ionic app and I'm trying to run this:
ionic cordova build ios
Compilation succeeds, but I see these errors just before it succeeds:
RegisterExecutionPolicyException /Users/moblizeit/...
30
votes
0
answers
3k
views
BoringSSL nw_protocol_boringssl_get_output_frames ... get output frames failed, state 8196 log confusion
We currently have two use cases for our objective-c application that connects to a node.js server. The first case is having our application hosted on a client server where we have our SSL cert ...
30
votes
0
answers
885
views
On Skylake (SKL) why are there L2 writebacks in a read-only workload that exceeds the L3 size?
Consider the following simple code:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <err.h>
int cpu_ms() {
return (int)(clock()...