Skip to content

Instantly share code, notes, and snippets.

# brew install bash-completion
if [ -f /usr/local/etc/bash_completion ]; then
. /usr/local/etc/bash_completion
fi
# DL git prompt here: https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh
source ~/.git-prompt.sh
export PS1='\w\[\e[0;33m\]$(__git_ps1 " (%s)")\[\e[m\]\$ '
@catskull
catskull / midi_clock.ino
Created October 4, 2016 02:47
A simple sketch that sends a midi clock signal
int tempo = 50;
void setup() {
// put your setup code here, to run once:
Serial.begin(31250);
Serial.write(250);
}
void loop() {
// put your main code here, to run repeatedly:
for (int i = 0; i < 10; i++) {