Beta experiment-001
PostgreSQL Config Sanity Checker
Paste your postgresql.conf (or SHOW ALL output) and get a heuristic review: memory sizing vs RAM, connection risk, checkpoint and autovacuum settings, durability flags. This is a real working tool — it runs entirely in your browser, nothing leaves this page.
- Heuristics, not a diagnosis — a real health check looks at workload, stats views, and query plans too.
- Bare numbers follow PostgreSQL conventions (8kB blocks for shared_buffers, kB for work_mem).
- Strip secrets before pasting. The tool never sends data anywhere — but your clipboard history might.
In progress experiment-002
SQL → PostgreSQL migration analyzer
Upload SQL Server or Oracle DDL and get an incompatibility report: data-type mappings, procedural code hotspots (T-SQL / PL/SQL), and a rough effort estimate per object.
Status: being built — not ready to use. The parser handles CREATE TABLE today; procedural code analysis is next. Planned as an open-source release when it earns the label.
Want it sooner? Tell an architect — real migration work funds the lab.
Open-source starter repo-ready, not yet published
pg-health-check
A Python script (stdlib only, plus an optional psycopg driver) that runs 20 read-only PostgreSQL health checks — bloat estimate, unused indexes, cache hit ratios, connection pressure, long-running queries, replication lag, autovacuum status, table sizes — and writes a Markdown report.
pg_health_check.py — argparse CLI (--dsn, --format md, --dry-run)
README.md — purpose, usage, sample output, safety notes
LICENSE — MIT, © AnovaCloud
.github/workflows/ci.yml — syntax check + dry run
Repo-ready in our workspace — GitHub publication pending. Ask an architect and we'll send you the repo.
Backlog planned, not started
Connection-string parser
Planned: paste a JDBC / ADO.NET / libpq connection string, get the parsed host, port, database, and SSL mode — plus a redaction mode that strips credentials before you share it in a ticket. Not started yet.