Skip to content

Instantly share code, notes, and snippets.

View theflyingcodr's full-sized avatar
🛩️

Mark Smith theflyingcodr

🛩️
View GitHub Profile
@theflyingcodr
theflyingcodr / Invasion.txt
Created January 25, 2021 10:26
Invasion Drum Mapping
# MIDI note/CC name map
80 Bell R Hit
79 Bell L Hit
78 Stack Hit
77 -
76 Splash R Choke
75 Splash R Hit
74 Splash L Choke
73 Splash L Hit
72 -
@theflyingcodr
theflyingcodr / standup.sh
Created May 2, 2019 09:45
Send an email with mailutil on linux with details of commits completed the previous day. Stick it in crontab to run every day with the arg of 3 on a Monday to get Fridays commits.
#! /bin/bash
echo "Starting Daily Standup Email"
DAYS=1
if [ "$1" != "" ]; then
DAYS=$1
fi
echo '$1 = ' $1
cd YOUR/GIT/ROOT
/home/linuxbrew/.linuxbrew/bin/git-standup -d DAYS -s | /usr/bin/mail -s 'Daily Standup' -a FROM:YOUR NAME\<YOUR@EMAIL.COM> YOUR@EMAIL.COM
echo "Done"