AWS Acquires DuckLabs

Amazon Web Services is acquiring DuckLabs, the company behind DuckDB. The move aims to scale the ‘Duck Stack’ (DuckDB, DuckLake, and Quack) to a broader audience while ensuring the projects remain free and open source under the nonprofit DuckDB Foundation.

Minesweeper in 247 Bytes

A developer has compressed a fully functional version of Minesweeper into just 247 characters of JavaScript. The implementation leverages browser HTML parsing quirks and complex type coercion to handle game state and UI rendering in a minimal footprint.

Massively Parallel Linker ‘mold’

The ‘mold’ linker significantly reduces software build times for large C++ programs, performing 2.4x to 16.1x faster than lld and up to 112x faster than GNU ld by utilizing all available CPU cores.

OpenRun’s Built-in SQLite Replication

OpenRun now automates SQLite durability by embedding Litestream replication. This allows developers to use SQLite in production without manually configuring backups or restore logic, as the platform handles replication and recovery automatically.

Backend-Driven UIs with Datastar

Datastar enables the creation of interactive, real-time web applications where the UI is driven entirely by the backend. By using hypermedia-first attributes, developers can build reactive dashboards (like a web-based htop) using a single Go binary.

Git Commit Search via Text

A useful Git CLI shortcut allows users to reference commits by their message text rather than memorizing SHA-1 hashes or relative positions, simplifying commands like git show or git revert.