data-peek/notes/README.md
Rohith Gilla f388e75834
Add technical blog posts documenting data-peek features (#153)
Covers previously unblogged features: the Connection Health Monitor
(pg_stat_activity dashboard + kill queries), the data masking toolbar,
the Postgres LISTEN/NOTIFY panel, benchmark mode with p90/p95/p99, and
the FK-aware data generator. Each post follows the existing notes/ voice,
references real code paths, and is ready for cross-posting to dev.to with
a canonical URL back to data-peek.app/blog.

https://claude.ai/code/session_018GVvk8S82Qy9VVK4eibzaW

Co-authored-by: Claude <noreply@anthropic.com>
2026-04-11 10:13:18 +05:30

2 KiB

data-peek Notes & Blog Posts

This folder is the single source of truth for technical notes and blog posts. Files with published: true in frontmatter are automatically served on the website's blog.

Published Posts

File Topic
building-ai-sql-assistant.mdx Building the AI SQL Assistant
ai-assistant-deep-dive.mdx Technical deep dive into AI components
query-performance-analyzer.mdx Query Performance Analyzer with EXPLAIN
connection-health-monitor-in-a-sql-client.mdx pg_stat_activity dashboard with one-click kill
blurring-pii-in-your-sql-client.mdx Data masking toolbar for screen-shares and demos
listen-notify-without-tears.mdx Postgres LISTEN/NOTIFY debugger with SQLite history
benchmark-mode-p50-p90-p99.mdx Benchmark mode with p90/p95/p99 percentiles
fk-aware-fake-data-generator.mdx FK-aware fake data generator with Faker.js

Creating a New Post

  1. Create a new .mdx file in this folder
  2. Add frontmatter at the top:
---
title: "Your Post Title"
description: "Brief description for SEO and previews"
date: "YYYY-MM-DD"
author: "Rohith Gilla"
tags: ["Tag1", "Tag2"]
published: true  # Set to false to keep as draft
---
  1. Write your content in MDX (Markdown + JSX)
  2. The post will appear on /blog when published: true

Draft Posts

Set published: false in frontmatter to keep a post as a draft. It won't appear on the blog until you change it to true.

Future Topics

  • Electron + React architecture patterns
  • Multi-database adapter pattern
  • Building a table designer with DDL generation
  • Monaco editor integration tips
  • ERD visualization with React Flow