- Collaboration
- Computer Science
- Courses
- Databases
- Editors
- Interviewing
- Computer Networking
- Cloud Computing & Infrastructure
- Containers
- DevOps
- Operating Systems
- Privacy
- Programming
- Software Engineering
- Version/Revision Control Systems (VCS/RCS)
- More Awesome
- thoughtbot/guides/code-review -- excellent for async communication in general
- google/eng-practices/review
- 15 Rules for Communicating at Github
- Kind Engineering
- An Introduction to Computer Networking
- The TCP/IP Guide
- What is DNS? | How DNS Works | Cloudflare
- What is SSL? | SSL Definition | Cloudflare
- What is the Network Layer? | Network vs. Internet Layer | Cloudflare
- facyber/awesome-networking
- nyquist/awesome-networking
- r/networking/wiki
- Enapiuz/awesome-monitoring
- awcodify/awesome-monitoring
- crazy-canux/awesome-monitoring
- Monitoring Distributed Systems
- Practical Alerting
- USE Method
- RED Method
- [Rob Ewaschuk's] Philosophy on Alerting
- Statistics for Engineers
- DORA Metrics
- Deployment Frequency: How often an organization successfully releases to production
- Lead Time for Changes: The amount of time it takes a commit to get into production
- Change Failure Rate: The percentage of deployments causing a failure in production
- Mean Time to Recovery/Restore (MTTR): How long it takes an organization to recover from a failure/outage in production; not to be confused with MTTRepair, MTTResolve, and MTTRespond
- Google SRE Books
- awesome-sre
- ArchLinux as my personal favorite distro
- Fedora for enterprise/work use, which is also the base distro for CentOS and Red Hat Enterprise Linux (RHEL)
- Gentoo
- Linux from Scratch for hardcore learning
- Slackware
- Bento Technology Education
- EbookFoundation/free-programming-books
- Runestone Academy Library of Books
- r/learnprogramming/wiki/books
- r/learnprogramming/wiki/faq
- r/learnprogramming/wiki/online
- r/learnprogramming/wiki
- Beginner's Guide to Python
- The Python Tutorial
- Practical Python Programming
- Automate the Boring Stuff with Python
- r/learnpython/wiki
- PEP 8 - Style Guide for Python Code
- PEP 20 - The Zen of Python
- The Hitchhiker's Guide to Python -- except I recommend Poetry over Pipenv
- The Little Book of Python Anti-Patterns
- Python Cookbook
- Obey the Testing Goat!
- Full Stack Python
- Design Patterns in Python
- Python Design Patterns
- Ultimate Python
- Django is the first web framework you should learn as it will teach you the Model-View-Controller (MVC) pattern and it comes batteries included so you can focus on getting things done and/or learning if you're a beginner
- Bottle.py is the second web framework to learn more about the internals of how they work -- it's contained in a single file
- FastAPI for those that want a more modern framework that they can customize to their needs