#AI
6 articles — newest first.
- 8 min read
SIMD sentiment scoring in Rust via WASM workers (no UI jank)
Build a SIMD-accelerated sentiment scorer in Rust, ship it as WebAssembly, and keep chat analysis off the UI thread without hurting battery or FPS.
- 9 min read
Budgeting the Claude Context Window Before It Truncates You
The Claude context window is one token budget shared by prompt, tools, thinking, and reply. I count tokens and guard it in code so a reply never truncates.
- 6 min read
The AI-Native Portfolio: Landing Lead Roles by Shipping the System
A portfolio that lists 'used ChatGPT' reads junior. One that demonstrates systems architecture — RAG, agents, guardrails, latency budgets — reads like the lead they're trying to hire. Here's how to build the second one.
- 6 min read
The Day ChatGPT Changed Full-Stack Engineering
Late 2022 dropped the cost of writing software overnight. Why the bottleneck moved from syntax to judgment — and why MERN engineers were positioned to win.
- 7 min read
When Logs Lie: Tracing LLM Agents with OpenTelemetry
The live RAG concierge on this site ships a span per step — tokens, cost, latency in OpenTelemetry — which is how I trace LLM agents, not guess from logs.
- 9 min read
Prompt Caching: the Ordering Discipline That Cuts the Bill
I treat prompt caching as FinOps: order the static prefix first, keep it byte-stable, and stop re-paying to re-read an 8K preamble on every request.