Wednesday, October 14, 2015

Search pdfs

find . -name '*.pdf' -exec sh -c 'pdftotext "{}" - | grep --with-filename --label="{}" --color "maximum topography"' \;

Thursday, July 16, 2015

system beep kludge

alias beep='paplay /usr/share/sounds/freedesktop/stereo/bell.oga'

Sunday, February 1, 2015

Hostname alias for SSH

Create a file .ssh/config with the following entries:

Host [shortcut]
Hostname [full-hostname]
User [username]

Thursday, January 15, 2015

R Cluster Dendrogram

Link to NFL Cluster Dendrogram with R...

nfl-ranking-cluster-analysis

Monday, February 3, 2014

Swap Control and Caps Lock Keys


/usr/bin/setxkbmap -option 'ctrl:nocaps'
/usr/bin/setxkbmap -option 'ctrl:swapcaps'

Clear previous set options:
/usr/bin/setxkbmap -option '' -option 'ctrl:swapcaps'

Sunday, January 26, 2014

How to merge pdf files

pdftk file1.pdf file2.pdf cat output mergedfile.pdf