Welcome! This repository is where you will submit your assignments for the Coding Club Web Development Bootcamp. Build consistently. Learn deeply. Improve every time.
Follow this exactly:
YourName_USN/
│
├── Assignment_1/
│ └── (files)
│
├── Assignment_2/
│ └── (files)
│
└── ...
-
Format:
FullName_USN -
Example:
Vidisha_Dewan_1RV24IS146
For each assignment:
-
Create a new folder:
Assignment_X -
Include all required files
-
Ensure your project:
- Runs without errors
- Is neatly organized
- Uses meaningful file names
(Optional but recommended)
-
Add a
README.mdexplaining:- What you built
- How to run it
👉 https://github.com/Vidisha231106/CC-Web-Dev-Bootcamp-Submissions.git Click Fork
git clone https://github.com/<your-username>/CC-Web-Dev-Bootcamp-Submissions.git
cd CC-Web-Dev-Bootcamp-Submissions
mkdir YourName_USN
YourName_USN/Assignment_X/
git add .
git commit -m "Assignment_X - YourName"
git push origin main
- Go to your fork on GitHub
- Click Compare & Pull Request
- Submit the PR
Before every new assignment, sync your repo:
git remote add upstream https://github.com/Vidisha231106/CC-Web-Dev-Bootcamp-Submissions.git
git pull upstream main
git push origin main
- ❌ Do NOT touch other students' folders
- ❌ Do NOT rename/delete existing content
- ❌ Do NOT push directly to main repo
- ✅ Always submit via PR
- ✅ Follow structure strictly
- Start early — rushed work shows
- If something breaks, debug it (that’s where real learning happens)
- Don’t just copy — understand what you write