F0 — Orientation: How to Learn This
Track 1: Foundations · Your starting line
Before any code: how to learn without quitting, and how to set up your machine. Get this right and everything after is just practice.
🧭 The one mindset that matters
Confusion is the job, not a sign you're failing. Every professional developer is confused multiple times a day — they've just gotten comfortable being confused and working through it. You will not "get it" instantly. Nobody does. The people who make it are simply the ones who kept going while confused.
And here's the secret the pros won't gatekeep: developers Google constantly. Looking things up isn't cheating — it is the skill.
🛠️ Set up your machine (30 minutes)
- A code editor: install VS Code (free). This is where you'll write code.
- A modern browser: Chrome or Firefox, with their built-in DevTools (you'll meet these soon).
- A folder for your work: one place where your projects live.
- Optional but great: a free GitHub account (you'll use it in F4).
👋 Your first "Hello, World"
- In VS Code, create a file called
index.html. - Type:
<h1>Hello, World — I'm learning to build it right.</h1> - Open that file in your browser.
That's it. You just wrote code and a computer did what you said. That feeling — I made the machine do a thing — is the whole job. Chase it.
🛠️ Your mission
Get VS Code installed, create your projects folder, and get your "Hello, World" showing in a browser. Post a screenshot in the comments — first step, officially taken.
✅ You're done when…
- VS Code is installed and you can create/save a file
- You have a dedicated folder for your projects
- "Hello, World" displays in your browser
➡️ Next: F1 — How the Web & Computers Actually Work. Build It Right, Or Don't Build It At All. 🏛️