Friday, August 28, 2026

EV: Ford Fathom: $30K

There are no real official photos of the Ford Fathom yet, as Ford has only announced the name and pricing while keeping the full design under wraps. [1, 2]

Introducing Fathom™ | Pre-Orders Begin Early 2027 | Ford.com

Ford Fathom Features: What the $30,000 EV Truck Could Offer @MotorTrend




Ford CEO Announces NEW 2027 Ford Fathom & SHOCKS Everyone! - YouTube

All New 2027 Ford Fathom revealed - First Look and Details - YouTube


Ford’s $30,000 Electric Truck Just Shook the Entire EV Industry! - YouTube

Breaking News : Ford Fathom Is Finally Here | The $29,945 Electric Truck! - YouTube

Ford Fathom VS Slate: Everyone's Wrong - YouTube




pi.dev: Pi Coding Agent


Meet Pi: The Minimalist, Self-Modifying Coding Agent - YouTube

Mario, the creator of Pi, shares the story behind his lightweight AI coding agent. Built out of a desire for control, minimalism, and determinism in software development, Pi offers a stark alternative to the complex, "token-maxing" tools coming out of Silicon Valley. 

At its core, Pi runs on a simple idea — a nested while-loop that sends a request to an LLM, handles whatever tool calls come back (bash commands, file reads, whatever the task needs), and keeps looping until it has an answer. No bloat, no black box. Built on Node.js/TypeScript across four core packages, it's designed so developers can actually read and understand the code their agent is writing. It even builds and extends itself, creating its own skills and extensions on the fly.







SQLite DB in web browser, with WASM

sql-js/sql.js: A javascript library to run SQLite on the web. @GitHub

sql.js is a javascript SQL database. It allows you to create a relational database and query it entirely in the browser. You can try it in this online demo. It uses a virtual database file stored in memory, and thus doesn't persist the changes made to the database. However, it allows you to import any existing sqlite file, and to export the created database as a JavaScript typed array.

sql.js uses emscripten to compile SQLite to webassembly (or to javascript code for compatibility with older browsers). It includes contributed math and string extension functions.