diff --git a/1_development_workflows/.assets/github.png b/1_development_workflows/.assets/github.png new file mode 100644 index 0000000..198e63d Binary files /dev/null and b/1_development_workflows/.assets/github.png differ diff --git a/1_development_workflows/.assets/your_device.png b/1_development_workflows/.assets/your_device.png index b0fb131..d5d2f31 100644 Binary files a/1_development_workflows/.assets/your_device.png and b/1_development_workflows/.assets/your_device.png differ diff --git a/1_development_workflows/lesson_plan.md b/1_development_workflows/lesson_plan.md index 1738609..c7f8c53 100644 --- a/1_development_workflows/lesson_plan.md +++ b/1_development_workflows/lesson_plan.md @@ -22,6 +22,8 @@ class: middle - **Word Cloud Discussion** +- **Learning Objectives** + - **Connecting the Pieces** - **Breakouts + Quiz** @@ -42,6 +44,28 @@ Break! --- +class: middle + +## Learning Objectives + +Just Enough Workflow: + +- Basic idea of computers: _applications, folder system, computing_ + +- Cloning a repository from GitHub. + +- Writing and editing Python and Markdown. + +- Formatting and linting Markdown. + +- Using Git to version and host your code online. + +- Passing Continuous Integration checks. + +- _For this week: [objectives in the README](./README.md#learning-objectives)_ + +--- + class: center ## The Big Picture @@ -95,7 +119,7 @@ class: center - help you connect _data_ and _computing_ to do something useful -- can access your file system (_create, read, modify, delete_) +- can access and modify your file system - can use your computer's processing resources - _passes data input -> ... computing ... -> uses data output_ @@ -119,7 +143,7 @@ class: center ### Applications: _Git_ -Computing +Git ??? @@ -133,6 +157,14 @@ Git helps you: --- +class: center + +## GitHub + +GitHub + +--- + class: middle, center ## Big Picture: _Quiz time_ @@ -147,7 +179,9 @@ Breakouts will be longer than it takes to finish the quiz so you can get to know class: middle, center -## Big Picture Quiz: _discussion_ +## Big Picture Quiz + +### _discussion_ --- @@ -160,7 +194,7 @@ import time time.sleep(300) -print('back to work') +print('back to class') ``` --- @@ -228,7 +262,9 @@ Breakouts will be longer than it takes to finish the quiz so you can get to know class: middle, center -## Workflows Quiz: _discussion_ +## Workflows Quiz + +### _discussion_ --- diff --git a/suggested_study/python.md b/suggested_study/python.md index d23c65c..8f4caac 100644 --- a/suggested_study/python.md +++ b/suggested_study/python.md @@ -46,6 +46,7 @@ - [Programiz](https://www.programiz.com/python-programming): Interactive online Python tutorial. - [LearnPython](https://www.learnpython.org/): An interactive online tutorial. +- [coddy.tech](https://coddy.tech): An interactive online tutorial, mobile-friendly. ## References