8.0 KiB
Table of Contents
- Learning web development
Learning web development
Goal of this training
This training provides an opinionated ramp-up program for web developers.
Prerequisites
Not much, just general knowledge about computer and the Internet.
Principles
- Focus on the main stuff. A lot of things have to be learnt on the job anyway.
- For aspiring professionals. Programming is not only about raw knowledge, it's also about best practices.
- Go wide.
- We learn by doing, so this training includes lots of exercises.
- A lot of videos are included, since they provide hands-on experiences.
Roadmap
- Start with a programming language.
- Do a first pass at the web development components: DB, HTTP API, etc.
- Write a full-fledged exercise, get it reviewed.
- Go deeper in the topics above.
Meta: learning about learning
Feel free to checkout some of the articles about Learning and memorizing
Topics
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.
You will spend most of your time within your text editor. Turn it into your ally!
Learn the ins and outs of a programming language
A developer's main tool being the programming language, it is important to achieve high proficiency in at least one of them.
I'd recommend starting with Python or TypeScript.
For Python, you can have a look at my repo charlax/python-education.
To ensure you have good command of the language, you should try out some of those exercises:
- Exercism (get free code reviews!)
- Small Python exercises
- danistefanovic/build-your-own-x (for instance: build a git in Python)
- Other list of exercises
Learn how to handle:
- Regexes
- Do exercises
- Functional programming
- Design in patterns
- E.g. in Python)
- Tests
- Crazy things in languages
- 🎞 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
Learn the topics of web development
Note: this is just a short selection of stuff listed in charlax/professional-programming.
Start your career the right way with this article: Ten Principles for Growth as an Engineer
Architecture
- Learn about DDD (domain driven design)
- Wander in the Software Architecture Guide
- 🎞 On the Spectrum of Abstraction
- 🎞 Simple Made Easy
Best practices, attitude
Read one of those:
- 📖 The Pragmatic Programmer: From Journeyman to Master: hands-on the most inspiring and useful book I've read about programming.
- 📖 Code Complete: A Practical Handbook of Software Construction: a nice addition to The Pragmatic Programmer, gives you the necessary framework to talk about code.
Read of the resources listed under Must-read articles.
DB and SQL
- Learn basic and advanced SQL: joins, indexes, subqueries
- Install Postgres and play with it.
- Do those postgres exercises
- Learn about ORM
- 🎞 Watch this Python introduction to ORMs (with SQLAlchemy)
Dev environment, command line and Linux
- jlevy/the-art-of-command-line: master the command line, in one page
- Linux Productivity Tools
- Do shell exercises
- Install/use some of those tools: https://github.com/jondot/awesome-devenv
- Write your own dotfiles: https://github.com/webpro/awesome-dotfiles (you checkout mines: https://github.com/charlax/dotfiles)
- Learn about Docker
Distributed systems
- DDIA
- The Log: What every software engineer should know about real-time data's unifying abstraction
- donnemartin/system-design-primer: learn how to design large-scale systems.
Network, protocols, HTTP
- How Does the Internet Work?
- vasanthk/how-web-works: what happens behind the scenes when we type www.google.com in a browser?
- Learn about the basics of TCP and UDP
- Learn the basics of the HTTP protocol: header, verb, status code, TLS, etc.
Project management
- Efficient Software Project Management at its Roots
- How to Lead a Project - as a Software Engineer
- TechnicalDebt
Checkout this section on charlax/engineering-management
Security
- Learn about the OWASP Top 10