This file contains 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
sudo add-apt-repository ppa:webupd8team/java -y | |
sudo apt-get update | |
sudo apt-get install oracle-java8-set-default | |
sudo apt-get install g++ | |
export JAVA_HOME=/usr/lib/jvm/java-8-oracle >> ~/.bashrc | |
source ~/.bashrc |
This file contains 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/env bash | |
sudo apt-get update -y | |
sudo apt-get autoremove -y | |
sudo apt-get upgrade -y | |
sudo apt-get install python-pip -y | |
pip install -U pip | |
sudo apt-get install python-virtualenv -y | |
sudo apt-get install python-dev -y | |
sudo apt-get install libpq-dev -y | |
sudo apt-get install build-essential -y |
This file contains 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/env bash | |
sudo apt-get update -y | |
sudo apt-get autoremove -y | |
sudo apt-get upgrade -y | |
sudo apt-add-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer -y | |
wget http://apache.osuosl.org/zeppelin/zeppelin-0.7.3/zeppelin-0.7.3-bin-all.tgz | |
tar xvf zeppelin* | |
sudo apt-get install python-pip -y |
This file contains 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
sudo apt-add-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java8-installer -y | |
sudo apt-get install scala -y | |
sudo apt-get install git -y | |
sudo wget https://d3kbcqa49mib13.cloudfront.net/spark-2.2.0-bin-hadoop2.7.tgz | |
sudo tar xvfz spark* |
This file contains 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
sudo apt-get update -y | |
sudo apt-get autoremove -y | |
sudo apt-get upgrade -y | |
sudo apt-get install python-pip -y | |
sudo apt-get install python-virtualenv -y | |
sudo apt-get install python-dev -y | |
sudo apt-get install libpq-dev -y | |
sudo apt-get install build-essential -y | |
sudo apt-get install git -y | |
sudo apt-get install libpq-dev libxml2-dev libxslt1-dev libldap2-dev libsasl2-dev libffi-dev -y |
This file contains 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/env bash | |
sudo apt-get update -y | |
sudo apt-get autoremove -y | |
sudo apt-get upgrade -y | |
sudo apt-get install python-pip -y | |
sudo apt-get install python-virtualenv -y | |
sudo apt-get install python-dev -y | |
sudo apt-get install libpq-dev -y | |
sudo apt-get install build-essential -y | |
sudo apt-get install git -y |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
# config.vm.box_check_update = false |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
</head> | |
<body> |
This file contains 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
// Gruntfile.js | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
// get the configuration info from package.json ---------------------------- | |
// this way we can use things like name and version (pkg.name) | |
pkg: grunt.file.readJSON('package.json'), | |
// configure jshint to validate js files ----------------------------------- | |
jshint: { | |
options: { |
NewerOlder