About
Welcome to WebDev 161 Paris
Hello Ironhacker’s!
Starting on the 16th January 2023, we’ll have 9 weeks to become full-stack web developers 😌.
Who’s the team?
Your instructional team includes:
- Florian Aube
- Haroun Boudour
- Ines Zallouz
Using this repository
This is a github repository full of notes, examples, and tools for Ironhack WebDev 161.
We’ll have the latest examples from class, as well as a description of the day’s main topics, and links to useful external resources.
Staying up-to-date
What is the first thing you should do?
The very first thing would be to make a clone of this repository (a clone is not a fork). To do so you can run
1
git clone https://github.com/Flow-Fly/webdev-161.git
You can get the latest changes of this repository by running while inside of the webdev-161 folder.
1
git pull
You can open this repository in Visual Studio Code by running
1
code .
from the command-line.
Where is the code seen during classes?
Go to _includes/code, you will have all of the code seen in class classified by weeks and days 😎.
In case of issues pulling latest changes
In case you need to clear any local changes you have made, you can run git stash, then perform the git pull, and finally restore your changes with git stash pop:
1
2
3
git stash
git pull
git stash pop
Script helpers
This repo comes with a script helper: students.sh. Run it and see. This is mainly intended for teaching team use.
Generating groups
Run ./students.sh groups 3 to generate groups of three.
Checking morning sunshines
Run ./students.sh sunshine to find out who is doing morning sunshine next!
Cloning lab repos
If you want a list of commands that can clone all the lab forks for every student, run ./students.sh lab <lab-repo-name>. E.g. ./students.sh lab lab-css-instagram-clone.
You can copy the printed commands and run them wherever you store cloned labs.
Viewing github profiles and projects
Try running these to open up students’ github profiles and repositories in your browser.
1
./students.sh github john
1
./students.sh project alice
View all the project URLs with
1
./students.sh list table