Skip to content

Commit 1f7f7cd

Browse files
final workshop prep
1 parent 306f20d commit 1f7f7cd

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed
106 KB
Loading
747 Bytes
Loading

1_development_workflows/lesson_plan.md

+41-5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ class: middle
2222

2323
- **Word Cloud Discussion**
2424

25+
- **Learning Objectives**
26+
2527
- **Connecting the Pieces**
2628

2729
- **Breakouts + Quiz**
@@ -42,6 +44,28 @@ Break!
4244

4345
---
4446

47+
class: middle
48+
49+
## Learning Objectives
50+
51+
Just Enough Workflow:
52+
53+
- Basic idea of computers: _applications, folder system, computing_
54+
55+
- Cloning a repository from GitHub.
56+
57+
- Writing and editing Python and Markdown.
58+
59+
- Formatting and linting Markdown.
60+
61+
- Using Git to version and host your code online.
62+
63+
- Passing Continuous Integration checks.
64+
65+
- _For this week: [objectives in the README](./README.md#learning-objectives)_
66+
67+
---
68+
4569
class: center
4670

4771
## The Big Picture
@@ -95,7 +119,7 @@ class: center
95119

96120
- help you connect _data_ and _computing_ to do something useful
97121

98-
- can access your file system (_create, read, modify, delete_)
122+
- can access and modify your file system
99123

100124
- can use your computer's processing resources
101125
- _passes data input -> ... computing ... -> uses data output_
@@ -119,7 +143,7 @@ class: center
119143

120144
### Applications: _Git_
121145

122-
<img alt="Computing" src="./.assets/git.png" height="70%" width="70%">
146+
<img alt="Git" src="./.assets/git.png" height="70%" width="70%">
123147

124148
???
125149

@@ -133,6 +157,14 @@ Git helps you:
133157

134158
---
135159

160+
class: center
161+
162+
## GitHub
163+
164+
<img alt="GitHub" src="./.assets/github.png" height="90%" width="90%">
165+
166+
---
167+
136168
class: middle, center
137169

138170
## 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
147179

148180
class: middle, center
149181

150-
## Big Picture Quiz: _discussion_
182+
## Big Picture Quiz
183+
184+
### _discussion_
151185

152186
---
153187

@@ -160,7 +194,7 @@ import time
160194

161195
time.sleep(300)
162196

163-
print('back to work')
197+
print('back to class')
164198
```
165199

166200
---
@@ -228,7 +262,9 @@ Breakouts will be longer than it takes to finish the quiz so you can get to know
228262

229263
class: middle, center
230264

231-
## Workflows Quiz: _discussion_
265+
## Workflows Quiz
266+
267+
### _discussion_
232268

233269
---
234270

suggested_study/python.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
- [Programiz](https://www.programiz.com/python-programming): Interactive online
4747
Python tutorial.
4848
- [LearnPython](https://www.learnpython.org/): An interactive online tutorial.
49+
- [coddy.tech](https://coddy.tech): An interactive online tutorial, mobile-friendly.
4950

5051
## References
5152

0 commit comments

Comments
 (0)