Skip to content

Instantly share code, notes, and snippets.

View diego3's full-sized avatar
🎯
Focusing

Diego R. Santos diego3

🎯
Focusing
View GitHub Profile
@diego3
diego3 / pair.md
Created March 27, 2026 00:40 — forked from leandronsp/pair.md
[SKILL] Pair with Claude
name pair
description TDD pair programming with mode switching. Claude can be driver (writes code) or navigator (watches, questions, provokes). Supports GitHub/Linear issues, file watching, or arbitrary prompts. Scientific TDD, baby steps, one test at a time. Trigger on phrases like "pair", "let's pair", "pair with me", "tdd", "you drive", "I'll drive", "pair program", "dojo".

Pair — TDD Pair Programming

Two modes, one skill. Switch anytime.

  • Driver mode — Claude writes code, user navigates
@diego3
diego3 / mysql-docker.sh
Created August 20, 2020 03:34 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE