ls ~/writing --sort=recent
[01]Writing
Notes on Bubble.io, AI, and shipping things.
0 matching posts of 69
Supabase & Postgres
Chrome extensions
Chrome extensions
Chrome extensions
AI coding tools
Supabase & Postgres
Supabase & Postgres
Supabase & Postgres
JavaScript & React
Supabase & Postgres
Automation & n8n
Automation & n8n
AI coding tools
Automation & n8n
Bubble.io
Bubble.io
Bubble.io
Bubble.io
Bubble.io
Stripe & payments
Bubble.io
Bubble.io
No posts match .
Try a broader term, browse by topic above, or
[02]Read in clusters
[03]Recent writing
What breaks in production, written down.
7 min
How to encrypt API keys and client secrets in Supabase
Store client secrets in Supabase Vault, keep searchable metadata in Postgres, and gate every decrypt behind one checked SECURITY DEFINER function. Step-by-step SQL with the gotchas.
6 min
Chrome extension version-bump discipline: pre-commit + GitHub Actions
The Chrome Web Store rejects re-uploads with the same manifest version. Catch the missed bump locally in a pre-commit hook; gate it again in CI.
7 min
How to build a Chrome extension popup with Supabase Auth (step by step)
Wire Supabase Auth into an MV3 popup: bundle the UMD, persist sessions in chrome.storage, recover state on reopen. Working code included.
10 min
Shipping a Manifest V3 Chrome extension: the gates nobody mentions
Trader verification, publisher identity, the URL slug gotcha, version-bump CI: the async gates that turn a one-day project into a three-week project.
8 min
Phased migrations with per-phase verification gates
Big-bang refactors of 6+ files break things you cannot predict. Phased migration with explicit gates catches regressions before they compound.
8 min
How I document AI-built projects: a CLAUDE.md, ISSUES.md, and prompts/ workflow
Four files that fix the missing context in AI-built codebases: CLAUDE.md, ISSUES.md, a prompts/ folder, and a two-AI handoff workflow.
7 min
How to migrate a useState form to React Hook Form and Zod (the real walkthrough)
Step-by-step migration from useState to React Hook Form, Zod, and shadcn Form. Code diffs, validation mode choice, and four gotchas covered.
7 min
Migrating to Supabase publishable keys broke my Chrome extension. Here is the fix.
sb_publishable_* keys return 401 from hand-rolled fetch. Migration to @supabase/supabase-js plus a chrome.storage.local session adapter for Manifest V3. 158 lines of HTTP became 67.
9 min
How to audit a Lovable app after the BOLA disclosure: a 6-hour rotation playbook
Audit a Lovable app after the BOLA disclosure: exposure checks, Supabase key rotation, Chrome extension SDK migration, and pre-revoke verification.
7 min
Realtime broadcast scope is a security boundary, not a routing convenience
Default-public Realtime broadcasts leak message bodies to every subscriber. The private-channel flag plus RLS is the fix.