Newest Questions
24,182,965 questions
0
votes
0
answers
5
views
Next.js 15 App Router API route returns 405 when proxying backend API to avoid CORS
Question / Context
I’m integrating a backend API into a Next.js 15 (App Router) application.
The backend API works correctly in Postman, but when I try to call it directly from the browser, it fails ...
0
votes
1
answer
18
views
Flutter in_app_purchase restorePurchases always returns purchases from the Google Play account that initially installed the app
Body
Hi,
I am developing a driving license exam application using Flutter, and I have implemented in-app purchases using the in_app_purchase package. Purchases are working correctly and can be ...
0
votes
0
answers
14
views
Failed to read variable with KSEG1 address in MIPS32
I am working on an embedded RTOS system, where the CPU is a MIPS32.
The GNU ld.script specifies the final binary runs from 0x80000000, I think it is KSEG0 address space.
I wrote a test to read ...
0
votes
0
answers
11
views
Does IS_PENDING default to 1?
I'm experiencing some strange behaviour with IS_PENDING and MediaStore files. The documentation is very clear:
If your app performs potentially time-consuming operations, such as
writing to media ...
Advice
0
votes
2
replies
16
views
Where should a beginner start with System Design and Pattern Recognition?
I am a software developer and I’m starting to learn System Design and Pattern Recognition concepts.
I want to understand:
how to approach system design problems step by step.
what fundamentals I ...
0
votes
0
answers
8
views
How can I prevent CPU spike when moving mouse over Konva.layer?
I have a simple, draggable, Konva.layer containing an (one) svg image. The image is a single rectangle, but has a fillPattern. It is quite large 3000x2000. I listen to click events (only) on the layer ...
0
votes
1
answer
26
views
Bootstrap "Collapse" element stuck in "collapsing", not retracting back
I'm using bootstrap's collapse component but it refuses to retract when I try to trigger that exact event. It is stuck in "collapsing" state and goes back to adding "show" class to ...
1
vote
0
answers
14
views
Should i pass consent info to each ad network?
I am using unity ads and meta-audience network inside admob mediation and I am using Google UMP SDK for showing consent screen or reading consent.
can other network automatically read this consent ...
0
votes
0
answers
17
views
Android elevation shadows remain visible during screen fade transitions in React Native
I'm experiencing a visual glitch on Android where elevation shadows remain visible during screen transitions, even though the screen itself is fading out. This creates a jarring effect where shadows ...
2
votes
1
answer
43
views
Lifetime of temporary to which a local reference is bound in a c++ coroutine
On cppreference (which I understand is not the c++ standard itself) I have read that the coroutine state contains "local variables and temporaries whose lifetime spans the current suspension ...
0
votes
0
answers
15
views
Can we do some action, when use uninstalles android app?
I have to call an api to inform my server that app is being uninstalled. Is it possible?
I dont want to rely on activeness of user to determine if app is installed or not. Is there any way to call my ...
0
votes
0
answers
23
views
PySide6 QOpenGLWidget flickers even with minimal example inside a layout
I am experiencing flickering when using QOpenGLWidget with PySide6,
even with a minimal setup.
Environment:
- PySide6 (tested with 6.5 / 6.6)
- Python 3.x
- OS: Linux / Windows (happens on multiple ...
0
votes
0
answers
27
views
Is the "visibility" abstraction sufficient to understand the behaviors of std::memory_order? [closed]
The concepts related to C++ memory order themselves, as well as the explanations provided by the local technical community in my country, are rather abstract. For this reason, I have attempted to ...
2
votes
3
answers
31
views
Using subquery as a derived table
I am doing a SQL course and I can't figure out the solution to this question.
In a Car database, there is a Sale table with columns:
SaleID, CarID, CustomerID, LocationID, SalesRepID, SaleAmount, ...
-3
votes
0
answers
39
views
Ideas to implement Undo and Redo functionality [closed]
I am currently building my own text editor in C++, i want to add Undo and Redo functionality but I have no idea where to start and what to do? Any suggestions?
I am using Gap Buffer for storing and ...