The tools I actually ship with
A short, stable list, built up over years of production work. TypeScript and Python for most of it, Go and Rust where the bytes matter. Next.js on the edge, Postgres at rest, Cloudflare and DigitalOcean for the wire and the metal. Not AWS, not Azure. Each tool earns its place by saving me a class of bugs, not by looking good on a CV.
Grouped by tier
Eight tiers, every choice deliberate. If something is on this list it has earned a place by saving me a class of bugs or buying me real headroom. If something is missing, I either tried it and dropped it, or I have not needed it yet.
Languages
Five languages, picked for the part of the system they suit.
- TypeScriptThe default for everything web and most servers. Strict mode, no any.
- Python 3.12AI infra, evals, scripts, data work. uv for env, ruff for lint.
- GoStorage engines and distributed bits. lsmdb and raftkv live here.
- RustSandboxing and hot inner loops. sandboxd is Rust.
- SQLPostgres dialect. Migrations as code, RLS on every table.
Runtime and framework
Server-rendered HTML first. SPA frameworks only when the page is genuinely an app.
- Next.js (App Router)React Server Components, route handlers, edge runtime.
- Node 20+Long-running services and CLIs. No transpilers in production.
- HonoLean APIs on Workers and Node alike.
- FastAPIPython services where I want type-checked routes.
- Tailwind v4Utility-first styling. No CSS-in-JS.
Data
Postgres before anything else. Row-level security on by default, denied by default.
- Supabase PostgresHosted Postgres with auth, storage and realtime baked in.
- PostgreSQL 16When I run the database myself on DigitalOcean.
- Drizzle ORMTyped queries that map cleanly to migrations.
- DuckDBLocal analytics. Eval runs and ad-hoc joins live here.
- pgvectorEmbeddings next to the rows they belong to.
Infrastructure
Cloudflare on the wire, Vercel for the app, DigitalOcean for the metal. No AWS, no Azure.
- CloudflareDNS, Workers, R2, KV, D1, Pages, no egress surprises.
- VercelWhere the Next.js sites deploy. Preview branches on every push.
- DigitalOceanVPS and managed Postgres for the self-hosted services.
- DockerReproducible builds locally and in CI.
- Kubernetes (Helm)Helm chart in k8s-ops-toolkit for self-hosted Next.js workloads.
- TerraformVercel, Supabase, Cloudflare and DigitalOcean modules in one repo.
Observability
You cannot fix what you cannot see. Metrics, logs and traces from day one.
- OpenTelemetryTraces and spans across services. Vendor-neutral.
- PrometheusMetrics with histograms that match service-level objectives.
- GrafanaDashboards that read like a runbook, alerts wired to Telegram.
- LokiLog aggregation alongside Prometheus, same labels.
- SentryError tracking with source maps and release health.
AI infrastructure
Multi-provider by default. No single vendor sits between me and a working request.
- SarmaLink-AIMy own multi-provider gateway with 14-engine failover.
- Groq, OpenRouter, local OllamaThe three rails behind the gateway.
- MCP (Model Context Protocol)Tools the agent calls, not whole-file reads.
- slipstreamMy token-efficient runner with persistent memory.
- forge-inferMinimal inference server with paged KV cache.
Security and auth
Real auth, real RLS, real audit logs. The defaults you would want if you cloned my code at midnight.
- Supabase AuthEmail, magic link, OAuth, JWT verified server-side.
- Row-level securityDefault deny, explicit policies per role.
- Cloudflare TurnstileBot challenge on every public form.
- sandboxdWebAssembly sandbox with strict CPU, wall-clock and memory limits.
Workflow and shipping
Tight commits, frequent deploys, observability before features.
- GitHubSource of truth, Actions for CI, CodeQL on the riskier repos.
- n8nSelf-hosted workflow automation for the boring glue.
- ResendTransactional email with a verified domain.
- Telegram botWhere my alerts land. Faster than a paging service.
Why this matters
A stable stack means a small surface area to know deeply. I would rather understand eight tiers in detail than dabble in forty. The list grows slowly. When something new arrives it replaces something old, never just adds noise. Boring tech, surgical complexity.
Want the receipts?
Every tier on this page is wired into something on GitHub you can read. Nineteen open-source repositories, MIT-licensed, with architecture diagrams in the wiki.
Hiring for a senior engineering role? See /hire-me.