Tomorrow (Apr. 1st) 6pm ET on Discord!
*Never used the terminal, and thought I was saying get
Learning to code is the current gold rush.
High Pay:
Happiest Career:
Ticketmaster Office
Tutorial Hill
Ali Abdaal: https://youtu.be/ukLnPbIffxE
https://intelalearning.wordpress.com
https://www.pearsoned.com/three-simple-research-based-ways-to-ace-a-test
Ali Abdaal: https://youtu.be/Z-zNHHpXoMM
!100Devs
Microsoft Azure you a real one
Command Line Interface vs. Graphical User Interface
(print working director) shows where you are
(make directory) create a folder
(change directory) move to a different folder
goes up a folder
go back to home folder
create a file
shows you all the files in a folder
shows you all the files in a folder with more info
shows you all the files in a folder including hidden
removes a file
removes a folder
removes everything even protected files - be careful!
clears what is currently being displayed
Opens file in VS Code
In VS Code:
view -> Command Palette ->
Shell Command: Install 'code' command in PATH
(for today)
(rest of program - will walk through during office hours)
(save points)
A really fancy way of tracking changes
This has a deeper meaning, but similar to save points
Just the term for creating that save point
No more file -> save as -> folder132
(for today)
(rest of program - will walk through during office hours)
Install Homebrew:
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
$ brew install git
Debian / Ubuntu
$ sudo apt-get update
$ sudo apt-get install git
Setup User Name and Email
$ git config --global user.name "Leon Noel"
$ git config --global user.email "leon@leonnoel.com"
*If you get stuck, office hours! (Saturday - 12pm EST)
Creates a special folder to hold all of your snapshots (commits)
Adds file to staging area (not yet in that special folder)
Adds all html files to staging area (not yet in that special folder)
Adds everything to staging area (not yet in that special folder)
Shows everything in staging area (not yet in that special folder)
Removes index.html from staging area
Adds everything in staging to the special folder as a snapshot
If you get stuck in vim:
i -> then type your message -> escape -> type :wq -> enter
Adds everything in staging to the special folder as a snapshot
Changes name of staging area to main
Find out if you are on main first
Creates a new branch for you to make changes on without affecting the rest of your code!
Moves you to new branch where you can make changes without affecting the rest of your code!
git add .
git commit -m "changes made"
Moves you back to main branch
Adds changes from other branch to main