

Harry Nguyen
67 posts

@hazzngn
AI stuffs @ https://t.co/EE24Q9KXwJ



A super long overdue (3+ years?) post on scaling laws. Compute is expensive. Scaling laws are a way to help us reason about the optimal compute allocation between data and model size before committing to a large run. The post covers what scaling laws predict, how compute-optimal allocation works, why Kaplan et al. and Chinchilla disagree, and how data limits + fitting details make extrapolation tricky. lilianweng.github.io/posts/2026-06-…







My AI haul this year: 1. just-bash 2. Chat SDK 3. deepsec 4. coming soon[*] [*] (4) is "large software" like Chat SDK and so I needed to find a long-term owner before being able to ship it and I just did 🥳


Hope people aren’t tired of the “just use Postgres” meme yet (surely not @BenjDicken), but Postgres can be your filesystem too. Today I’m launching sql-fs: a persistent bash sandbox over HTTP and MCP, backed by Postgres. Most agent sandboxes still spin up VMs: cold start time, per-minute billing, and costs that climb when you run lots of sessions. I went a different way. just-bash is the virtual bash runtime. I built the distributed and persistent layer around it, which is a Postgres-backed virtual FS with consistency across replicas and in-process caching, so sandboxes are cheap to create, quick to resume, and durable across process restarts. What you get: • Filesystem state in your Postgres (RLS per sandbox) • Content-addressable blobs (dedup across sandboxes) • 3 layers of caching and locking for distributed exec • Path and content caches so stat/read don’t hammer the DB every time Repo: github.com/Hazzng/sql-fs I also wrote a longer blog post (see reply below) on how it works in depth. Have a read if you’re curious about the distributed design to achieve strong consistency :) PS: thanks to @cramforce for the amazing just-bash!

Get ready, friends. Anthropic appears to be preparing the release of its Mythos-level model. Pricing: $16 per 1M input tokens / $80 per 1M output tokens. The release is likely very close, possibly even in the same week as GPT-5.6. Competition is heating up again. Gemini 3.5 Pro is about to face serious pressure. It better be a banger.




