forked from andrewbanchich/forty-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheduoverflow.txt
201 lines (187 loc) · 7.85 KB
/
eduoverflow.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<a class="anchor" id="lesson1"></a>
<h3>Lesson 1: JavaScript Crash Course pt.1</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<!--<iframe width="560" height="315" src="https://www.youtube.com/embed/tBy5v5zIs20" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>-->
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to introduce students to the JavaScript programming language. JavaScript is an extremely versatile and powerful language and is the main language that CSSG uses in their client projects.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>Navigating VS Code.</li>
<li>Creating variables.</li>
<li>Outputting information.</li>
<li>Boolean operators.</li>
<li>Writing functions. </li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">JS Functions</a></li>
</ul>
</div>
</div>
</div>
</div>
<a class="anchor" id="lesson2"></a>
<h3>Lesson 2: JavaScript Crash Course pt.2</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to bridge the gap between the first JavaScript crash course and working on developing apps with React Native. Intermediate JavaScript skills are reinforced.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>Arrow functions.</li>
<li>Intro to JSON.</li>
<li>Intro to JSX.</li>
<li>Adding functionality.</li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">Working with GitHub</a></li>
</ul>
</div>
</div>
</div>
</div>
<a class="anchor" id="lesson3"></a>
<h3>Lesson 3: Introduction to React.js</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to introduce students to React. React is a framework for developing high-quality web apps. CSSG uses React as the primary technology for developing their projects.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>Intro to React.</li>
<li>Creating an App.</li>
<li>Running an App.</li>
<li>Exploring App.js.</li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">First React App</a></li>
</ul>
</div>
</div>
</div>
</div>
<a class="anchor" id="lesson4"></a>
<h3>Lesson 4: React Hooks and Event Handling</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to introduce students to React Hooks and states. In addition, students will learn how to connect components to JavaScript functions to add functionality to their websites.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>React hooks.</li>
<li>React states.</li>
<li>Event handling.</li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">Adding Functionality</a></li>
</ul>
</div>
</div>
</div>
</div>
<a class="anchor" id="lesson5"></a>
<h3>Lesson 5: Fetching Data Asynchronously</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to introduce the concept of APIs to students and implement functionality to their apps to fetch data from the internet.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>Fetching data.</li>
<li>Learn about HTTP.</li>
<li>Ternary Expressions.</li>
<li>React Hooks.</li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">Adding Functionality</a></li>
</ul>
</div>
</div>
</div>
</div>
<a class="anchor" id="lesson6"></a>
<h3>Lesson 6: Firebase Crash Course</h3>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Lesson Video</h4>
<iframe width="560" height="315" src="" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="6u 12u$(medium)">
<h4>Description</h4>
<p>
The purpose of this lesson is to introduce students to Firebase. Firebase is a powerful, lightweight, and scalable cloud database platform that will allow us to add incredible functionality to our apps.
</p>
<div class="row 200%">
<div class="6u 12u$(medium)">
<h4>Skills Covered</h4>
<ul>
<li>Recall JSON.</li>
<li>Add Firebase to a project.</li>
<li>Firebase Firestore.</li>
<li>Firebase Authentication.</li>
</ul>
</div>
<div class="6u 12u$(medium)">
<h4>Lesson Project</h4>
<ul class="actions">
<li><a href="" class="button">Final Project</a></li>
</ul>
</div>
</div>
</div>
</div>