- How to Verify that you have an application
- How to install an Editor
- Purpose of MarkDown
- MarkDown Examples; Italicing, Bolding, Listing
- Embedding Code Into MarkDown Notes
- Embedding hyperlinks into MarkDown Notes
- Embedding images into MarkDown Notes
- How to
pushnotes toGitHub
- To verify that you have an application hold
Commandand pressSpaceto unveil the Spotlight search and type the name of the application into the the search bar
- To install the
visual-studio-codeeditor, execute the command below from the terminal
brew install --cask visual-studio-code
- The purpose of MarkDown is to have shorthand way of writing HTML
- Leon advocates for MarkDown particularly for new programmers to take notes in
- Using MarkDown and Github in this course will enable a sort of hive mind; Everyone will know what everyone knows.
- To italicize a phrase, or some text, wrap the text in underscores _.
- To bold a phrase, or some text, wrap the text in double asterisks **.
- To create a List, begin each line with a single asterisk *.
- This is another item in the list
- This is the third item in the list
- You can create sublists by appending a tab before an asterisk within a list.
- This is a sublist item
- This is another sublist item
- And this is a third sublist item
- To embed code in-line,
wrapa phrase or text, with single backticks `. - To embed multiline code, wrap a body of text in triple backticks, on a new line
print("Hello world!")According to the slides, the code above is the python equivalent of the java snippet below
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}- To embed a link in MarkDown, wrap the phrase you would like become a link in square brackets [].
- Follow the square brackets with a wrapping of the link in parenthesis.
- Here is an example of a link to your student portal!
- To embed an image in MarkDown, prefix a hyperlink with a bang !

- To create a new repository in github, navigate to github.com/new
- Select the organization / account that we would like add the repository to
- Enter the name of repository
- Click
Create Repository - Copy the line affixed with
git remote add origin - Navigate to the directory containing the notes (In this demo, the name of the directory containing the notes is
my-notes) - Execute the command below to initialize this directory as a local
gitrepositorygit init
- Paste the command that was copied from
git(the one affixed withgit remote add origin) - Execute the command below to index all files
git add .
- Execute the command below to add all indexed files to staging
git commit -m "I just made my first commit"
- Execute the command below to
pushall staged files to the remote repositorygit push -u origin maingit push -u origin master
