Skip to content

Instantly share code, notes, and snippets.

View jwinder's full-sized avatar

Joe Winder jwinder

  • Jack Henry & Associates
  • Iowa
  • 04:38 (UTC -05:00)
View GitHub Profile
Kafka's Theme
Final Fantasy Vi
composed by Nobuo Uematsu
Tabbed by The Ripper With help from hslesperance (original link: http://www.gametabs.net/final-fantasy-vi/kefkas-theme-1)
Drop D
Q Q Q Q Q Q Q E E Q Q Q Q
E||----------------------|--0---------1----0-----|--0-------------------|
B||-------0----1----3----|-------1------------3--|-------1----0----3----|
G||--2-------------------|-----------------------|----------------------|
@jwinder
jwinder / sonic-pi-tutorial.md
Last active September 22, 2023 20:12
Sonic Pi in-app tutorials concatenated - last synced 27-08-2023 - https://sonic-pi.net/tutorial.html - https://github.com/samaaron/sonic-pi - All credit & thanks to Sam Aaron!

1 Welcome to Sonic Pi

Welcome friend :-)

Welcome to Sonic Pi. Hopefully you're as excited to get started making your own sounds as I am to show you. It's going to be a really fun ride where you'll learn all about music, synthesis, programming, composition, performance and more.

#!/bin/sh
git merge "$@"
git push origin master
yes | git-cleanup-and-prune
#!/bin/sh
git sweep cleanup
git remote prune origin
git branch --merged | grep -v "\*" | xargs -n 1 git branch -d
ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%} ✘✘✘"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%} ✔"
@jwinder
jwinder / gist:a0104faff8888d1316c9
Last active August 29, 2015 14:04
github-split.sh
#!/bin/sh
# Usage: github-split org/project directory new-project
REPO=$1
FOLDER=$2
NEW_REPO=$3
function usage() {
echo ""
echo "Usage: $0 <repo> <folder> <new_repo>"
@jwinder
jwinder / gist:9126666
Created February 21, 2014 00:47
yolo
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAaQAAAGkCAIAAADxLsZiAAAHqUlEQVR42u3VUQ0AIQxEwVrBf3CCnApARL+anc1TANxcnXcVWAfP7WdWjgB2sBPsBDvYCXaCHewEO8EOdoKdYAc7wU6wg51gJ9jBTrAT7GAn2Al2sIOdYAc7wU6wg51gJ9jBTrAT7GAn2Al2sBPsBDvYCXaCHewEO8EOdoKdYAc72Al2sBPsBDvYCXaCHewEO8EOdoKdYAc7wU6wg51gJ9jBTrAT7GAn2Al2sIOdYAc7wU6wg51gJ9jBTrAT7GAn2Al2sBPsBDvYCXaCHewEO8EOdoKdYOcBwE6wg51gJ9jBTrAT7GAn2Al2sBPsBDvYCXaCHewEO8EOdoKdYAc7wU6wE+wEO9gJdoId7AQ7wQ52gp1gBzvBTrCDnWAn2MFOsBPsYCfYCXawE+xgBzvBTrCDnWAn2MFOsBPsYCfYCXawE+wEO9gJdoId7AQ7wQ52gp1gBzvBDnawE+wEO9gJdoId7AQ7wQ52gp1gBzvBTrCDnWAn2MFOsBPsYCfYCXawE+xgBzvBTrCDnWAn2MFOsBPsYCfYCXawE+wEO9gJdoId7AQ7wQ52gp1gBzvBDnawE+wEO9gJdoId7LQKuzYfPOgtYLCDHewMdgY72BnsDHawM9gZ7GBnsDPYwc5gZ7CDncHOYAc7g53BDnYGO4Md7GBnsIOdwc5gBzuDncEOdgY7gx3sDHYGO9gZ7Ax2sDPYGexgZ7Az2MHOYGewgx3sDHawM9gZ7GBnsDPYwc5gZ7CDncHOYAc7g53BDnYGO4Md7Ax2BjvYGewMdrCDncEOdgY7gx3sDHYGO9gZ7Ax2sDPYGexgZ7Az2MHOYGewg53BzmAHO4Odwc7tw85gBzuDncEOdgY7gx3sDHYGO9gZ7Ax2sDPYGexgZ7Az2MHOYGewg53BzmBnsDPYwc5gZ7CDncHOYAc7g53BDnYGO4Md7Ax2BjvYGewMdrAz2B
@jwinder
jwinder / gist:8639211
Created January 26, 2014 20:41
Emacs -- filtering out echoed message patterns
(setq echo-area-silenced-patterns '("Desktop saved"
"Auto saving"
"No changes need to be saved"
"You can run the command"))
(defadvice message (before ignorable-message activate compile)
"Do not echo any messages matching a pattern in `echo-area-silenced-patterns`."
(let ((current-echo (current-message))
(incoming-echo (apply 'format (cons format-string args))))
(when (member-if '(lambda (pattern) (search pattern incoming-echo)) echo-area-silenced-patterns)
@jwinder
jwinder / gist:8522372
Created January 20, 2014 15:45
hipchat.el
(require 'mine-jabber)
;; Username & nickname fields from https://banno.hipchat.com/account/xmpp
(setq hipchat-username "")
(setq hipchat-nickname "")
(setq hipchat-password "")
(setq hipchat-autojoin-rooms
'("aggregation" "assets" "banno_talk" "banno_cms" "data_services" "emacs" "grip" "kernel" "southen" "troll_talk" "webdev" "design_talk"))
@jwinder
jwinder / gist:6780758
Created October 1, 2013 15:57
rcirc-font-faces
(custom-set-faces
'(rcirc-my-nick ((t (:foreground "#00ffff"))))
'(rcirc-other-nick ((t (:foreground "#90ee90"))))
'(rcirc-server ((t (:foreground "#a2b5cd"))))
'(rcirc-server-prefix ((t (:foreground "#00bfff"))))
'(rcirc-timestamp ((t (:foreground "#7d7d7d"))))
'(rcirc-nick-in-message ((t (:foreground "#00ffff"))))
'(rcirc-prompt ((t (:foreground "#00bfff")))))