workshop

Today we'll learn essential tools for software development.

What You'll Learn

Slides

Positive : Hint: The keyboard shortcut is Ctrl + Shift + I on Windows or Command + Option + I on MacOS

position

darkmode

inspect

console

Using CLI only to

Challenge 1 : create a directory named coderschool

Challenge 2 : create info.txt and README.md in coderschool/ directory

Challenge 3 : in info.text add

My name is : <yourname>
My age is : <yourage>
My education : <your education>

Challenge 4 : Initialize git version track for coderschool/ directory

Hint: Make sure which directory you are CURRENTLY at before git init

Challenge 5 : File system and Git

Requirement :

Example

coderschool/
-| info.txt
-| README.md
-| course_content/
--| week1/
---| index.html
---| style.css
--| week2/
---| script.js

Create a new public repo on Github, call it cs_ftw_notes. You will use this repo to store your notes during the course

new-repo

Follow the intrucstion on github to connect remote github and your local git repository gitremote

Positive : Hint: Use the Git commands add, commit and push in this order.

clone

git clone <url> .

The result is you will have 2 different repos Positive : Hint: Use the Git commands add, commit and push in this order.

Positive : Hint: Use this command git pull origin master