This file contains hidden or 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
| import threading | |
| import functools | |
| from time import sleep | |
| completeness = { | |
| "a": False, | |
| "b": False, | |
| "c": False, | |
| "d": False, |
This file contains hidden or 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
| #!/bin/bash | |
| # I pulled notebook-6.4.3 from docker hub | |
| IMAGE="jupyter/datascience-notebook:latest" | |
| # Host IP to bind to. | |
| # Ideally, the IP belongs to an overlay network so | |
| # you don't have to set up HTTPS for encryption. | |
| IP="SOME_HOST_IP" |