3,837 questions
-1
votes
2
answers
129
views
Python Selenium. Wait for page fully loaded [closed]
I am trying to implement website automation. Before I start to interact with website, I have to wait until page is fully loaded. The website work with great amount of data and fetching it from ...
1
vote
1
answer
50
views
Why does my Kaggle cloud notebook give cuda init error: UNKNOWN ERROR (303)?
I am running all of this on a Kaggle cloud notebook (so it is a cloud environment) but I am not confident that it is configured correctly because I'm getting a CUDA initialization error.
The answer at ...
0
votes
0
answers
73
views
Inconsistent JavaScript module execution on Shopify dev store
I'm working on a custom JavaScript setup for a Shopify development store. I use Vite to bundle everything into a single JS file that gets included via:
{{ 'bundle.js' | asset_url | script_tag }}
The ...
0
votes
3
answers
71
views
How to display a fallback value while waiting for API data? [closed]
I'm building a dashboard in React, and I want to greet the user like
"Hi, {firstName}!" But the data is fetched from an API, and sometimes it's not immediately available.
<h2 className=&...
0
votes
1
answer
107
views
Next.js throws error error when trying to load image from API
So I have an API (Springboot) that stores images as files. I want to retrieve these images and display them in NextJS, but no matter what there's an error. In Postman, everything works fine, so it's ...
0
votes
0
answers
125
views
How to safely load a blocking script in the head without risk of being slow
I’ve made some A/B testing software which requires website owners having to place a script in the head of their websites. This script must block the page from loading until it finishes executing, ...
0
votes
1
answer
65
views
Require.js fails to load data-main script (looks into wrong place)
Requirejs library fails to load script defined in data-main attribute for require.js script. According to browser output it looks into wrong place. Can't sort it out why and how to fix it. Created ...
1
vote
2
answers
92
views
How can I load all app data during the splash screen in Flutter?
I'm building a Flutter app where I need to load all essential data (such as user data, prayer times, and Qaza Namaz records) before navigating to the main screen. I want this loading to happen during ...
2
votes
1
answer
55
views
How can I query the name of the currently loading asset in LibGDX?
I am using LibGDX's AssetManager like this in my create() method:
ASSETS = new AssetManager();
FileHandle assetHandle = Gdx.files.internal("assets.txt");
String text = assetHandle....
0
votes
1
answer
333
views
How to test a loading screen in vitest
In my <App /> component I want to show a loading screen until I've fetched my data and after fetching my data all the images(whose source's I got from my data) are loaded.
I am having difficulty ...
0
votes
1
answer
93
views
preloading images before first frame in Flutter
I want the first frame of my app to be an image, the same image as my native splashscreen (on ios). i would like a smooth transition between the native splash screen and the app splash screen.
i am ...
-1
votes
1
answer
65
views
wxButtons Not Loading Correctly [closed]
I am creating a GUI using wxWidgets in C++, however one issue I am having is the buttons won't load properly when I use a wxStaticBitmap background.
I have moved the code everywhere in different ...
0
votes
0
answers
85
views
FIx Infinite Loading Loop after app has been in background for over an hour
Building app in react-native. When app first loads, its fetches all data correctly and displays correctly. If the app gets moved to the background and the user brings the app back up within 15-30 min ...
0
votes
2
answers
47
views
Implementing countdown in angular causes browser to load infinitely
This code works fine for displaying the timer, when i open it after the browser is loaded properly, in other words, if i open my profile section first and wait for the browser to finish loading and ...
0
votes
0
answers
64
views
Optimize / Parallelize Loading Data?
I'm reverse engineering the GameCube game Zelda: Twilight Princess and recreating it in Unity. Specifically, I'm parsing binary files that contain data for meshes, textures, and materials to generate ...