With Python installed locally and VSCode Python extension, you can run the solutions inside VSCode.
I'm running Python 3.11.
- Day One
- Day Two
- alt approach
- Day Three
- alt approach
- Day Four
- alt approach
- Day Five
- Day Six
- Day Seven
- alt approach
- Day Eight
- alt approach
- Day Nine
- Day Ten
- alt approach
- Day Eleven
- Day Twelve
- Day Thirteen
- Day Fourteen ...
- Day Twenty-One
- part one (let's take wins where we can)
Working through some 2021 puzzles to shake the dust off my python.
- Day One
- Day Two
- Day Three
- Day Four
- https://docs.python.org/3.10/
- https://code.visualstudio.com/docs/python/python-tutorial
- https://docs.python-guide.org/writing/structure/
- https://realpython.com/documenting-python-code/#docstring-types
Before I realized VS Code could run solutions, I was running them in a VM.
$ cd <folder-with-Vagrantfile>
$ vagrant up # run VM
$ vagrant ssh # enter VM
vagrant:~$ exit # exit VM
$ vagrant halt # shut down VM
$ vagrant box update # update box
vagrant:~$ do-release-upgrade # update the OS
vagrant:~$ sudo apt-get update # update apt-get
- https://medium.com/@botdotcom/installing-virtualbox-and-vagrant-on-windows-10-2e5cbc6bd6ad
- os: ubuntu/focal64
- https://developer.hashicorp.com/vagrant/tutorials/getting-started/getting-started-project-setup
- vim commands: https://vim.rtorr.com/
- https://realpython.com/vim-and-python-a-match-made-in-heaven/