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?
It is used to design webpages and more.
Using CSS, how would I select every <h1> tag on the page?
h1 {
}What is JavaScript?
A programming language that builds web-based applications. It makes the website work.
What three problem does Git & Github solve?
When people want to show off code to each other they can put it on Github
What happens when you fork a repository?
You make a copy for yourself to work on. That will not effect the original repository.
What happens when you clone a repostory?
You copy it to your local machine.
What is a Pull Request?
A request to make changes to the main branch by showing what you have done with your copy. The person who owns the main bracnh can view your proposed changes.
What is the Git History log?
It lets you see your repository's hisotry.
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"?
Send you code to Github
What program do we use to write code at CodeYourFuture?
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!