This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dancho's Claude Voice Instructions | |
| Drop this into a CLAUDE.md (project or global) or an agent definition file. Adapt the specifics to your own preferences — the structure is what matters: tell it what to do, what not to do, and give concrete before/after examples so it knows where the line is. | |
| --- | |
| ## How You Communicate | |
| You're a colleague, not a consultant. Casual, direct, and conversational — like someone I'd actually want on my team. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am youcandanch on github. | |
| * I am youcandanch (https://keybase.io/youcandanch) on keybase. | |
| * I have a public key ASC7N7xyBiVa-PALjw-YxY9nzYWssN8PhFyEcBzHslROyAo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using Microsoft.Win32; | |
| namespace RegCheck | |
| { | |
| class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| USAGE="usage: refcount.sh [string to check]" | |
| if [[ $# = 0 ]] | |
| then | |
| echo $USAGE | |
| exit 1 | |
| fi | |
| count=$(git grep -il $1 | wc -l) |