Newest Questions
24,169,357 questions
Advice
0
votes
0
replies
7
views
Gitlab Docker Image - Private Project
How to create private project in Gitlab gitlab/gitlab-ee:18.9.0-ee.0 (Docker) ?
Force git clone command to use a token or username:password .
Thx,
Rick
-1
votes
0
answers
8
views
How to set up documentation with MkDocs?
I tried to set up MkDocs for a small local project using ChatGPT, but it failed. Here is what I have as folder structure:
- mymodule/
| - __init__.py
| - tester.py
- docs/
| - docs/
...
0
votes
0
answers
10
views
class hierarchy hibernate mapping
I'm creating the domain class mapping for the following SQL tables:
CREATE TABLE org (
id UUID PRIMARY KEY DEFAULT uuidv7(),
name VARCHAR(50) NOT NULL
);
CREATE TABLE org_entity (
id UUID ...
0
votes
0
answers
19
views
Why are these random numbers printing in the terminal? Everything else seems to be working fine
The code below checks if a give string is a palindrome or not. I am getting the intended output in the terminal but there is also an integer printing in between every line of output. I have played ...
0
votes
0
answers
14
views
Gray/Blue artifact on wall edges when rotating camera fast in Unreal Editor for Fortnite (UEFN)
I am working on a map in Unreal Editor for Fortnite (UEFN).
I am experiencing a visual issue where a gray/blue artifact appears on the edges of walls when I rotate the camera quickly (even at moderate ...
0
votes
0
answers
19
views
What does .NET DateTime Ticks represent when Kind is Unspecified?
Take the following C# code:
DateTime.TryParse("2025-05-03T02:10:36", out DateTime dateTime);
Console.WriteLine(dateTime.Kind);
Console.WriteLine(dateTime.Ticks);
The value of Ticks is here ...
0
votes
0
answers
15
views
How to get Ubuntu 22.04 to remote access to Ubuntu 20.04 using Remmina and OpenVPN ovpn file on 20.04 PC?
I have a computer running Ubuntu 20.04, and access it using Remmina from a computer running Ubuntu 22.04.
This works without any issues.
I wanted to use a VPN, so paid for ProtonVPN, but they don't ...
-3
votes
0
answers
29
views
code not running at all through terminal i keep running into this error message [closed]
PS C:\Users\Bonol\Downloads\future-vision-hub-main> npm i
npm error code ENOENT
npm error syscall open
npm error path C:\Users\Bonol\Downloads\future-vision-hub-main\package.json
npm error errno -...
0
votes
0
answers
14
views
Slack admin_analytics_getFile error - Error retrieving analytics file: file_not_yet_available
We are using slack_sdk to get analytics information for a particular day from slack. However we assume due to volume of the data I am getting a file_not_yet_available error.
Here is the code that we ...
0
votes
0
answers
17
views
Ray scheduler isn't getting assigned any tasks/actors
I have a Ray cluster, I run it through these commands:
Scheduler:
nohup ray start --head \
--node-ip-address=<HOST_IP> \
--port=6379 \
--resources='{"is_worker": 1}'
--...
0
votes
0
answers
28
views
How to get JsonSerializer.Deserialize<> to not leave objects as JsonElement? [duplicate]
When I run System.Text.Json.JsonSerializer.Deserialize<Dictionary<string, object>> all values are converted to JsonElement, instead of the actual value. I expect numbers to be converted to ...
Best practices
1
vote
1
replies
23
views
In NX, is it a best practice to set "rootDir": "libs" in any lib under the /libs folder?
I'm facing the following problem within a project that includes Nx:
error TS6059: File '/libs/lib1/lib1.ts' is not under 'rootDir' '/libs/lib2'. 'rootDir' is expected to contain all source files.
1 ...
2
votes
0
answers
37
views
Remove library without removing source
I have made a custom library, let's call it mylib.
In another project which uses this custom library of mine, I have put the following in its pyproject.toml:
[tool.uv.sources]
mylib= { path = /PATH/TO/...
Advice
0
votes
0
replies
15
views
Kotlin DSL: Replacement for android.bootClasspath
android.sdkDirectory and android.bootClasspath don't exist in Kotlin DSL.
For android.sdkDirectory I can use:
val javadoc by tasks.registering(Javadoc::class) {
val sdkDirectory = System.getenv(&...
2
votes
1
answer
39
views
Flatten multindex column in a pipe in pandas
Suppose I have the following DataFrame:
arrays = [[1, 1, 2, 2], ["red", "blue", "red", "blue"]]
ix = pd.MultiIndex.from_arrays(arrays, names=("number",...