Newest Questions
24,180,343 questions
0
votes
0
answers
6
views
Burnikel Ziegler Division
I'm implementing the Burnikel-Ziegler division algorithm and I'm having trouble with specific limb amounts when trying to run the code.
I'm using a base 10^7 system. This is my implementation of the ...
0
votes
0
answers
12
views
How to update Apache to the latest version available in XAMPP for Windows (8.2.12)
I am currently using the latest version of XAMPP for Windows (XAMPP for Windows 8.0.30, 8.1.25 & 8.2.12) and it comes with Apache 2.4.58, which has some vulnerabilities.
C:\xampp\apache\bin\httpd....
0
votes
0
answers
37
views
R's leafem not appending Layers Control with customizeLayersControl(includelegends=T)
Working on a leaflet map with a large number of groups that creates a bulky legend. To trim down the legend, I'd like to hide it away in the Layers Control with customizeLayersControl from the leafem ...
0
votes
0
answers
35
views
Implementing remember-me/stay logged in logic in a Java Servlet
I would like to implement a remember-me functionality in my very plain servlet based system. No Spring, No Shiro nothing. I'm mightily struggling to make it work. On paper it seems fairly straight ...
-1
votes
0
answers
16
views
Difference between include and require in PHP [duplicate]
I am a Computer Science undergraduate learning PHP and WordPress development.
I often see include and require used to add PHP files, but I am confused about:
1. What is the main difference between ...
0
votes
0
answers
37
views
Family graph using d3.js
I want to create a family graph and the requirements is like all son are left align and all daughter are right align and when first son family completed just below it second son family start.
Note: ...
Best practices
0
votes
0
replies
6
views
Stepwise Random Forest Classifier - Hack or Bodge
I created a random forest classifier in R intended to identify individual urban tree species/genera. I have a large train/test dataset (n= 200k) with about 30 predicotrs that are mostly spectral ...
0
votes
0
answers
23
views
Disabling build-isolation in a pip config file
TL;DR - setting no-build-isolation to true in my pip configuration does not appear to disable build isolation. Are there additional values that need to be set?
I have a development machine that isn't ...
0
votes
0
answers
28
views
Curious reflected light and shadows on my UI composables causing unwanted visual layering indications
If this is just my screen, I will be embarrassed and quietly slink away - There are light shadows and white light-reflection areas between my side-by-side @Composables. I've done some logical screen ...
Advice
0
votes
1
replies
7
views
Earliest and latest values per id and variable
Suppose I have this changelog data:
id
variable
change date
start value
end value
1
a
2026-01-14 00:00:04
105
110
1
a
2026-01-14 00:00:02
100
105
1
b
2026-01-14 00:00:03
88
77
1
b
2026-01-14 00:00:02
[...
0
votes
0
answers
82
views
(docker, nvidia-ctk) error while loading shared libraries: libcuda.so.1: cannot open shared object file: No such file or directory
I am trying to set up a docker container using the nvidia container toolkit on a remote server, so that I can run cuda programs developed with the Futhark Programming Language - however, the issue ...
0
votes
1
answer
50
views
Using Substring, cast and sum together
I have a sample data of total column such as [$122,$133,$144,$233.44,$12.45] etc
Total column is in varchar, I am going with CTE approach on calculating the total
First - I remove the Dollar $ sign ...
0
votes
0
answers
33
views
expo-camera and @react-native-firebase plugins compatible build error
I have a project that requires the use of both react-native-firebase and expo-camera plugins. The issue is anytime I try to run or prebuild the project, it immediately errors out (see image below)
...
Advice
0
votes
4
replies
39
views
What is most enjoyable and high paying career options in tecnical field?
Can Anyone know what is the most enjoyable and career options in the tecnical fields like Android Development, Software development, Cybersecurity and their sub fields.... And other fields in tech....
...
-2
votes
1
answer
148
views
VS Code C++: Undefined reference to functions defined in another .cpp file [duplicate]
I am working on a simple C++ project in VS Code on Windows using g++ (MSYS2).
My project structure is:
project/
├── example.cpp
├── example.hpp
├── main.cpp
└── .vscode/
└── tasks.json
example....