EruditeWBT Course Project Paths
Next repositories

Finish the foundations, then move into a live repo and start shipping.

This page is the bridge from the intro course into the prepared project repos. The goal is simple: finish setup once, join the community, pick a direction, and start building in a real repo without guessing what to do first.

Before you jump

Make sure these are already true

Terminal confidence You can navigate folders and run commands without freezing.
Editor confidence You can open a project in VS Code and run code from the integrated terminal.
Git basics You can initialize a repo, make commits, and push or read repo history.
Path 1

HACKCLUB

Use HACKCLUB if you want Python-first AI practice, modular learning pages, runnable snippets, and experimentation across AI, web, and automation.

Clone and enter git clone https://github.com/eruditewbt/HACKCLUB.git
cd HACKCLUB
Windows PowerShell setup python -m venv .venv
.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
pip install pytest fastapi uvicorn pydantic numpy pandas scikit-learn matplotlib
Linux/macOS/bash setup python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install pytest fastapi uvicorn pydantic numpy pandas scikit-learn matplotlib
Open first COURSE/python_ai_modular/index.html
Start with: python_snippets/course_basics/variables_and_flow.py
Path 2

JAVASCRIPT

Use JAVASCRIPT if you want JavaScript systems training, Node.js workflow, collaborative project work, and stronger product-quality habits.

Clone and enter git clone https://github.com/eruditewbt/JAVASCRIPT.git
cd JAVASCRIPT
Verify tools node -v
npm -v
git --version
Install dependencies npm install
Run first checks npm run repo:smoke
npm run repo:audit
Open first plan.md
course/
javascript-training/
Community loop

Do this as soon as you enter a live repo

1. Join Discord Post your setup proof or your first blocker.
2. Subscribe on YouTube Follow the course and community direction there too.
3. Pick one small task Do not try to absorb the whole repo in one sitting.
4. Commit visible progress A small working commit is the right first win.