Generally, this repository is somewhat of a dumping ground of code I find useful. All of it is focused on Python.
Feel free to take what you'd like!
I am quite fond of Docker and Platforms as a Service in general (PaaS), I use Docker and Jupyter to get up and running quickly on local environments. I even wrote a blog post on it.
Here's a one liner to get you up and running with Jupyter on any computer with Docker installed.
docker run -it -p 8888:8888 --rm -e JUPYTER_ENABLE_LAB=yes -v ~/Github/Python/:/home/jovyan/work jupyter/datascience-notebook
Useful links: