Newest Questions
24,222,282 questions
0
votes
0
answers
2
views
Cannot install ipykernel in venv
My goal is to set up Jupyter in VSCode on Windows. What I have tried method are
Follow the GUI prompt, click install, but it alwasys stuck at some place for hours.
Run the command hinted by the ...
0
votes
0
answers
4
views
Is it possible send a command from inside a tmux session to the shell that initiated it?
I would like to remap the ssh command to be able to use it from inside a tmux session, in such a way that it detaches from the tmux session and runs the command from outside the session.
To do so, I ...
0
votes
0
answers
11
views
Using SymPy to find equation system solutions in specified variables valid for all values of remaining variables
Is there a standard way to implement sympy.solve to solve a system of equations with respect to a specified subset of free symbols (i.e. sympy.core.symbol.Symbol instances), such that it only finds ...
0
votes
0
answers
8
views
springboot3.2.5 restclient occasionally delays about 3 seconds
When I use springboot3.2.5 restclient to call an API, occasionally there is a gap of about 3 seconds from the time the request is sent to the time the request is received by the receiver.This is the ...
0
votes
0
answers
13
views
SharePoint Online (SPO) REST API not creating unique web root IDs
I am using the SharePoint REST API to automate the site creation process. I have created a Python script that calls the SharePoint Online REST API via the following endpoint:
https://{tenant}....
0
votes
0
answers
10
views
Can squash commits be done in both directions of the timestamp?
Say there is a squash of 3 commits into a single commit like so:
pick abc Jan 1 stuff
squash def Jan 2 stuff
squash ghi Jan 3 stuff
pick jkl Jan 4 stuff
pick mno Jan 5 stuff
In the above, my ...
0
votes
0
answers
12
views
JDK21 Virtual Thread: Thread.sleep() Causes Subsequent LockSupport.parkNanos() to Not Block
Environment: Java 21+ (Virtual Threads)
Problem Description
When using virtual threads, calling Thread.sleep() before LockSupport.parkNanos() causes subsequent parking operations to return immediately ...
0
votes
0
answers
5
views
Automating FluxCD Image Update
I am deploying a web with Flux, GitHub Actions, DockerHub, and Kubernetes. Here is the flowchart. The method I am using currently to update the web is to automate deleting the old pod with GitHub ...
0
votes
0
answers
8
views
RLS Violation No Matter What on Supabase
Im working on a project with nextJS and Supabase. When trying to upload a file to my storage bucket named "tracks", I keep getting this error : "Unauthorized" message : "new ...
0
votes
0
answers
14
views
Conky + Lua script displaying a erroneous window
I want Conky to display a rotating list of quotes on my desktop. My setup:
Source quotes: ~/quotes.txt, one quote per line.
Lua script (~/quote.lua):
My algorithm reads all quotes and then picks a ...
0
votes
0
answers
8
views
Get dts GPIO active high/low setting in linux kernel 6.6
My dts descripbes GPIO as following:
my-gpio = <&gpio4 20 0>;
In Linux kernel 5.10 I use
gpionum = of_get_named_gpio(np, "my-gpio", 0);
of_get_named_gpio_flags(np, "my-gpio&...
0
votes
0
answers
11
views
SDL program can't find available video device on NixOS
I'm using NixOS and trying to learn SDL, yesterday I got a code example to build and work but today it stopped working, I tried rebuilding everything in a different directory with no success. I'm ...
-2
votes
0
answers
20
views
Why am I getting an error message when trying to connect my local Git folder with the github website?
enter image description here
I was following this video https://www.youtube.com/watch?v=p8bZBvcFPuk, but I received the error in the image shown. So i'm wondering how I can fix it and is this problem ...
0
votes
0
answers
9
views
Jetson AGX Orin (JetPack 6.2) - PyTorch in Docker cannot access CUDA / GPU
I am currently developing on a Jetson AGX Orin device with the following setup:
Hardware: Jetson AGX Orin
OS: Ubuntu 20.04
JetPack version: 6.2 (L4T R36.3.0)
CUDA version: 12.4
Docker version: 24.0.7
...
0
votes
0
answers
16
views
MSQL database connectivity to my Android Application
private void testDatabaseConnection(String ip, String port, String username, String password, String dbName) {
new Thread(() -> {
String connectionUrl = "jdbc:sqlserver://" + ...