is the course environment in your browser.
It's not a way for not doing your homework ;)
You can:
ALT+ENTER
Go to the basic python course
In [ ]:
# You can evaluate maths and strings
s = 1
print("a string and the number " + str(s))
s = s + 1
print("now s is increased " + str(s))
Docker is a lightweight container environment. Jupyter and all other "machines" are based on docker.
Some examples via a local terminal
Go to your docker-101course
In [ ]:
In [ ]:
Create and ssh
into your docker droplet.
# vim /etc/systemd/system/multi-user.target.wants/docker.service
[Service]
...
ExecStart=/usr/bin/dockerd -H fd:// -H tcp://172.17.0.1:2375
...
#wq!
systemctl daemon-reload
systemctl restart docker
git clone https://github.com/ioggstream/python-course.git
cd python-course/ansible-101
make course
firefox http://43.32.54.212:8888/tree/notebooks/?token=....