EFFECTIVE/AT LIFE Skip to Module 3
← AI for Friends
02 OPTIONAL WARM-UP

Setting Up Your Computer

A practice room for anyone who's never opened a terminal or a code editor. Nothing here is a prerequisite for Module 3 — if a terminal and VS Code already feel familiar, skip straight there. Two further optional lessons cover creating an AWS account and deploying a real site, for anyone who wants to go further.

~85 min 5 lessons Windows & Mac HR · Industrial Engineering · Legal · Marketing
This Entire Module Is Optional

Module 3 covers everything you need, including the terminal, and doesn't depend on anything here. If you're comfortable jumping straight into Module 3's install walkthrough, skip this module entirely.

Lessons in this module

Key Concepts

Core terms introduced across this module's five lessons. The lesson where each term is first used is listed so you can return to the source explanation.

TermDefined InPlain English Meaning
TerminalLesson 2.1A window where you type text commands to your computer instead of clicking.
PowerShellLesson 2.1Windows' command language, used throughout this module's Windows steps. The "PS" in the prompt means PowerShell. (Mac's built-in Terminal uses zsh instead — no separate install needed.)
Default ProfileLesson 2.1The shell a terminal opens by default. On Windows, this module sets it to PowerShell.
VS CodeLesson 2.2Visual Studio Code, the free Microsoft text editor this course uses to view and edit files.
ExtensionLesson 2.2An add-on that gives VS Code new abilities. Module 3 tells you which ones to install.
pwdLesson 2.3Print working directory. Shows which folder you are currently in.
cdLesson 2.3Change directory. Moves you into a folder, or up one level with cd ...
AWSLesson 2.4Amazon Web Services — the cloud platform this module uses to host a real website, with a free tier for small static sites.
S3 BucketLesson 2.5A storage container in AWS. This module uploads your site's files into one and configures it to serve them as a website.
CloudFrontLesson 2.5AWS's content delivery network — wraps your S3 site with HTTPS and serves it fast worldwide. Optional.
Full Key Concepts reference
Microsoft StoreLesson 2.1The official Windows app store. The safe place to install Windows Terminal. (No Mac equivalent needed — Terminal.app is pre-installed.)
Windows TerminalLesson 2.1A standalone terminal app you open on its own, separate from any editor. Windows-only.
Integrated TerminalLesson 2.1The terminal built into VS Code, opened with Ctrl + backtick (same shortcut on Mac). Module 3's default, on both platforms.
PromptLesson 2.1The text where you type, e.g. PS C:\Users\YourName> on Windows or yourname@Mac ~ % on Mac. It waits until you press Enter.
Extensions ShortcutLesson 2.2Ctrl + Shift + X on Windows, Cmd + Shift + X on Mac — opens the Extensions panel in VS Code.
lsLesson 2.3List. Shows all files and folders in your current location. Identical on Windows (Git Bash/PowerShell) and Mac Terminal.
mkdirLesson 2.3Make directory. Creates a new folder where you currently are. Identical on Windows and Mac.
Home FolderLesson 2.3Your personal top-level folder, reached with cd ~ on both platforms — C:\Users\YourName on Windows, /Users/yourname on Mac.
Free TierLesson 2.4AWS's 12-month allowance of free usage for new accounts — enough to host a basic static site at no cost.
Root UserLesson 2.4The main AWS account identity created at signup, with full control over billing and resources. Keep its password safe.
Static Website HostingLesson 2.5An S3 bucket setting that serves its files directly as a website instead of just storing them.
Bucket PolicyLesson 2.5A JSON permissions document attached to an S3 bucket, telling AWS who is allowed to read or write its files.
Route 53Lesson 2.5AWS's domain name system (DNS) service — connects a domain you already own to your S3 site. Optional.
ACMLesson 2.5AWS Certificate Manager — issues the free HTTPS certificate CloudFront needs for a custom domain. Optional.
IAMLesson 2.5Identity and Access Management — where you create a scoped-down user for automated deployments, instead of using your root account.

Support Resources

ResourceLinkPurpose
Claudeclaude.aiSign up and use Claude in your browser
Claude Docsdocs.claude.com/docsOfficial documentation
Claude Supportsupport.claude.comHelp center and account support

Up next

Module 3: Claude Code — AI on Your Own Files

View Module 3