Newest Questions
24,159,907 questions
Advice
0
votes
0
replies
5
views
What are practical uses of non-shareable domain barriers on Arm?
I'm trying to figure out exactly what the point of the non-shareable domain memory barriers are on Arm, referring specifically to the two following instructions:
dmb nshld
dmb nshst
The problem is ...
Advice
0
votes
0
replies
21
views
how to develop ios on windows
I'm just starting to experiment with app development and I'd like to build an iOS app. However, I only have a Windows PC. I know Xcode is exclusive to Mac, so what are my best options or workarounds ...
0
votes
0
answers
16
views
I am getting this error "error 1004 method range of object _global failed"
I am working on a code where I am fetching the Data from 1 workbook to another workbook. But I am getting error "error 1004 method range of object _global failed". the error is debugging on
&...
Best practices
0
votes
0
replies
10
views
Astro for design system + Vue for interactivity, is this correct approach?
I’m building my first real website, and I’d like some architectural advice.
I’m using Astro to build a small design system: buttons, inputs, cards, surfaces, typography, etc, and they look great. I ...
0
votes
0
answers
11
views
In-app purchases vs Stripe for audiobook app (Apple & Google requirements)
I have published an audiobook app where users can listen to audiobooks for free. In the future, I plan to add a premium feature where users can access paid audiobooks. For each premium audiobook, ...
0
votes
0
answers
20
views
Why can I create "en-UN" as a culture, when it does not exist
It works on the developer machines, but not on some servers (at least not on server 2012 R2), so I was trying to figure out what and why.
So I tried to manually created a CultureInfo with "en-UN&...
0
votes
0
answers
19
views
SQL-Transpose a table and concatenate value into single var? [duplicate]
NAME
Instance
Date
val
John
1
2019
12Y
John
2
2019
32dd
John
3
2019
23F
John
1
2020
43s
John
1
2022
23G
Mary
...
...
...
how do i convert the table into below?
Basically transpose by NAME and DATE and ...
0
votes
0
answers
23
views
Loading h2O model with Python does not launch the cluster
I want to use a Mojo model (created by someone else with the h2o framework) in Python so I did:
import h2o, os
os.environ["H2O_DISABLE_STRICT_VERSION_CHECK"] = "true"
os.environ[&...
Advice
1
vote
2
replies
29
views
the difference between the data structures trie and tree in the Linux kernel
1.Explain the difference between the data structures trie and tree in the Linux kernel and suggest, giving reasons, which would be the better structure to use in sorting packets by packet length.
2. ...
Advice
2
votes
3
replies
82
views
Apparently my code is AI generated (Except it's not)
I was curious and I decided to run my code through some detect AI code. I was getting results of 90-99% AI generated code.... Except I wrote every line myself...
I was getting comments such as: "...
-1
votes
0
answers
23
views
Hot Reloading in Angular 20
If I change something inside my application, for example content in HTML file, the browser is not reloading. Instead I manually have to press F5.
package.json
"dependencies": {
"@...
Best practices
0
votes
0
replies
18
views
what are these topic should i focus on leetcode?
I am planning to become a software engineer, and I would like to know which topics I should focus on when practicing on LeetCode. If you have any advice, could you please explain in detail which ...
Best practices
0
votes
0
replies
10
views
LiteDB Vector - how to get scores
I made some test with the new prerelease LiteDB vector feature.
I get correct matches using col.Query().TopKNear (..)
But I would like to get the computed scores too. How ?
-1
votes
1
answer
46
views
Program only works from one location in filesystem [duplicate]
Please can someone suggest why my PHP program will not work when I move the folder containing it to a different place in the filesystem?
It uses HTML forms to extract data and insert it into a ...
-2
votes
0
answers
35
views
How can I optimize a single Oracle SQL statement for the 19/20-Queens problem under strict memory limits?
I am trying to solve the N-Queens problem in Oracle using exactly one SQL statement.
The constraints are strict:
I cannot use PL/SQL
I cannot split the solution into multiple statements
Memory is ...