Chrome’s AI team is building web APIs that let users run AI models directly in the browser, aiming to make these capabilities standard
TLDR Web Dev 2025-08-29
Articles & Tutorials
You’re loading fonts wrong (and it’s crippling your performance) (8 minute read)
Most websites handle fonts terribly, creating unnecessary performance bottlenecks even though typography directly impacts user experience and business results. This deep dive traces how we got here - from early “web-safe” fonts through clunky Flash workarounds to today’s Google Fonts - and explains why outdated practices and misconceptions still plague modern web development. The author makes the case that fonts deserve as much optimization attention as images or JavaScript, and promises to show you how browsers actually load fonts and how to do it right.
Unlocking Web Workers with React: A Step-by-Step Guide (8 minute read)
This guide shows React devs how to use Web Workers to prevent their apps from freezing during heavy computations. Starting with a common problem - UI that locks up when calculating something like Fibonacci numbers - the author walks through moving these tasks off the main thread. The tutorial covers practical implementation details and progresses to more advanced patterns like task queuing, caching results, and using Shared Workers to communicate between different browser tabs.
Rolling the Dice with CSS random() (8 minute read)
Until now, there hasn’t been a way to create random numbers in CSS. CSS is getting a built-in random() function that can be useful for adding natural variation to animations, layouts, colors, and positioning. The function works with different number types like pixels, percentages, and angles, opening up possibilities for randomly scattered star backgrounds, organic grid layouts, and tilted photo stacks. You can even share the same random values across multiple elements using named identifiers.
Opinions & Advice
Stanford study finds AI has reduced availability of entry-level programming jobs (5 minute read)
A Stanford study tracking millions of payroll records revealed that entry-level programming jobs for recent graduates have dropped 20% since ChatGPT launched in late 2022. The researchers found that AI automation - not broader economic trends - is driving job losses across software development, customer service, accounting, and admin roles. Overall, entry-level positions in AI-exposed fields are down 6%. Meanwhile, older workers and people in jobs where AI serves as a helpful tool rather than a replacement are actually seeing 6-13% job growth.
Some thoughts on LLMs and Software Development (4 minute read)
We’re measuring AI adoption all wrong - most surveys focus on basic autocomplete features instead of more powerful workflows where AI directly modifies your codebase. We’re in an AI bubble that will eventually burst, but it might deliver genuine value first. There are some concerning security risks, especially AI browser extensions that could be manipulated into accessing private accounts. It is unknown what this all means for programming careers.
Career Frameworks 🪜 (8 minute read)
Career frameworks are structured documents that map out how engineers progress through different levels and what skills they need at each stage. They solve three key problems: making hiring decisions more consistent by clarifying what each role actually requires, helping engineers understand how to advance their careers, and reducing bias in performance reviews through objective criteria. Small teams under 10 people should start with basic engineering principles, then build out full frameworks once clear seniority gaps appear or when they introduce management tracks.
Launches & Tools
Liftkit: UI framework based on the golden ratio (GitHub Repo)
LiftKit is a UI framework built around golden ratio proportions that takes you from design mockups to production code. It automatically corrects visual spacing and uses Material 3’s dynamic color system while offering both a component library and matching Figma/Webflow templates. You can either start with a Next.js template or add LiftKit to an existing project through its CLI. LiftKit is aimed at designers and developers who want pixel-perfect results with advanced visual features. It automatically removes unused CSS to keep builds lean.
D2: A modern language that turns text into diagrams (Website)
D2 lets users create polished diagrams by writing simple text descriptions instead of dragging boxes around. It comes with professional themes, a hand-drawn sketch style, animations, and built-in support for software-specific elements like code blocks, database tables, and UML diagrams. It can be used anywhere - through command line tools, editor plugins, or a web playground - and diagrams can be exported to whatever format required.
Miscellaneous
Designing the Built-in AI Web APIs (8 minute read)
Chrome’s AI team is building web APIs that let users run AI models directly in the browser, aiming to make these capabilities standard across all browsers. The tricky part is designing APIs for such a fast-moving field - they’re creating client-side JavaScript interfaces that work with models running locally on users’ devices instead of the usual server-based approach. Their key decisions include using persistent sessions to manage resources better, creating unified message formats that work across different AI providers, and solving compatibility issues, since each browser might use completely different AI models under the hood.
Findings from a Pilot Anthropic - OpenAI Alignment Evaluation Exercise (8 minute read)
In summer 2025, Anthropic and OpenAI tested each other’s AI models for dangerous behaviors like being overly agreeable, helping with harmful requests, and trying to preserve themselves when threatened. With some safety features turned off, they found that while no models were seriously misaligned, OpenAI’s o3 reasoning model performed best overall. However, several OpenAI models (GPT-4o, GPT-4.1, and o4-mini) were more willing to help with dangerous tasks like synthesizing drugs or bioweapons compared to Claude. Both companies’ models showed troubling tendencies to agree with users holding harmful beliefs and, when given the chance, attempted self-preservation through tactics like blackmail.
Quick Links
What is the go proxy even doing? (8 minute read)
The Go module proxy has a wasteful habit of downloading entire repositories from scratch every time it checks for updates, even when nothing has changed.
From Next.js to Astro: A Page Size Comparison (2 minute read)
A numbers comparison after porting a small static Next.js site to Astro, reducing bundle size from 257kB → 91kB and faster LCP.
Create Development Builds Without an Apple Developer Program (5 minute read)
Registering all team devices through Expo, having the paid developer regenerate credentials to include everyone’s device IDs, and then downloading those credentials locally to build and install development versions using ‘eas build —local’ lets unpaid team members test on real devices without cloud build credits while using the paid account’s signing capabilities.