Recommend items to member based on previous clicks/transactions, on-boarding info, third party data (Facebook).
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
- name: Install tensorflow dependancies | |
hosts: local | |
sudo: True | |
tasks: | |
- name: Install JAVA 1.8 | |
yum: name=java-1.8.0-openjdk-devel | |
- name: Install build esentials | |
yum: name="{{ item }}" | |
with_items: |
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 su | |
# Java | |
yum -y install java-1.8.0-openjdk-devel | |
# Build Esentials (minimal) | |
yum -y install gcc gcc-c++ kernel-devel make automake autoconf swig git unzip libtool binutils | |
# Extra Packages for Enterprise Linux (EPEL) (for pip, zeromq3) | |
yum -y install epel-release |
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
apply plugin: AddEnsimePlugin | |
class AddEnsimePlugin implements Plugin<Gradle> { | |
def supportedPlugins = [ | |
'org.gradle.api.plugins.JavaPlugin', | |
'org.gradle.api.plugins.ScalaPlugin', | |
'jp.leafytree.gradle.AndroidScalaPlugin' | |
] | |
void apply(Gradle gradle) { |
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
CLASSPATH -> /home/jjarutis/spark-notebook | |
/etc/hive/conf.dist | |
/etc/hadoop/conf.empty | |
/etc/hbase/conf | |
/home/jjarutis/spark-notebook/lib/nooostab.spark-notebook-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar | |
/home/jjarutis/spark-notebook/lib/tachyon.tachyon-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar | |
/home/jjarutis/spark-notebook/lib/subprocess.subprocess-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar | |
/home/jjarutis/spark-notebook/lib/observable.observable-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar | |
/home/jjarutis/spark-notebook/lib/common.common-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar | |
/home/jjarutis/spark-notebook/lib/spark.spark-0.6.2-SNAPSHOT-scala-2.10.4-spark-1.5.2-rc1-hadoop-2.6.0-cdh5.4.8-with-hive-with-parquet.jar |
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
# install general deps | |
sudo yum groupinstall "Development Tools" | |
sudo yum install wget unzip | |
# install java | |
cd /opt/ | |
sudo wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jdk-8u60-linux-x64.tar.gz" | |
sudo tar xzf jdk-8u60-linux-x64.tar.gz | |
cd /opt/jdk1.8.0_60/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
(setq-default dotspacemacs-configuration-layers | |
'(org | |
ess | |
osx | |
git | |
smex | |
ruby | |
python | |
scala | |
(clojure :variables |
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
## install Catalyst proprietary | |
sudo ntfsfix /dev/sda2 | |
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK | |
sudo apt-get remove --purge fglrx* | |
sudo apt-get install linux-headers-generic | |
sudo apt-get install fglrx xvba-va-driver libva-glx1 libva-egl1 vainfo | |
sudo amdconfig --initial | |
## install build essentials | |
sudo apt-get install cmake |