Newest Questions
24,162,655 questions
0
votes
0
answers
13
views
Using ZStack or using .frame is the best way to give background colour in SwiftUI
I have to give background colour or background image for full screen so I tried both ways and both working perfectly but I need to know which approach is the best way to use in SwiftUI. or is there ...
0
votes
0
answers
16
views
How to run SDL3 with WSL, WSLg and VCPKG, getting null driver
I'm using WSL, I did check if WSLg is working by running xeyes and it works.
I Installed vckpg, it is running I created a vcpkg.json with sdl3 as a dependency, I added a CMakeList.txt with ...
0
votes
0
answers
10
views
OWASP Dependency Check suppress swagger-ui-5.32.0.jar: swagger-ui-bundle.js and swagger-ui-es-bundle.js with dependency-check-suppressions.xml
I am running a Spring Boot Kotlin project where I get the following two dependencies that I need to suppress:
Dependency: swagger-ui-5.32.0.jar: swagger-ui-bundle.js
Package: pkg:javascript/DOMPurify@...
Tooling
0
votes
1
replies
6
views
Java 17 migration: ADF application causing "reads package from both modules" errors in WebLogic 14.1.2
I am migrating a legacy Java application from Java 8 to Java 17 and weblogic 12c to weblogic 14.1.2.
The application is built using ADF and Struts and deployed on WebLogic 14.1.2. The project uses ...
0
votes
0
answers
26
views
Multithreading in C++ not running in parallel
This is the implementation file for my CPU scheduler simulator. The idea is that there is a vector of threads that all pull from a queue of tasks and run those tasks for a specified amount of time. ...
0
votes
0
answers
9
views
How do I order documentation for package declarations in go
Given a package layout as follows:
.
└── pkg
└── pkg1
├── a.go
├── b.go
└── pkg1.go
It's possible to write documentation for the package declaration that appears in the ...
Advice
0
votes
0
replies
15
views
How do I fetch talent statement (personal summary) information when using Get_Workers HR SOAP API?
This is feasible via report and exposing report as web service (I can use Talent statement text field of Worker object)
Is it possible to fetch this info along with other worker details via HR SOAP ...
Best practices
0
votes
0
replies
19
views
Memory settings for running Maven Builds within Docker
TL;DR: What are the best practices for running Maven builds within containers regarding memory limits?
Longer version:
Our build process utilizes Maven builds within Docker containers. For the sake of ...
Best practices
0
votes
1
replies
22
views
How to erase a caption on an iPhone photo?
I have a photo on my iPhone that has a caption or text overlay right across the middle of the image. Is there any way to erase or remove that text without using Photoshop or a computer? I'm looking ...
0
votes
0
answers
9
views
How to change QML's import directory when in a Python based QtQuick project?
I'm developing a Qt Quick application using Python (PySide6) and QML. I want to use QtGraphs and QtCharts, but Qt Creator's QML language server (qmlls) throws the following error in the editor:
QML ...
-3
votes
0
answers
24
views
Why is my Python loop modifying a list incorrectly during iteration? [duplicate]
I am working with Python and trying to remove specific elements from a list while iterating over it.
However, the loop does not behave as expected, and some elements are skipped during execution.
...
0
votes
0
answers
11
views
@google/genai SDK: ai.files.upload ignores abortSignal and doesn't throw any exception when I try to abort
I am using the official @google/genai SDK in a Vue.js application. I am trying to implement a cancellation mechanism for file uploads using an AbortController.
However, when I trigger .abort(), the ai....
-3
votes
0
answers
22
views
Sails.js unable to connect to AWS RDS MySQL (ETIMEDOUT) while Node/Workbench works
I’m stuck on this since morning and would really appreciate some help.
I created a new AWS RDS MySQL 8.4 instance.
✅ I can connect successfully using MySQL Workbench
✅ I can connect from a Node.js + ...
0
votes
0
answers
29
views
How to chain CMake builds correctly? [duplicate]
I have two CMake projects which share the same SDL3 Hello, World! C++ source file hello.cpp. Individually, I can build and test them successfully and now I want to create a master CMakeLists.txt to ...
Advice
0
votes
0
replies
22
views
Snowflake Workspace - how to get current git branch in python
I would like to collect, in a python variable, the current branch, from which the code is being run in my Snowflake Workspace linked to a Git repo. Is this possible without a .git file in the ...