Day 007 - #100DaysOfCode
Update
Looking at reading Math for Programmers - Paul Orland and in particular to see if this is going to be a good starting point for my son GitHub squiggla to move from having finished his school exams (math and other) to learn some programming. First up, althought I am an ASDF
install all the things kind of guy I know that I don’t know much about the Python environment and maybe I stick to using Anaconda installed via Homebrew with
That said I do recall doing some Python programming with another beginner programmer and they were doing a Scrimba course on python if I recall? Maybe that might be a better starting point for him? Right that was with GitHub tigger-b and at one point we played around with a rock, paper, scissors game in python https://github.com/saramic/python-web-app.
Continuing with the installation
the brew install
seems to only download the installer? which I ran as such
at the end of that it had updated my .zshrc
file but not wanting conda
to run everytime I opted to NOT auto_activate_base
with
Starting a new shell I am initially in my ASDF “safe space” but I can activate a conda
environment (and create new ones I suppose) to get all the pre-installed goodies that Anaconda gives me, for example Jupyter Notebooks
And back to the book. It seems that it will use a Jupyter Notebook for chapter 2 and the code is available at https://github.com/orlandpm/math-for-programmers. Following the first simple example led me to use the author written drawing and vector libraries to draw a dinosaur outline on a graph. Not sure how useful this will be to my son learning to code.