Newest Questions
24,168,081 questions
0
votes
0
answers
9
views
Some Adobe modules being found and other not
I have ensured that pdfservices-sdk is installed in my current environment, and it is running on Python 3.14.3. The first two modules are being found and the rest are not.
from adobe.pdfservices....
-1
votes
0
answers
17
views
ClamAV returns "OK" for EICAR-embedded image files — not detecting virus signature appended to PNG/JPG or injected into metadata
I have a Spring Boot application that scans uploaded image files using ClamAV before storing them. The scan is performed by streaming the file bytes to the ClamAV daemon using the INSTREAM command via ...
Tooling
0
votes
1
replies
12
views
Comparing dex prices against pyth network price feeds
There are always arguments about what dec gives the most accurate prices while trading some say Jupiter while others say titan, How can I programmatically compare DEX prices against Pyth Network price ...
Best practices
0
votes
0
replies
10
views
Creating exam with multiple stations
I am an adjunct teaching a human physiology lab and the style of my exams is a station-based practical where physical specimens/models are placed in front of the student and 3-5 questions are asked ...
Best practices
0
votes
0
replies
8
views
Azure VM Scale Set and Loadbalancer
When VMSS scales out and creates a new VM instance (VM3), it is based on an older base image. The other two VMs (VM1, VM2) already have the latest code deployed via the Release Pipeline. VM3 boots up →...
0
votes
0
answers
9
views
replace the substring in 1st file by anther string from 2nd file
I have 2 input files as below
File1:
AST
BDT
CFT
EDT
FRT
File2:
T.ABC.TXT.***.EF.TAXSE.IWS.WISHS ...
Advice
0
votes
0
replies
11
views
Review of my UML class diagram for a student social network (database design)
I am designing the database for a student social network web application as part of a university project.
I created a UML class diagram that includes entities such as users, publications, comments, ...
-1
votes
0
answers
12
views
why cant I run the debugger in VS Code / Playwright any more?
Been using Playwright / JavaScript for years and never had any problems using the debugger in VS Code.
Recently with same project on same machine, debugger stopped working.
Also doesnt work with fresh ...
Best practices
0
votes
0
replies
23
views
How to load multiple API responses in one object
I need to load a series of API responses into one object because the item limit in the API is less than the total items. Currently I'm reading the response into a json string and reurning it once.
...
0
votes
0
answers
8
views
Why does my Node.js production deployment return 502 Bad Gateway behind Nginx after restart?
I'm deploying a Node.js web application on a Linux server using Nginx as a reverse proxy. The application works correctly when I start it manually, but after restarting the server or redeploying the ...
-1
votes
0
answers
21
views
Different build output between macOS and Windows when running Vite + Prettier build
In the company where I work, some developers use Windows while others use MacBooks with Apple Silicon. We develop a web application using React on the frontend, and we run npm run build so that Flask (...
0
votes
0
answers
18
views
Asp.Net Web app not working on Ubuntu server
I have an Asp.Net web app that works perfectly on my windows 11 laptop - either through the source code using visual studio or the published code using IIS. When I try to run either on my Ubuntu ...
-1
votes
1
answer
12
views
structog's ConsoleRenderer writes color control codes to file though configured with `colors=False`
I'm setting up logging to two targets, console and a log file, as structlog's documentation suggests as final approach in this section:
def configure_logging(verbosity: int, config: LogOptions):
...
0
votes
0
answers
35
views
Why is a string_view cannot be checked as a boolean?
In C++, pointers and optional's can both be used as the condition expression in an if statement:
auto *ptr = get_ptr();
if (ptr) { std::cout << "Yay, can use ptr!\n"; }
else { ...
Best practices
3
votes
1
replies
33
views
Optimizing a Gaussian penalty function for HSL color compatibility in PyTorch/NumPy
I am currently developing an AI-driven fashion recommendation system, specifically focusing on a "Multi-modal Context-Aware Decision Model." A critical component of my recommendation engine ...