πŸ–₯️ Getting Started with VSCodium

Session 2, Topic 1 | Your Free Code Editor for Building Tools

⏱️ 30 minutes

Welcome to Your Digital Workspace!

VSCodium is a free, open-source code editor that makes creating HTML tools easy. Think of it as Microsoft Word for building websites and tools. It's completely free, works on all computers, and doesn't require any coding experience to get started.

🎯 Learning Objectives

  • Download and install VSCodium on your computer
  • Understand the basic interface and panels
  • Create your first project folder structure
  • Learn essential keyboard shortcuts
  • Save and preview your first HTML file

πŸ€” Why VSCodium? (Not Just Notepad)

✨

Free & Open

100% free forever, no subscriptions or trials

🎨

Color Coding

Automatically highlights HTML, CSS, JavaScript

πŸ’‘

Smart Suggestions

Autocomplete saves time and prevents errors

πŸ“

Project Manager

Organize all your tools in one workspace

πŸ”

Find & Replace

Search across all files instantly

πŸ”

Privacy First

No telemetry or data collection

πŸ“₯ Download VSCodium

Choose the version for your operating system:

πŸͺŸ Windows Installer 🍎 macOS Installer 🐧 Linux Package

Click the link, scroll down to "Assets", and download the installer for your system

πŸš€ Installation Walkthrough

Download the Installer

  • Visit vscodium.com
  • Click "Download" and select your operating system
  • Wait for the download to complete (about 100MB)

Run the Installer

  • Open your Downloads folder
  • Double-click the VSCodium installer file
  • Windows: Accept the license agreement
  • Important: Check "Add to PATH" during installation
  • Click "Next" through remaining prompts
  • Click "Install" and wait 1-2 minutes

Launch VSCodium

  • Click "Finish" to launch automatically
  • Or find VSCodium in your Applications folder (Mac) or Start Menu (Windows)
  • Pin it to your taskbar/dock for easy access!

πŸ—ΊοΈ Understanding the VSCodium Interface

When you first open VSCodium, you'll see several panels. Here's what each one does:

πŸ“Έ VSCodium Interface Tour

Left: Explorer | Center: Editor | Bottom: Terminal

Key Interface Elements:

πŸ“ Create Your First Workspace

Open a Folder

  1. Click "File" β†’ "Open Folder" (or Ctrl+K Ctrl+O)
  2. Navigate to your Desktop
  3. Click "New Folder" button
  4. Name it CoordinatorTools
  5. Click "Select Folder"

Create Your Project Structure

  1. In the Explorer panel (left side), hover over your folder name
  2. Click the "New Folder" icon (πŸ“+)
  3. Name it dashboard and press Enter
  4. Right-click on the dashboard folder
  5. Select "New File"
  6. Name it index.html and press Enter

Write Your First HTML

Click in the editor area and type:

<!DOCTYPE html> <html> <head> <title>My Dashboard</title> </head> <body> <h1>Hello, Coordinator Tools!</h1> <p>This is my first HTML page.</p> </body> </html>

Save Your Work

  • Press Ctrl+S (or Cmd+S on Mac)
  • Notice the dot on the file tab disappears (means it's saved)

Preview in Browser

  1. Right-click on index.html in Explorer
  2. Select "Reveal in File Explorer" (Windows) or "Reveal in Finder" (Mac)
  3. Double-click index.html to open in your browser
  4. πŸŽ‰ You should see your page!

Your Folder Structure Should Look Like:

πŸ“ CoordinatorTools/ πŸ“ dashboard/ πŸ“„ index.html

⌨️ Essential Keyboard Shortcuts

Memorize these to work faster:

  • Ctrl+S - Save file
  • Ctrl+Z - Undo
  • Ctrl+F - Find text
  • Ctrl+C / Ctrl+V - Copy/Paste
  • Ctrl+/ - Comment/Uncomment line
  • Alt+↑/↓ - Move line up/down
  • Ctrl+D - Select next occurrence

Mac users: Replace Ctrl with Cmd

πŸ› οΈ Recommended Settings

Auto Save

  1. Click "File" β†’ "Preferences" β†’ "Settings"
  2. Search for "auto save"
  3. Change from "off" to "afterDelay"
  4. Now your files save automatically!

Word Wrap

  1. In Settings, search for "word wrap"
  2. Change to "on"
  3. Long lines will wrap instead of scrolling horizontally
⚠️ Common Beginner Mistakes:
  • Forgetting to save before refreshing browser
  • Opening individual files instead of the folder
  • Not using the correct file extension (.html)
  • Creating files outside your project folder

βœ… Topic Completion Checklist

πŸš€ What's Next?

Now that you have VSCodium set up, you're ready to build your first real tool: a Program Coordinator Portal with all your daily links and tools in one place!

Next Topic: Build Your Program Coordinator Portal β†’