Public Gists by solidus

Gravatar
Sun Mar 15 01:52:39 -0700 2009
1
2
3
/**
 * Store a string of bits as an integral type value.
 * (Valid integral types include unsigned char, short, int...)
Gravatar
Sun Mar 01 09:44:46 -0800 2009

      
gist: 69977 Accepts one of more files o...
Gravatar
Tue Feb 24 19:29:13 -0800 2009
1
2
3
#!/usr/bin/env python
"""interleave.py <glob1> [, <glob1> ... ]
 
Gravatar
Sun Feb 22 22:33:23 -0800 2009
1
2
3
parse_git_branch() {
  git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}