Newest Questions
24,195,758 questions
-1
votes
0
answers
38
views
How do I make a GUI for my real-time python code? [closed]
I have a working code, that is calculating some things from microphones real-time. I want to make a GUI for this program, so that I can change parameters in the calculating code(i.e.: FFT size), and ...
0
votes
0
answers
14
views
How to exit standby mode by RTC?
I try to configure standby mode to exit by RTC interrupt, but it doesn't work, however by wake up pin it works.
What is wrong in my RTC exiting configuration?
My processor is STM32U585 and ...
0
votes
0
answers
10
views
How do I confirm the time zone for flight offer after making the API call, is it GMT-0 or GMT-+1?
This is the sample response from the Flight offer API with the departure and arrival timing.
{
"meta": {
"count": 1,
"links": {
"self": "...
1
vote
1
answer
23
views
Seek to the actual first frame of a video whose timestamps don’t start at zero (AVPlayer / AVAsset)
I’m working on an iOS app that loads videos using AVPlayer, and I’ve run into a common issue: some videos have timestamps that don’t start at zero.
For example, you can reproduce this by taking any ...
0
votes
1
answer
15
views
Matplotlib plots distorted or partially displayed after upgrading PyCharm from 2013.1.6 to 2025.2.3
I recently upgraded my old PyCharm IDE from version 2013.1.6 to 2025.2.3. When I run the same Python script in both versions, the plots generated with Matplotlib appear correctly in the old version ...
2
votes
1
answer
49
views
How can i optimize my brute force solution with (O(n²) time complexity)?
I am currently solvind the Container with most water, it actually works fine with both cases, but once i submit it, i get TLE which i believe is because my approach is O(n²) and it clearly says on the ...
0
votes
0
answers
23
views
Two projects with same launchsettings.json load with different port numbers
I have a large solution stored in a repository on GitHub. It is working fine. But when I download that repository to another computer, it does not run in debug mode.
The solution runs two projects: My ...
0
votes
0
answers
14
views
Nuxt 3: Prevent useFetch or useAsyncData requests from appearing in browser Network tab after client navigation
I'm working on a Nuxt 3 project and trying to make all API calls happen only on the server so that API URLs never appear in the browser’s Network tab under fetch or xhr.
When I use useFetch or ...
1
vote
0
answers
21
views
pytest-xdist fails with session-scoped async fixtures only when worker count is multiple of CPU cores
Summary
I've discovered a reproducible bug where pytest-xdist + pytest-asyncio fails only when the number of workers is a multiple of 4 on my 16-core system (4, 8, 12, 16 fail; 3, 5, 6, 7, 9, 10, 11, ...
-1
votes
0
answers
11
views
One drive enabled itself on reboot windows 11 [closed]
I was uninstalling programs and reboot several times. Without asking onedrive enabled itself and started syncing. Is there a way to permanently disable one drive in Microsoft account so it will never ...
0
votes
0
answers
6
views
Legend State v3 not fetching all data from Supabase in React Native (Expo SDK 54)
Supabase is showing 7 records and also when i manually fetch data from supabase it shows 7 records but on legend state it is only fetching one record. Also Supabase return array and legend state store ...
0
votes
0
answers
17
views
Daraja API (Safacricom) B2C payment flutter api call error
I'm currently developing a payment module in Flutter and using M-Pesa’s B2C API. This is the code for the B2C call future function:
Future<Map<String, dynamic>> b2cPayment({
required ...
1
vote
3
answers
61
views
How to flag the first time a variable increases within each group
I have a panel dataset ranging from 1992 to 2023 built from annual surveys.
The ID variable is NORDEST, and the period variable is PERIODO.
I want to create a new variable that takes the value 1 the ...
0
votes
0
answers
23
views
Asynchronous dash endpoints causing nested async event loop failure in Flask server
Here is the problem:
I have a Flask application hosting several Dash apps. All the code is synchronous - there are no asynchronous callbacks defined, and no asynchronous functions defined/used ...
0
votes
0
answers
16
views
my usermodel fields losing data to null except for the uid in firebase [closed]
when i save in firebase, the data like username, phone number, and status are lost, leaving only the uid persistent.
I'm using cubit for state management.
The code for creating user:
Future<void>...