This assignment is a way of introducing you to the Markdown syntax and
demonstrates how we will be communicating to the public through the web.
Additionally, you will practice using git by submitting your file to the
course\'s online repository.
Grading
0.5 pt - Name your .Rmd file \"about\" + _ + your github username (e.g.,
about_dtwoods.Rmd) and save it in the parent repository directory.
0.5 pt - Include an embedded image (keep it appropriate)
0.5 pt - Include at least one definition list (e.g., bio, hobbies,
website, etc.)
0.5 pt - Include an ordered or unordered list.
0.5 pt - Include a type of text formatting (e.g., *italics*,
**bold**, \~\~strikethrough\~\~).
2.5 pt - Keep your markdown formatting clean, clear, and consistent.
Instructions
If you have not already, create a folder for our course repository,
clone the repository on to your computer, and configure your git
workspace using the commands below.
# On the Terminal / Command Prompt
cd [path to repository] # replace "[path to repository]" with the directory path
git clone https://github.com/spatial-data-discovery/spatial-data-discovery.github.io.git
cd spatial-data-discovery.github.io # change into the repository directory
git config user.name [username] # replace "[username]" with your GitHub user name
git config user.email [email] # replace "[email]" with the email associated with GitHub
If this is your first time writing in Markdown, practice some basic
features (e.g., headings, lists, links, images, and emphasis) in an
online environment, such as StackEdit.io.
When you are ready to write your \"About\" page:
Find the \"about_dtwoods.Rmd\" file located in the course\'s
repository parent directory, which you have cloned to your computer.
Copy it and rename it using your github name (i.e.,
\"about_YOURGITHUBNAME.Rmd\"); please, only use lower-case letters.
Open your file using a text editor of your choice and delete
everything below the YAML header (the set of \"---\" lines at the
top of the file).
Update your name and date in the YAML header.
Add an image you would like to associate with your bio.
Use a definition list, ordered/unordered list, and a text emphasis
format somewhere in your file.
---
title: "About the Coder"
author: "YOURNAME"
date: "TODAY'S DATE"
---
![ALT TEXT](URL TO IMAGE "TITLE")
Bio
: YOUR BIO LINE
INCLUDE AN (ORDERED/UNORDERED) LIST
- UNORDERED ITEM 1
- UNORDERED ITEM 2
INCLUDE A TEXT EMPHASIS FORMAT (*ITALICS*, **BOLD**, ~~STRIKETHROUGH~~)
Save and close your file, stage it, commit it and push it to the
course\'s online repository.
# On the Terminal / Command Prompt
git pull # check for remote changes on the repository
git add [your .Rmd file] # replace "[your .Rmd file]" with your file name
git commit -m "Created my about .Rmd file; Addresses #25"
git push # you may be prompted to enter your GitHub username and password
5 points
This assignment is a way of introducing you to the Markdown syntax and demonstrates how we will be communicating to the public through the web. Additionally, you will practice using git by submitting your file to the course\'s online repository.
Grading
Instructions
If you have not already, create a folder for our course repository, clone the repository on to your computer, and configure your git workspace using the commands below.
If this is your first time writing in Markdown, practice some basic features (e.g., headings, lists, links, images, and emphasis) in an online environment, such as StackEdit.io.
When you are ready to write your \"About\" page:
Save and close your file, stage it, commit it and push it to the course\'s online repository.