- What is the problem? Provide formal and informal definitions.
- Why does the problem need to be solved? Motivation, benefits, how it will be used.
- How would I solve the problem? Describe how the problem would be solved manually to flush domain knowledge.
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
from jupyter_core.paths import jupyter_data_dir | |
import subprocess | |
import os | |
import errno | |
import stat | |
c = get_config() | |
c.NotebookApp.ip = '*' | |
c.NotebookApp.port = 8888 | |
c.NotebookApp.open_browser = 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
# based in large part from https://raw.githubusercontent.com/khwilson/nvidia-docker-aws/master/nvidia.sh | |
#!/bin/bash | |
set -x | |
set -e | |
# Update and upgrade | |
echo "--" | |
echo "-- Running ubuntu updates and Ugrade" |
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
worker_processes auto; | |
error_log /dev/stdout debug; | |
events { | |
worker_connections 2048; | |
} | |
http { | |
upstream flaskserver { | |
ip_hash; |
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
# Jupyter Notebook Python, Spark, Mesos Stack | |
## What it Gives You | |
* Jupyter Notebook 4.2.x | |
* Conda Python 3.x and Python 2.7.x environments | |
* pyspark, pandas, matplotlib, scipy, seaborn, scikit-learn pre-installed | |
* Spark 1.6.0 for use in local mode or to connect to a cluster of Spark workers | |
* Mesos client 0.22 binary that can communicate with a Mesos master |
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
# Configuration file for Jupyter Hub | |
c = get_config() | |
import os | |
import sys | |
sys.path.insert(0, '/srv/jupyterhub_config') | |
# Base configuration | |
c.JupyterHub.log_level = "INFO" | |
c.JupyterHub.db_url = "postgresql://{}:{}@{}:{}/{}".format( |