Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Advertising13 … make an email marketing campaign truly effective and impactful Key Components of an Effective Email Marketing Campaign Clear Goal Setting: Begin… Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Erussuhsh Hi can you help me I'm new Re: How to enable gpedit on Windows 10 & 11 Hardware and Software Microsoft Windows by AIO_803 Enabling **gpedit.msc** on Windows 10 or 11 (especially Home editions) is useful for gaining more control over system settings. While it’s not officially included in Home versions, there are workarounds—though users should proceed carefully to avoid system issues. Re: How Does Flutter Handle State Management Internally? Programming Software Development by asadalig … be updated, Flutter takes care of rebuilding only the UI components that require change when setState() is called on stateful widgets… What are the key components of ServiceNow Managed Services? Programming Software Development by Suheb What are the key components of ServiceNow Managed Services? Re: What are the key components of ServiceNow Managed Services? Programming Software Development by Salem https://duckduckgo.com/?q=key+components+of+ServiceNow+Managed+Services&t=newext&atb=v296-1&ia=web That'll be $2M, thanks. ArkTS - McCharts Programming Software Development by 杨_659 …I’ll outline the current status of the components and share future plans for ArkTS-related content…. --- ### **Component Progress** - **Completed components**: Line charts, bar charts, pie charts, scatter plots…for code hosting (mainstream and reliable). Completed components are managed via **OpenHarmony’s Third-Party … Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes Programming Web Development by Neil_brown001 … (Next.js) with dynamic nested routes where components at multiple levels depend on both initial server…lifecycle cause duplicated renders or outdated state in components that re-mount when switching routes. How … atomic reactivity and state consistency across nested layouts/components when: Server-rendered state initializes the component. … What are some underrated React JS best practices? Programming Software Development by James_228 … useCallback() smartly (but not overusing) Breaking components into smaller reusable ones Lazy loading routes and components But I’d love to know… often in junior dev codebases? Have you used React Server Components or Signals yet? Share your tips, tools, or even code… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by gediminas.bukauskas.7 … DOM manipulations faster and requires much less resources. Consider WEB components in client-side programming. McCharts - ArkTS Programming Software Development by 杨_659 … public properties as dynamic parameters to facilitate information transmission between components. Let's explain the functions of the five public properties… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by scope_2 … loading enhances web portal speed by loading images, videos, or components only when needed. Add loading="lazy" to <… Re: Looking for an developer-Friendly Admin Template Programming Web Development by Pelorus_1 Consider admin templates with clean code, easy customization, and robust documentation if you're looking for developer-friendly templates. Save time and increase productivity by using templates with modular components and built-in UI elements. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon > However, what is the harm in adding loading="lazy" to an existing web app? 96% of users will experience a performance improvement. The other 4% of users will have no negative consequences, and everything will be exactly the same for them. That 4% will not lose any functionality. That 4% will not experience any UI/UX consequences or … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani I guess I don't understand why implementing `loading="lazy"` will hurt the CLS if you're only doing it for images below the fold, and always specifying image dimensions (which would ensure to never affect CLS at all)? Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Yes I couldn't get the CLS impact either. I understand the "speed index" SEO impact of using loading="lazy" (that in my mind make it not usable) vs using IntersectionObserver but not the CLS. I created one more test that now it looks like the the speed index impact is there , but the CLS impact is negligible (now I see a really … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Even if using it above the fold, as long as you specify image dimensions, there should never be a CLS impact. CLS measures needing to reposition elements on the page as it loads or due to user interaction. As long as the spot for the image is carved out from the very beginning, even if the image loads much later, no other element on the page … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Speed index should also not be affected at all by using it. Speed index measure how long it takes to load the first screen of content of a webpage. That means that if you’re using it only for content below the fold, speed index should never be affected. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Dani as you wrote "Speed index" is supposed to be about the visible part of a web page - ATF. But because in Lighthouse I kept getting that loading="lazy" method had worse "Speed index" I created two simplified html pages for test. I gave a lot of height of what "Above the fold" is supposed to be , 940px … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani I would like to confirm that the JS version is giving me an LCP of 0.2s and the `loading="lazy"` version is giving me an LCP of 1.1s, so certainly a huge difference there. FCP, total blocking time, CLS (0), and speed index (0.2s) scores are the same for both. I admit that, at first glance, I'm not understanding why the LCP is so long … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Actually, I take it back. I assume that, using Chrome on a fast Internet connection, and a super high screen resolution, none of the images are actually being lazy loaded. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Sorry. I’ve just been really exhausted all day. It just clicked that LCP is only for ATF. Soooo, yeah, I don’t know what’s going on there. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon As I wrote in a previous post, I believe that the way loading="lazy" is being implemented in browsers makes it almost unusable. Chromium-based browsers have a really high distance from viewport threshold, loading many images simultaneously upon page entry, while Firefox has a really low threshold, which means the user experience is awful.… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > Lighthouse metrics (which really affects SEO) Please correct me if I'm wrong, but I'm fairly confident that Lighthouse metrics do not affect SEO. Lighthouse is just a tool that Google offers to SEOs to be able to offer actionable page improvements. In reality, it's real world performance data from Chrome users that factors into a site's SEO… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Dani, I completely agree (of course) that Lighthouse, as a tool, doesn’t directly impact SEO rankings. However, Core Web Vitals , which Lighthouse helps measure , do influence Google’s ranking signals. If a webpage performs poorly in Lighthouse audits for metrics like LCP, Speed Index, CLS, e.t.c. those issues will also affect real Chrome users, … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > If a webpage performs poorly in Lighthouse audits for metrics like LCP, Speed Index, CLS, e.t.c. those issues will also affect real Chrome users, ultimately having a negative impact on its SEO. I have found that to not be the case. As an example, we use Google's signed exchanges, which allow Chrome to prefetch our URL on the Google SERPS … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Hello Dani, I decided last week not to respond to your last post, but, let's be honest, I can't keep myself from responding. Your example could be valid if you take into account: What percentage of websites/web apps use SXG? Of those, what percentage of the indexed pages by Google are actually cached by Google at any given moment? Of … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > Is your example valid? Yes, if you stretch a fringe and long-shot possibility into an opinion. My post was based on my own use case, which is the only data that I have access to. > What percentage of websites/web apps use SXG? DaniWeb uses SXG. > Of those, what percentage of the indexed pages by Google are actually cached by… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > If a webpage performs poorly in Lighthouse audits for metrics like LCP, Speed Index, CLS, e.t.c. those issues will also affect real Chrome users, ultimately having a negative impact on its SEO. Basically what I was saying was that I found that to not be the case with my own website. Like I said, half the time SXG makes what I see in … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Dani, first of all, thank you for sharing the numbers. Yes, if LCP for mobile devices has improved from 3 seconds to 2.1 seconds (with SXG being the only difference), it’s clear that SXG is working well for DaniWeb. 232,000 crawl requests for an SXG certificate over the past three months for 207,000 pages is negligible. Your SXG certificates …