Newest Questions
24,175,442 questions
0
votes
0
answers
2
views
Implementing Callouts and Cards and Accordian
I’m planning to add custom block components to Tiptap—specifically callouts (info, success, warning, tip), and later cards and accordions. Since Markdown doesn’t natively support these kinds of blocks,...
-2
votes
0
answers
33
views
Why isn't my ESP32 sending the full payload to my python server [closed]
I'm recently working on a project that has an ESP32 as the client and Python FastAPI as the server.
After the connection, there's an authentication process, which requires them to communicate using ...
0
votes
0
answers
18
views
Sending emails through local proxy
I need to bypass Iran's internet censorship to send emails using R's emayili package. The standard gmail() function fails because the regime blocks the default SMTP protocol.
My goal: Use local HTTP/...
0
votes
0
answers
9
views
Why is -affine-scalrep failing to remove redundant load/store in my MLIR inner loop?
I am trying to optimize a GEMM-like kernel using the MLIR Affine dialect. Inside my innermost loop (%arg5), I have a redundant affine.load and affine.store on %alloc.
Despite running the -affine-...
Tooling
0
votes
0
replies
3
views
Delphi 13 macOS app and Drag & Drop launch
How can I launch a macOS application I wrote in Delphi Embarcadero 13, with the drag-and-drop document icon (associated via Info.plist with myAPP)?
Asking to Claude and ChatGPT seems to be a bit ...
0
votes
0
answers
14
views
Playwright custom exception
For playwright in our framework there is a utility for expect methods like isvisible(){
expect (locator) .tobevisible()
} is it right to classify the errors coming out of playwright
Example : if I ...
0
votes
0
answers
10
views
Digital Persona SDK for 1:n verification
I've been developing a desktop app using the HID digital persona 4500 fingerprint scanner for user verification, the problem I have is the following, when I try to find a user in a large dataset the ...
-2
votes
1
answer
15
views
Orval intermittently returns 403 when fetching Swagger via Nginx reverse proxy in GitHub Actions
I’m using Orval to generate API clients from Swagger in a React + TypeScript + Axios project.
Architecture:
Orval (Node, GitHub Actions)
↓ HTTPS
Nginx (reverse proxy)
↓ HTTP
...
0
votes
1
answer
26
views
How to systematise a checking of "a quite equals to b" (either with round method or | a - b | ~ 0) for any value of a?
My context
I have implemented an equals(Object o) method for a speed object (Vitesse here) that when it faces a comparand being in m/s when it is itself in km/h (in example) puts the comparand in km/h ...
-1
votes
0
answers
10
views
sp_columns_ex works on physical Windows but hangs in containerized / KubeVirt Windows environment
I am facing an issue with a SQL Server system stored procedure behaving differently between environments.
The following query works as expected on a normal physical Windows machine:
EXEC sp_columns_ex ...
-2
votes
0
answers
22
views
Insert Data from Java to MySql
I don't know how to convert Java string numbers to insert them into MySQL table. The field 'peso' in MySQL is declared as float.
public void Conferma() {
// Creo un oggetto Prodotto
...
-7
votes
0
answers
31
views
How would you review and write these Java searchs, sorts and shuffling things? [closed]
I am cramming for a test and I would need help with learning some different java searching and sorting algorithms. The ones I have to know are:
Sorting:
Insertion sort
Merge sort
Selection sort
...
-2
votes
1
answer
29
views
python's re module is not working with simple pattern
Python's re module is not working as expected. It doesn't match at all with the following pattern.
Here is the python code tested on Ubuntu bash:
python3 -c 'import re; print(re.findall(r"(Hello)?...
0
votes
0
answers
24
views
How do I bypass "erasableSyntaxOnly" error when using React Testing Library with Jest
I'm trying to use React Testing Library with Jest and I'm not sure how to address it. I'm trying to test React components with Jest and RTL and I keep getting caught with erasableSyntaxOnly errors. ...
0
votes
1
answer
31
views
Why is `sort` not working in this example?
Is this a bug with the sort command or am I using it wrong? For simplicity, suppose I'm sorting this data:
year
month
25
oct
26
jan
25
sep
24
nov
Sort this table by first column (year):
$ echo -e &...