2026-07-06
Intro
This week’s reading kept circling one practical question: what actually makes AI systems useful in the real world? Not just smarter models, but better ways to understand code, test interfaces, route traffic, manage costs, and shape the environments agent…
2026-07-06
What it is: Drew Breunig revisiting his "10 Lessons for Agentic Coding" list and asking for additions
Gist: the piece frames coding agents as making code cheap but not making judgment cheap; strongest lessons are to implement/rebuild to learn, invest in end-to…
2026-07-06
What it is: hands-on writeup of deploying Cloudflare’s official agentic-inbox to run a custom-domain email client on Cloudflare Workers
Gist: the stack uses Email Routing for inbound mail, Email Service for sending, Durable Objects + SQLite for mailboxes, R2 f…
2026-07-06
What it is: Andrej Jovanović announcing the Red Queen Gödel Machine (arXiv:2606.26294)
Gist: self-improving agents should co-evolve with the evaluators that judge them; otherwise stronger agents just learn to exploit stale tests. Paper claims better coding per…
2026-07-06
What it is: Animesh Pathak pointing to his explainer on MCP’s move toward a stateless architecture
Gist: argues upcoming MCP changes remove protocol-level sessions and the initialize handshake, make each request self-contained via per-request context and heade…
2026-07-06
What it is: Chris Short’s DevOps’ish 316 roundup
Gist: strongest signals are ClickHouse gaining observability mindshare, Vint Cerf warning that agents will need more formal coordination than plain English, Podman 6.0 breaking old assumptions, and agent-secret …
2026-07-06
What it is: X post by Bilgin Ibryam pointing to Kent Beck’s “The Cost YAGNI Was Never About”
Gist: YAGNI is about timing and option value, not code-writing thrift; AI codegen lowers typing cost but increases the risk of speculative structure nobody deeply unde…
2026-07-06
What it is: Shubham Mishra pointing to Netflix TechBlog’s “GenPage: Towards End-to-End Generative Homepage Construction at Netflix”
Gist: describes Netflix replacing a multi-stage homepage recommendation/ranking assembly pipeline with a single generative syste…
2026-07-06
What it is: Lilian Weng sharing her new Lil'Log post, "Harness Engineering for Self-Improvement"
Gist: argues recursive self-improvement will depend not just on better base models but on better harnesses, the runtime layer that manages tools, planning loops, c…
2026-07-06
What it is: X post by tobi lutke linking to a new Evolution paper by Steven A. Frank
Gist: paper argues evolvability is best understood as generalization; imports modern ML intuition that larger / more parameterized systems can generalize better, then maps tha…
2026-07-06
What it is: Maxime Rivest demo turning a reMarkable Paper Pro into Tom Riddle’s diary
Gist: real hardware/software hack where handwritten ink fades, an on-device LLM reads the page, and replies animate back in handwriting; strongest idea is AI as object/interf…
2026-07-06
What it is: Miguel Ángel Pastor linking Zalando’s engineering post on client-side load balancing at a million requests per second
Gist: argues high-fanout internal traffic benefited from moving load balancing into the client process to preserve cache locality,…
2026-07-06
What it is: Nithin Kamath on Zerodha’s operating culture
Gist: a nice place to work is not accidental culture but the result of repeated leadership choices, slowing down to avoid burnout, staying small, avoiding fear-based management, letting tech make technic…
2026-07-05
Imported from historical reading log.
X post by @jlongster on agent-driven testing and token cost tradeoffs between text buffers and screenshots.
Gist: for app-testing agents, screenshots are surprisingly close to text buffers on token cost in some models, bu…
2026-07-05
Imported from historical reading log.
X post by @captn3m0 replying to @svs, quoting Neil Gaiman’s 2013 Guardian piece on libraries/reading/daydreaming.
Gist: pushback on using science fiction as an interpretive frame for AI; claim is SF is valuable for dreams…
2026-07-04
What it is: X post from wafer claiming strong GLM 5.2 serving results on AMD MI355X versus Nvidia Blackwell/B200.
Newsletter angle: “AMD is no longer just the cheap alternative” framing, with the real story likely in compiler/kernel/serving-stack optimization …
2026-07-04
What it is: X post praising Thorsten Ball’s Amp note “Putting an Agent in an Orb.”
Newsletter angle: the useful shift is from “smart model” to “legible environment”, paved paths, observability, and anti-guessing ergonomics matter as much as model quality.
Retr…
2026-07-04
What it is: X post from svs sharing his essay “Read More (Science) Fiction.”
Newsletter angle: “read more sci-fi” is the visible conclusion, but the sharper claim is that fiction supplies vocab and priors for handling agentic weirdness without naive hype or na…
2026-07-04
What it is: X reply from Michigan TypeScript pointing to Sean Goedecke’s post “Should LLMs just treat text content as an image?”
Newsletter angle: counterintuitive interface hack + deeper architectural question about whether text should sometimes ride the visi…
2026-07-02
Gist: core claim is that even with coding agents, engineers still need to understand the generated code; the opening slide frames this as “understanding is the new bottleneck.”
Newsletter angle: “understanding is the new bottleneck” as a useful lens for evalua…
2026-07-02
Gist: the argument is that domestic robots will create an extraordinarily intimate surveillance layer inside the home, while the underlying article argues humanoid home robots are the wrong form factor, dexterity, cost, weight, and safety push the practical fu…
2026-07-02
Gist: Zalando moved internal fan-out traffic off shared ingress and into an in-process client-side load balancer to preserve consistent-hash cache locality, cut latency spikes, improve debuggability, and reduce shared infra cost. The interesting details are th…
2026-07-01
Gist: Passmark checks an LLM cache before making fresh model calls during browser tests, reportedly cutting a 7-minute suite down to 90 seconds.
Newsletter angle: “cache-first AI browser testing” as practical infra for regression pipelines.
Retrieval note: twe…
2026-07-01
Gist: claim is that Claude Code inserts hidden/system-prompt markers tied to API base URL and timezone; privacy/trust implications if true.
Newsletter angle: “invisible metadata in coding-agent requests” as a prompt-layer trust/safety story.
Retrieval note: X …
2026-07-01
Gist: the claim is that in large legacy systems, the bottleneck is not typing code but building enough system understanding to change it safely and quickly; LLMs compress that comprehension step.
Newsletter angle: “AI helps most where system understanding domi…
2026-07-01
Gist: an agent now does first-pass noisy-alert triage by checking telemetry plus infra context, then escalates to the human with a Slack summary only when needed.
Newsletter angle: “AI as first-line SRE” with telemetry/context fusion instead of generic chatbot…
2026-07-01
Gist: Typescript SDK v2.0.0-beta.1 and Python SDK v2.0.0b1 are out; goal is to make building MCP servers and clients easier, with feedback requested on ergonomics.
Newsletter angle: “stateless MCP lands July 28” plus what SDK v2 means for tool/server implement…
2026-06-30
Gist: all five profiles emit the same pprof structure; the core difference is collection model, CPU samples asynchronously via signal + ring buffer, heap/block/mutex aggregate in per-stack tables in place, goroutine snapshots stacks on demand.
Newsletter angle…
2026-06-30
Gist: each workflow runs in its own microVM; guest agent talks back over vsock; NixOS-based workflow config can declaratively enable services like Postgres and Docker; cache/proxy design keeps guests isolated from direct network/cache credentials while still r…
2026-06-29
Intro
This week’s links felt unusually coherent. A lot of them circled the same underlying shift: the hard part of AI is moving out of the model and into the surrounding system, the loop, the permissions model, the eval layer, the cost controls, and the human …
2026-06-29
Gist: on Semgrep’s IDOR benchmark, GLM 5.2 scored 39% F1 in a simple prompt-only PydanticAI harness, beating Claude Code’s 32% while costing roughly $0.17 per vulnerability found; Semgrep’s own endpoint-discovery multimodal harness still led overall at 53–61% …
2026-06-29
What it is: Essay: “You and Your Research” / R.W. Hamming’s advice on doing important work.
Gist: Hamming argues that great work comes from repeatedly choosing important problems, preparing a strong attack in advance, keeping a running list of big questions, a…
2026-06-28
Gist: good engineering is mostly about shaping systems so small, distractible minds can change them safely, via naming, boundaries, tests, reversibility, and interfaces that assume attention is scarce rather than ideal operators.
Newsletter angle: “Build for b…
2026-06-28
Gist: Coinbase reportedly cut AI spend nearly in half while token usage kept growing by changing defaults to cheaper open-weight models (GLM 5.2, Kimi 2.7), adding smarter routing, aggressively using caching, and keeping context lean instead of tightening caps…
2026-06-28
Gist: the design claim is “one stable RL kernel, task-specific variety in data generation.” Training stays fixed; multi-turn tools, environment feedback, verifier rewards, and other agent behaviors are modeled as rollout/data-gen differences rather than separa…
2026-06-26
What it is: Adithya Venkatesan sharing Alter Magazine’s piece on designing ice cream for Indian conditions
Gist: frames ice cream as a four-phase material, ice crystals, unfrozen sugar syrup, churned-in air, and a fat network, and argues Indian heat + weak col…
2026-06-26
What it is: Bilgin Ibryam sharing an article on Portkey’s product-engineering org design
Gist: highlights a notably lean product org, 24 product engineers, 1 product designer, 0 PMs, and frames the build/operating model as the interesting part
Newsletter angle…
2026-06-26
What it is: Tim McNamara sharing an IOCCC-winning “cursed code” project where Pong advances by rewriting its own source each frame
Gist: the linked repo, uellenberg/Insert, is a small language for self-modifying code; programs can access their own source as st…
2026-06-26
What it is: David Crawshaw note/article on exe.dev’s open-source stance
Gist: strong pro-open-source bias, but keeps bespoke infra pieces closed because making them usable/supportable externally would cost ~25% of eng time; code that runs in the user’s VM (age…
2026-06-26
What it is: Fatih Arslan asking whether anyone has made git worktrees feel natural in daily use
Gist: straightforward practitioner complaint that worktrees remain awkward even after repeated attempts; useful mainly as a prompt for workflow/tooling patterns rat…
2026-06-26
What it is: Go/security post on building a self-hosted LLM security proxy with sub-2ms prompt inspection
Gist: author built an OpenAI-compatible reverse proxy (“Tamga”) that scans prompts for PII, secrets, and prompt-injection patterns before forwarding to pro…
2026-06-26
What it is: Bilgin Ibryam sharing Sean Goedecke’s updated “How I use LLMs as a staff engineer in 2026” workflow writeup
Gist: the notable shift versus 2025 is treating agents as default collaborators for nearly every code change, bug investigation, codebase re…
2026-06-26
What it is: levelsio linking Scroll Prize’s announcement that a full Herculaneum scroll was read without physically opening it
Gist: PHerc. 1667 was virtually unwrapped end-to-end using high-res X-ray scans, geometry reconstruction, and ML ink detection; ~1.4m…
2026-06-26
What it is: Rhys Sullivan note on why MCP underdelivered initially and what comes next
Gist: argues MCP launched in the GPT-4o / Sonnet 3.5 era before good agent/tooling patterns were understood, so many servers exposed too few capabilities and clients added t…
2026-06-24
Gist: the safe/scalable model is many fine-grained task-specific agents, each receiving only the exact capabilities implied by the task context (for example, a pasted doc URL grants access only to that doc). He also argues agent authority should derive from a …
2026-06-24
What it is: Visible standouts: The Second Half; Eugene Yan on eval process; Han-Chung Lee on agent eval infra; Hamel/Shreya LLM Evals FAQ; Jason Wei on verification; Anthropic on agent evals; Ofir Press on benchmarks; AI Agents That Matter; Building on Evaluat…
2026-06-23
What it is: Armin Ronacher post linking to “The Coming Loop”
Gist: argues the important new layer in coding agents is the harness-level loop outside the agent itself; loops already work well for bounded, verifiable work like ports, benchmarking, scanning, and …
2026-06-23
Gist: argues model vendors have been massively subsidizing usage to manufacture demand, but token-based pricing is now exposing the real cost structure; for serious enterprise/agentic use, compute bills can exceed human labor costs by a wide margin.
Newsletter…
2026-06-22
Intro
This week’s reading kept pointing to the same conclusion: the center of gravity in AI is moving away from the model and into the surrounding system. The interesting leverage now lives in durable runtimes, tool and interface design, context management, or…
2026-06-19
What it is: X post by @filiphracek linking filiph.net/text/pokerd.html
Gist: writeup on building pokerd, a terminal-first Texas Hold’em trainer you can play instantly over SSH (ssh [email protected]); interesting bits are the non-immersive-game framing, sc…
2026-06-19
What it is: X post by @leyten linking github.com/leyten/shard
Gist: Shard is a WAN-distributed pipeline-parallel LLM inference engine that splits a frontier-size model across GPUs on separate machines; claim is ~30 tok/s for GLM-5.2 744B across 6 RTX PRO 6000s…
2026-06-15
Intro
This week’s reading converged on a useful correction to a lot of AI discourse: the hard part is less “having a powerful model” and more everything around it. The interesting work is in harnesses, loops, context, verification, permissions, deployment econ…
2026-06-12
What it is: X thread by SemiAnalysis on AI lab business models: subscription vs API.
Gist: based on exhausting weekly limits with real long-horizon coding tasks, they claim consumer subscriptions are far more generous than common “monthly fee ~= API token valu…
2026-06-12
Gist: the repo packages focused agent skills for producing self-contained, visually strong HTML artifacts, especially diagrams and plan pages, plus an optional Plannotator renderer/annotator. The post points to a demo video showing the diff/code viewer behavio…
2026-06-11
Gist: argues DX thinking should extend to agents; optimize the layer between model and codebase via minimal/tested context, deterministic environments, proof-heavy verification, structural safety, governance/model routing, clean codebase interfaces, and shared…
2026-06-11
Gist: argues current AI-engineering rhetoric has regressed from measuring outcomes to measuring volume; “% of code written by AI” is just lines-of-code worship in new clothing, and should not be confused with delivery speed, quality, reliability, or customer v…
2026-06-11
Gist: argues the “AI is replacing software engineers” story is mostly AI-washed layoffs rather than evidence of capability-driven displacement; software work is a decide-execute-deliver sandwich, and AI mainly compresses the execute middle while decision-makin…
2026-06-10
What it is: How To AI thread summarizing the Stanford + Meta “Code as Agent Harness” paper.
Gist: the core claim is that reliable agents should externalize reasoning into executable code instead of relying on free-form natural-language chain-of-thought. In thi…
2026-06-10
What it is: Deedy post listing standout Claude Fable 5 demos and benchmark anecdotes.
Gist: a high-signal hype/market snapshot: claims Fable 5 is showing startling capability across large-scale code migration, graphics generation, gameplay, and optimization ta…
2026-06-10
What it is: dosco sharing Lance Martin’s “Designing loops with Fable 5”.
Gist: argues stronger agent performance comes from loop design, not just model quality: use explicit goals/rubrics for self-correction, separate verifier sub-agents instead of self-critiq…
2026-06-10
What it is: Eli Bendersky on starting new projects with LLM agents, based on building a new Go project from scratch.
Gist: argues agent-heavy development works best when humans keep tight control over design, review, and commit boundaries: start with repo-comm…
2026-06-10
What it is: Armin Ronacher sharing his post “Gaslighting Openness” on the EU/Apple fight and concerns related to Mythos and Fable.
Gist: the post appears to be a broader argument about openness, control, and safety narratives, with specific worries tied to new…
2026-06-10
What it is: Daniel Beauchamp teaser thread about “Quick,” an internal Shopify zero-config API layer for storage, data saving, AI, websockets, and related app primitives.
Gist: the hook is that instead of focusing only on AI-generated frontend code, they gave s…
2026-06-10
What it is: Daniel Beauchamp teaser thread about “Quick,” an internal Shopify zero-config API layer for storage, data saving, AI, websockets, and related app primitives.
Gist: the hook is that instead of focusing only on AI-generated frontend code, they gave s…
2026-06-10
What it is: Simon Willison linking to his guide on agentic engineering patterns.
Gist: this is essentially a pointer to a living guide rather than a standalone tweet idea; likely high-signal if you want a practical synthesis of recurring agent design patterns …
2026-06-10
What it is: skepticism: strong opinion piece, not data-heavy; the claim that generics haven’t improved productivity is asserted more than demonstrated.
Gist: his case is that Go’s value is simplicity/readability/maintainability, and newer features like generic…
2026-06-10
What it is: skepticism: the thread oversold it a bit, the paper is a broad survey/position piece, not a clean proof that one architecture flips everything.
Gist: this is mostly a taxonomy and research agenda, not a new experimental result. The paper’s useful m…
2026-06-09
What it is: Langfuse post/article on automating the AI engineering loop without producing “agent slop”.
Gist: argues the whole AI engineering loop can now technically be automated, instrumentation, monitoring, dataset building, testing, deployment, but full au…
2026-06-09
What it is: Lewis Campbell post linking to “The Decline of Search Engines is an Opportunity”.
Gist: argues worsening search quality should push people back toward the old web habit of maintaining personal links pages; discovery by human-curated hyperlinks is f…
2026-06-09
What it is: Zara Zhang post using Paul David’s “The Dynamo and the Computer” as an analogy for AI adoption.
Gist: argues AI gains won’t come from simply inserting models into existing workflows; like electrification, the real productivity jump comes only after…
2026-06-09
What it is: Addy Osmani post/article, “Loop Engineering.”
Gist: argues the next layer above prompt engineering is designing autonomous agent loops; highlights 5 building blocks: scheduled automations/triage, worktrees for parallel isolation, skills for project…
2026-06-09
What it is: Richard Seroter sharing Christoph Nakazawa’s “Modern Engineering Values”.
Gist: argues coding agents have shifted engineering bottlenecks from writing code to ownership, review, taste, guardrails, repo-local context, and stack control. Nakazawa’s c…
2026-06-09
What it is: LTSE post linking Eric Ries’s Fast Company essay, “Our fears about AI are really fears about capitalism”.
Gist: argues many AI anxieties are really about institutions and incentive systems optimizing for the wrong outcomes; the key question is not …
2026-06-09
What it is: Shriram Krishnamurthi memo on rebooting a programming languages course for the agentic coding era.
Gist: argues PL should be reframed around constraining AI-generated implementations and providing guarantees; distinguishes PL from SE/FM, then propo…
2026-06-09
What it is: Karthik S sharing Hadley Wickham’s “What is an agent?” explainer.
Gist: very clear mental model: an agent is an LLM inside a harness that can call tools repeatedly in a loop; the harness mediates tool calls/results and turns a stateless request/res…
2026-06-09
What it is: Murat Demirbas on “Writing Code vs. Shipping Code: Productivity Effects Across Generations of AI Coding Tools”.
Gist: uses a new MIT/Wharton paper plus an Amdahl’s-law framing to argue that AI massively speeds up code generation but much less meani…
2026-06-08
Intro
This week’s saved reading clustered around a useful shift in emphasis: the interesting AI story is getting less about raw model capability and more about harnesses, feedback loops, operating discipline, and the shape of the org around the tools.
A second…
2026-06-08
What it is: an X post arguing that “agent-ready” websites need typed tools rather than just scrapable HTML.
Gist: the core claim is that real agent usability comes from explicit actions like search, checkout, and inventory exposed as structured tools, not mere…
2026-06-08
What it is: Armin Ronacher explaining Pi’s new per-project approval prompt and the security model behind it.
Gist: the key argument is that AGENTS.md gets injected into the system prompt, so untrusted repo-level instructions can directly influence agent behavi…
2026-06-08
What it is: a blog essay arguing AI disruption is structurally more threatening to software than many other fields because code is verifiable, open source created a huge training corpus, and AI labs can dogfood coding tools on themselves.
Gist: the author expe…
2026-06-08
What it is: Gergely Orosz pushing back on the blanket “just use loops” advice for coding agents.
Gist: his claim is that autonomous loop-heavy agent workflows mainly make sense for the relatively small set of people with effectively unlimited token budgets and…
2026-06-08
What it is: Christoph Nakazawa re-linking his essay Modern Engineering Values in reply form.
Gist: argues that coding is no longer the main bottleneck; the winning engineering values now are strong ownership, taste, strict guardrails, fast feedback loops, and …
2026-06-08
What it is: an X post promoting an 85-minute MIT lecture on Git internals / data model.
Gist: the pitch is that most developers memorize Git commands without understanding commits, trees, refs, and the graph underneath; learning the model makes debugging histo…
2026-06-08
What it is: Sebastian Raschka summarizing a paper on whether repository-level context files like AGENTS.md actually help coding agents.
Gist: in the reported benchmarks, LLM-generated context files were neutral-to-slightly-worse versus no context file, develop…
2026-06-08
What it is: Jitesh boosting vim_royale, a Peerlist project for realtime multiplayer Vim battles.
Gist: lightweight launch/amplification post rather than a deep technical thread; the linked card describes the project very tersely as “Realtime multiplayer Vim ba…
2026-06-04
What it is: antirez reacting sharply to Anthropic’s Opus 4.8 as a product/management failure rather than a raw model-capability issue.
Gist: the claim is that shipping a bad model experience is more revealing about product judgment and internal decision-making…
2026-06-04
What it is: Thorsten Ball sharing an internal Amp note turned public essay: “Building Software Is Learning.”
Gist: the core claim is that new-product software work is mostly iterative discovery, so the real optimization target is reducing time-to-feedback, via…
2026-06-04
What it is: Christoph Nakazawa sharing his essay “Modern Engineering Values,” framed around Codex as a step-change in developer velocity.
Gist: the piece argues coding is no longer the main bottleneck; the durable values now are strong ownership, taste, strict…
2026-06-04
What it is: Ajey Gore linking his essay “The Solo Climb.”
Gist: the argument is that AI-enabled solo builders and tiny teams only work when they first build a genuinely load-bearing “harness”, trusted tests, evals, specs, and hard gates that can answer “is thi…
2026-06-04
What it is: Bilgin Ibryam pointing to Jani Janakiram’s Diagrid essay “Why AI Agents Fail in Production.”
Gist: the core claim is that agent projects fail less because models are weak and more because teams ship behavior without the production substrate underne…
2026-06-03
What it is: Armin Ronacher pointing to Andrew Tridgell’s defense of using AI tools while maintaining rsync under a flood of security reports.
Gist: Tridgell’s main point is not “vibe code and pray” but “use AI for grunt work under strong human design/review/va…
2026-06-03
What it is: Mario Zechner recommending Thariq’s article on dynamic workflows in Claude Code.
Gist: Mario’s takeaway is that durable dynamic workflows are the interesting part; he inspected the implementation, found a few footguns, but still thinks the design i…
2026-06-03
What it is: Christoph Nakazawa’s post on “Modern Engineering Values” and his current LLM-heavy workflow.
Gist: core claims are that coding is no longer the bottleneck, strong guardrails plus tight feedback loops matter more than ever, repo-local context become…
2026-06-03
What it is: Simon Willison pointing to Bloomberg on Uber capping agentic coding-tool spend at $1,500/month per employee per tool.
Gist: Simon’s read is that the cap is a rational response to runaway token spend and also a useful revealed-preference signal: Ube…
2026-06-02
What it is: Han Xiao on Dataroom, a local-first deep research harness.
Gist: argues deep research should be a cheap, long-running first step for long-horizon tasks; Dataroom uses a small local model on your own GPU, keeps gathering until the package is genuine…
2026-06-02
What it is: Sid's writeup on a recently patched Instagram/Meta account takeover flow.
Gist: attacker allegedly only needed a target username, region-matching IP, and Meta support AI to redirect recovery codes to attacker-controlled email; video selfie checks w…
2026-06-01
Intro
This was a thinner reading week, but the saved links still fit together surprisingly well. The strongest thread was about operating surfaces around AI: what makes coding agents actually useful inside an organization, and what happens when trust in an AI …
2026-05-31
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback, then read linked post directly: https://thoughts.hmmz.org/2026-05-31.html
Mario Zechner recommends David's post the solution might be cancelling my AI subscription.
Gist…
2026-05-25
Intro
This week’s saved reading had a pretty clean through-line: the interesting AI story is less about raw generation and more about workflow shape. Security teams are redesigning harnesses around stronger offensive models, infrastructure builders are questio…
2026-05-22
What it is: Guillaume Laforge post + MCP release-candidate blog link
Gist: MCP 2026-07-28 RC is out; biggest revision so far with stateless HTTP-native core, first-class extensions (Apps, Tasks), stronger auth alignment, and a formal deprecation policy. Final …
2026-05-19
Gist: argues most roles split into translation work that collapses into agents and judgement work that grows; strongest claim is the "100x engineer" pattern of one senior plus directed agents.
Newsletter angle: "AI won't eat jobs evenly, it compresses translat…
2026-05-19
Gist: proposes CAS-style edits using line-number + short checksum tags instead of resending old text verbatim, aiming to save tokens while still guarding against stale or hallucinated edits.
Newsletter angle: "a lighter-weight edit primitive for coding agents:…
2026-05-19
Gist: argues current cloud abstractions are the wrong shape, VM sizing tied to resources, remote block storage optimized for HDD-era assumptions, egress pricing distortions, and Kubernetes as lipstick over broken primitives.
Newsletter angle: "what an ex-Tails…
2026-05-19
Gist: meta framing from the post is reflective rather than thesis-heavy, "no-one knows where this goes" and the invitation is to agree/disagree but mostly reflect; linked video title is from ai.engineer Singapore Day 2.
Newsletter angle: possible round-up item…
2026-05-19
Gist: mostly a pointer/amplifier rather than a new thesis; reinforces interest around checksum-tagged line edit protocols for agent tooling.
Newsletter angle: maybe bundle with the original antirez item as a small "agent tooling design" thread rather than a st…
2026-05-19
What it is: Cloudflare on testing Anthropic Mythos against 50+ internal repos; links to "Project Glasswing: what Mythos showed us".
Gist: key claim is that stronger offensive-security models change vuln research from bug spotting to exploit-chain construction …
2026-05-18
Intro
This week’s reading pile had a clear through-line: AI is getting better at speeding up execution, but the interesting work is shifting toward control surfaces, architecture, harnesses, review loops, org design, and security constraints.
A few of the stro…
2026-05-13
Imported from historical reading log.
Ambitious OSS project pitching WiFi CSI as a privacy-preserving sensing stack: presence detection, breathing/heart-rate monitoring, activity recognition, rough pose estimation, and through-wall/environment sensing using E…
2026-05-13
Imported from historical reading log.
Andras Bacsai jokes that Coolify created a fake repo with fake bounties so agent/bot-driven fake PR submissions would self-identify and could be banned from the main repo.
Useful as a sharp anecdote about the emerging spa…
2026-05-13
Imported from historical reading log.
Course/site on harness engineering for AI coding agents, synthesizing OpenAI + Anthropic guidance into lectures, projects, and ready-to-copy templates.
Core pitch: reliability comes less from a smarter model and more from…
2026-05-12
Imported from historical reading log.
Jake’s launch post for sqlite3-parser-js: claims a pure-JS port of SQLite’s parser beats every other JS SQL parser he benchmarked, including wasm-based options.
Useful companion to the repo itself because the punchline is…
2026-05-12
Imported from historical reading log.
JS SQLite parser ported from SQLite’s own Lemon/LALR grammar, aimed at being fast, lightweight, browser-friendly, and more faithful than typical JS SQL parsers.
Notable angle: improved structured diagnostics and hints, pl…
2026-05-12
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback, then read linked TIL directly: https://til.simonwillison.net/llms/llm-shebang
Simon Willison shows a neat pattern for using his llm CLI in a shebang line, turning plain-English fi…
2026-05-12
Imported from historical reading log.
Blog essay arguing AI compresses the org’s “translation layer” more than any single job title: spec→ticket→PR→release-note work gets cheap, while judgement around why/what/trust systems gets more valuable.
Strong claim: m…
2026-05-11
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback, then read linked article directly: https://blog.k10s.dev/im-going-back-to-writing-code-by-hand/
Mario Zechner recommends a post arguing that AI is good at shipping features but ba…
2026-05-11
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback; includes an image illustrating progressive rendering from noise to a clear cat image.
Saved media locally:
Dax reframes coding-agent usage: not like 3D printing one committed laye…
2026-05-10
Intro
I have been sitting on a large pile of AI links, tweets, papers, product launches, and side conversations for the last week or two. A lot of them looked unrelated at first: antirez writing about Redis Array, Anthropic shipping managed agents, Auth0 talki…
2026-05-10
Intro
I have been collecting a lot of links lately: blog posts, product launches, research notes, tweets, and side threads that felt worth saving.
So instead of forcing them into one big argument, I wanted to do a simpler weekly roundup: what I read, what stoo…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback; the attached image includes the concrete compression results.
Sam Rose compares the same payload as JSON (34kb) and protobuf (15kb) and finds that after compression, JSO…
2026-05-07
Imported from historical reading log.
Read The agent principal-agent problem by David Crawshaw.
Core claim: classic review-before-commit code review assumed a human contributor whose effort and understanding could be inferred from the code; agent-mediated con…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback.
Mitchell Hashimoto argues that AI slop is useful as an internal experimentation tool: low-quality generated code/UI/plugins can dramatically reduce the cost of parallel …
2026-05-07
Imported from historical reading log.
Extracted the Anthropic post via api.fxtwitter.com fallback and checked the linked research page Natural Language Autoencoders: Turning Claude’s thoughts into text.
Anthropic's core idea is to train a model to verbalize i…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked Auth0 GA announcement.
Auth0 is pitching Auth for MCP as the missing identity/authorization layer for production MCP servers: not just connecting a…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked Meta RAM Autodata post plus the referenced justrach/devswarm repo and sample issue.
Rach connects her agent workflow to Meta's Autodata framing: ag…
2026-05-07
Imported from historical reading log.
Extracted Alex Albert's post via api.fxtwitter.com fallback and read the attached chart.
Claim: with help from Claude Mythos Preview, the Firefox team fixed more security bugs in April 2026 than in the previous 15 months …
2026-05-07
Imported from historical reading log.
Extracted Simon Willison's post via api.fxtwitter.com fallback and checked the linked note Notes on the xAI/Anthropic data center deal.
Simon's main clarification is that Anthropic is getting Colossus 1, while xAI keeps u…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked repo z-lab/dflash.
Zhijian Liu pitches DFlash for Gemma 4 as an open-source speculative decoding path that can push native Gemma 4 MTP further, cla…
2026-05-07
Imported from historical reading log.
Extracted Mario Zechner's quote-post via api.fxtwitter.com fallback and checked the linked Entire blog post on agentic search.
Entire's core claim is useful: from ~202k real tool calls across ~1,983 public coding-agent ch…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked GitHub repo.
Mitchell Hashimoto strongly recommends Hunk, saying it has fully replaced other local diff viewers for him.
Hunk is positioned as a re…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback.
Mario Zechner says pi is moving its GitHub repo into the earendil-works org and will start publishing packages under the @earendil-works npm namespace instead of @marioz…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback; the quoted tweet and attached screenshot provide the actual context.
Claim: a GPT-3 training loss spike was traced to scraped data from a microwavegang subreddit/communi…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked repo strukto-ai/mirage.
Zecheng Zhang introduces Mirage, a unified virtual filesystem for AI agents that mounts heterogeneous systems like S3, Driv…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback.
Nostalgia post in Portuguese about the mid-2000s pirate-game install ritual: uTorrent on slow internet, seeding the ISO, Nero burn, Daemon Tools mount, no-CD crack, AVAS…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked repos/docs for CopilotKit/generative-ui and CopilotKit/OpenGenerativeUI.
Akshay Pachaar highlights Open Generative UI, an open-source take on Claud…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked repo pranaykotas/parliamentwatch.
ParliamentWatch aggregates 2900+ Indian parliamentary standing committee reports across all 24 DRSCs, with title/…
2026-05-07
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked printingpress.dev.
Printing Press is pitched as both a library of agent-native CLIs and a factory that generates new ones: from a spec/site/service it can pri…
2026-05-07
Imported from historical reading log.
Extracted the root post via api.fxtwitter.com fallback: Armin Ronacher says it is a selection of great PRs that were submitted to Pi, a thread.
Tried browser fallback on X to read the thread, but replies are gated behind …
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback.
Ben Holmes says switching from TipTap/ProseMirror to Slate made a rich-text bulleted-list interaction dramatically easier to build; something that took weeks to half-wor…
2026-05-06
Imported from historical reading log.
Readable page copy was sparse, but enough to identify the core program: ChatGPT Futures is an OpenAI initiative highlighting 26 young people/teams from the Class of 2026 using AI to build, research, create, and expand wha…
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback; inspected attached screenshot separately.
Thomas Ptacek argues the .de incident is decisive evidence against DNSSEC as core Internet security functionality.
Attached scr…
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked the linked SubQ technical post.
Mario Zechner is skeptical of SubQ’s claim that SSA does not approximate attention; his objection is that unless ignored query…
2026-05-06
Imported from historical reading log.
Claude Managed Agents update centered on three things: dreaming, outcomes, and multiagent orchestration.
Dreaming is a research-preview async job that reads an existing memory store plus past session transcripts and emits…
2026-05-06
Imported from historical reading log.
GitHub PR title: HTML5+CSS face lift for the generated pages by knadh on mitmproxy/pdoc; merged Nov 20, 2014.
Logged as a folklore/historical reference rather than a current article; likely relevant as an old design/imple…
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and read linked Phoronix coverage.
News: Dell and Lenovo became premier sponsors of LVFS (Linux Vendor Firmware Service), the fwupd-backed firmware update infrastructure …
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and checked project site for more detail.
Terminal Trove highlights nless (nothing-less) by Matt Pryor: a Textual-based TUI for exploring logs/CSV/JSON as terminal tables…
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and read the linked Microsoft Work Trend Index piece Agents, human agency, and the opportunity for organizations.
Satya/Microsoft framing: firms need to redesign work aro…
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback.
Thomas Ptacek (tqbf) resurfaces his 2015 essay Against DNSSEC: https://sockpuppet.org/blog/2015/01/15/against-dnssec/
Core gist of the linked essay:
Why it matters now: …
2026-05-06
Imported from historical reading log.
Extracted main post via api.fxtwitter.com fallback and read linked ChinaTalk piece How to Buy Cheap Claude Tokens in China.
Kyle Chan highlights Zilan Qian’s write-up on the transfer station economy around blocked frontie…
2026-05-05
Imported from historical reading log.
HN thread title: .de TLD offline due to DNSSEC?
Most useful technical claim in the thread: this looked like a DNSSEC validation failure rather than a nameserver outage, with malformed/bad RRSIGs causing validating resolve…
2026-05-05
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback.
Armin Ronacher reacting to .de outage: How the hell do you take all of .de offline?, useful signal that ccTLD operational failures were visible well beyond India.
Pranesh Prakash:…
2026-05-05
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback.
Martin Fowler Fragments: May 5 roundup linking: open-source framework for prompting patterns, musician suing Google for defamation, Apple rethinking AI spend, running LLMs locally…
2026-05-05
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback.
Frank/jedisct1: SKILL.md is fine for static instructions. But many useful agent workflows are not just instructions. They are loops. Introducing Agent MetaSKILLs.
Linked page: htt…
2026-05-05
Imported from historical reading log.
Mitchell Hashimoto post praising antirez's write-up on developing Redis Array support as a good example of thoughtful AI usage that empowers strong developers while preserving quality.
Linked article: https://antirez.com/…
2026-05-05
Imported from historical reading log.
Pimalaya: open-source PIM tools in Rust; positions itself as I/O-free Rust libraries plus house-made applications for the PIM domain.
Himalaya: CLI to manage emails; supports IMAP/Maildir/Notmuch, SMTP/Sendmail, keyring, …
2026-05-05
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback.
Uttaran Nayak (Bangalore) announcing Pratilekha: one API, every Indian & regional language. and we built this ourselves.
Early signal worth tracking as part of the India/Banga…
2026-05-05
Imported from historical reading log.
Extracted via api.fxtwitter.com fallback.
Simone/evilsocket amplifying claim that Chrome silently installs a 4 GB Gemini Nano model on user devices, without clear consent prompt, and re-downloads it if deleted.
Linked art…
2026-05-05
Imported from historical reading log.
Main post successfully extracted via api.fxtwitter.com fallback.
Post by Alexander Whedon introducing SubQ as a sparse-attention LLM architecture claim: fully sub-quadratic sparse attention, 12M token context window, 52x …