Skip to content
@technical-turtle

Technical Turtle

Developer tools and engineering for distributed systems, cloud, and AI-native software.
Technical Turtle

Technical Turtle

Developer tools and engineering for distributed systems, cloud, and AI-native software.


I design, architect, and build software.
Distributed systems, cloud platforms, full-stack applications, cyber security, AI tooling, and more. 18+ years crafting complex systems at ASML, Philips, and Ibeo, with a Professional Doctorate in Engineering and an AWS Solutions Architect Professional certification.

Postgres Migration Safety Auditor

Catch the database migration that locks or rewrites your production table, before it reaches production.

-- looks fine in review, locks your busiest table in prod:
ALTER TABLE users ALTER COLUMN email SET NOT NULL;

-- the safe rewrite the auditor points you to:
ADD CONSTRAINT c CHECK (email IS NOT NULL) NOT VALID;  VALIDATE CONSTRAINT c;  then SET NOT NULL;

A static auditor for Flyway and Liquibase that flags each production hazard with the reason and the safe rewrite. It parses your migration with the real PostgreSQL parser, cites an official source for every rule, and runs as a CLI, a CI gate, or a Claude Code skill. It never connects to your database. One-time, EUR 14.99.

Product page and free migration cheatsheet

Free and open source

  • Postgres Migration Guard (pg-migration-guard) - the free version of the auditor: the ten common Postgres migration hazards, as a CLI and a GitHub Action. Repository
  • Claude Code Context Telemetry (cc-context-telemetry) - see your Claude Code context and usage limits in your statusline, and read them from your hooks. Repository

Elsewhere

Pinned Loading

  1. cc-context-telemetry cc-context-telemetry Public

    Show Claude Code's context % and your 5h/7d usage-limit consumption next to your existing statusline bar. Also writes the telemetry to a per-session file your hooks can read.

    JavaScript 1

  2. pg-migration-guard pg-migration-guard Public

    Free static safety checker for Postgres SQL migrations: catches locking and destructive DDL before it ships. CLI + GitHub Action.

    Python

Repositories

Showing 3 of 3 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…