I hereby claim:
- I am teranex on github.
- I am teranex (https://keybase.io/teranex) on keybase.
- I have a public key whose fingerprint is 03E2 547D 5CE5 DEF7 5C85 9280 B990 30C6 610D B834
To claim this, I am signing this object:
function j() { | |
path=`(cat ~/bashmarks && find /home/jeroen/Projecten/ -maxdepth 3 -type d -not -path '*/\.*') | fzf --extended --query="$1" --select-1` | |
if [ $? -eq 0 ]; then | |
cd "$path" | |
fi | |
} |
function j() { | |
path=`(cat ~/bashmarks && find /home/jeroen/Projecten/ -maxdepth 3 -type d -not -path '*/\.*') | fzf --extended --query="$1" --select-1` | |
if [ $? -eq 0 ]; then | |
cd "$path" | |
fi | |
} | |
# ~/bashmarks is just a list of directories | |
# fzf can be found here: https://github.com/junegunn/fzf |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
if ffmpeg -i "$1" 2>&1 | grep Video: | grep h264 #check video codec | |
then | |
vcodec=copy | |
else | |
vcodec=libx264 | |
fi | |
if ffmpeg -i "$1" 2>&1 | grep Video: | grep "High 10" #10 bit H.264 can't be played by Hardware. |
#!/bin/bash | |
# if the first argument starts with a t, we actually meant to execute git | |
first=$1 | |
if [ "t" == "${first:0:1}" ] | |
then | |
# remove the first argument | |
shift | |
# the pass everything to git, while removing the initial 't' from the first argument | |
git ${first:1:${#first}-1} $* |
let g:punisher_keys = ['j', 'k', 'h', 'l', 'dd', 'x', 'X'] | |
let g:punisher_max_repeats = 4 | |
let g:punisher_mode = 'normal' " normal, hard, extreme, low | |
" TODO: | |
" - dot-command fixen | |
" - config options | |
" - arrows etc | |
" - arrows in insert mode | |
" - hard en extreme mode |
sourcing "$VIM/vimrc" | |
line 4: sourcing "/usr/share/vim/vim72/syntax/syntax.vim" | |
Searching for "syntax/synload.vim" in "/home/user/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim72,/usr/share/vim/vimfiles/after,/home/user/.vim/after" | |
Searching for "/home/user/.vim/syntax/synload.vim" | |
Searching for "/usr/share/vim/vimfiles/syntax/synload.vim" | |
Searching for "/usr/share/vim/vim72/syntax/synload.vim" | |
line 19: sourcing "/usr/share/vim/vim72/syntax/synload.vim" | |
Searching for "syntax/syncolor.vim" in "/home/user/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim72,/usr/share/vim/vimfiles/after,/home/user/.vim/after" | |
Searching for "/home/user/.vim/syntax/syncolor.vim" |
#!/bin/bash | |
GIT_PS1_SHOWDIRTYSTATE=true | |
GIT_BRANCH_COLOR="\[\033[38;5;155m\]\[\033[48;5;235m\]" | |
PS1_EXIT_RED="\[\033[38;5;208m\]\[\033[48;5;52m\]" | |
# === Initializing static variables =========================================== | |
case $TERM in | |
xterm* | screen) | |
CORNER_TOP="\[\033(0l\033(B\]" |