Newest Questions
24,187,164 questions
- Bountied 18
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
2
views
Error: Cannot find module '@/generated/prisma'
I am creating an gateway project in nodejs, but for some reason my "auth-service/src/controllers/userController" is throwing an error showing module cannot be imported my prisma folder ...
0
votes
0
answers
4
views
supabase upload file without using supabase auth
I’m using Node.js to store files on Supabase. I’m only using Supabase for the database and file storage—not for authentication.
Here’s what I’m currently doing:
const filename = `av/${uniqueId}${ext}`;...
0
votes
0
answers
3
views
How to add a tty on pod?
I can exec a bash shell using this command
kubectl exec --stdin --tty ftp1-7686766766-8v5s2 -- /bin/bash
bash-4.2#
but I want to know why kubectl attach don't work
kubectl attach -it ftp1-7686766766-...
0
votes
0
answers
3
views
3D Graphics confusion with Positions Normals and Indices arrays
While working with some 3D model, converting it from one format to another, I noticed something strange. The Positions and Normals arrays contained a lot of duplicate values, while the Indices array - ...
Advice
0
votes
1
replies
8
views
How to build an API that signs a PDF using eMudhra DSC on a Hypersecure USB token?
I hope someone can kindly guide me.
I need to build an API (in any language — Python, Node.js, or .NET) that accepts a PDF file and returns the digitally signed PDF.
The signature must be done using ...
0
votes
0
answers
5
views
Minimal Perfetto TraceConfig to populate AIDL/Interface names in android_binder_txns
I am currently using Perfetto to analyze Android Binder transactions. I am querying the android_binder_txns table via the Trace Processor, but the aidl_name and interface_name columns are returning ...
0
votes
0
answers
3
views
How to write a backstage catalog:register in template with github pull-request action?
Template
The following template is what I created for creating a github pull request with @backstage/plugin-scaffolder-backend-module-github plugin. Then I want to register it to backstage.
- id: ...
0
votes
0
answers
6
views
Shai Hulud 2.0: Is it safe to run "node -v" or "npm -v" on a fresh Linux install?
After the Shai-Hulud 2.0 attack is ongoing, i wonder if it is safe to run the node or the npm program on a fresh linux install, or does it just start downloading packages and "upgrading" ...
0
votes
0
answers
15
views
How to disable the annoying wrapping in the Rstudio console?
How do I disable the annoying line wrapping, present e.g. when I do str(..) like this? :
I don't see any appropriate setting in the Tools > Global Options > Console:
Truncating doesn't seem to ...
Tomas's user avatar
- 60.2k
0
votes
0
answers
11
views
Best way to scrape 2000+ clinic opening hours (Mon–Sun) using SerpAPI and a CSV list?
I’m trying to scrape opening and closing hours (Monday to Sunday) for about 2000 clinic entries.
I already have a CSV file with ~20,00 rows containing the clinic name and clinic country.
My goal is:
...
0
votes
0
answers
6
views
Kamailio Unable to Allocate Media Ports with rtpengine (Failed to Get Consecutive Ports)
I am experiencing an issue with Kamailio and rtpengine. I have configured Kamailio to use rtpengine as the media relay, but I am unable to allocate media ports for calls. When a call is made, I ...
0
votes
0
answers
12
views
How to intercept/modify keystrokes before the Microsoft Chinese IME processes them on Windows?
I’m using Microsoft IME (Chinese Simplified) and I need to type a backslash (\) while Chinese mode is active.
However, when I press the backslash key, the IME always converts it into the Chinese ...
0
votes
0
answers
8
views
MongoDB View: Merge collections with different field names using $unionWith
I am trying to merge four collections in MongoDB and create a view:
db.createView(
"manageRequest",
"claims",
[
{ $unionWith: { coll: "hr_loan" } },
{ $...
-3
votes
2
answers
29
views
why is my python function not returning the expected output [duplicate]
I am trying to write a simple Python function, but it does not return the correct result. Here is my code:
def multiply(a, b):
result = a * b
print(result)
When I call:
x = multiply(4, 5)
...
0
votes
0
answers
6
views
Chainlink Functions: Spotify API returns 400 Bad Request (x-www-form-urlencoded issue in Deno sandbox)
I am developing a Chainlink Functions (v0.3.x) request to fetch artist data from the Spotify API. I am simulating the request locally using the Chainlink Functions Toolkit (simulateScript), which runs ...