Skip to content

Gear & Infrastructure.

A curated list of the hardware, software, and AI-native technologies I use to build digital products at the highest level.

Workflow

Daily Rhythm

I build during naps, after bedtime, and in focused 90-minute sprints. No standing meetings, no async overhead — just uninterrupted engineering time.

Every session starts with a clear target: ship one thing. Could be a feature, a fix, a blog post, or a test. The goal is forward momentum, not busywork.

AI handles scaffolding and boilerplate. I handle architecture decisions, edge cases, and the final 20% that makes something production-grade.

Pre-Commit Pipeline

1. npm run check — TypeScript + Astro diagnostics

2. npm test — Unit + integration tests

3. npm run build — Production build

Enforced by Husky on every commit. Block if any step fails.

Stack Principles

  • Minimal dependencies — question every addition
  • Zero-JS baseline — interactivity is the exception, not the default
  • Ship minimal JavaScript — Preact over React, islands architecture
  • Privacy by architecture — no data collection without consent
  • Accessibility is non-negotiable — WCAG 2.2 AA minimum
  • Tests or it didn't happen — CI blocks without passing checks

The playbook

Standards & References

These tools and principles are documented in detail across the Resources section — living standards for every project type I ship.

Explore Resources
Updated June 2026