This file contains hidden or 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 | |
# Install R | |
sudo apt-get update | |
sudo apt-get install libxml2-dev libssl-dev libcurl4-openssl-dev libopenblas-dev r-base -y | |
# create local library folder and update path | |
mkdir -p ~/R/x86_64-pc-linux-gnu-library/3.4 | |
echo ".libPaths("~/R/x86_64-pc-linux-gnu-library/3.4")" > ~/.Rprofile |
This file contains hidden or 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
#! /usr/bin/python | |
import smtplib | |
from optparse import OptionParser | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.mime.image import MIMEImage | |
from email.mime.application import MIMEApplication |