My favorite from this week is liquid glass in the browser, because you cal just sit and stare into it. Also, article about green components makes you think about the performance of the site not only from the user perspective but from the persspective of the ecology.
News
Microsoft ships the beta of the Go-rewritten compiler—about 10x faster than 6.0, with parallel type-checking via `--checkers` and parallel project reference builds via `--builders`. Strict mode on by default; ES5, AMD/UMD, and classic module resolution dropped; `rootDir` and `types` defaults tightened. Install `@typescript/native-preview@beta` and run `tsgo`. Stable expected in ~2 months.
i18n library goes ESM-only (Node 22.19+), trims install size 62→35 MB, drops the dep tree from 146 to 104 packages. Headline feature—`<Trans>` placeholders are now semantic, so translators see `<link>...</link>` instead of `<0>...</0>`, with cleaner diffs. Vue 3 Reactivity Transform support, Vite 8 plugin, and CLI `--workers` flag for multithreaded extraction.
New experimental `git history` command lets you `reword` and `split` commits without touching the working tree—safer than interactive rebase for simple edits. Hooks definable in config files (shareable across repos, multiple per event), geometric repacking is now the default maintenance strategy, and `git log -L` finally works with pickaxe `-S`/`-G`. Plus `git replay --revert` for atomic reverts.
Article
DebugBear on the practical gap between good Lighthouse numbers and an actually fast Shopify store—hero images under 180 KB, video placeholders instead of autoplay carousels, conditional script loading, app pruning, and `fetchpriority` on the right element. Useful outside Shopify too—same patterns hit any CMS-style site.
Evil Martians on six concrete techniques—`/llms.txt` index, `.md` route variants (drops a page from ~15K to ~3K tokens), `<link rel="alternate" type="text/markdown">`, `Accept: text/markdown` content negotiation, `/llms-full.txt` (3-4x more traffic than `/llms.txt` per Mintlify), and a hidden div hint for paste-in-chat flows. Honest caveat—no major LLM provider commits to crawling these yet, the value today is human-initiated AI interactions.
zeroheight argues a design system is a sustainability lever—reusable components mean fewer redundant assets, smaller bundles, less data transfer per visit, lower carbon per page view. Pair the read with measurement tools—[Website Carbon Calculator](https://www.websitecarbon.com/) estimates CO2 per page view from transfer size and hosting type, and [Ecograder](https://ecograder.com/) scores design, performance, and hosting impact in one report. Run both before celebrating a redesign.
Library&tools
TypeScript language extension for declarative UIs—structure, scoped styles, and control flow co-located in one file, compiling to React, Preact, Solid, Ripple, or Vue through pluggable backends. Framework quirks handled automatically (e.g. lifts conditional hooks to obey React rules); ships language server, Prettier and ESLint plugins. Positioned for AI-assisted dev where readable single-file components actually matter.
Elegant TypeScript UI framework—7K+ stars, MIT licensed, and one of the targets TSRX compiles to. Worth watching if you like fine-grained reactivity without React baggage.
Build emails with React, TypeScript, and Tailwind—copy-paste components for headers, footers, containers, dividers; cross-client testing for Gmail, Outlook, Apple Mail, Yahoo; built-in linting, compatibility checks, and spam scoring. Embedded editor for product integration; exports HTML or plain text for any sender. This is what marketing teams should have had a decade ago.
Type-safe WebGPU for TypeScript—describe structs and arrays once, alignment and byte layout handled automatically, named bind groups instead of numeric indices. React Native support via react-native-wgpu. If you've tried raw WebGPU and bounced off the buffer math, this is the entry point.
WebGL library that applies real glass refraction, blur, chromatic aberration, and lighting to any HTML element—captures the DOM behind the glass, runs it through a shader pipeline in real time. Layered glass-on-glass compositing, draggable panels, presets for frosted, dark, and dome-magnifier lenses. Apple's design language as an npm install.
Go-based CLI that captures AI agent sessions (Claude Code, Codex, Gemini, Cursor, Copilot) and stores transcripts on a separate `entire/checkpoints/v1` Git branch—commit history stays clean, but you keep the audit trail of why code changed, not just what. Checkpoint/rewind/resume across agents. 4.1K stars, MIT.