Newest Questions
24,196,935 questions
-1
votes
0
answers
4
views
Node.js fetch to BoardGameGeek API always returns 403 Forbidden despite using API token
I'm trying to fetch board game information from the BoardGameGeek XML API using Node.js. I have a valid API token, but every request returns a 403 Forbidden response.
Here's my current setup:
async ...
0
votes
0
answers
2
views
How to use Timeseries in go-redis?
According to the documentation, it would seem Redis Timeseries are supported by the go-redis library, but I am unable to get it working.
Here is my minimum reproducible example:
package main
import (
...
-2
votes
0
answers
4
views
How to Optimize Salesforce Implementation for Better CRM Performance?
Optimizing Salesforce for Better CRM Performance
I am trying to improve the speed and stability of our Salesforce system. As more integrations and automation tools were added, the CRM started to slow ...
-2
votes
0
answers
6
views
JS Slow http request
i have a website that is selling some products online, and everyday there are updates, i try to be the first that is getting those products, and i created a bot in js runned by tampermonkey to make ...
0
votes
0
answers
6
views
Excel Office Script (not VBA!) to hide / show columns, depending on cell value or filtered table
I need to build an Office Script (not VBA) to help a number of users hide / show columns on a Cloud-shared worksheet, in a controlled and structured way (so, not by manually using the Excel menu Sort ...
2
votes
1
answer
17
views
Why dart creates an unawaitable Future?
Here is a simple dart code:
Future<Object?> fetchDataTypesFirst() async {
return getRequest();
}
Future<Object> fetchDataTypesSecond() async {
return getRequest();
}
Future<String?...
0
votes
0
answers
11
views
Why do my labels and highlight points plot far from the data in tidyplots boxplot?
I'm using tidyplots to highlight and label extreme values in a boxplot, but the labels and points appear far from the actual data. Here's a minimal reproducible example.
pacman::p_load(dplyr, tidyr, ...
0
votes
0
answers
15
views
C# array[i] where i is IBinaryInteger<T>?
A BinaryInteger is an integer of some bit-length. I'd like to use it to index an array.
Casting to an int isn't possible - I have to use int.CreateTruncating(i) (or similar) at run-time to get an ...
0
votes
1
answer
13
views
System call transition to system call table
When a system call is invoked by a user program, a software interrupt (trap) is raised, control first passes to the fixed location of the interrupt vector (IR) which contains the ISR associated with ...
0
votes
0
answers
6
views
Nx with Angular did not create lib below libs folder
I executed the following:
npx nx g @nx/angular:library ui-common-lib --standalone --style=scss --buildable --importPath=@acme/ui-common-lib
nx.json contains:
"workspaceLayout": {
"...
0
votes
0
answers
10
views
Arabic text gets corrupted to "E1-(' ('D9'DE" when creating PDF annotations with @iwater/annotpdf library
I'm using the @iwater/annotpdf library to create PDF annotations in an Angular application. When I try to create free text annotations with Arabic text, the text gets corrupted to unreadable ...
-2
votes
0
answers
11
views
How do I transform this ESLint setup to fully support TypeScript files
Versions:
eslint: 9.37.0
typescript: 5.9.3
typescript-eslint: 8.46.0
Configs (both in project root):
tsconfig.json
{
"compilerOptions": {
"rootDir": "./src",
...
-3
votes
0
answers
10
views
Can't install self-hosted runner in organization globally
I would like to know what could be the problem causing the GitHub self-hosted runner configuration to always fail with the same log error here? I have always been able to configure the runner in the ...
1
vote
0
answers
12
views
fluentbit get logs from postgresql
I need to track statistics for executed SQL queries in PostgreSQL.
The PostgreSQL pg_stat_statements extension is used for this, but the statistics data can only be retrieved using the SELECT * FROM ...
0
votes
0
answers
9
views
How to shade every other y-axis label row (including labels + points)?
I’m working with several plots where I compare “Pre” and “Post” slopes for different cities. For one of them (retail), I’ve already added alternating shaded bands behind the points using geom_rect().
...