Julia

Discovered and installed the programming language Julia. It’s been around for a few years but just attained version 1.0 status less than a month ago. Also wrote my 1st simple program to get a feel for the language.

Docker

Created my 1st docker container running a small python program I wrote called slice.py. The dockerfile…contained… FROM python:2.7 RUN mkdir /root/pythonlib/ COPY slice.py /root/pythonlib/myapp.py CMD [“python”, “/root/pythonlib/myapp.py”] The container is created from the above by… docker build -t bill-py . It is the run like so… docker run bill-py