View .bashrc
This file contains 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
export SAL_USE_VCLPLUGIN=gen | |
# Set color options | |
restore="\[\033[00m\]" | |
yellow="\[\033[33m\]" | |
cyan="\[\033[36m\]" | |
blueBold="\[\033[01;34m\]" | |
white="\[\033[37m\]" | |
redBold="\[\033[01;31m\]" |
View my_config.vim
This file contains 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
" Set shell | |
set shell=/bin/zsh | |
" Enable Pathogen built-in plugin | |
execute pathogen#infect('bundle/{}', '~/.vim_runtime/my_plugins/{}') | |
" Enable AutoSave plugin | |
" https://github.com/vim-scripts/vim-auto-save.git | |
" let g:auto_save = 1 | |
" let g:auto_save_no_updatetime = 1 " do not change the 'updatetime' option |
View ffmpegchapters-explicit.sh
This file contains 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
#!/bin/bash | |
# Author: http://crunchbang.org/forums/viewtopic.php?id=38748#p414992 | |
# m4bronto | |
# Chapter #0:0: start 0.000000, end 1290.013333 | |
# first _ _ start _ end | |
while [ $# -gt 0 ]; do | |
ffmpeg -i "$1" 2> tmp.txt |