A compilation of various articles/videos that I've found to be insightful, and interesting over the course of my computer science career
- https://stackoverflow.com/questions/745743/is-python-interpreted-like-javascript-or-php/749218#749218
- https://softwareengineering.stackexchange.com/questions/136993/interpreted-vs-compiled-a-useful-distinction#137001
- https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses/
- why we use hexadecimal
- Interface vs Abstract class vs mixin https://stackoverflow.com/a/15605119
- Inheritance vs Composition https://www.thoughtworks.com/insights/blog/composition-vs-inheritance-how-choose
- Class vs Instance attributes https://www.toptal.com/python/python-class-attributes-an-overly-thorough-guide
- GIL https://www.youtube.com/watch?v=Obt-vMVdM8s&list=PLlgnub_DBR_C6oTnvDO_LSUOpdmCfvHM2&index=7&t=0s
- Names, Values, Assignment, Mutability https://www.youtube.com/watch?v=_AEJHKGk9ns&list=PLlgnub_DBR_C6oTnvDO_LSUOpdmCfvHM2&index=5&t=1330s
- Is python call by value of call by reference https://jeffknupp.com/blog/2012/11/13/is-python-callbyvalue-or-callbyreference-neither/
- Public/Protected/Private in Python
- Physical vs Virtual Memory https://stackoverflow.com/a/48835605/4434664