Newest Questions
24,196,048 questions
0
votes
0
answers
4
views
How to access a data-test-id nested deep inside shadow root using playwright?
My element is deeply rooted inside shadow root.
I have the following html
<div>
#shadow-root
<div>
#shadow-root
.... More divs and shadow roots
<div data-testid ...
-1
votes
0
answers
12
views
YAML Parsing Error When Running sam run in Solace Agent Mesh Project
I’m new to using Solace Agent Mesh and I’m currently trying to create a project following the documentation.
After creating the virtual environment and project folder, I ran the following commands:
...
0
votes
0
answers
9
views
Handlebars.net Pre-Compilation
We are a little confused about pre-compiling a template.
for example:
Is it possible to store the template variable in say a database and then just retrieve it and call
string source =
@"<div ...
0
votes
0
answers
15
views
How to design a payment acquirer API wrapper (E-Rede, Cielo, or CGNet) abstracting transaction and tokenization routes?
I’m working on a project that will consume the API of a payment acquirer — for example, E-Rede, Cielo, or CGNet — depending on the environment or client configuration.
These acquirer APIs typically ...
0
votes
0
answers
7
views
Active service worker logging but not intercepting requests
Bit of a messy setup, please accept my advance apologies. I am trying to coordinate work between 3 different GitHub Pages:
https://bur.gy serves my Jekyll blog and registers a service worker called ...
0
votes
0
answers
13
views
How to remove optional prefixes and suffixes from string
Product codes may contain 5 different prefixes CK0, CK, C, 0, K0
and two character suffixes from AA to AZ: AA,AB,...,AZ
Sample codes:
CK04721310AE
CK04721310AD
CK04721310AC
CK04721310AB
4721310AE
...
0
votes
0
answers
14
views
NetBeans fails to compile Java class with ñ in filename or class name
I'm working on a Java project in NetBeans 27, and I'm encountering a compilation issue with a class named AñoPeriodo.java.
Interestingly, this same project compiles without issues in NetBeans 8.0, but ...
0
votes
1
answer
12
views
Recording sounds in apps
I was developing an app that includes a screen recording feature which captures both the microphone and system audio simultaneously and then mixes them together. Everything worked perfectly until I ...
0
votes
0
answers
14
views
Forge app 401 Unauthorized when calling /ex/jira/${cloudId} from webtrigger (multi-tenant Jira)
I’m developing a multi-tenant Atlassian Forge app that multiple Jira Cloud sites install via a distribution URL.
Each install gives me a unique cloudId, which I store in my backend.
When fetching Jira ...
-1
votes
0
answers
26
views
Resolving Specific Logical/Dependency Conflicts During Complex Interactive Rebase of Divergent Branches
I’m encountering some challenges when performing interactive rebases to integrate multiple divergent feature branches into a linear history. The core issue lies not just in the complexity of Git's ...
0
votes
0
answers
15
views
Deriving a camera frustum from a combined view+projection matrix?
I am trying to derive a camera frustum for Frustum Culling from the combined view and projection matrix. An approach for this was already given in answers to this question, but my code simply will not ...
0
votes
0
answers
34
views
is it possible to create a MACRO to tokenize the struct name which is read from a file?
I have been trying to implement reflection for a project. More or less its worked up already, but im not finding a workaround for the allocation of the struct without writing huge boilerplate, cause ...
0
votes
0
answers
20
views
General SOCKS server failure when sending a domain request via Tor in C
Im writing a C program called toralizer (connect to a remote host through the Tor SOCKS5 proxy (127.0.0.1:9050)). The handshake succeeds, but when I send a SOCKS5 domain request, I get this error:
...
0
votes
0
answers
14
views
How to get playlist cover from Youtube api?
We are calling
GET https://www.googleapis.com/youtube/v3/playlists
with list of "snippet", "contentDetails"
In reponse the following information about playlist
{
"etag&...
1
vote
0
answers
20
views
OpenBLAS gemm 2x slower in Lisp CFFI compared to direct C calls with same BLAS library
I'm experiencing a significant performance difference where OpenBLAS matrix multiplication runs 2x slower when called through Lisp CFFI compared to direct C calls, despite using the exact same ...