Newest Questions
24,151,819 questions
0
votes
0
answers
2
views
FAT32: External drive (MP3 player) is deleting edited directory entries?
I've been trying to create a system where the same data can be pointed to by several directory entries. I have an original file, original.mp3, then create several pointers like so: original (1) (P)....
0
votes
0
answers
3
views
What is KV Cache and why do we use it
Can anyone explain me why do we use the KV Cache in Transformers, i heard about this from a team member talking about it during Hackathon.
0
votes
0
answers
10
views
Interlocked functions on unsigned variables
what is the safe and correct way to atomically write unsigned variables using the Interlocked* functions or TInterlocked?
In the function below, are (A) and (B) fully atomic and threadsafe?
Or is (C) ...
Advice
1
vote
1
replies
22
views
Writing SQL queries
How do I remember the order of a SQL query when writing them? I know the basic order 1. SELECT, 2. FROM, 3. WHERE, but how do I know when to use other clauses when creating a query (i.e. ORDER BY, ...
-5
votes
0
answers
37
views
How can I get correct user_input? [closed]
num = random.randint(1,5)
user_number = int(input("Enter the Number: "))
if user_number == num:
print("Correct !")
else:
print("Incorrect !")
print(f"The ...
0
votes
0
answers
22
views
Questions regarding preemption and blocking in Linux kernel
I've been questioning the scenario when __exit is called while any of my kernel module's code would have been running.
I learned that any execution in kernel space has a context. A process, kthread, ...
Tooling
0
votes
0
replies
20
views
How to dump libyoyo.so
This is a library for Android game and used with Game Maker. I've tried dumping it with radare2 and readelf, but I couldn't identify the strings clearly and it lacked the functionality of the older ...
0
votes
0
answers
31
views
Problems with nops_fix()
I have a problem with nops_fix(). I installed the R packages as suggested (clipr, magick, qpdf). But when I run:
nops_fix("nops_scan_20260604161954.zip")
I see the first window to correct ...
0
votes
0
answers
28
views
Python tests fail only in GitLab CI
I have the issue that, while any locally run tests give the same results as before, since June 1st (last passing tests were on April 17th) some GitLab CI tests are now failing consistently. I have ...
0
votes
0
answers
24
views
Spring Repository giving "ORA-02289: sequence does not exist" on an existent sequence, but shows lowercase name in error
I have a sequence with a schema name which does work manually in a SQL tool such as SqlDeveloper:
select CRI_API."ISEQ$$_159767".nextval from dual;
=> 22
The Java application connects to ...
0
votes
0
answers
16
views
Google Cloud project suspended for "hijacked resources" after unknown Gemini API key abuse â how to provide required data?
My Google Cloud project hyginiee (project ID: hyginiee-4d445) was suspended for âabusive activity consistent with hijackingâ after unauthorized Gemini API usage; I discovered the suspension from ...
Advice
0
votes
0
replies
31
views
Whitelisting jackhenry IPs within my application
How can I obtain the jackhenry IP ranges so that I can whitelist them within my application? My use case is that I only want to accept incoming requests from jackhenry IPs and nothing else. I am ...
Best practices
0
votes
0
replies
25
views
Is this idiomatic? Does this even count as a type class?
I'm learning Scala. As part of this learning, I decided to build a type system for events. An object (any class via a trait or a typeclass) can have multiple subscribers to events (events are strings ...
0
votes
0
answers
15
views
vue-html2pdf: Line of text is split between pages when generating multi-page PDFs
I'm using vue-html2pdf v1.8.0 to generate PDF files in a Vue.js application.
I'm encountering a page-break issue when the generated PDF contains multiple pages.
Problem
The last line of text near the ...
Advice
0
votes
8
replies
100
views
Please help me with machine learning pipeline
My teacher gave us a task that requires training and improving a machine learning model to achieve the best possible prediction results. He even organized an in-class competition, so if my model ...