9,832 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
0
answers
45
views
Jg mechanic fivem [closed]
i get this error wen trying to install parts from tablet and parts do not install Uncaught (in promise) TypeError: Failed to fetch (@jg-mechanic/web/dist/assets/index-C2kgfbjq.js:40) fivem server
0
votes
0
answers
38
views
How to implement polling in React without overlapping async fetch requests?
I am trying to implement a custom React hook that fetches data initially and then refetches it at a fixed interval (polling).
My problem is that using `setInterval` causes overlapping `fetch` requests ...
0
votes
1
answer
115
views
Git .lock file not found
I am trying to do a git fetch (or any other Git command) and I get the following error:
fatal: Unable to create '/path/to/repo/.git/refs/remotes/origin/main.lock': File exists.
There are no .lock ...
-3
votes
0
answers
49
views
ENOENT for node:sqlite without it being a dependency
I am currently making a npm package for a TypeScript Console Application Framework. I want this framework to offer the using developers a simple npm script "tscaf build" which takes all the ...
Best practices
3
votes
5
replies
179
views
Fastest way to read 10M DB rows in Python?
I’m trying to efficiently read about 10 million rows (single column) from a database table in Python and I’m not sure if my current approach is reasonable or if I’m missing some optimizations.
...
0
votes
1
answer
234
views
Next.js (App Router) – SSR with Axios & Cookies, CSR vs SSR API calls, and State Management Confusion
’m building a flight booking system in Next.js (App Router) and I want to use Server-Side Rendering (SSR). However, I’m running into some issues with API calls, cookies, and state management.
What I’...
0
votes
0
answers
103
views
Expo EAS build not fetching data from HTTP API in production
I'm having an issue with my Expo + EAS build. In development mode, my app works perfectly — I can log in, fetch events, and create new ones.
But after building with eas build -p android, only login ...
0
votes
0
answers
88
views
Can't call protected routes from Laravel 12 using fetch in Server Component in Next.js 15
I am using Laravel sanctum SPA authentication and everytime I use axios with config of withCredentials:true and withXSRFToken:true and call protected routes from the laravel api, it works perfectly ...
4
votes
1
answer
86
views
A wait-free consensus algorithm for three processes, with a swap object and the fetch-and-increment object together in one atomic step
We know that a swap object consists of a shared register and supports a swap operation between the shared register and any local register, which atomically exchanges the values of the two registers.
A ...
0
votes
0
answers
103
views
Facebook Graph API v23.0 video upload: CORS error when using fetch with <UPLOAD_SESSION_ID>
I'm using the Facebook Graph API to upload a video to a Page. The process involves three steps as described in the official documentation:
https://developers.facebook.com/docs/video-api/guides/...
0
votes
0
answers
220
views
hey-api client-fetch: How to set AbortController / timeout on a request?
I'm using hey-api's Fetch API client and have been trying to set a timeout time on requests, but I'm running into issues and can't seem to figure it out. Has anyone managed to get this working, or ...
0
votes
0
answers
29
views
Does Upstash's context.call method support ReadableStream.?
I am using upstashs context.call method to call my langgraph server. My langgraph server has an agent that autocompletes the notetext. When I do console.log in the body of context.call, I can see the ...
0
votes
0
answers
177
views
Problem after upgrading React Native from 0.75.4 to 0.76.9: Fetch API fails after Metro reload
I recently upgraded my React Native project from version 0.75.4 to 0.76.9.
After upgrading, I’m encountering an issue related to the Fetch API:
• When I build and run the app via Xcode, the API ...
0
votes
1
answer
106
views
Best pattern for fetching both from server and client in Next.js App Router (handling cookies, CSRF, headers)
In a Next.js App Router project (app/ directory), I’m trying to build a unified fetcher that can work both server-side and client-side, including correct handling of cookies, CSRF tokens, and headers.
...
1
vote
1
answer
89
views
fetching a mjpeg video stream on iOS throws "TypeError: Load failed" error
I have a webserver which delivers a small React SPA, in which a mjpeg video stream (streamed by the same webserver) is embedded.
Since the stream can only be viewed with authorization, the stream is ...