-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubject-knowledge-2021.json
More file actions
executable file
·342 lines (332 loc) · 9.31 KB
/
subject-knowledge-2021.json
File metadata and controls
executable file
·342 lines (332 loc) · 9.31 KB
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
[
{
"id": "",
"tags": ["code"],
"title": "Sorting Algorithms",
"description": "bubble, quick, merge, selection, insertion"
},
{
"id": "",
"tags": ["code"],
"title": "Search Algorithms",
"description": "Linear/Binary"
},
{
"id": "",
"tags": ["code"],
"title": "Dynamic collections",
"description": "Implement list, stack or queue with static arrays."
},
{
"id": "",
"tags": ["code"],
"title": "Binary Tree",
"description": ""
},
{
"id": "",
"tags": ["code"],
"title": "Number Bases",
"description": "Convert between two number bases (binary2, oct8, hex16, denery10)"
},
{
"id": "",
"tags": ["code"],
"title": "Check Digit",
"description": "Validate ISBN-10 check digit"
},
{
"id": "",
"tags": ["code"],
"title": "Compression RLE",
"description": "encode and/or decode data in an RLE format (conway wiki?)"
},
{
"id": "",
"tags": ["code"],
"title": "Compression Huffman",
"description": "Theory is required for teaching. Implementation is not trivial and not expected."
},
{
"id": "",
"tags": ["practical"],
"title": "Network Simulation",
"description": "Use/setup/configure a network simulator. Subnet mask, Gateway, DNS, Routing."
},
{
"id": "",
"tags": ["code"],
"title": "TCP and UDP",
"description": "Send and receive a TCP packet and a UDP packet"
},
{
"id": "",
"tags": ["code"],
"title": "Manually construct/send a HTTP GET request",
"description": "Manually construct a HTTP GET Request to request a webpage by hand using telnet or in code"
},
{
"id": "",
"tags": ["code"],
"title": "HTTP GET & POST",
"description": "Request and Respond with/to GET/POST. e.g. Create a mini server"
},
{
"id": "",
"tags": ["code"],
"title": "Cookie",
"description": "Set and retrieve a cookie"
},
{
"id": "",
"tags": ["practical"],
"title": "Use a circuit simulator",
"description": "Create one of: Full Adder, Flip-Flop, Multiplexor"
},
{
"id": "",
"tags": ["code", "practical"],
"title": "Assembler",
"description": "Basic program. LoadRegister, Addition, StoreRegister. Extension: generate fibonacci. Try LittleManComputer"
},
{
"id": "",
"tags": ["code"],
"title": "Audio: Square, Triangle, Saw, Sine waves",
"description": "Generate a raw binary file from code that produces a waveform 440hz waveform. Load + Play in audacity?. Compare against wikipedia reference audio"
},
{
"id": "",
"tags": ["code"],
"title": "Concurrency",
"description": "Pass data between two process's"
},
{
"id": "",
"tags": ["code"],
"title": "Cypher",
"description": "encode/decode Caesar or Vigenère"
},
{
"id": "",
"tags": ["practical"],
"title": "Remote pair via live coding tool",
"description": ""
},
{
"id": "",
"tags": ["practical"],
"title": "Code Review",
"description": "Comment and/or approve a pull request. (evidence: url to public repo)"
},
{
"id": "",
"tags": ["practical"],
"title": "Version control (git)",
"description": "Commit, push, pull, branch"
},
{
"id": "",
"tags": ["code"],
"title": "Text Formatting: Markdown or LaText",
"description": ""
},
{
"id": "",
"tags": ["code"],
"title": "Unit Tests",
"description": "Generate a test report from a series of automated tests. Include positive and error cases."
},
{
"id": "",
"tags": ["practical"],
"title": "Performance profile",
"description": "e.g. compare time of two sorting algorithms (average time to complete over 100 runs with random data?)"
},
{
"id": "",
"tags": ["practical"],
"title": "Virtualisation",
"description": "Create a VM. Install a linux distro?"
},
{
"id": "",
"tags": ["code"],
"title": "Webpage (from first principles)",
"description": "HTML, Css, js. links, images, forms, events, animation, colour"
},
{
"id": "",
"tags": ["code"],
"title": "Micro-controller",
"description": "Use of: Microbit? or Arduino?"
},
{
"id": "",
"tags": ["code"],
"title": "Draw geometric shapes with recursion",
"description": "Tree?"
},
{
"id": "",
"tags": ["practical"],
"title": "Register a domain name",
"description": ""
},
{
"id": "",
"tags": ["code"],
"title": "SQL",
"description": "SELECT, INSERT, UPDATE, JOIN"
},
{
"id": "",
"tags": ["code"],
"title": "GUI",
"description": "Create a GUI with code"
},
{
"id": "",
"tags": ["practical"],
"title": "Mail Merge",
"description": "email"
},
{
"id": "",
"tags": ["practical"],
"title": "3D Printer + Model",
"description": "Print a 3D model"
},
{
"id": "",
"tags": ["code", "practical"],
"title": "Train an AI classifier",
"description": ""
},
{
"id": "",
"tags": ["code", "inferred"],
"title": "Structured data formats: json, xml, yaml, toml",
"description": "Use of some of these formats"
},
{
"id": "",
"tags": ["code", "inferred"],
"title": "Language paradigms",
"description": "Example use of block, dynamic, static, functional languages. (Can be inferred from other tasks)"
},
{
"id": "",
"tags": ["code", "inferred"],
"title": "Command Line",
"description": "Evidence of use. Can be inferred from other tasks"
},
{
"id": "",
"tags": ["practical", "inferred"],
"title": "Developer IDE",
"description": "Use of an IDE. Inferred from other tasks"
},
{
"id": "",
"tags": ["code"],
"title": "Create a simple Computer Model",
"description": "e.g. sea level hight image, estimate number of customers with tickets and drinks"
},
{
"id": "",
"tags": ["code"],
"title": "Retrieve data from any public api",
"description": "https://rapidapi.com/collection/list-of-free-apis"
},
{
"id": "",
"tags": ["practical"],
"title": "Setup Email Rules",
"description": ""
},
{
"id": "",
"tags": ["code", "practical"],
"title": "Wiki Syntax",
"description": "Update a wiki"
},
{
"id": "",
"tags": ["code", "practical"],
"title": "Public/Private key encryption",
"description": "Encrypt a file with a private key and decode with a public key. (Suggest `openssl` command line in container)"
},
{
"id": "",
"tags": ["practical", "ict"],
"title": "Advanced Web Search: AND, OR, NOT, Date, Location",
"description": ""
},
{
"id": "",
"tags": ["practical", "security"],
"title": "Reproduce/clone the visual look of a formal website",
"description": ".gov or bank site. Modify to popup javascript alert on submit"
},
{
"id": "",
"tags": ["practical", "security"],
"title": "Pishing",
"description": "Send an example email/sms to someone directing user to your reproduction site (above)"
},
{
"id": "",
"tags": ["code", "practical", "ict"],
"title": "Draw a graph/visualisation from a dataset",
"description": ""
},
{
"id": "",
"tags": ["ict"],
"title": "Styles + Slide Master",
"description": "Anyone that manually changes the size of a font in a wisiwig editor is not a computing specialist"
},
{
"id": "",
"tags": ["practical"],
"title": "Unreal 4: Blueprints",
"description": "simple logic e.g. collect + count coins"
},
{
"id": "",
"tags": ["ict"],
"title": "Record Video Presentation with subtitles and host publicly visible",
"description": ""
},
{
"id": "",
"tags": ["social", "wip"],
"title": "Careers",
"description": ""
},
{
"id": "",
"tags": ["social", "wip"],
"title": "GDPR",
"description": "what, why, how, rational, cookie (any why). []"
},
{
"id": "",
"tags": ["social", "wip"],
"title": "Societal impact",
"description": "AI, self driving cars, economy, implants, rising automation"
},
{
"id": "",
"tags": ["social", "wip"],
"title": "Privacy",
"description": "Biometrics, Geo-Location, Accelerometer"
},
{
"id": "",
"tags": ["social", "wip"],
"title": "Economics - Why are some web services free?",
"description": ""
}
]