What is 2 + 2?
4
What is the opposite of Black?
White
What is the 2 * 3 * 6 * 1 * 10 * 34?
12240
What does HTML stand for?
HyperText Markup Language
What is CSS useful for?
Making a website look pretty
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
A programming language used on websites for interaction
What three problem does Git & Github solve?
It helps track changes and discuss them with others
What happens when you fork a repository?
You clone it
what happens when you clone a repostory?
you save it on your local machine
What is a Pull Request?
Request to approve the changes made or get feedback
What is the Git History log?
It lets you see into the past
What does it meant to "push" changes to Github?
You send the changes of your local repository to Github
what is Github?
A place for us to store and share our code.
What does it mean to "Commit your changes"?
Save your changes with history
What program do we use to write code at CodeYourFuture?
Visual Studio Code
What do you use "Commit Messages" for?
To explane what and why has been changed
Where can I look to find help with Git?
The Git Cheatsheet!