Bountied questions
13 questions with bounties
0
votes
3
answers
194
views
+50
How do I convert DevWinUI.Shortcut.Keys to VirtualKey values for use with RegisterHotKey?
I'm using DevWinUI's shortcut control but I'm confused on how to get the key and modifiers from it and then casting it to the proper types for RegisterHotKey.
The shortcut control returns public new ...
-1
votes
0
answers
223
views
+50
Do the RMW operations on `cnt` still not avoid an inconsistent status for this multiple-producer single-consumer implementation?
Looking at this implementation of multiple-producer single-consumer, which was the implementation in Rust's standard library; however, its memory order model is derived from C++. So, it should be ...
0
votes
1
answer
75
views
+50
react-native-sound setCategory is not a function
I am updating an old project. I have installed new react-native and new modules. However, I am getting an issue with react-native-sound:
[runtime not ready]: TypeError: _$$_REQUIRE(_dependencyMap[14],...
0
votes
0
answers
66
views
+100
Testcontainers Oracle XE works locally but fails with ORA-12514 on GitLab CI using Podman service
I'm running integration tests using Testcontainers with Oracle XE.
Locally, everything works fine.
On GitLab CI, using a Kubernetes executor with Podman as a Docker service, the tests fail with:
java....
2
votes
0
answers
670
views
+50
Facebook popup authentication loses window.opener reference
Our app allows users to login through Facebook. The page creates a popup which is redirected to FB login page (https://lm.facebook.com/l.php?u=https%3A%2F%2Fm.facebook.com%2Fdialog%2Fconsent%...
3
votes
1
answer
99
views
+50
RealityKit's custom light entity causes a black artifact on my 3D model
I’m working with RealityKit and I’m seeing a strange black artifact appear in the center of my rendered model. Here’s the relevant code:
let camera = PerspectiveCamera()
camera.transform = ...
1
vote
0
answers
157
views
+100
Control visibility of a specific tab in the ServiceNow Configurable Workspace [closed]
How can I hide a specific tab and tab container in a ServiceNow configurable workspace based on condition? Example, I want to hide tab name called "My Tab" if the user does not have specific ...
0
votes
0
answers
60
views
+50
How to update multiple records with different values and SQL injection protection with raw SQL in prisma?
For November 2025, the Prisma does not support the updating of multiple records with different values. Although the transactions are being considered as main workaround for such cases, the transaction ...
-3
votes
1
answer
119
views
+50
"npm audit fix" doesn't fix vulnerabilities and instead keeps reporting the same message
Executing the npm audit. It will be enough to show just last three issues - all of them has "fix available via `npm audit fix" message:
tar <6.2.1
Severity: moderate
Denial of service ...
2
votes
0
answers
81
views
+100
In-Order Delivery of UIO Interrupts for Userspace Driver
I have multiple UIO interrupts defined. I am using Linux 6.12 without the realtime config (so, using the default scheduler, CFS).
My userspace driver is using poll in a loop to watch these interrupts ...
1
vote
1
answer
105
views
+50
How do I prevent a Maven mojo parameter from being encoded on write to XML?
I'm writing a custom Maven plugin for building a Flatpak from a Java project. In a Maven mojo I understand we use @Parameter annotations to parse pom.xml file configurations. For example:
pom.xml:
<...
4
votes
3
answers
17k
views
+50
Setting encoding in XML files
Which are the valid xml encoding strings? For instance, what is the way of specifying UTF-8:
encoding="utf8"
encoding="utf8"
etc
Or Windows 1251:
encoding="windows-1251"
encoding="windows1251"
...
5
votes
4
answers
2k
views
+200
Whitesmiths style in VS Code (C language)
I just started using Visual Studio Code. In my company they use Whitesmiths indentation style, but I cannot find a way to set it on VSC.
I'm programming in C, so I installed the C/C++ plugin. In this, ...