Newest Questions
24,149,538 questions
0
votes
1
answer
11
views
How do I close a GitHub issue as "Not planned"?
I encountered a GitHub issue that has the status "Closed as not planned" instead of the usual "Closed". Up until now I've been using tags to specify issues as not planned, but I'd ...
0
votes
0
answers
3
views
Gem::Version : Getting Argument Error, although I am passing the correct number of parameters
I have the code
```
class EmptyVersion < Gem::Version
def initialize
super('')
end
end
v = EmptyVersion.new
```
Running this produces *'new': wrong number of arguments (given 0, ...
0
votes
0
answers
11
views
MAUI Android "Keeps stopping" crash exactly on Shell Navigation - ONLY on Zebra TC22 (Android 14)
I'm dealing with a bizarre device-specific crash in my .NET 10 MAUI app (a confidential internal WMS app) and need some insights.
The Exact Behavior:
The app boots up perfectly fine to the LoginPage.
...
Advice
0
votes
0
replies
6
views
How to evaluate RAG app which uses Pydantic output parser for output parsing?
I need some advice. I've built and evaluated a RAG app Chat with PDF, which used StrOutputParser but now I'm creating another RAG project which is RAG which recommends recipes. So I need to know how ...
0
votes
0
answers
12
views
Quarto sees a duplicate chunk label when using a labelled chunk within a Targets workflow
I'm using tar_quarto() to create a report within my targets workflow and either quarto or knitr error saying that there is a duplicate chunk label in my .qmd file. I have only one label, so it is ...
1
vote
0
answers
19
views
Android NFC on physical devices
I am using react-native-nfc-manager to make an app which scans NFC tags for iOS & Android. Both parts work which is good but not on all devices. For example:
Working devices:
iPhone 17 Pro Max
...
0
votes
0
answers
6
views
Aspose.Pdf.Document Page.Rect accessor hangs
Calling Page.Rect in C# using version 26.6.0 never returns - it causes the thread it’s running on to hang.
To replicate:
var document = new Aspose.Pdf.Document(…)
foreach (var page in document.Pages)
{...
Advice
0
votes
1
replies
19
views
Does forwarding reference ensure guaranteed copy elision?
Since C++17 copy elision is guaranteed when variable is initialized from function call that returns pr-value.
In case of such template:
template<typename... T>
void foo(T&&... args);
...
Advice
0
votes
0
replies
11
views
How to seed non-interactively gpg-agent with a private key passphrase
The context:
I run a private docker hub repository. It is accessed remotely and non-interactively by different client hosts. Up until recently, everything was fine: I could login/pull/push/logout from ...
0
votes
0
answers
13
views
How to correct install a SDK for nRF9151 SMA DK?
I'm stuck trying to set my nRF Connect extension on VSC. I've followed the guide for the installation but I'm reaching a wall. Every time I try to install a given SDK I have the same result (see ...
0
votes
0
answers
10
views
Hibernate merge fails with UnsupportedOperationException when entity collection is replaced with Java 21 immutable List
Background
Spring Boot: 4.0.2
Hibernate: 7.2.1.Final
Spring Data JPA: 4.0.2
Java: 21
PostgreSQL
I have a ServiceItem entity with a @OneToMany collection:
@OneToMany(mappedBy = "serviceItem&...
-1
votes
1
answer
54
views
Android Studio emulator has no Internet access [closed]
I'm an android developer and I'm stuck with a network problem that I have not faced before.
Since 2024 I have been coding on my PC (Windows) and there were no problems, but when I bought a new MacBook ...
0
votes
0
answers
24
views
Figuring out correct trait bounds for rust diesel-async async closure transaction
With recent changes to rust diesel async where it supports async closure for transaction, I want to do the same for my wrapper instead of passing a boxed future.
I would like to update txw to call it ...
Advice
0
votes
0
replies
30
views
How to signal load balancer readiness based on connection pool exhaustion in Spring Boot with virtual threads
Problem
Before virtual threads, Tomcat's bounded thread pool acted as implicit backpressure. Under overload, /health would slow down and time out, causing the load balancer to stop routing traffic to ...
Advice
0
votes
0
replies
36
views
What are petri map tokens?
My question is simple: What counts as a petri map token? Can it be a global shared flag, a number or anything? What are common practices for choosing a token. Also, what do firing of transitions mean ...