forked from HANICA/S4D-lesmateriaal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
agenda.js
281 lines (276 loc) · 8.25 KB
/
agenda.js
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
const agenda = {}
agenda.currentLesson = [5, 3, 2] // [ week, lesson in week, number of look-ahead lessons] 1-based
/*
The progam is an array of weeks.
A week is just an array of lesson-objects.
{
// A lesson is an object.
date: "Aug 28", // date format as string, or
date: new Date('2024-08-24'), // date format as date object (YYYY-MM-DD)
title: "Kick-off", // title is optional
content: [
// content is optional, can also be a single string.
"Kick-off",
"Getting the Arduino to work with your laptop",
"Getting your browser to work with mail-links",
"Start with [chapter 1 – intro to Arduino](/ch1-intro-arduino/)",
],
},
All strings in this data will be preprocessed by a Markdown converter.
So you can use **bold**, _italic_ and [hyperlinks](http://www.example.com).
HTML-tags will work too, and line-breaks inside ``-strings will be converted to <br>.
*/
agenda.program = [
// OW-1
[
{
date: new Date('2024-09-02'),
title: 'Kick-off and [first lesson](/ch1-intro-arduino/)',
content: [
'getting the Arduino to work with your laptop',
'getting your browser to work with mail-links',
'assignments 1.1—1.7',
],
},
{
date: new Date('2024-09-03'),
title: '[introduction to the Arduino](/ch1-intro-arduino/) _(continued)_',
content: [
'assignments 1.8—1.11',
'**optional**: The HTML & CSS introduction from the<br>Kahn Academy (see first grey block in [chapter 2](/ch2-intro-javascript/index.html))',
],
},
{
date: new Date('2024-09-04'),
title: '[introduction to JavaScript](/ch2-intro-javascript/)',
content: ['assignments 2.1—2.10'],
},
{
date: new Date('2024-09-05'),
title: '[interactivity with _functions_](/ch3-interactivity-functions/)',
content: ['assignments 3.1—3.11', '_during class: assignment 3.12_'],
},
],
// OW-2
[
{
date: new Date('2024-09-09'),
title:
'[calculations and storing results in _variables_](/ch4-calculations-variables/)',
content: ['assignments 4.1—4.6', '_during class: assignment 4.7_'],
},
{
date: new Date('2024-09-10'),
title:
'[russian dolls for data: variables _inside_ variables](/ch5-variables-inside-variables/)',
content: [
'assignments 5.1—5.10',
'_during class: assignments 5.11—5.12_',
],
},
{
date: new Date('2024-09-11'),
title: "[_debugging_ code that doesn't work](/ch6-debugging/)",
content: ['assignments 6.1—6.5', '_during class: assignment 6.6_'],
},
{
date: new Date('2024-09-12'),
title:
'[how functions communicate: _parameters_ and _return values_](/ch7-more-about-functions/)',
content: ['assignments 7.2—7.11', '_during class: assignment 7.12_'],
},
],
// OW-3
[
{
date: new Date('2024-09-16'),
title:
'[_true_, _false_, and choosing with _if-statements_](/ch8-true-false-if/)',
content: ['assignments 8.1—8.9', '_during class: assignments 8.10—8.12_'],
},
{
date: new Date('2024-09-17'),
title:
'[more about if-statements and _conditions_](/ch9-more-if-conditions/)',
content: [
'assignments 9.1—9.6',
'_during class: recap assignments 8.10—8.12_',
'_during class: assignments 9.7—9.8_',
],
},
{
date: new Date('2024-09-18'),
title:
'[more about if-statements and _conditions_](/ch9-more-if-conditions/) _(continued)_',
content: ['assignments 9.3—9.6', '_during class: assignments 9.7—9.8_'],
},
{
date: new Date('2024-09-19'),
title:
'[more about functions: _local variables_ and _side effects_](/ch10-locals-and-side-effects/)',
content: [
'assignments 10.1—10.5',
'_read carefully:_ text block ‘side effects versus return values’',
'_during class: assignments 10.6—10.7_',
],
},
],
// OW-4
[
{
date: new Date('2024-09-23'),
title: '[fun with data types](/ch11-fun-with-datatypes/)',
content: [
'assignments 11.1—11.5',
'_read carefully:_ text block ‘data types and sizes’',
'_during class: assignment 11.6_',
],
},
{
date: new Date('2024-09-24'),
title: '– geen les –',
content: [],
},
{
date: new Date('2024-09-25'),
title:
"[recap: let's review what you've learned](/ch12-recap/), and <br>" +
'[loops for repeating commands](/ch13-loops/)',
content: [
'assignments 12.1—12.3',
'assignments 13.1—13.3',
'_read carefully:_ instruction block ‘installing CMap Tools’',
'_read carefully:_ text block ‘one more repetition: for loops’',
'_during class: assignments 12.4—12.5_',
'_during class: assignments 13.4—13.5_',
],
},
{
date: new Date('2024-09-26'),
title: '– geen les –',
content: [],
},
],
// OW-5
[
{
date: new Date('2024-09-30'),
title: '[loops for repeating commands](/ch13-loops/) _(continued)_',
content: [
'assignments 13.6—13.9',
'_read carefully:_ text block ‘Using loops in arduino’',
'_during class: assignments 13.10—13.11_',
],
},
{
date: new Date('2024-10-01'),
title: '[visuals with canvas and animation](/ch14-canvas-animation/)',
content: [
'assignments 14.1—14.5',
'_during class: assignments 13.8—13.11_',
'_during class: assignments 14.6—14.8_',
],
},
{
date: new Date('2024-10-02'),
title:
'[visuals with canvas and animation](/ch14-canvas-animation/) _(continued)_',
content: [
'assignments 14.1—14.5',
'_during class: assignments 14.6—14.8_',
],
},
{
date: new Date('2024-10-03'),
title: '[active objects do it with _methods_ ](/ch15-methods/)',
content: [
'assignments 15.1—15.8',
'_during class: assignments 15.9—15.10_',
],
},
],
// OW-6
[
{
date: new Date('2024-10-07'),
title:
'_final assignment_ [Javascript: Battleships](/javascript-battleships/)',
content: [
"_during class: we support you while you're working on the assignment_",
],
},
{
date: new Date('2024-10-08'),
title: '_support_',
},
{
date: new Date('2024-10-09'),
title: '_support_',
},
{
date: new Date('2024-10-10'),
title:
'_deadline inleveren_ [Javascript: Battleships](/javascript-battleships/), and<br>' +
'_final assignment_ [Arduino: Burglar alarm](/arduino-burglar-alarm/), and<br>' +
'_support_',
content: 'voor 23:59 inleveren via mail',
},
],
// OW-7
[
{
date: new Date('2024-10-14'),
title: '_support_',
},
{
date: new Date('2024-10-15'),
title: '**Project kick-off**, and<br>' + '_support_',
content: [
'introduction to the S4D Project',
'[**list of programming platforms**](/project-list.html)',
'team formation for the project',
],
},
{
date: new Date('2024-10-16'),
title:
'_deadline inleveren_ [Arduino: Burglar alarm](/arduino-burglar-alarm/), and<br>',
},
{
date: new Date('2024-10-17'),
title: 'Project progress review',
content: [
'list of learning resources',
'goals / high level functionality overview',
],
},
],
// OW-8
[
{
date: 'ma 21-10 t/m vr 25-10',
title: '– herfstvakantie –',
},
// {
// date: new Date('2024-01-01'),
// title: '_assessments_',
// content: ['_nadere informatie volgt via mail_'],
// },
// {
// date: "—",
// title:
// '<span style="font-weight: 600; color: #0a0">23:59: deadline Burglar Alarm</span>',
// content: [],
// },
// {
// date: "—",
// title:
// '<span style="font-weight: 600; color: #0a0">deadline inleveren opdrachten</span>',
// content: [],
// },
// {
// date: 'ma 21-10 t/m vr 25-10',
// title: '– herfstvakantie –',
// },
],
]