Contents tagged “WebPerf”

There are 215 contents with this tag:

  1. Note from 20 June 2024

    About https://techhub.social/@cloudcannon/112604279395366912

    Alex […] shares how using CloudCannon for client sites boosts performance and efficiency 🚀

    I love #CloudCannon's efficiency. 👍

    But with an SSG, #WebPerf depends on the way you build pages. Good SSGs — as #Eleventy — don't force anything so performance is really just the result of developer's work.

    The CMS should have no impact. 🤷‍♂️

  2. Note from 4 April 2024

    Most mentions of the magical CSS object-fit: cover; in development tutorials should be accompanied by a warning: in most situations, it means the browser will download an image that is larger than required (at least in one direction), and optimization on the server side could be a better option.

  3. Note from 3 November 2023

    Let's say a SPA first load has been optimized with SSR and the LCP image is loaded pretty fast because it's in the HTML.

    But the JavaScript then builds a carousel in the DOM, which initially shows the very same image.

    I guess there's a second render of the image. How can I check this easily?

    Would it make sense that the LCP takes the late second render of the image, instead of the fast first one?

  4. Note from 31 May 2023

    General question about synthetic performance monitoring:

    How do you define the device/network settings of your tests?

    • Do you use low end devices / bad network to easily detect issues?
    • Or do you try to be close to your RUM data, to have more predictability when you deploy changes?

    I usualy do the former, but I think both could be useful.

  5. Note from 24 May 2023

    Do you know good tutorials and/or examples about dealing with responsive images that are fluid horizontaly, but with a fixed height?

    Using object-fit: cover; in the CSS is easy, but how can we prevent loading many pixels that will be hidden, without using too many <source> in a <picture>?

  6. Note from 27 January 2023

    I have a client site with a header that is hidden when the user scrolls down, but shown again when the user scrolls up, which seems pretty comon nowadays.

    This triggers some CLS, even if the hide/show is done in less than 500 ms, as “continuous interactions such as scrolls, drags, or pinch and zoom gestures are not considered ‘recent input’”. 😞

  7. Note from 29 September 2022

    I accidentally moved my hero image onto Cloudinary (who I also adore!). But, a less-optimised image served from the same origin is always faster than a more-optimised image from a third party. Self-host your static assets! csswizardry.com/2019/05/self-host-your-static-assets/

    True!

    But most images are currently not or badly optimized. 😔

    They would benefit a lot from an image CDN: resize, compression, modern formats, etc.

  8. Note from 8 October 2021

    Once your image CDN is (correctly) set up, support for any new lighter/faster image format is like infinite ROI: "much lighter images" divided by "zero additional cost". 🥰

    It could even cost you less, if you pay based on bandwidth… 🎉

  9. Note from 23 December 2020

    5 tests for the same page on PageSpeed Insights within 3 minutes, results range from 29 to 60. 🤷‍♂️

    This is ridiculous, our clients rely on this "tool" promoted by Google to assess their performance. 😡

    It should be much more stable and reliable!

  10. How I build my SVG sprites

    I'm using an SVG sprite on this site to make sure I don't repeat SVG code for icons that are used multiple times, and I inline it so the rendering doesn't depend on another resource loading. Here's how I build this sprite from individual SVG icons.

  11. Note from 2 July 2020

    I guess we'll (unfortunately) see a lot of turtles in Firefox soon, while browsing the Web with devtools open… 🐢

    JUST LANDED in Firefox Nightly:

    🐢!

    Appears when the server response time for a request exceeds the recommended limit of 500 ms (adjustable in about:config).

    Awesome dev work by @b4bomsy and planning by @digitarald & @janodvarko!
    If you spot it and it helps, let us know!H

    Image from Tweet

  12. Note from 1 July 2020

    This new monitoring tool based on #Eleventy, built by @zachleat, is awesome! 😍

    New project: Speedlify 🐇

    A self-hosted dashboard to continuously measure and publish web site performance statistics using Lighthouse and Axe.

    Demo:speedlify.netlify.app/ssg/c
    Blog post:www.zachleat.com/web/speedlify/L

    It took me just a few minutes to built my dashboard for multiple sites:
    https://webperf-monitoring.netlify.app/

  13. screenshot of Save-Data Usage

    Tim Kadlec

    Save-Data Usage

    Because while the web keeps getting heavier and we keep moving further away from page weight as a primary performance metric, the data I’ve seen so…

  14. How much data should my Service Worker put upfront in the offline cache?

    I love when Web site/apps work even when I'm offline. I've made my SVG game esviji work offline thanks to appcache just after attending Jake Archibald conference about why Application Cache is a Douchebag during the 2012 edition of the Paris Web conference. Fortunately, we have now Service Workers (in some browsers), which gives us more control over this kind of cache for offline browsing. But as Uncle Ben says, “With Great Power Comes Great Responsibility”.

  15. Le gros impact des raccourcisseurs d'URL sur la performance

    Les raccourcisseurs d'URL sont devenus incontournables sur le Web depuis quelques années, mais initialement pensés comme outils de facilitation de partage, ils ont beaucoup évolué et sont surtout devenus des outils de tracking. Du coup, les sites en abusent de plus en plus, alors que les plateformes où ces liens sont publiés, Twitter par exemple, rajoutent leur propre couche. L'impact sur la performance pour l'utilisateur final est désastreux.

See all tags.