This is fairly transparently an ad for Linear, and most of the actual numbers seem pretty suspect, however it is a concise list of potential team metrics to measure.
September 2023Dan Abramov walks through creation of a React Server Component server & client, explaining how each piece and what it's needed for.
September 2023Well reasoned argument for using type over interface for types for objects in TypeScript.
September 2023Really interesting comparison of power usage when loading images, using Firefox's dev tools (it's built into the performance capture tool now). tl;dr: WebP comes out on top.
September 2023Explainer of new ish @property in CSS, which allows variables to be declared with a "type" as well as a fallback if an override doesn't match the type. This is really useful for design systems, as you can provide more guarantees that your variables are being used correctly.
September 2023The title doesn't do a good job of describing this, but it's really a decent article on how Senior/Staff can influence organisations to solve bigger, structural problems with a pretty good specific example (improving a11y).
August 2023Really in-depth look - with lots of citations - at the ways in which Google's Core Web Vitals affect search ranking. I'm sure this will be useful reference material for when SEO comes up.
August 2023Controlling the outline styles via CSS variables is a really clever idea: it allows customisation of elements (either on a one-off basis, or as part of the design system).
July 2023Looks like Node 18 has a drop-in replacement for Mocha/Jest. Looking at the docs it even supports it.only which isn't mentioned in the article.
July 2023We can replace minimist and friends with a built-in Node util now.
July 2023Handy little tip from Stefan, I can see this being useful in a number of ways.
July 2023Sets out an argument for project planning via "stepping stones" over "milestones". The argument is that avoiding a big plan-up-front (a series of milestones) in favour of stepping stones at each you can stop and chose the next stone allows for demonstrating progress but with flexibility. Each stepping stone has some kind of deliverable and moves towards the overall strategic goal. This sounds a lot like how I approached our migration to React, but frames it a bit better than "flying by the seat of my pants" :D
July 2023Explains a neat CSS snippet that gives flexibility to focus outline styles using CSS variables. This allows the focus ring to be restyled based on different contexts (like buttons/form elements etc).
June 2023Wide ranging article (adapted from a conference talk) from Modern CSS. Covers some global helpers, layout utilities and some specific components based on the latest CSS features.
June 2023Excellent article outlining an overall approach to engineering metrics, with a particular focus on practicality and application over theoretical purity.
June 2023Article describing the different (ARIA) roles that should be attached to the new popover attribute.
June 2023Examples of handling a table with expanding rows, to show more information, in an accessible way.
May 2023Lots of interesting ideas about preventing additional divs when building (largely React-based) design systems. Particularly interested in the ideas around the asChild prop, which is a really interesting workaround for issues with compound components.
May 2023Persuasive article on why OKLCH is the best of the "new" colour formats coming to CSS. The arguments are essentially: it retains the "readability" of LCH (it's fairly easy to guess what the colour from the code), it supports a much wider range of colours ("wide-gamut P3"), it prevents issues when changing colours programmatically (e.g. via a darken() function) as it models human colour perception much more closely - which also helps with preventing colour contrast problems.
May 2023Quick intro to a CLI tool installed in macOS by default. It can be scripted via JS, specifically the Canvas API. It also seems like it can convert WEBP into PNG fairly simply too.
May 2023