Latest Articles

  • Agents with Local LLMs

    Agents with Local LLMs

    Most discussions about running AI agents with local models obsess over the wrong thing: model capability. The question isn't whether your local LLM is smart en…

    programming
  • Pay-Per-Use Metering in Python

    Pay-Per-Use Metering in Python

    Building a SaaS product without usage metering is like running a restaurant where everyone pays the same flat fee regardless of what they order. Your heaviest…

    programming
  • Compiling C to WebAssembly with Emscripten

    Compiling C to WebAssembly with Emscripten

    WebAssembly lets you run C code in the browser at near-native speed. Emscripten is the tool that makes this practical—it's a full LLVM-based compiler toolchain…

    programming
  • Sniffing API Calls in Ruby

    Sniffing API Calls in Ruby

    When debugging integration issues or reverse-engineering third-party gems, you need to see what's actually hitting the wire. Ruby offers several approaches for…

    programming