Newest Questions
24,180,094 questions
0
votes
0
answers
5
views
Import podman created image to proxmox
I found out that in proxmox 9.1 it is now possible to create LXC containers from OCI images.
I would like to leverage this feature to implement the following workflow:
define an image using a ...
0
votes
0
answers
2
views
how configure codeiginiter for have /blog in subfolder in /public?
My main application is in CodeIgniter, and in /public/blog I placed a WordPress site which correctly opens the blog's homepage. However, when I open a link like /blog/posts/my_post, it doesn't display ...
0
votes
0
answers
6
views
(Rookie question) Git not detecting local changes
I have a folder in my repo. It shows up as empty on Github, but it's full of things in my physical hard drive. When I make changes to it, they don't show up either.
I found out some stuff out there ...
-1
votes
0
answers
4
views
Timefold : Large Capacity Vehicle Routing
We are working on a Vehicle Routing Problem with large-capacity demand, where:
A client has demand big than any vehicle capacity.
So We Split Each client demand into multiple Visits
Each Visit ...
-1
votes
0
answers
14
views
How do some applications display overlays on top of lockdown browsers like Safe Exam Browser?
I’m trying to understand how certain software applications are able to display overlays or UI elements on top of lockdown browsers such as Safe Exam Browser (SEB), which are designed to prevent other ...
0
votes
1
answer
13
views
Building Python Wheel without internet connection
I am trying to setup an air-gapped VM (Win10) to build python wheels.
It works for Python versions < 3.14.
With Python 3.14 I can only build the package when I have access to the internet.
Without ...
0
votes
0
answers
10
views
SSIS Package failing Oracle connection manager on one data flow but passing on another data flow. Visual Studio 2019
I updated an SSIS package to include some code updates and since then, my Oracle Connection manager is failing on one data flow but is not failing on a different data flow within the same message. I ...
Best practices
0
votes
0
replies
8
views
is it ok to mock the controller when using MSW?
The Vitest course I'm following shows a way to test a function that talks to an external server. The MSW was introduced, after that the instructor said: "we have no way to make the MSW handler's ...
Best practices
1
vote
0
replies
5
views
What are the security and feature checkpoints for considering an authentication system “complete” in a web application?
I’m building a web application and started with authentication, but I keep feeling it’s incomplete. In a professional production environment, what are the essential steps or criteria to ensure the ...
-1
votes
0
answers
26
views
MET Office getting data using the new DataHub [closed]
I am trying to get some data from the MET Office DataHub using the code below but all I get is the following error: If anyone has the time could you please have a look at my code and try see where I ...
0
votes
0
answers
28
views
Donut chart for categorical data in R
I have a data frame like this
df <- data.frame(Group=c('one fruit', 'one fruit', 'two fruit', 'two fruit', 'three fruit', 'one fruit','three fruit', 'two fruit', 'three fruit','one fruit', 'two ...
Advice
0
votes
0
replies
10
views
hosing Python / Flask apis in RHEL with heavy IO bound tasks
below is my application design. as ou can see my back end flask/ python apis are hositng websocket APIs for some of the front end actions. the intention is to have quick communication from front end ...
Best practices
0
votes
2
replies
10
views
Design using java solid principles with cap theorem utilizing low level design banking application
I have a basic Accounts interface and then two classes implementing it . I have two classes ClosedStateAccount and OpenedStateAccount. Now when account is in opened state then only i can do the ...
Advice
0
votes
0
replies
2
views
Formatting the transition labeling of a state diagram
In mermaid I build this simple state diagram
The code of the state diagram (which you can enter here):
---
config:
themeCSS: |
#edge0, #edge1, #edge2 { stroke: red; stroke-width: 2px; }
---
...
-1
votes
0
answers
19
views
vitest complains that "require is not defined" but I don't use require
I have a very simple test file:
import fs from "node:fs";
import {test, expect} from "vitest";
test("Creating store", () => {
expect(fs.existsSync("my-file.dat&...