Demo 1: GitHub & VS Code Setup

01_github_vscode_setup_guide.md

Guide: 01_github_vscode_setup_guide.md (Live walkthrough, no script)

Key Steps:

  1. GitHub account creation

  2. Email privacy and GitHub Education

  3. VS Code setup

  4. Git configuration in VS Code

    git config --global user.name "Your Name"
    git config --global user.email "noreply@users..."
    
    

Check Understanding:

Demo 2: Command Line Navigation

02_cli_navigation_demo.sh

Script: 02_cli_navigation_demo.sh

Key Steps:

  1. Basic navigation commands

  2. Quick project creation

    ./02_cli_navigation_demo.sh
    
  3. File viewing

  4. Path problem demonstration

Demo 3: Python Basics with Debugging