# curl -L https://github.com/docker/compose/releases/download/1.25.1-rc1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose
| # 1. Download and install go | |
| https://golang.org/doc/install | |
| # 2. Download and install VMware workstation player | |
| https://www.vmware.com/products/workstation-player.html | |
| # 3. Download and install vagrant | |
| https://www.vagrantup.com/downloads | |
| # 4. Download vagrant vmware utility |
| #!/bin/bash | |
| #install java | |
| sudo apt install openjdk-13-jdk | |
| sudo apt install openjdk-8-jdk | |
| sudo apt install openjdk-11-jdk | |
| sudo update-alternatives --config java | |
| #install docker | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu disco stable test" |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| "{{{ => General | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| "Necessary for cool features of vim | |
| set nocompatible | |
| " Enable syntax highlighting | |
| syntax enable | |
| " Mouse support only in normal mode |
# curl -L https://github.com/docker/compose/releases/download/1.25.1-rc1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
# chmod +x /usr/local/bin/docker-compose
| #!/bin/bash | |
| #install package | |
| sudo apt install network-manager-openvpn | |
| sudo apt install network-manager-vpnc | |
| sudo apt install network-manager-openconnect | |
| # reloads all new or changed systemctl units | |
| sudo systemctl daemon-reload |
sysctl -w fs.file-max=12000500
sysctl -w fs.nr_open=20000500
# Set the maximum number of open file descriptors
ulimit -n 20000000
# Set the memory size for TCP with minimum, default and maximum thresholds
sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000'Download
http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html
http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html
http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html
http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html
http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html
| #!/bin/bash | |
| yum -y install epel-release wget | |
| wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
| rpm -Uvh rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm | |
| wget http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt | |
| rpm --import RPM-GPG-KEY.dag.txt |
| # Need to be sudo to install the following | |
| yum update | |
| yum install -y wget bzip2 tmux | |
| # Download and run anaconda3 for python3 and follow instructions | |
| wget https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh | sh | |
| # Conda install essential datascience packages | |
| conda update --all | |
| conda install pandas numpy scipy scikit-learn keras tensorflow pytorch nltk matplotlib seaborn |