uv Workspaces: Build a Python Monorepo From Scratch
Build a Python monorepo with uv workspaces: one shared lockfile and virtualenv, cross-package imports, per-package builds, and the gotchas I hit doing it.
Build a Python monorepo with uv workspaces: one shared lockfile and virtualenv, cross-package imports, per-package builds, and the gotchas I hit doing it.
Python lazy imports (PEP 810) land in Python 3.15. I benchmarked boto3, requests and pydantic startup: the real speedup, and how to get most of it today.
Go's encoding/json/v2 is a reported 2–10x faster at unmarshaling but flips v1 defaults: duplicate keys, nil slices, case matching. How to enable it and migrate.
Build an AI agent in Go from scratch: a tool-calling loop against the Anthropic API in ~120 lines, no frameworks, with real code and the gotchas I hit.
Python 3.15 lands lazy imports, a frozendict builtin, unpacking in comprehensions, and the Tachyon sampling profiler. Here's what changed and what to test.
Go 1.27 finally adds generic methods: type parameters on methods at last. A hands-on tutorial on the syntax, the chaining it enables, and the interface catch.
Extract text, tables, and structured JSON from PDFs using Mistral OCR 4 in Python. Bounding boxes, confidence scores, and a complete invoice pipeline.
Learn to build 4 real Claude Code workflow scripts for code audit, migration, security review, and research. Includes actual output and cost breakdowns.
LiteLLM's 2026 CVEs include a CVSS 10.0 unauthenticated RCE that CISA flagged as actively exploited. Which versions are hit and how to patch to v1.83.14+.
Go 1.26 ships Green Tea GC by default (10-40% less overhead), experimental SIMD, runtime/secret, and a rewritten go fix. Hands-on code for each feature.