Best of PerformanceMarch 2022

  1. 1
    Article
    Avatar of stackovStack Overflow Blog·4y

    Best practices to increase the speed for Next.js apps

    Next.js allows developers to build powerful web apps with JavaScript without worrying about building the back-end infrastructure. Using server-side rendering will help your app reduce the time required to render the first page on the client side. Dynamic import allows you to split your code into small chunks and load them on demand.

  2. 2
    Article
    Avatar of ionicIonic Blog·4y

    Ionic vs. React Native: Performance Comparison

    Ionic and React Native compete in the cross-platform application development ecosystem. The two are different in terms of their approach and underlying architecture. Ionic fully subscribes to the philosophy of leveraging web technologies to deliver its applications. React Native also runs using JavaScript (JS), but does so under the guise of orchestrating platform-specific user interface (UI) controls.

  3. 3
    Article
    Avatar of devinterruptedDev Interrupted·4y

    Creating a Culture of Engineering Productivity at Netflix

    At Netflix, we don’t just think about productivity - we engineer it. There’s an entire team within Netflix dedicated to productivity. I lead the Develop Domain along with my Delivery and Observability Domain peers, and together, we make up Productivity Engineering.

  4. 4
    Article
    Avatar of devtoDEV·4y

    Making the world’s fastest website, and other mistakes

    Kroger’s ecommerce sites use React, Redux, and their usual symptoms of too much JavaScript. A new design system inflicted enough Tailwind to hurt desktop Time to First Paint by 0.5 seconds. This was after investing in Server-Side Rendering, a performance team, and automated regression testing.

  5. 5
    Article
    Avatar of tcTechCrunch·4y

    Apple introduces a brand new Mac, the Mac Studio – TechCrunch

    The Mac Studio is a small tower computer that looks a bit like two Mac Mini computers stacked on top of each other. It has an SD card slot and two Thunderbolt 4 ports at the front. Half of the interior is occupied with the thermal system to keep the system cool during heavy load. Apple shared some performance charts for the Mac Studio with the M1 Ultra.

  6. 6
    Article
    Avatar of btrprogBetter Programming·4y

    PostgreSQL: Lessons Learned While Optimising Query Performance

    In this post, I want to share some of the key learnings on how to get the most out of our database. The most common mistake causing database performance issues is either (1) the index is missing for a query or (2) theIndex created for aQuery is not being utilised.

  7. 7
    Article
    Avatar of medium_jsMedium·4y

    2 Awesome Tools to Automate Client-side Performance Testing

    Googles’ lighthouse is an open-source website quality assessment tool. It measures 5 quality factors: performance, accessibility, best practices, search engine optimization and Progressive Web App (PWA) Playwright is a web testing automation framework. It can be used to quickly cover multiple test realms with ease.