6,032 questions
0
votes
0
answers
50
views
Intermittent database corrupt error in R on package install
I am working on building an R package in RStudio. I am using R version 4.5.0 and RStudio version 2024.12.1 Build 563 on Ubuntu 24.04.2 LTS. When I install my package from the "install" ...
0
votes
0
answers
52
views
Loading a Module from a remote server in Angular [closed]
I'm trying to load a custom module that have been developed by a different team from a remote server on demand into the project.
import { NgModule } from '@angular/core';
import { Routes, RouterModule ...
0
votes
0
answers
24
views
Hibernate 6 Migration: OptimisticLockException and TransientObjectException When Copying Entities Between Two SQLite Databases
Use Case
Users can copy a subset of entities and their object graphs from a main SQLite database to an archive SQLite database, preserving IDs and relationships (1-to-1 copy). After migrating from ...
1
vote
1
answer
36
views
Does importing Angular Material modules in multiple lazy-loaded modules cause duplication in the final Angular bundle?
I’m using Angular with lazy-loaded modules, and I’ve noticed that each feature module imports some Angular Material modules (like MatButtonModule, MatToolbarModule, etc.).
My question is:
Does this ...
0
votes
1
answer
78
views
Python tab completion triggers attribute access
I'm running into an issue with tab completion in Python. I have two classes, one serving as a backend that is responsible for managing i/o of a large data collection, and a second that serves as a UI ...
0
votes
0
answers
33
views
Implement lazy-loading using client-side rendering in AgGrid
I am unable to manually implement lazy-loading in the grid using client-side rendering. The reason for not using row model 'infinite' or 'server-side' is that we do not want to make changes in the ...
0
votes
0
answers
12
views
Unable to use selenium to scroll down a lazy loading facebook page
I'm trying to use selenium to scroll down a lazy loading facebook page to get all the comments loaded onto the page, but scrolling does not seem to be working. I only ever get 10 comments, and the ...
-1
votes
2
answers
46
views
Should I use defer or DOMContentLoaded for modifying image loading attributes?
I'm optimizing image loading for a grid layout (similar to YouTube thumbnails) by setting loading="eager" for some images and loading="lazy" for others based on screen size. I have ...
0
votes
0
answers
48
views
React-Bootstrap not working properly after implementing lazy loading in React
I am using React-Bootstrap in my React app, and it was working fine until I implemented lazy loading for my components using React.lazy() and Suspense. After enabling lazy loading, React-Bootstrap ...
1
vote
3
answers
67
views
How to correctly set the initial page size while implementing a lazy loading listview in Flutter?
I'm trying to implement a lazy loading listview in my Flutter app. Basically when user scrolls to bottom, we fetch more data from the server. Let's say there are totally 100 items and I fetch 10 of ...
0
votes
1
answer
273
views
How to use Lazy scroll for big data in Antd Table
I’m working on a project where I need to implement infinite scrolling in an Ant Design Table component for displaying large datasets. I’m fetching the data from a Laravel backend, and I want to ...
0
votes
2
answers
259
views
React Suspense Fallback Not Working for Some Routes in React Router
I am using React Router v6 with Suspense to lazy-load components and display a fallback UI (FallBackUI) while loading. However, FallBackUI only works correctly for QrHome and Home but does not appear ...
0
votes
0
answers
35
views
Migration to Angular 18 and browser-esbuild: TypeError: Failed to fetch dynamically imported module
After migrating to Angular 18 and browser-esbuild (and vite) I installed my app to the testserver.
The app is no longer able to lazy load all submodules. It ends with
After page refresh the lazy ...
0
votes
1
answer
57
views
Using next/image while maping through an array with static pictures and using placeholder="blur"
Hello I'm using Nextjs for my portfolio and I'm using static pictures, the problem I find with the placeholder="blur" on next/image Image component is it doesn't work when I'm mapping ...
0
votes
0
answers
14
views
Detecting the End of Lazy Loading in a Web Page Using Pyppeteer
Issue:
I'm using the Pyppeteer library to generate a web page from an HTML string and then convert it into a PDF.
The HTML contains:
Basic components that load immediately.
Lazy-loaded components that ...