Skip to main content
Filter by
Sorted by
Tagged with
1 vote
3 answers
160 views

I'm working on a C# application where I need to read a very large text file and convert its contents into a DataTable. However, I don't always need all the rows—so I want to avoid loading the entire ...
Mohammad's user avatar
3 votes
4 answers
185 views

Im using angular v15 for my project. It's not small but not really big. I'd say medium to big. Running ng serve takes A LOT of time. Build at: 2025-07-23T12:23:56.259Z - Hash: 5ba2b19880727f6c - Time: ...
ajdin.bulut's user avatar
0 votes
0 answers
29 views

I need to preload some images off-screen while page is loading and also - in a seperate case - serve smaller versions (ie cropped) of the same images to mobile. What is the best way of doing this, ...
alkaemia's user avatar
  • 209
1 vote
2 answers
107 views

I'm in bash (version 5.2.37, in Arch-Linux), trying to make my experience a bit better, so I activated tab completions. I have the following code in .bashrc: [ -n "$(find /etc/bash_completion.d -...
Carlos González's user avatar
1 vote
0 answers
74 views

I am working with eclipselink*(version 4.0.4)* L2 cache optimization. For that I have implemented static weaving as Wildfly*(version 32.0.1.Final)*/Jboss server doesn't support dynamic weaving (as ...
Kitret's user avatar
  • 31
1 vote
0 answers
436 views

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" ...
doro's user avatar
  • 39
1 vote
1 answer
42 views

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 ...
Shank's user avatar
  • 1,418
0 votes
0 answers
119 views

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 ...
apurv thakur's user avatar
-1 votes
2 answers
55 views

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 ...
Rodrygo's user avatar
  • 21
1 vote
3 answers
80 views

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 ...
Emre Turan's user avatar
0 votes
2 answers
740 views

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 ...
TryCatchMe's user avatar
0 votes
1 answer
98 views

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 ...
AmineDev's user avatar
1 vote
1 answer
74 views

I have installed angular-i18next library and I want to have working multilingual translations after I going to change language and reload the page. Now its working, but I need to have implemented lazy ...
Orist Timemaker's user avatar
0 votes
0 answers
48 views

I have the following table definition for Doctrine ORM: <entity name="My\Namespace\User" table="users" > //some fields here, not important <many-to-one field=&...
Radu Murzea's user avatar
0 votes
1 answer
86 views

So, I have been practicing Angular during these days, and I encountered this issue while implementing lazy loading. My video doesn't load; if it does, it is not muted, and after refreshing the webpage,...
Miguel G.'s user avatar
0 votes
0 answers
24 views

I need to target all the img elements inside .lazy-load-wrapper class and add multiple attribute to it . And I need to use querySelectorAll but I encountered an error Uncaught TypeError: elmnt....
clarkf's user avatar
  • 733
0 votes
0 answers
86 views

My company have inherited a Next.js application for a client who used a different software provider for the initial build of their website, which uses Next.js + ISR to fetch data from a contentful CMS ...
Stu Ratcliffe's user avatar
1 vote
1 answer
121 views

I'm using React-Router with dynamic route modules in my React app. The loader function for one of my routes doesn't seem to execute, and I don't see the expected console.log in the browser console. ...
Neeri's user avatar
  • 65
0 votes
0 answers
71 views

I was stumbled on this issue for a week . So basically I try to install tinymce library lazyly on request. We have hybrid application angularjs & angular. I created service that lazily import ...
Kerim Balayev's user avatar
1 vote
1 answer
418 views

In older versions of Angular, where we used to have module-based applications, it would load a module once and even if you close components that are exported by that module - it wouldn't load that ...
maksonios's user avatar
1 vote
1 answer
474 views

I'm trying to prevent some images that are above the fold from being lazy loaded but I can't access the html of the images. Only the wrappers. Is there any way to access plane HTML of Elementor ...
Joshep95's user avatar
  • 177
0 votes
1 answer
213 views

In an "offline-first" app (which optimistically updates local state and gracefully handles errors by rolling back local state changes, for example), some features may still require internet ...
Audiopolis's user avatar
1 vote
0 answers
120 views

I'm experiencing a compatibility issue between the Lazy Page Speed feature integrated into my theme and the GTranslate plugin on my WordPress site. Specifically, the Lazy Page Speed optimization is ...
abdelilah benchioui's user avatar
0 votes
1 answer
24 views

I'm trying to learn to walkaround with dask for my machine learning project. My data set is too big to play with Pandas, so I must stay in lazy loading. here a smal sample to show how it is set up: I ...
Jonathan Roy's user avatar
0 votes
1 answer
689 views

I am trying to load a component: 'use client'; import { dynamic } from 'next/dynamic'; import { useFormState } from 'react-dom'; import { postAction } from '@/lib/actions'; import BlogForm from '@/...
abdul's user avatar
  • 1

1
2 3 4 5
121