Skip to content

Instantly share code, notes, and snippets.

View youcandanch's full-sized avatar
❄️
myself moving forward then and now and forever

Alex Dancho youcandanch

❄️
myself moving forward then and now and forever
View GitHub Profile
@youcandanch
youcandanch / gist:6cef7dab69b79038c6b12aca5fb49d5a
Created July 15, 2026 15:03
Dancho Claude Voice Instructions
# 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.
### 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:
@youcandanch
youcandanch / gist:3952746
Created October 25, 2012 14:06
Quick console app to get VS2010 product key
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Win32;
namespace RegCheck
{
class Program
{
@youcandanch
youcandanch / refcount.sh
Created September 20, 2012 04:14
Dead simple repository reference count
#!/bin/bash
USAGE="usage: refcount.sh [string to check]"
if [[ $# = 0 ]]
then
echo $USAGE
exit 1
fi
count=$(git grep -il $1 | wc -l)