Glean 拾遗
Daily · timeline

A few picks a day.

Wed, Sep 2, 2026 3picks
← 09-01
Calendar ▾
2026 · 09
MoTuWeThFrSaSu ·123456789101112131415161718192021222324252627282930
has picks today
09-03 →
06:00

Zod 4.5: z.compile() precompilation speeds parse up to 9x, slashes memory

Zod 4.5:z.compile 预编译解析提速达 9 倍,单实例内存降 9.8 倍

Zod 4.5 introduces z.compile(), an AOT schema compiler that speeds up parsing of objects, arrays, and unions by ~3–9x. Combined with z.validate()—a fast boolean check that skips ZodError construction—invalid inputs are up to 16x cheaper to reject than safeParse. Benchmarks show 47.5M ops/s on the Moltar parseSafe fixture, ahead of typia's 45.3M. A move of bound methods to prototypes cuts per-schema heap retention by up to 9.8x. The release also includes breaking changes: string length now counts Unicode code points, z.iso.datetime() requires seconds, record keys and intersections match TypeScript semantics, and __proto__ is always stripped. Useful for TS teams doing heavy runtime validation in services, forms, and data pipelines.

zod.dev · 26 min · Developer Tools · Open Source · Performance · TypeScript
06:00

A Git-compatible VCS with a commit-centric workflow

以提交为中心的 Git 兼容版本控制工具

Jujutsu (jj) is an open-source version control system written in Rust. It aims to make the everyday VCS workflow simpler while staying compatible with the Git ecosystem. The key design is a working copy that is automatically committed: every file change becomes a snapshot you can revisit or revert. An operation log records every state mutation, providing robust undo/redo. Conflicts are first-class data objects instead of inline text markers, making merges and rebases more predictable. jj can be used in existing Git repositories or as a standalone VCS, so it supports incremental adoption. This project is relevant for engineers exploring modern VCS design, Git workflows, and high-quality Rust-based tooling.

github.com · 2 min · CLI · Developer Tools · Rust · Software Engineering · Version Control
06:00

The founder's playbook: Building an AI-native startup

从 Idea 到 Scale:AI 原生创业者的实战手册

Anthropic's "The founder's playbook" offers practical guidance for building a startup on AI from day one. It reframes the startup lifecycle into four stages—Idea, MVP, Launch, and Scale—each with goals, exit criteria, common failure modes, and AI-powered exercises using Claude. The playbook covers using AI for problem validation, customer discovery, and competitive mapping; architecture, scope, and security practices to keep AI-generated MVP codebases from accruing technical debt; a measurement framework to separate genuine product-market fit from hype; and an operating system for Launch that replaces founder attention with agentic workflows. It also includes a product matrix for when to use Chat, Claude Cowork, and Claude Code, plus founder stories from companies like Ambral, Anything, Carta Healthcare, HumanLayer, and Vulcan Technologies. Written for founders and early operators building AI-native companies.

claude.com · 2 min · Agents · AI Engineering · Claude Code · Startup