Skip to content
Menu
Open World News Open World News
  • Privacy Policy
Open World News Open World News

Category: News

How Core Web Vitals saved users 10,000 years of waiting for web pages to load

Posted on November 8, 2023 by Michael G


Today’s The Fast and the Curious post explores how Core Web Vitals saved Chrome users more than 10,000 Years of waiting for web pages to load in 2023 (across Chrome desktop and Android) by quantifying the experience of sites and identifying opportunities to make improvements.

In 2020, we introduced Web Vitals – essential quality signals for webpages to ensure a better user experience. Since then, there has been a massive leap in web performance made possible by our work on Core Web Vitals (CWV) and its broader impact on the web. Today, over 40% of sites pass all of the CWV metrics, leading to pages that load and respond to interactions more quickly. Here’s a closer look at the journey to help improve the performance for sites and some specific work done in the browser and the ecosystem to enable this achievement. 

Chrome’s Quest for Speed

The very essence of the web lies in its ability to provide information and services efficiently and rapidly. This principle is at the heart of Google’s business and drives our work on Chrome. However, we noticed an issue with sites over a long time horizon. Even if slow sites improved their performance for a while, it would often decline over time. No matter how fast Google Search might be, the user experience would be subpar if the pages found were slow to load.

We could not help these sites improve their performance directly, but we wanted users to have a great experience when they moved from Google Search to the individual sites. To tackle the challenge of improving the user experience while simultaneously providing unified guidance to developers, teams from Search and Chrome collaborated to address the issue of slow web pages.

Defining the Fast Web 

We examined millions of pages to define a public standard for a fast, user-friendly web page (initially published in The Science Behind Web Vitals). We published our specifications and data to the open ecosystem and took note of  the feedback we received. The introduction of CWV metrics such as LCP (Largest Contentful Paint) was groundbreaking because it allowed us to measure when the user actually sees the content. The ability to measure the actual user experience at scale has been foundational to the improvements that we will discuss in this blog post.

Next, we updated Google’s search ranking algorithms in August 2021 to consider, among other factors, whether a page met the speed and usability standards established as part of CWV.  Today, it remains highly recommended for site owners to achieve good Core Web Vitals for success with Search and to ensure a great user experience generally.

Exponential Impact of Small Changes

The results we saw after these changes were significant. The average page load in Chrome is now 166 ms faster. That might seem like a minor improvement, but small changes can accumulate to create a substantial impact on the web. 

So far in 2023, this project saved users over 10,000 years of waiting for web pages to load and over 1,200 years of waiting for web pages to respond to user input. And the web continues to get faster. We also tracked improvements in how many navigations meet Core Web Vitals (CWV). The current figures stand at 64.45% for mobile (up from 64%) and 68.39% for desktop (up from 67%). The Chrome Data team projects a ~69% pass rate by the end of the year.


Caption: Our savings for LCP translate into 8,000 years saved for users waiting for pages to load on Android and 2,000 years in 2023 so far. On INP, we have saved users 800 years on Android and 450 years on Windows so far in 2023.

Next, let’s look at some recent updates from both the Chrome team and the wider developer ecosystem, demonstrating how our joint efforts are speeding up the web.

Chrome’s Core Web Vitals Achievements

We’re proud to highlight numerous ways we’ve optimized performance. 


  • The Back/forward cache (bfcache) is designed to improve browsing experience by enabling instant back and forward navigation. BFCache’s hit rate has improved month-over-month on both Android (3.6%) and Desktop (1.8%).


  • Another example of a particularly impactful optimization is our PreconnectOnAnchorInteraction feature which connects to origins on pointer-down rather than pointer-up. This fully launched feature led to a 6/10ms (0.4/1%) median LCP improvement on Android/Desktop, and an improvement in cross-origin LCP by ~60ms on both Android and Desktop. The launch also resulted in a 0.08% Content Ad revenue increase, underlining the significant impact of performance optimizations on user engagement and ecosystem health.


  • We also introduced prerendering, which makes pages load instantly by rendering them before the user actually visits. Page loads via typing URLs directly in the omnibox get a 500-700ms (14-25%) median LCP improvement when prerendered, depending on the platform, moving global median LCP across all navigations by 6.4ms. We’re currently rolling out prerendering of omnibox-initiated searches.


  • Chrome has been working hard to keep background tabs out of your way. Implementing tab throttling for background tabs running at EcoQOS on Windows 11 and Task Role and QoS Adjustments on macOS have led to improvements in Largest Contentful Paint (LCP) and Interaction to Next Paint (INP).

  • The web’s modern ability to run all types of applications also comes with a mandate to manage the workload that this encurs. We have been optimizing Chrome under mutliple active tabs  and are happy to report improvements to scheduling and contention which improve INP by 5% and LCP by 2% in the last 6 months.


  • We have made targeted improvements to the page loading code in Chrome in 2022. These resulted in LCP improving by 10% on Android, and CWV pass rate improving by 1.5%.


  • Chrome’s renderer has also seen some improvements. The renderer’s main thread includes task queues for JavaScript, rendering, and image loading. Some changes that alter the priority of these tasks for optimal CWV include.

    • High priority image loading: Historically, image-loading had the same or lower priority than rendering. However, an experiment showed that between an image load task and a rendering task, choosing the image load task first can prevent layout shift of an intermediate frame that doesn’t have the image and also improves LCP. The improvement on Android at the 75th percentile was -6.66% for CLS and -0.82% for LCP, improving the CWV pass rate on Android by +0.24%. A similar experiment that boosted the loading priority to “medium” of the first five images parsed from the HTML (for non-icon-sized images) showed an improvement on Android at the 75th percentile of -6.08% for CLS and -0.53% for LCP. A combined experiment showed the effects of both changes were largely independent. 

    • Prioritize compositing after delay: If it has been more than 100ms since the last compositing task run, elevate the priority of any queued compositing task so that it will preempt normal-priority work. This produced an improvement of -0.27% for CLS on Android and Windows at the 95th percentile.

    • SVG Raster Optimizations: Another SVG drawing optimization improved INP pass rates on desktops by -2.28% for MacOS at the 75th percentile. 


Caption: An example of Chrome’s new prioritized loading of the first five images parsed from the HTML. This improved LCP from 3.1s to 2.5s.


Ecosystem Core Web Vitals Achievements

The broader developer ecosystem has also achieved remarkable results by focusing on Core Web Vitals. The most significant achievement was the performance improvement on WordPress – the Content Management System that powers over a third of the web: “WordPress 6.3 loads 27% faster for block themes and 18% faster for classic themes, compared to WordPress 6.2, based on the Largest Contentful Paint (LCP) metric”. 


Some parts of the WordPress ecosystem are going even further. Prerendering some links via the speculation rules API, NitroPack‘s prerendered page loads have seen an 80% LCP improvement and 55% INP improvement compared to those without any speculative loading.


Caption: The percentage of origins passing all three Core Web Vitals (LCP, FID, CLS) with a “good” experience (Source: HTTP Archive)


The JavaScript framework community has also seen Core Web Vital gains. Over the past few years, Chrome Aurora has collaborated with Next.js, Angular, and Nuxt to release performance-focused features like the next/script component, NgOptimizedImage, and nuxt/google-fonts. In 2022, Next.js pass rates increased from 20.4% to 27.3%, Angular pass rates increased from 7.6% to 13.2%, and Nuxt pass rates increased from 15.8% to 20.2%. Enterprise partners who tried our features have seen wins in LCP. For example, after switching to NgOptimizedImage, Land’s End saw a 40% LCP improvement on mobile in Lighthouse lab tests and a 75% improvement in LCP on desktop. In similar tests, CareerKarma’s LCP reduced 24% when switching to next/script’s web worker mode. 


In the business world, performance optimization has led to remarkable growth. For instance, RedBus improved INP and observed a 7% increase in conversion rates. Economic Times improved INP and saw a 42% rise in page views and a 49% reduction in bounce rate. Meesho successfully brought LCP down from 6.9s to 2.5s, resulting in a 16.6% reduction in bounce rate and a 3% increase in conversions.


Major web platforms have also seen significant improvements. Amazon has leveraged the bfcache change introduced on Chrome and saw a 22.7 percentage point (pp) improvement in bfcache hit rate with Chrome’s latest version (M112). Cricbuzz experienced an even higher increase, with a 31.40 pp improvement.

Partnering for a Better Web 

These performance improvements aren’t just statistics – they represent real-world improvements in user experience (and hence business metrics) as well as developer experience.

 

Crucially, we have managed to achieve these speed boosts without impacting developer satisfaction, which remains high at 90% overall. Through our developer satisfaction studies, we also found that about half (~51%) of developers are monitoring CWV and are either already optimizing for them or planning to do so. Furthermore, a significant majority (78%) of developers optimizing for CWV report seeing notable improvements in their scores.


Our aim is always to create a better web experience for all users, so we’re excited to see the web getting faster. But we also understand that maintaining developer satisfaction is crucial to sustaining these improvements. As developers continue to monitor and optimize for CWV, we are optimistic about the future of web performance.


On behalf of the Chrome team, we want to thank the developer community for their incredible work. By focusing on Core Web Vitals, we’ve made the web a significantly faster and more enjoyable place to be. We look forward to continuing this journey together, making the web better for everyone, everywhere.


Posted by Addy Osmani, Annie Sullivan and Kouhei Ueno, Software Engineers for Chrome


Fedora Linux 39 released

Posted on November 8, 2023 by Michael G
Fedora Workstation now features GNOME 45, which brings better performance and many usability enhancements, including a new workspace switcher and a much-improved image viewer. If you’re looking for a different desktop experience, our Budgie Special Interest Group has created Fedora Onyx, a Budgie-based “Atomic” desktop in the spirit of Fedora Silverblue.  Of course, that’s not all — we also have updated desktop flavors featuring KDE Plasma Desktop, Xfce, Cinnamon, and more. As with every Fedora release, it comes with the latest and greatest every one of the Linux desktops has to offer, as well as all the newest versions of the various frameworks and underlying layers, down to the kernel. Fedora KDE is my desktop of choice, so I’m definitely a bit biased, but I can’t wait to load up the upgrade and install it.

Vivo Y27s: The Perfect Blend of Style and Performance

Posted on November 7, 2023 by Michael G
#VivoY27S, #Smartphone, #MobileTech, #TechGadgets, #Android, #Vivo, #CameraPhone, #MobilePhotography, #Performance, #Display, #Design, #Gaming, #AI, #Innovation, #VivoFans, #FlagshipKiller, #SleekDesign, #AMOLED, #FastCharging, #FunTouchOS, #Multitasking, #Selfies, #MediaTek, #HDPlus, #AffordableTech

In the world of smartphones, Vivo has carved a niche for itself by consistently delivering innovative and stylish devices that cater to a wide range of users. The Vivo Y27S is no exception to this trend. With its sleek design, impressive camera capabilities, and powerful performance, the Vivo Y27S offers a compelling package for those looking for a reliable smartphone. In this article, we will explore the key features and specifications of the Vivo Y27S that make it a standout choice in the crowded smartphone market.

Todos os Mortos (2020) – Bande annonce

Posted on November 7, 2023 by Michael G
Film Drame réalisé par Marco Dutra, Caetano Gotardo.
Avec Mawusi Tulani, Clarissa Kiste, Carolina Bianchi, Thaia Perez, Agyei Augusto, Leonor Silveira, Alaíde Costa, Rogério Brito, Aquino Thomas, Andréa Marquee, Luciano Chirolli, Teca Pereira.
Sortie en 2022.

Synopsis :
Brésil, 1899. L’esclavage est aboli et le pays est en pleine transformation. Trois femmes de la famille Soares se sentent perdues après la mort de leur dernière domestique noire. Parallèlement, l’ancienne esclave de la famille Soares essaie de réunir ses proches dans une société pleine d’inégalités sociales….

En savoir plus :
L’actualité du cinéma : https://www.telerama.fr/cinema
Les films de la semaine : https://www.telerama.fr/cine/film_datesortie.php

Plus de bandes annonces sur https://www.dailymotion.com/telerama_ba

Retrouvez Télérama sur :
Facebook : https://www.facebook.com/Telerama/
Instagram : https://www.instagram.com/telerama/
Twitter : https://twitter.com/Telerama
Youtube : https://www.youtube.com/channel/UCb9EmqspwO4fHZHvJdM38HA

Riboflavin, Benefits, Side Effects

Posted on November 7, 2023 by Michael G
riboflavin,riboflavin deficiency,riboflavin benefits,riboflavin foods,riboflavin vitamin,riboflavin 400 mg,riboflavin for migraines,riboflavin b2,riboflavin deficiency symptoms,riboflavin supplement,riboflavin and migraines,riboflavin and magnesium,riboflavin amazon,riboflavin and magnesium for headaches,riboflavin allergy,riboflavin and niacin,riboflavin and headaches,riboflavin and pregnancy,riboflavin and magnesium supplement,riboflavin and urine color,riboflavin biotin folate and vitamin b12,riboflavin b2 400 mg,riboflavin b,riboflavin bad for you,riboflavin b12,riboflavin b vitamin,riboflavin b2 benefits,riboflavin breastfeeding,riboflavin cvs,riboflavin color,riboflavin chemical formula,riboflavin coenzyme,riboflavin crosslinking,riboflavin costco,riboflavin cancer,riboflavin chewable,riboflavin constipation,riboflavin capsules,riboflavin deficiency causes,riboflavin deficiency tongue,riboflavin dose for migraines,riboflavin definition,riboflavin during pregnancy,riboflavin deficiency in chickens treatment,riboflavin daily intake,riboflavin dose,riboflavin eye drops,riboflavin effects,riboflavin excess,riboflavin eggs,riboflavin enzyme,riboflavin energy,riboflavin eyes,riboflavin excess symptoms,riboflavin estrogen,riboflavin effects on the body,riboflavin function,riboflavin food sources,riboflavin for headaches,riboflavin for chickens,riboflavin for tinnitus,riboflavin for kids,riboflavin for hair,riboflavin folic acid,riboflavin gummies,riboflavin good for,riboflavin generic name,riboflavin good or bad,riboflavin green pee,riboflavin generic,riboflavin good for you,riboflavin gummies 100mg,riboflavin glutathione,riboflavin glossitis,riboflavin headaches,riboflavin halal,riboflavin hair loss,riboflavin health benefits,riboflavin histamine,riboflavin half life,riboflavin headache dose,riboflavin headache prevention,riboflavin histamine reddit,riboflavin high,riboflavin in food,riboflavin is also known as,riboflavin is what vitamin,riboflavin in pregnancy,riboflavin ingredients,riboflavin in milk,riboflavin in egg white,riboflavin in bread,riboflavin is used by the body to,riboflavin is similar to thiamin in that,riboflavin joint pain,riboflavin jaundice,riboflavin jamieson,riboflavin job,riboflavin jecfa,riboflavin journal article,riboflavin job definition,riboflavin je,riboflavin jotekony hatasa,riboflavin journal research,riboflavin kinase,riboflavin keratoconus,riboflavin kidney,riboflavin kool aid,riboflavin keto,riboflavin kidney disease,riboflavin kegg,riboflavin kya hai,riboflavin kya hota hai,riboflavin kidney stones,riboflavin lyrics,riboflavin liquid,riboflavin liquid supplement,riboflavin liver,riboflavin low,riboflavin levels,riboflavin lupus,riboflavin liver health,riboflavin là gì,riboflavin light sensitivity,riboflavin migraine,riboflavin meaning,riboflavin migraine dose,riboflavin migraine prevention,riboflavin made from,riboflavin metabolism,riboflavin mthfr,riboflavin molecular weight,riboflavin magnesium,riboflavin maxim

THEME FOR WORPRESS FREE ‐

Posted on November 7, 2023 by Michael G
espero les guste el aporte saludos bro

Tech/News/2023/45

Posted on November 7, 2023 by Michael G
Other languages: Bahasa Indonesia, Deutsch, English, Tiếng Việt, español, français, italiano, norsk bokmål, polski, português, português do Brasil, svenska, čeština, русский, українська, العربية, ไทย, 中文,…

Functionality with Moodle – November update

Posted on November 7, 2023 by Michael G
by Carles Aguiló.  

Dear moodlers,

We’ve had an action month at Integrations this past October, so it’s time to recap the most exciting news.

1. DevLearn Conference in Las Vegas

The DevLearn Conference in Las Vegas allowed us to meet some interesting new tools in the educational technology space and also to meet my colleagues from the US “office”, who were exhibiting Moodle Workplace at the trade show. Probably the only new functionality that I discovered was a tool to lip sync for dubbing purposes using AI called LipDub. I was also happy to meet Genially again, who were distributing some Moodle t-shirts in anticipation of their LTI Moodle integration. Meet the team at Vegas: (left to right) Hannah, Justin, myself, Don and Jeff. A joy to spend time with them! 😍

Functionality with Moodle - November update

2. Disability Visibility

It may not seem directly related to educational technology, but this beautiful book contains first-person stories of people with disabilities and has me often thinking about the approach that we take to solving accessibility problems in software. I’m in the middle of reading it, but it has already refined my understanding of how we should care for those who may only suspect or be completely unaware that they have special accessibility needs.  It is important for us in tech leadership positions to cater for as many of us as possible and to actively provide alternative content formats. A big thank you to The Analog Dope bookstore for having a selection that is a joy to browse. The book “Disability Visibility” is a fruit of the Disability Visibility Project by Alice Wong.

3. Accessibility course and webinar

Our Moodle Academy course “Introduction to Accessibility” provides many insights about good practice when creating learning materials. Our Certified Integration partner Brickfield Education Labs, focusing on this topic and authors of the accessibility checks that come with Moodle LMS and Moodle Workplace, also covered a lot of the information in the course in a webinar this week.

And that’s all this month! Get ready for the Integrations’ Survey and a new exciting Certified Integration in the field of assessment very soon!!! 😉

Talking Drupal: Talking Drupal #423 – Conflict Resolution Team

Posted on November 7, 2023 by Michael G

Today we are talking about The Conflict Resolution Team, What they do, and Why they do it with guest Mark Casias. We’ll also cover Smart Trim as our module of the week.

For show notes visit: www.talkingDrupal.com/423

Topics

  • What is the Conflict Resolution Team
  • Why is the Conflict Resolution Team needed
  • When / Why was the Conflict Resolution Team created
  • What kinds of issues does the Conflict Resolution Team deal with
  • Do you meet separately from discussing issues
  • How do you handle burnout
  • How does one become a member
  • Why are you a member
  • How do you submit an issue to the Conflict Resolution Team
  • How many submissions do you get
  • Do you have to include the Drupal Association
  • Does the DA provide tools
  • Does the Conflict Resolution Team need help
  • Is there any specific training you look for
    • Code of conduct training
  • Anything you would like to add

Resources

  • Conflict Resolution Team

Hosts

Nic Laflin – nLighteneddevelopment.com nicxvan John Picozzi – epam.com johnpicozzi Mark Casias – kanopi.com – markie

MOTW Correspondent

Martin Anderson-Clutz – @mandclu Smart Trim

  • Brief description:
    • Have you ever wanted to truncate provided user text in a more intelligent way than the “summary or trimmed” formatter in Drupal core? There’s a module for that.
  • Brief history
    • How old: Originally created in Apr 2012
    • Versions available: 7.x-1.6 and 2.1.0 versions available, the latter compatible with Drupal 8, 9, and 10
  • Maintainership
    • Actively maintained
  • Number of open issues
    • 74, 8 of which are active bugs against the 2.x branch
  • Test coverage, using the new GitLab CI
  • User guide for documentation
  • Usage stats:
    • 66,919
  • Maintainer(s):
    • Friends of the podcast, markie, ultimike, volkswagenchick
    • Module features and usage
    • Adds a variety of configuration options, in addition to the trim length:
    • Whether the length is characters or words
    • An optional suffix at the trim point e.g. ellipsis
    • Whether or not to add a more link after the trimmed text
    • Stripping HTML tags from the trimmed output
    • The ability to customize the output even more via twig template override
    • Because it works by providing a field formatter it works with entity display but also views, layout builder, and more
    • A module I’ve used many times myself and found extremely useful. I haven’t had a chance to try the latest release, but given the recent focus on UI improvements, documentation, and flexibility in the twig template it should be even better than I remember

Added support of Rails 7.1 to actual_db_schema

Posted on November 7, 2023 by Michael G
Good news everyone! Today a new version (0.5.0) of the actual_db_schema (https://github.com/widefix/actual_db_schema) gem was released – Rails 7.1 support added. Huge thanks to Arkadiy Zabazhanov who made that impressive work – https://github.com/widefix/actual_db_schema/pull/30
  • Previous
  • 1
  • …
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • …
  • 821
  • Next

Recent Posts

  • Mentorship program to nurture pre-seed tech founders
  • Qwen3-Coder
  • Open Source is Back
  • An easy way to develop Home Assistant integrations
  • SmartEsq has launched an AI-powered MFN Election tool

Categories

  • Android
  • Linux
  • News
  • Open Source

Recent Posts

  • Mentorship program to nurture pre-seed tech founders
  • Qwen3-Coder
  • Open Source is Back
  • An easy way to develop Home Assistant integrations
  • SmartEsq has launched an AI-powered MFN Election tool

Categories

  • Android
  • Linux
  • News
  • Open Source
©2025 Open World News | Powered by Superb Themes
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT