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.
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.
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.gitcd HACKCLUB
Windows PowerShell setup
python -m venv .venv.venv\Scripts\Activate.ps1python -m pip install --upgrade pippip install pytest fastapi uvicorn pydantic numpy pandas
scikit-learn matplotlib
Linux/macOS/bash setup
python3 -m venv .venvsource .venv/bin/activatepython -m pip install --upgrade pippip install pytest fastapi uvicorn pydantic numpy pandas
scikit-learn matplotlib
Open first
Start with:
COURSE/python_ai_modular/index.htmlStart with:
python_snippets/course_basics/variables_and_flow.py
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.gitcd JAVASCRIPT
Verify tools
node -vnpm -vgit --version
Install dependencies
npm install
Run first checks
npm run repo:smokenpm run repo:audit
Open first
plan.mdcourse/javascript-training/
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.