I came across a blog post outlining how to make Home & End keys behave like Windows on Mac OS X here
mkdir ~/Library/KeyBindings
cd ~/Library/KeyBindings
touch DefaultKeyBinding.dict
nano DefaultKeyBinding.dict
I came across a blog post outlining how to make Home & End keys behave like Windows on Mac OS X here
mkdir ~/Library/KeyBindings
cd ~/Library/KeyBindings
touch DefaultKeyBinding.dict
nano DefaultKeyBinding.dict
# convert PuTTY's public ssh key file into OpenSSH public key | |
ssh-keygen -i -f id_rsa_putty.pub > id_rsa.pub |
You can view the installed versions on your computer by entering the following command in terminal:
/usr/libexec/java_home -V
For instance, I have the following versions installed:
14.0.2, x86_64: "Java SE 14.0.2" /Library/Java/JavaVirtualMachines/jdk-14.0.2.jdk/Contents/Home
round_df <- function(df,digits) | |
{ | |
nums <- vapply(df,is.numeric, FUN.VALUE = logical(1)) | |
df[,nums] <- round(df[,nums],digits=digits) | |
(df) | |
} |
Modified from:
Updated: 2016-07-27