Newest Questions
24,162,614 questions
0
votes
0
answers
4
views
Missing dependency even though the dependency is defined before
I need help with defining my dependencies in a correct way for the Koin compiler.
In MyApplication.kt I have:
startKoin {
androidLogger()
androidContext(this@MyApplication)
modules(...
0
votes
1
answer
11
views
Intellij Idea - Cannot start the IDE Archived non-system classes are disabled because the java system classloader property is specified
I just installed new version of Intellij Idea (IntelliJ IDEA 2026.1) from its official website.
When I try to open it, I got this issue.
Here is the screenshot
Here is my idea64.exe.vmoptions
-...
Advice
0
votes
0
replies
7
views
Criteria for CPU core sizing when migrating Oracle DBs from SPARC/Solaris to Linux
I'm planning a migration of several Oracle 19c CDB instances from SPARC/Solaris (with LDOMs) to Linux (Red Hat 8/9) and am trying to determine the right number of physical CPU cores for the new ...
0
votes
0
answers
13
views
How to secure encryption key
I am building an open-source desktop app, it work offline using pyside6. I build and deployed it on linux with "pyside6-deploy" everything work well but on Windows both "nuitka ...
Best practices
0
votes
0
replies
6
views
Running Windows 11 GUI Applications in Azure CI/CD Pipeline
I am trying to set up automated GUI testing for a Windows application within an Azure-based CI/CD pipeline, but I am running into fundamental issues with maintaining a stable GUI session.
Context
OS: ...
0
votes
1
answer
18
views
Using PostgreSQL 18, I want to import a large csv file with many unknown column names
Sorry if any incorrect use of terms.
Using PostgreSQL 18, I want to import a large .csv file with many unknown column names and rows.
To be exact, I have 2 related .csv files.
1 file contains around ...
0
votes
0
answers
22
views
Error code 153 when trying to use Youtube Embed | HTML
When I try to use a youtube video embed in html code, I get Error 153 Video player configuration error. I've researched it and saw stuff about referrer policy, I tried that and even with the "...
-3
votes
0
answers
33
views
OVH SAS is ASN for hundreds of visits to my site [closed]
My site, investoremaillists.com, has gotten hundreds of hits from the ASN OVH SAS. Many of these hits came while I was doing social media marketing on Twitter. I'm wondering whether these hits could ...
Advice
0
votes
2
replies
34
views
Create a book manager with a json file using python
I'd like to create a kind of book manager where, at the start, I have a menu with several options, such as adding a book, deleting a book, viewing my library, or searching for a book.
But I'm not ...
-2
votes
0
answers
27
views
dma controller latest intel
I want to understand how dma controller works. I know basics from college but latest devices i want to refer and study for linux dma engine functions. However, 8237 or 8257 appears old devices. If i ...
-1
votes
0
answers
13
views
How do I configure multiple JWT/OIDC providers simultaneously in QvaSoft Gateway?
I'm testing QvaSoft Gateway (https://gateway.qvasoft.net/) and noticed it supports multiple authentication providers at the same time (JWT HMAC, RSA, JWKS, OpenID Connect, IdentityServer, etc.).
Does ...
Advice
0
votes
0
replies
21
views
Youtube videos and CORS
I'm a web dev and I'm creating a react yt clone
I'm using MongoDB, storing YT Videos and their id's and in react,
<iframe
title={video.title}
...
Best practices
0
votes
1
replies
32
views
Web Audio API crackling ("drrrr" noise) when playing 10+ tracks in Tone.js but export is clean
I am building a browser-based multi-track audio app using Tone.js (similar to a lightweight DAW).
I noticed a specific issue during real-time playback:
- When playing 5–10 tracks → audio is smooth
- ...
Best practices
0
votes
0
replies
14
views
Multi-provider RPC failover in Rust - circuit breaker vs retry-only for blockchain nodes?
I'm building a production RPC transport layer in Rust that connects to
multiple blockchain RPC providers (Alchemy, Infura, QuickNode, public nodes)
with automatic failover.
The challenge: not all ...
0
votes
0
answers
10
views
Trouble with jacoco on apache ant
I have configured my ant target as
<target name="test" depends="build">
<echo message="----- TEST STARTED -----" />
<mkdir dir="${test.classes....