# contents of $HOME/.ssh/config
Host dev
HostName dev.example.com
Port 22000
User fooey
From: https://nerderati.com/2011/03/17/simplify-your-life-with-an-ssh-config-file/
i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...
# contents of $HOME/.ssh/config
Host dev
HostName dev.example.com
Port 22000
User fooey
vncviewer -QualityLevel=7 -FullColor=0 -LowColorLevel=2 -CompressLevel=3 :3
bindsym $mod+d exec "rofi -combi-modi window,drun -show combi"
find dir/ -name *.txt -type f -exec grep -H 'string' {} +
cat /var/log/pacman.log | grep -i upgraded
cat /var/log/pacman.log | grep -i installed
yaourt -S dconf-editor
alias mat="/opt/MATLAB/R2016a/bin/matlab -softwareopengl -nodesktop -nosplash"
# read in Scale_Example.txt that contains data for the example
mydata = read.table("~/Applied_Logistic_Regression_by_Hosmer_Lemeshow_3th_ed_2013/Scale Example/Scale_Example.txt")
# seperate data into x and y
y=mydata[,1]
x=mydata[,2]
# plot lowess graph
logitloess(x,y)