This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew tap caskroom/homebrew-cask | |
brew install brew-cask | |
brew cask install virtualbox | |
brew cask install vagrant | |
vagrant plugin install vagrant-vbguest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defscrollback 1024 | |
ignorecase on | |
shelltitle "# |bash" | |
hardstatus alwayslastline | |
hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}][%{Y}%l%{g}]%{=b C}[ %m/%d %c ]%{W}' | |
.bashrc | |
case $TERM in | |
screen ) | |
PROMPT_COMMAND='echo -ne "\033k\033\134"' ;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import subprocess | |
def encode(f): | |
print "encoding", f | |
ext = os.path.splitext(f)[1].lower() | |
if ext == ".avi": | |
outf = os.path.splitext(f)[0] + ".mkv" | |
else: |