Bountied questions
10 questions with bounties
0
votes
1
answer
203
views
+50
Flutter deploying to Android studio creating prolog error
I am trying to deploy my first flutter app to an android emulator in vscode/intelij/android studio. All give me the same error. I have been searching and can't find a solution. Deploying to a medium ...
0
votes
2
answers
98
views
+50
Error 0x80092006 when signing .mst file in InstallShield
I am using InstallShield 2020 Premier R2.
I got the code signing certificate from DigiCert and use its KeyLocker to do the code signing.
In the past, I install everything on my WIndows 7 and ...
4
votes
1
answer
240
views
+50
Does this CAS operation, which is a pure load with a seq_cst memory order, guarantee the assertion never fires?
Consider this example:
#include <atomic>
#include <cassert>
#include <thread>
int main() {
std::atomic<int> x = 0, y = 0;
int result = 0;
bool flag = false;
...
0
votes
1
answer
116
views
+50
VOLD Ratio using Polygon data
HI I'm trying to calculate VOLD Ratio, but when I'm testing my functionality I'm facing below issues
Getting mismatch between polygon volume vs trading view volume (-2.5%)
My VOLD Ratio is much more ...
6
votes
1
answer
211
views
+100
ARCore tracking flickers between TRACKING and PAUSED, planes=0 and points=0, hitTest always empty
I am developing an Android ARCore app (native ARCore, not Sceneform). The app worked correctly around November 2025, but since December, plane detection no longer works.
Symptoms
In the debug overlay:
...
0
votes
0
answers
56
views
+50
Aliasing kernel pages into multiple kernel virtual addresses
I’m working on a Linux kernel module on AArch64 and I want to create **aliases** of an existing memory region in the kernel: that is, map a second (or third, fourth, etc.) kernel virtual address range ...
0
votes
1
answer
73
views
+100
Files stored with s3AsyncClient from Netty HttpClient publisher are corrupted
I'm trying to forward file from http download to s3AsyncClient.
Its important for it to be asynchronous, and close to zero copy, so i used netty HttpClient and S3AsyncClient and I pass file through ...
0
votes
1
answer
30
views
+200
How do I use PublishAot with a ServiceStack client in the latest dotnet?
I have a simple ServiceStack client software:
var client = new ServiceStack.JsonServiceClient
{
BaseUri = "https://jsonplaceholder.typicode.com/"
};
var results = await client.GetAsync&...
0
votes
2
answers
126
views
+50
DataGridView cell painting issue on horizontal scroll
I have a DataGridView control on a Windows form, and I am using the CellPainting event to apply custom styling.
This here is my styling code:
private void dgv_CellPainting(object sender, ...
2
votes
1
answer
2k
views
+50
How can I create a VS Code keybinding with three keys (two being non-modifier keys)?
Trying to bind cursorWordEndRight to alt+;+l so that the command triggers when I press all three simultaneously, - not as a chord - but it highlights red in my Keybindings.json file and says You won't ...