Using rclone with google drive

This page describes how to use rclone to backup to Google Drive using a service account. Access to the Google Drive target folders to/from which data is copied is controlled from Google Drive web UI, similar to when setting up access to normal Google or G Suite user accounts.

docker logs

To check the logging configuration used by docker, we can use docker system info or docker info [1]: # docker system info --format '{{.LoggingDriver}}' json-file The installation default is the json-file logging driver[4], this means Docker captures stdout (and stderr) of the containers, and writes them in JSON files (can be found in /var/lib/docker/<container-id>/<container-id>-json.

Jupyter Resources for Kids

Numerical Computing is Fun Hacker News thread is here Teach kids Python by building an interactive game (opensource.com)

Running Jupyter Using Docker

The Jupyter Docker Stacks repository contains dockerfiles definitions, and the respective images are in Docker Hub. Docs here. Example: docker run --rm -p 18888:8888 \ -e JUPYTER_ENABLE_LAB=yes \ -v "/Users/guaguito/jupyter-work":/home/jovyan/work \ jupyter/tensorflow-notebook:7a0c7325e470 --rm: delete the container after it is used(stopped) -p 18888:8888:map the port of container to port 18888 of the local computer