Minimal Viable Programs - h1Joe Armstrong - Erlang and other stuff/h1
kenn-io/kata: Local-first issue tracking for AI-assisted software work, with an agent-friendly CLI and human-facing TUI
Local-first issue tracking for AI-assisted software work, with an agent-friendly CLI and human-facing TUI - kenn-io/kata
kata カタ - kata カタ
Local-first issue tracking for humans and coding agents.
What's different in pnpm 12 | pnpm
pnpm 12 is a rewrite of pnpm in Rust, and it is currently a release candidate. Upgrading is not meant to be a migration: apart from the differences below, it keeps the commands, flags, settings, and lockfile format of pnpm 11, and the documentation applies to both versions.
How to Fix the Dual-Write Problem in Node.js with the Outbox Pattern
Imagine you're building an e-commerce platform where placing an order needs to trigger several things at once: the warehouse has to be told to prepare the shipment, the email service has to send a con
A deep dive into Hono
Follow one request through Hono to see how routing, middleware, context, Web Standards, and runtime adapters work together.
DeepSeek Harness developer preview: Everything is a plugin
DeepSeek Harness is now available in developer preview to developers building agent harnesses worldwide, with the source code released at the same time. Every agent capability is implemented as a plugin that can be swapped or recomposed.
webpro-nl/unbash: Fast 0-deps bash parser written in TypeScript
Fast 0-deps bash parser written in TypeScript. Contribute to webpro-nl/unbash development by creating an account on GitHub.
hucre — Spreadsheet Playground
Zero-dependency spreadsheet engine. Read & write XLSX, CSV, ODS, JSON, NDJSON, XML. Schema validation, streaming, tree-shakeable.
productdevbook/hucre: Zero-dependency spreadsheet engine. Read & write XLSX, CSV, ODS. Pure TypeScript, works everywhere.
Zero-dependency spreadsheet engine. Read & write XLSX, CSV, ODS. Pure TypeScript, works everywhere. - productdevbook/hucre
squirrelchat/smol-toml: A small, fast, and correct TOML (1.1.0) parser and serializer
A small, fast, and correct TOML (1.1.0) parser and serializer - squirrelchat/smol-toml
cardmagic/solid-objects-js: Open Source Durable Objects for Node, backed by your existing SQL database
Open Source Durable Objects for Node, backed by your existing SQL database - cardmagic/solid-objects-js
Solid Objects for Node.js
Durable, serialized TypeScript objects on SQLite, PostgreSQL, or MySQL, exercised by a deployed reference app (Shuffle Up and Play). Pre-1.0 v0.14.0, MIT, Node 24.4+.
kopecmaciej/vi-sql: Terminal UI for SQL databases
Terminal UI for SQL databases. Contribute to kopecmaciej/vi-sql development by creating an account on GitHub.
bglgwyng/zat: CLI code outline viewer
CLI code outline viewer. Contribute to bglgwyng/zat development by creating an account on GitHub.
The Evolution of the Agent Harness
Models keep absorbing the harness into their weights — soon, it will be a harness for human attention rather than for the model.
cjpais/Handy: A free, open source, and extensible speech-to-text application that works completely offline.
A free, open source, and extensible speech-to-text application that works completely offline. - cjpais/Handy
Handy
Handy is a cross platform, open-source, speech-to-text application for your computer
I vibe-coded a C compiler that can build SQLite
I'm Jesse. I make stuff. Software, hardware. Very occasionally, trouble.
How Variable Mangling Works in Oxc Minifier
sapphi-red's portfolio.
OXC for TSRX
Rust-native parsing, linting, formatting, and editor support for .tsrx source through canonical OXC. No fork, no patches, one parse.
compiled-run/oxc-tsrx: Use TSRX with the full OXC / Vite toolchain
Use TSRX with the full OXC / Vite toolchain. Contribute to compiled-run/oxc-tsrx development by creating an account on GitHub.
Building App-like Experiences with Next.js 16.3
Build app-like experiences with Instant Navigations, server-rendered data, optimistic updates, and live client state in Next.js 16.3.
Inside a TanStack Router Navigation | TanStack Blog
A navigation looks like one asynchronous operation. Inside TanStack Router, separate owners coordinate matching, loaders, pending UI, redirects, caching, and rendering.
React Compiler Support
A collection of high-performance JavaScript tools written in Rust
Slack 上でオープンな開発を行う Slack Code を試してみた
Slack Code は Slack 上でオープンな開発を行う手段を提供する機能です。コードチャンネルと呼ばれる特別なチャンネルを作成し、チーム全体でコーディングエージェントとやり取りを行うことができます。この記事では Slack Code を実際に試してみた感想を紹介します。
jetrockets/ui.jetrockets.com: A comprehensive Rails component library built with ViewComponent, TailwindCSS 4.0, and Stimulus. This template provides a complete set of reusable UI components that developers can copy and customize for their projects.
A comprehensive Rails component library built with ViewComponent, TailwindCSS 4.0, and Stimulus. This template provides a complete set of reusable UI components that developers can copy and customi...
Rails UI Components
A comprehensive Rails 8 component library built with ViewComponent, TailwindCSS 4.0, and Stimulus.
動的にallow/denyできる ファイルサンドボックスを作る
Kernel/vm東京No.19 の発表です @nullpo_head
seccomp-notifyとlandlockをつかってseccom-brokered sandboxを作ります
3命令のCPU処理で済む高速なうるう年判定アルゴリズム - Faith and Brave - C++で遊ぼう
要約 この短いコードで、西暦102499年までのうるう年を判定できます。このマジックナンバーはz3というSMTソルバーで見つけ出されました。 bool is_leap_year_fast(uint32_t y) { return ((y * 1073750999) & 3221352463) = 126976; } …