Common Computer Science References
PDF version, for offline reading
see here
GitHub Action uses the following Python Linter:
pip3 install black
black --diff ./*.py
or
python3 -m black --diff ./*.py
GitHub Action uses the following C++ Linter:
pip3 install cpplint
cpplint ./*.cpp
Basic workflow for GitHub and Git on Cloud9
How to Fork a Repo
Python.org: https://www.python.org
Learn Python video series: https://www.youtube.com/playlist?list=PL98qAXLA6afuh50qD2MdAj3ofYjZR_Phn
Learn Python the Hard Way: https://learnpythonthehardway.org/python3/
Dive into Python 3 book: http://histo.ucsf.edu/BMS270/diveintopython3-r802.pdf
C++ Tutorial: http://www.cplusplus.com/doc/tutorial/