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
### 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)