professional-programming/training/web-dev/README.md

285 lines
12 KiB
Markdown
Raw Normal View History

2021-01-29 19:11:31 +01:00
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
## Table of Contents
- [Learning web development](#learning-web-development)
- [Goal of this training](#goal-of-this-training)
- [Principles](#principles)
2021-02-08 11:12:28 +01:00
- [Meta: learning about learning](#meta-learning-about-learning)
2021-01-29 19:11:31 +01:00
- [Roadmap](#roadmap)
2021-02-08 11:12:28 +01:00
- [Approach](#approach)
2021-01-29 19:11:31 +01:00
- [Pick a powerful text editor and learn its ins and outs](#pick-a-powerful-text-editor-and-learn-its-ins-and-outs)
2021-02-08 11:12:28 +01:00
- [Learn the ins and outs of one programming language](#learn-the-ins-and-outs-of-one-programming-language)
- [Topic-specific materials](#topic-specific-materials)
2021-01-29 19:11:31 +01:00
- [Best practices, attitude](#best-practices-attitude)
2021-02-08 11:29:44 +01:00
- [Code architecture and design patterns](#code-architecture-and-design-patterns)
2021-01-29 19:11:31 +01:00
- [DB and SQL](#db-and-sql)
- [Dev environment, command line and Linux](#dev-environment-command-line-and-linux)
2021-02-08 11:12:28 +01:00
- [Distributed systems and system architecture](#distributed-systems-and-system-architecture)
2021-01-29 19:11:31 +01:00
- [Network, protocols, HTTP](#network-protocols-http)
- [Project management](#project-management)
- [Security](#security)
- [Version control (git)](#version-control-git)
- [Other lists](#other-lists)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
<!--TOC-->
# Learning web development
## Goal of this training
This training provides an opinionated ramp-up program for web developers.
2021-02-08 11:12:28 +01:00
Prerequisites: not much, just general knowledge about computers and the Internet.
2021-01-29 19:11:31 +01:00
## Principles
2021-01-29 19:35:25 +01:00
- Focus on the main stuff. A lot of things are learnt on the job anyway.
- Programming is not only about raw technical knowledge,
2021-01-29 19:11:31 +01:00
it's also about best practices.
2021-01-29 19:35:25 +01:00
- Go wide and go deep.
2021-01-29 19:11:31 +01:00
- We learn by doing, so this training includes lots of exercises.
2021-01-29 19:35:25 +01:00
- A lot of videos are included, since they provide hands-on experiences. You
can find a LOT more videos here: [hellerve/programming-talks](https://github.com/hellerve/programming-talks) and [talks that changed the way I think about programming](http://www.opowell.com/post/talks-that-changed-the-way-i-think-about-programming/)
2021-01-29 19:11:31 +01:00
2021-02-08 11:12:28 +01:00
Note: this is just a short selection of stuff listed in
[charlax/professional-programming](https://github.com/charlax/professional-programming).
### Meta: learning about learning
Feel free to checkout some of the articles about [Learning and memorizing](https://github.com/charlax/professional-programming#learning--memorizing)
- Create a learning plan with your learning priorities
- Consider using flashcards (see Anki for instance)
- Enjoy the learning experience!
2021-01-29 19:11:31 +01:00
## Roadmap
1. Start with a programming language.
2021-02-08 11:12:28 +01:00
2. Do a first pass at the web development environment (see introductory resources below)
- HTTP and web architecture basics
- Git
2021-02-19 16:58:28 +01:00
- Docker and `docker-compose`
2021-02-08 11:12:28 +01:00
- Command line
- Text editor
2021-01-29 19:11:31 +01:00
3. Write a full-fledged exercise, get it reviewed.
2021-02-08 11:12:28 +01:00
4. Do the advanced topics
2021-01-29 19:11:31 +01:00
2021-02-08 11:12:28 +01:00
## Approach
2021-01-29 19:11:31 +01:00
### Pick a powerful text editor and learn its ins and outs
VSCode is a strong pick nowadays (I use and obviously prefer Vim :).
Make sure to spend a lot of time in your text editor, watch tutorials about
advanced features, install extensions, learn all the main keyboard shortcuts,
subscribe to mailing lists about it, etc.
2021-02-08 11:12:28 +01:00
You will spend most of your time within your text editor. Turn it into
a powerful ally!
2021-01-29 19:11:31 +01:00
2021-02-08 11:12:28 +01:00
### Learn the ins and outs of one programming language
2021-01-29 19:11:31 +01:00
A developer's main tool being the programming language, it is important to
achieve high proficiency in at least one of them.
2021-01-29 19:35:25 +01:00
I'd recommend starting with Python or TypeScript. For Python, you can have a look at my repo [charlax/python-education](https://github.com/charlax/python-education).
2021-01-29 19:11:31 +01:00
To ensure you have good command of the language, you should try out some of
those exercises:
- [Exercism](https://exercism.io/) (get free code reviews!)
2021-01-29 19:35:25 +01:00
- [Small Python exercises from charlax/python-education](https://github.com/charlax/python-education/tree/master/learning-python/exercises)
2021-01-29 19:11:31 +01:00
- [danistefanovic/build-your-own-x](https://github.com/danistefanovic/build-your-own-x) (for instance: build a [git in Python](https://wyag.thb.lt/))
- [Other list of exercises](https://github.com/charlax/python-education#exercises)
2021-01-29 19:35:25 +01:00
Watch some videos related to your language:
- 🎞 [Top 10 Must-Watch PyCon Talks](https://realpython.com/must-watch-pycon-talks/)
2021-01-29 19:11:31 +01:00
Learn how to handle:
- Regexes
2021-02-08 10:58:02 +01:00
- Do exercises, for instance [RegexOne](https://regexone.com/) or [HackerRank](https://www.hackerrank.com/domains/regex).
2021-01-29 19:11:31 +01:00
- Functional programming
- [Functional Programming Fundamentals](https://www.matthewgerstman.com/tech/functional-programming-fundamentals/)
2021-01-29 19:35:25 +01:00
- Design patterns
- E.g. in [Python](https://www.toptal.com/python/python-design-patterns)
- [faif/python-patterns](https://github.com/faif/python-patterns)
2021-02-11 15:18:37 +01:00
- 🎞 [Design Patterns in Plain English](https://www.youtube.com/watch?v=NU_1StN5Tkk&ab_channel=ProgrammingwithMosh)
2021-01-29 19:11:31 +01:00
- Tests
- [Why bother writing tests at all?](https://dave.cheney.net/2019/05/14/why-bother-writing-tests-at-all)
- Crazy things in languages
- 🎞 [Wat](https://www.destroyallsoftware.com/talks/wat)
If you have time, learn more programming languages, starting with some that are
*very* different from your main one:
- Haskell
- Clojure
- Kotlin
- Rust
- Assembly
2021-02-08 11:12:28 +01:00
## Topic-specific materials
2021-01-29 19:11:31 +01:00
#### Best practices, attitude
Read one of those:
- 📖 [The Pragmatic Programmer: From Journeyman to
Master](https://pragprog.com/titles/tpp20/): hands-on the most inspiring and useful book I've read about programming.
- 📖 [Code Complete: A Practical Handbook of Software
Construction](http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670): a nice addition to The Pragmatic Programmer, gives you the necessary framework to talk about code.
2021-02-08 11:12:28 +01:00
- [Ten Principles for Growth as an Engineer](https://medium.com/@daniel.heller/ten-principles-for-growth-69015e08c35b), Dan Heller
2021-01-29 19:11:31 +01:00
2021-02-08 10:58:02 +01:00
Read the resources listed under [Must-read articles](https://github.com/charlax/professional-programming#must-read-articles).
2021-01-29 19:11:31 +01:00
2021-02-08 11:29:44 +01:00
#### Code architecture and design patterns
Introduction:
- Learn about OOP basics: inheritance, abstract/concrete, public/private
- Learn about DDD (domain driven design), SOLID, MVC, Clean Architecture
- [An introduction to software design patterns](https://www.coengoedegebure.com/introduction-to-software-design-patterns/). All those patterns are not useful in all languages, but they're applied in most software, so it's important to know about them.
- Builder
- Factory
- Singleton
- Adapter
- Facade
- Chain of Responsibility
- Command
- Observer
- State
- Strategy
- Visitor
- 🎞 [Design Patterns in Plain English](https://www.youtube.com/watch?v=NU_1StN5Tkk&ab_channel=ProgrammingwithMosh)
Advanced:
- Wander in the [Software Architecture Guide](https://martinfowler.com/architecture/)
- 🎞 [On the Spectrum of Abstraction](https://www.youtube.com/watch?v=mVVNJKv9esE&ab_channel=ReactEurope)
- 🎞 [Simple Made Easy](https://www.infoq.com/presentations/Simple-Made-Easy/)
- 🎞 [Zebras All the Way Down](https://youtu.be/fE2KDzZaxvE), Bryan Cantrill
2021-01-29 19:11:31 +01:00
#### DB and SQL
2021-02-08 11:12:28 +01:00
Introduction:
2021-02-08 10:58:02 +01:00
- Learn basic and advanced SQL: joins, indexes, subqueries.
2021-01-29 19:11:31 +01:00
- Install Postgres and play with it.
- [Do those postgres exercises](https://pgexercises.com/)
2021-02-08 11:12:28 +01:00
Advanced:
2021-01-29 19:11:31 +01:00
- Learn about ORM
- 🎞 [Watch this Python introduction to ORMs](https://www.youtube.com/watch?v=P141KRbxVKc&ab_channel=PyCon2014) (with SQLAlchemy)
#### Dev environment, command line and Linux
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:11:31 +01:00
- [jlevy/the-art-of-command-line](https://github.com/jlevy/the-art-of-command-line): master the command line, in one page
2021-02-19 16:58:28 +01:00
- Check the missing semester:
- https://missing.csail.mit.edu/2020/course-shell/
- https://missing.csail.mit.edu/2020/shell-tools/
2021-01-29 19:11:31 +01:00
- [Linux Productivity Tools](https://www.usenix.org/sites/default/files/conference/protected-files/lisa19_maheshwari.pdf)
2021-02-08 10:58:02 +01:00
- Do shell exercises, for instance on [Exercism](https://exercism.io/tracks/bash), [TLDP](https://tldp.org/LDP/abs/html/exercises.html), [HackerRank](https://www.hackerrank.com/domains/shell).
2021-02-08 11:12:28 +01:00
- Learn about Docker, follow the [Official Docker Tutorial](https://docs.docker.com/get-started/)
2021-02-15 09:54:10 +01:00
- Learn about Makefile, follow the [Official introduction to
Makefiles](https://www.gnu.org/software/make/manual/html_node/Introduction.html).
2021-02-08 11:12:28 +01:00
Advanced:
2021-01-29 19:11:31 +01:00
- Install/use some of those tools: https://github.com/jondot/awesome-devenv
2021-02-08 10:58:02 +01:00
- Write your own dotfiles, taking inspiration from [Awesome Dotfiles](https://github.com/webpro/awesome-dotfiles) (you can
2021-01-29 19:11:31 +01:00
checkout mines: https://github.com/charlax/dotfiles)
2021-02-08 11:12:28 +01:00
- 🎞 [8 super heroic Linux commands that you probably aren't using](https://www.youtube.com/watch?v=Zuwa8zlfXSY&ab_channel=EngineerMan)
- 🎞 [Containers From Scratch](https://www.youtube.com/watch?v=8fi7uSYlOdc&ab_channel=GOTOConferences)
2021-01-29 19:11:31 +01:00
2021-02-08 11:12:28 +01:00
#### Distributed systems and system architecture
2021-01-29 19:35:25 +01:00
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:35:25 +01:00
2021-02-08 11:12:28 +01:00
- [donnemartin/system-design-primer](https://github.com/donnemartin/system-design-primer): learn how to design large-scale systems.
Advanced:
2021-01-29 19:11:31 +01:00
2021-02-08 10:58:02 +01:00
- Consider reading 📖 [Designing Data-Intensive Applications](https://dataintensive.net/).
2021-01-29 19:11:31 +01:00
- [The Log: What every software engineer should know about real-time data's unifying abstraction](https://engineering.linkedin.com/distributed-systems/log-what-every-software-engineer-should-know-about-real-time-datas-unifying)
2021-02-08 11:29:44 +01:00
- 🎞 [Mastering Chaos - A Netflix Guide to Microservices](https://www.youtube.com/watch?v=CZ3wIuvmHeM&ab_channel=InfoQ) (by Netflix)
2021-02-08 11:12:28 +01:00
Concepts to look into:
- CAP theorem
- Weak/strong/eventual consistency
- Fail-over/replication
- Load balancer: active-active, active-passive
- Horizontal vs vertical scaling
- Reverse proxy, load balancer
- DB: RDBMS vs. NoSQL, replication, sharding, master-master, denormalization
- Cache: client caching in browsers, CDN, HTTP headers, object cache, db cache
- Asynchronism: message queues, back pressure
- Monitoring and alerting best practices
2021-01-29 19:11:31 +01:00
#### Network, protocols, HTTP
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:11:31 +01:00
- [How Does the Internet Work?](https://web.stanford.edu/class/msande91si/www-spr04/readings/week1/InternetWhitepaper.htm)
- [vasanthk/how-web-works](https://github.com/vasanthk/how-web-works): what happens behind the scenes when we type www.google.com in a browser?
2021-02-08 11:12:28 +01:00
Advanced:
2021-01-29 19:11:31 +01:00
- Learn about the basics of TCP and UDP
2021-02-08 10:58:02 +01:00
- Learn the basics of the HTTP protocol: header, verb, status code, TLS, Rest APIs, etc.
- 🎞 [Qu'est ce que le HTTP ?](https://grafikart.fr/tutoriels/http-1062), Grafikart
- Learn about important web-related protocols: DNS, SMTP, SSH
2021-01-29 19:11:31 +01:00
#### Project management
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:11:31 +01:00
- [Efficient Software Project Management at its Roots](https://blog.pragmaticengineer.com/efficient-software-project-management-at-its-roots/)
- [How to Lead a Project - as a Software Engineer](https://blog.pragmaticengineer.com/how-to-lead-a-project-in-software-development/)
2021-02-08 11:12:28 +01:00
Advanced:
- [TechnicalDebt](https://martinfowler.com/bliki/TechnicalDebt.html)
- Checkout this section on [charlax/engineering-management](https://github.com/charlax/engineering-management#project-management)
2021-01-29 19:11:31 +01:00
#### Security
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:11:31 +01:00
- Learn about the OWASP Top 10
2021-02-08 11:12:28 +01:00
Advanced:
2021-02-08 10:58:02 +01:00
- Consider reading 📖 [Penetration Testing](https://nostarch.com/pentesting).
2021-01-29 19:11:31 +01:00
#### Version control (git)
2021-02-08 11:12:28 +01:00
Introduction:
2021-01-29 19:35:25 +01:00
- [Resources to learn Git](https://try.github.io/)
- 🎞 [Learn Git In 15 Minutes - YouTube](https://www.youtube.com/watch?v=USjZcfj8yxE&ab_channel=ColtSteele)
2021-02-08 10:58:02 +01:00
- 🎞 [Introduction to Git](https://www.youtube.com/watch?v=ZDR433b0HJY&ab_channel=InfoQ) with Scott Chacon of GitHub
2021-01-29 19:35:25 +01:00
2021-02-19 16:58:28 +01:00
Advanced topics:
- `git rebase`
- `git stash`
- `git revert`
- The dangers of `git push --force`
2021-01-29 19:11:31 +01:00
## Other lists
- [The Missing Semester of Your CS Education](https://missing.csail.mit.edu/) (MIT).
- [What every computer science major should know](http://matt.might.net/articles/what-cs-majors-should-know/)
- [Teach Yourself Computer Science](https://teachyourselfcs.com/)
2021-02-08 11:12:28 +01:00
- https://github.com/charlax/professional-programming
2022-05-09 13:41:22 +02:00
- [microsoft/Web-Dev-For-Beginners](https://github.com/microsoft/Web-Dev-For-Beginners): 24 Lessons, 12 Weeks, Get Started as a Web Developer