🦞🌯 Lobster Roll

Stories by mickamy

Show HN: SQL-tap – Real-time SQL traffic viewer for PostgreSQL and MySQL (github.com)
sql-tap is a transparent proxy that captures SQL queries by parsing the PostgreSQL/MySQL wire protocol and displays them in a terminal UI. You can run EXPLAIN on any captured query. No application code changes needed β€” just change the port.
Show HN: SQL-tap now has a browser-based Web UI
Hi HN, I shared sql-tap here a few weeks ago β€” a transparent SQL proxy that captures every query and lets you inspect it in real-time. Thanks for the feedback last time.<p>Two big additions:<p>*Built-in Web UI* β€” Add `--http=:8080` and open your browser. It&#x27;s a zero-dependency vanilla JS SPA em...
Show HN: SQL-tap now has a browser-based Web UI for real-time SQL monitoring
Hi HN, I shared sql-tap here a few weeks ago β€” a transparent SQL proxy that captures every query and lets you inspect it in real-time. Thanks for the feedback last time.<p>The biggest addition: *a built-in Web UI*. Add `--http=:8080` and open your browser β€” queries stream in via SSE, you can click t...
Show HN: Injector – Field-tag-only dependency injection for Go (github.com)
Injector is a small Go DI code generator where the entire wiring lives in struct field tags.<p>No provider sets, no DSL, no runtime reflection. Just Go types and generated code.<p>Looking for feedback on the approach.
Gon: A Rails-style scaffolding CLI for Go (models, usecases, handlers) (github.com)
Show HN: Go-SQS-Worker – A Simple and Scalable Async Job Library for AWS SQS (github.com)
I recently built go-sqs-worker, a Go library for managing asynchronous jobs using AWS SQS. It’s designed to strike a balance between simplicity and scalability, addressing common backend needs like background email processing or task retries without the complexity of Kafka or AWS Step Functions.<p>F...