What is 2 + 2?
4
What is the opposite of Black?
White
What is the 2 * 3 * 6 * 1 * 10 * 34?
12,240
What does HTML stand for?
HyperText Markup Language
What is CSS useful for?
Describing the presentation of Web pages, including colors,layout and fonts
Using CSS, how would I select every <h1> tag on the page?
h1 {
}
What is JavaScript?
is the programming language for the Web
What three problem does Git & Github solve?
1.Helps us to share information. 2.Allows us to track how information has changed between each checkpoint, and go back to older versions of our work if we want to see what we tried before, or to undo changes. 3.Enables us to try more things, because if they didn't work out, we can always go back to what we had working before, by going back to a checkpoint.
What happens when you fork a repository?
Allow us to make changes in a repository's copy.
What happens when you clone a repostory?
Have a repository copy downloaded into my local computer.
What is a Pull Request?
Request a change into the owner code
What is the Git History log?
Creates a list of every change of your commits that has been made in the repository
What does it meant to "push" changes to Github?
When people send their changes to a fork in GitHub
What is Github?
Is a online software platform for storing,tracking and collaborating on software projects
What does it mean to "Commit your changes"?
Every change you have made you should commit to keep history
What program do we use to write code at CodeYourFuture?
Visual Studio
What do you use "Commit Messages" for?
You try to give a clear,helpful messages, describing what changed, and why.
Where can I look to find help with Git?
The Git Cheatsheet!