Newest Questions
24,185,785 questions
0
votes
0
answers
16
views
Runtime error: applying non-zero offset to null pointer (stl_vector.h) in C++ vector indexing
I am solving the “Set Mismatch” problem (finding a duplicate and a missing number) using C++.
I am using a frequency vector to count occurrences, but I am getting a runtime error from ...
0
votes
0
answers
11
views
SwiftUI: Why is the animation glitchy in my List when I change a row's position?
In my SwiftUI iOS app, I have a simple List of Item objects where upon doing a swipe action on a row, I can change the priority of an Item and thus change its position in the List. However, the ...
0
votes
1
answer
12
views
Azure Container App scale-down causes Azure Function (queue trigger, hosted as Container App) to fail with No process is associated with this object
I’m running an Azure Functions queue-triggered app hosted as a container inside Azure Container Apps.
The function is built with .NET 10 and scaled using KEDA scale rules defined in Bicep.
I’m ...
-1
votes
0
answers
15
views
How do I accurately determine my mouse position relative to an html element in react?
I have an app that contains a canvas I am drawing to, and I'd like to be able to track the mouse position accurately. The issue I face is that the farther you go towards the bottom right, the less ...
-2
votes
0
answers
20
views
Mission Planner on Raspi Pi5 [closed]
I've downloaded Mission Planner on my Raspberry Pi 5 both the official way of using mono and installing the application from PI-App, but when I try to open it, I get the following error, does anyone ...
0
votes
1
answer
35
views
How do you replace multiple elements of an array in C with elements of a different array
If I wanted to replace large chunks of an array in C with items from another list, are there any solutions that don't involve for loops or writing code like the following?
int64_t foo[size];
foo[value]...
0
votes
0
answers
9
views
How to get pipeline stage Id in Go high level
How to get pipeline stage Id ? Like I had a pipeline it's id is mentioned in the URL. but in the pipeline I have stages like (open, won, lost) I want their stage IDs.Thanks in advance
1
vote
0
answers
23
views
Please help me fix Indentation firstLine problem
I tried to apply indentation firstLine but it's not working, below is my code:
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$fontStyle = array('name' => '...
-1
votes
0
answers
9
views
Can't map network drive with runas /trustlevel:0x20000
Credentials are in the Windows 11 Credential Manager.
This, run from a non-admin cmd prompt, works to map a drive:
net use Z: \\NAS\homes /persistent:yes
This, run from an administrative cmd prompt, ...
-2
votes
0
answers
12
views
Hi there, my next JS application is not storing session on production [closed]
my next js app is not storing session on prodution but t works fine on localhost, I make sure that the production next_auth url is the link of the website, what would be the real reason behind?
Best practices
0
votes
1
replies
16
views
Adapting a SwiftUI View for top-level or enclosed
Let’s say I have an e-mail reader than can also open some e-mail archive formats. When I get an e-mail file, I open it using a view that’s designed for a message. When I get an archive, I open it to a ...
0
votes
0
answers
13
views
Hbox not showing when set Bottom
I have 2 main nodes. One is the side menu which works perfectly and the function menu which is supposed to continue the bottom of the side menu to the end of the width of the screen. Somehow HBox isn'...
0
votes
0
answers
7
views
I keep getting 3000: (project not found) error on reown, I created multiple projects and they all have the same issue
I’m trying to connect to WalletConnect/Relay via Reown (AppKit / WalletConnect v2). Every time, the relayer disconnects with code: 3000 (Project not found).
Context
Platform: (macOS/Windows), (React ...
-1
votes
0
answers
10
views
Trying to get these slide indicator dots to stay on the right
I am working on a portfolio project and im trying to get these slide indicator dots to stay on the right of the screen and in the middle of the slide. Ive currently got it on fixed, which i dont want ...
0
votes
0
answers
15
views
How to stop Directory.EnumerateFiles() from silently adding U+FFFD for non-utf8 filenames?
On linux, I created a filename with special bytes: touch $'/tmp/bad/\xff\x1f.jpg'
c# prints out the filename as: /tmp/bad/�.jpg
I would rather c# throw an exception, instead of silently printing junk ...