🖥️ Frontend Shares
How React 18 Improves Application Performance
This detailed blog post from Vercel talks about how React 18 improves the application performance. It goes through what the main thread is on front end and how poorly written codes can affect the performance by hogging the main thread. It talks about how React used to do rendering and how it does rendering now by not needing to render and commit everything all at once.
What is a Senior Software Engineer at Wise and Amazon?
This talks about what a Senior Software Engineer does at Wise and Amazon. There are tables and descriptions detailing what they do and their responsibilities. They are a bit different but the common parts are they need to have significant influence, be able to own complicated projects, and navigate around uncertainties.
Introducing NextUI Version 2.0
Ever since I’ve started using Tailwind at work, I’ve started noticing there are actually a lot of stunning libraries built with Tailwind. NextUI gives you that really modern style and UI you’ve seen a lot of Pinterest.
React Query with Nextjs Suspense Streaming
Ever since the app router became the default in Nextjs, many libraries have started to upgrade or release new versions of their libraries so they can be used in the react server component environment where normal hooks and states don’t work anymore. React Query released an experimental package for Nextjs you can use React Query on the server with Suspense. That is neat.
I saw this the other day in shadcn ui and was wondering what this does. Matt Pocock gives a really elaborate explanation of what ElementRef is and how it helps us type your codes better when we are working with components and passing references.