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?
Hyper-Text Markup Language
What is CSS useful for?
Making a website look better
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
JavaScript is a dynamic computer programming language
What three problem does Git & Github solve?
Helps us share information
Allows us to save and keep track of progress on our work and projects
You're able to view your older versions of your code without having to create different save files
What happens when you fork a repository?
You're copying a repository from someone, to your repository lists in Github
What happens when you clone a repository?
It downloads an entire repository to your local computer
What is a Pull Request?
When you tell the original creator or group that you made changes to their repository
What is the Git History log?
It lets you see the history of commits that you made within your repository
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"?
Sending you're changes to your code to your local repository before pushing it to Github
What program do we use to write code at CodeYourFuture?
Microsoft Visual Studio Code
What do you use "Commit Messages" for?
To record what changes you made to the code
Where can I look to find help with Git?
The Git Cheatsheet!