167,878 questions
1
vote
0
answers
65
views
Does anyone know how to make this hello world program work?
I'm new to nasm assembly and I am trying to make a hello world program, but my code prints nothing.
It seems that something in the gethandle label is broken, which leads to WriteConsoleA receiving an ...
1
vote
0
answers
70
views
How to open a PWA with path and query parameters using ShellExecute
I want to open a web app installed through Microsoft Edge using ShellExecute. I want to pass a path and some dynamic query parameters to the web app but this doesn't seem to work.
For example, I ...
1
vote
1
answer
117
views
Windows blocks my Assembly .exe's from running [closed]
I have recently started assembly programming and I have encountered an issue when assembling into an .exe file and then trying to run the program.
For context, I use the FASM assembler, and I use ...
-3
votes
0
answers
40
views
Docker doesn't work with Astrill installed [closed]
I am new to using Docker Desktop. I have Windows 11 and I reside in China, so I require a VPN on my computer. The issue is that having Astrill VPN installed means I cannot even open Docker Desktop (...
Advice
0
votes
4
replies
79
views
How can I fix the Prettier extension?
I'm using the VSCode extension called Prettier to distinguish between text strings, but it doesn't seem to be working. I was using it 10 minutes ago and it was working fine, but when I closed the ...
0
votes
0
answers
156
views
How to generate an executable file in the Portable Executable file format?
Dear Fellow Developers,
I am interested in learning how the Portable Executable format works. So far, I have written files in the com-format, which are executable in DosBox. However, I would like to ...
0
votes
0
answers
77
views
Decode barcode from Image in Flutter
I need to decode barcode from captured images in my flutter application in WINDOWS. For example, this Code 39 Barcode image (not a perfect image, but that's the purpose of this question)
I have tried ...
0
votes
0
answers
63
views
MSVS Test Explorer affects (suppresses) stdout of child process in test
I have a component which launches subprocess to do some stuff and get its output. I use Boost.Process for that with code similar to this:
asio::io_context ctx;
asio::readable_pipe rp{ctx};
process ...
Advice
0
votes
0
replies
20
views
Read caching for Windows HTPC Server
I have an HTPC running Windows 11 Professional. (16GB RAM)
The boot drive C is 400Gb SSD - It contains only the operating system.
Z: Is a 4TB HDD containing TV series.
Y: Is a 1TB SSHD containing MP3s
...
0
votes
1
answer
100
views
How to fix a "C compiler cannot create executables" error in Conan?
I am building a Windows application in Qt using CMake and I thought to use Conan to simplify dependency management. The generated Conan profile was using msvc, but I changed it to gcc. Additionally, I ...
-1
votes
0
answers
65
views
RabbitMQ services installation failed while installing through c# code in Windows [closed]
We are using RabbitMQ as a messaging service in our project in windows OS. So installing the RabbitMQ and erlang programmatically by invoking the installers in silent mode in c#.net. However, the ...
-2
votes
0
answers
79
views
Installation of anaconda3-2025.12-2 on appvolume/appstack [closed]
I tried to install anaconda3-2025.12-2 on appvolume of VMware, and I got this error message.
How can I fix it? How can I install this version on Windows 10/11?
I tried to install it by running the exe ...
2
votes
3
answers
161
views
How to get 'stdout' output from 'git gc 2>&1' on Windows PowerShell?
In PowerShell git gc normally produces some info output such as:
PS C:\myrepo> git gc
Enumerating objects: 12172, done.
Counting objects: 100% (12172/12172), done.
Delta compression using up to 12 ...
0
votes
1
answer
42
views
WDAC not allowing self-signed .exe to run [closed]
I have a PC with WDAC (aka App Control for Business) correctly deployed. It functions as expected. However, I can't get a self-signed .exe to execute.
My policy has this:
<Signer ID="...
Best practices
0
votes
7
replies
73
views
How to(do I) write a network data consumption monitoring program that monitors all system processes and has control over them?
How do I write a program that alerts me when any app connects to the internet on Android or Windows?
My problem is my data subscription is getting drained. I don't know what apps are sucking it.
I can ...