spatial-data-discovery / spatial-data-discovery.github.io

Organization website
https://spatial-data-discovery.github.io/
4 stars 0 forks source link

"About the Coder" Assignment #45

Closed dt-woods closed 3 years ago

dt-woods commented 4 years ago

About the Coder Assignment | Fall 2020

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.

Requirements

Practice Challenge

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, then open 2--3 "About the Coder" pages from a previous semester and paste them in StackEdit.io to see how they look compared to their web-rendered version. Notice how markdown renderers stylize content differently. Be sure to reference the Pandoc + R markdown syntax, which is what your site will be rendered using.

When you are ready to write your "About" page:

PLEASE: NO SAMPLE SCRIPT IN YOUR FIRST SUBMISSION

If you copy another about.Rmd file from the repository, you can delete the section called "Sample Script." You will add your utility script to your "About the Coder" page in the next assignment.

Instructions - Using GitHub

The GitHub web interface allows you to do almost everything needed for this class without the fuss of using the command line. Should you choose to go this route,

Instructions - Using Git

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
git config push.default simple # optional configuration

Example text in markdown:

---
title: "About the Coder"
author: "YOUR NAME"
date: "Edited: TODAY'S DATE"
semester: "Fall 2021"
---

![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</span>
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 "Create my about .Rmd file. Addresses #45"
git push # you may be prompted to enter your GitHub username and password
dt-woods commented 3 years ago

Close last semester issue.