If possible, interactively rebase your feature branch against master
before merging, and condense your work-in-progress commits to clean, single-purpose commits.
Prereq: install git-up
git up
git checkout
If possible, interactively rebase your feature branch against master
before merging, and condense your work-in-progress commits to clean, single-purpose commits.
Prereq: install git-up
git up
git checkout
# | Podcast Title | Update Frequency | Genre(s) | About | AJC Note |
---|---|---|---|---|---|
1 | Above & Beyond Group Therapy | Weekly | Trance, Progressive | Two hour mix, guest mix for last 30 minutes. Great for uplifting, energetic and feel-good trance. | There's not much better than putting this podcast on and driving with the windows down on a beautiful day. |
2 | Adam Beyer presents Drumcode | Weekly | Techno | Pounding, driving techno mixes that are usually a 1 hour cut from a live set he did that week/month. | Adam Beyer is the techno king. If you haven't been exposed to much techno, this is a great crash course. |
3 | Avicii - Levels Podcast | Monthly | House, Progressive | Monthly podcast from Avicii frequently disp |
# Sweet Gif Creation from .mov | |
# | |
# Adapted from https://gist.github.com/SlexAxton/4989674 | |
gifify() { | |
if [[ -n "$1" ]]; then | |
GIF="${1%.*}.gif" | |
if [[ $2 == '--bad' ]]; then | |
ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $GIF | |
else | |
ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png |
function vhost { | |
sudo ~/.dotfiles/osx/mamp_vh.sh $1 | |
} |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications
like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html