-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubject-knowledge-2023.json
More file actions
executable file
·660 lines (656 loc) · 16.2 KB
/
Copy pathsubject-knowledge-2023.json
File metadata and controls
executable file
·660 lines (656 loc) · 16.2 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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
[
{
"id": "",
"tags": ["gcse"],
"title": "Representing algorithms",
"description": "Trace algorithm and determine purpose. Decompose problem. Pseudocode. Flowcharts",
"url": {
"aqa": "Representing_algorithms",
"ocr": 17
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Efficiency of algorithms",
"description": "O(n)",
"url": {
"aqa": "Efficiency_of_algorithms",
"ocr": null
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Searching algorithms",
"description": "linear, binary",
"url": {
"aqa": "Searching_algorithms",
"ocr": 18
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Sorting algorithms",
"description": "bubble, merge, insertion",
"url": {
"aqa": "Sorting_algorithms",
"ocr": 18
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Data types",
"description": "convert between data types",
"url": {
"aqa": "Data_types",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Programming concepts",
"description": "nested iteration",
"url": {
"aqa": "Programming_concepts",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Arithmetic operations in a programming language",
"description": "modulo",
"url": {
"aqa": "Arithmetic_operations_in_a_programming_language",
"ocr": 19
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Relational operations in a programming language",
"description": "",
"url": {
"aqa": "Relational_operations_in_a_programming_language",
"ocr": 19
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Boolean operations in a programming language",
"description": "",
"url": {
"aqa": "Boolean_operations_in_a_programming_language",
"ocr": 19
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Data structures",
"description": "2d array, object/record/struct/dictionary/data-class",
"url": {
"aqa": "Data_structures",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Input output",
"description": "",
"url": {
"aqa": "Input_output",
"ocr": 0
}
},
{
"id": "",
"tags": ["gcse"],
"title": "String handling operations in a programming language",
"description": "substring, ascii",
"url": {
"aqa": "",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Random number generation in a programming language",
"description": "",
"url": {
"aqa": "Random_number_generation_in_a_programming_language",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Structured programming and subroutines procedures and functions",
"description": "functions with multiple parameters, local variable scope",
"url": {
"aqa": "Structured_programming_and_subroutines_procedures_and_functions",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Robust and secure programming",
"description": "validation, test-data, syntax-vs-logic error",
"url": {
"aqa": "Robust_and_secure_programming",
"ocr": 21
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Number bases",
"description": "",
"url": {
"aqa": "",
"ocr": 0
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Converting between number bases",
"description": "convert between binary, hex, dec",
"url": {
"aqa": "Converting_between_number_bases",
"ocr": 10
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Units of information",
"description": "byte, kilobyte, kibi",
"url": {
"aqa": "",
"ocr": 10
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Binary arithmetic",
"description": "add 3 numbers, shift",
"url": {
"aqa": "Binary_arithmetic",
"ocr": null
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Character encoding",
"description": "ascii, utf8",
"url": {
"aqa": "Character_encoding",
"ocr": 11
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Representing images",
"description": "calculate bitmap size in bytes",
"url": {
"aqa": "Representing_images",
"ocr": 11,
"nc": "key-stage-3"
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Representing sound",
"description": "calculate wav size in bytes",
"url": {
"aqa": "Representing_sound",
"ocr": 11
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Data compression",
"description": "rle, huffman tree, lossy/lossless",
"url": {
"aqa": "",
"ocr": 11
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Hardware and software",
"description": "",
"url": {
"aqa": "Hardware_and_software",
"ocr": null
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Boolean logic",
"description": "logic gates to algebra, xor",
"url": {
"aqa": "Boolean_logic",
"ocr": 22,
"nc": "key-stage-3"
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Software classification",
"description": "system, application, operating system (user management, file systems)",
"url": {
"aqa": "Software_classification",
"ocr": 15
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Classification of programming languages and translators",
"description": "interpreter, compiler, assembler, machine code, IDE's",
"url": {
"aqa": "Classification_of_programming_languages_and_translators",
"ocr": 23
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Systems architecture",
"description": "fetch execute cycle, volatile/non-volatile storage",
"url": {
"aqa": "Systems_architecture",
"ocr": 8,
"ocr_more": 9
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Fundamentals of computer networks",
"description": "network topologies, tcp, udp, http(s), smtp, mac-address (link layer), dns",
"url": {
"aqa": "",
"ocr": 12,
"ocr_more": 13
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Fundamentals of cyber security",
"description": "",
"url": {
"aqa": "Fundamentals of cyber security",
"ocr": null
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Cyber security threats",
"description": "DOS, pen-test, Social_engineering, phishing, Malicious_code_malware",
"url": {
"aqa": "Cyber_security_threats",
"aqa_more": "Social_engineering, Malicious_code_malware",
"ocr": 14
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Methods to detect and prevent cyber security threats",
"description": "biometric, 2 factor",
"url": {
"aqa": "Methods_to_detect_and_prevent_cyber_security_threats",
"ocr": 0
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Relational databases",
"description": "table, record, primary-key, SELECT, FROM, WHERE, ORDER BY, INSERT INTO, UPDATE",
"url": {
"aqa": "Relational_databases",
"aqa_more": "Structured_query_language_SQL",
"ocr": 20
}
},
{
"id": "",
"tags": ["gcse"],
"title": "Ethical, legal, social, privacy",
"description": "cloud, wearables, cookies, data protection, copyright, open source",
"url": {
"aqa": "Ethical_legal_and_environmental_impacts_of_digital_technology_on_wider_society_including_issues_of_privacy",
"ocr": 16
}
},
{
"id": "",
"tags": ["ict"],
"title": "Spreadsheet",
"description": "VLOOKUP, Conditional Formatting, Absolute cell referencing",
"url": {
}
},
{
"id": "",
"tags": ["iMedia"],
"title": "Animation",
"description": "Tween, Keyframe",
"url": {
"ocr_imedia": 26
}
},
{
"id": "",
"tags": ["iMedia"],
"title": "Creating a digital video sequence",
"description": "Record and instructional video for a class",
"url": {
"ocr_imedia": 34
}
},
{
"id": "",
"tags": ["ict"],
"title": "Styles/Master/Template",
"description": "Slide Master, Document Styles, TOC",
"url": {
}
},
{
"id": "",
"tags": ["iMedia"],
"title": "Web/HTML",
"description": "h1, table, ul, a, css",
"url": {
"ocr_imedia": 23
}
},
{
"id": "",
"tags": ["physical"],
"title": "Physical",
"description": "Microbit, Arduino, LegoMindstorms, other. Use of sensors and upload to physical device",
"url": {
"Microbit": "https://microbit.org/"
}
},
{
"id": "",
"tags": ["digital-literacy"],
"title": "Train an AI Image classifier",
"description": "",
"url": {
"google": "https://teachablemachine.withgoogle.com",
"raspberrypi": "https://www.raspberrypi.org/blog/ai-education-resources-what-to-teach-seame-framework/"
}
},
{
"tags": ["digital-literacy"],
"title": "AI Prompt engineering"
},
{
"id": "",
"tags": ["pedagogy", "computing"],
"title": "Pair Programming",
"description": "Co-ordinate, guide, scaffold, a pair programming as part of teaching a topic",
"url": {
"teacherEducation": "https://github.com/calaldees/teacherEducation/blob/main/teacherEducation/pairProgramming.md"
}
},
{
"id": "",
"tags": ["computing"],
"title": "Debugger",
"description": "breakpoint, step-over, step-into, watch variables"
},
{
"id": "",
"tags": ["pedagogy", "computing"],
"title": "Automated Tests",
"description": "Tests give students feedback on progress. Student constructing their own assertions and verifying these",
"url": {
"teacherEducation": "https://github.com/calaldees/teacherEducation/blob/main/teacherEducation/automated_tests.md"
}
},
{
"tags": ["digital-literacy", "framework"],
"title": "EU Digital Competence Framework",
"description": "Consider how your students skills map to external competency frameworks",
"url": {
"eu": "https://joint-research-centre.ec.europa.eu/digcomp/digcomp-framework_en"
}
},
{
"tags": ["framework"],
"title": "NCCE: Computing Quality Framework",
"description": "Framework for inspecting and grading a schools computing provision",
"url": {
"NCCE": "https://computingqualityframework.org/overview/pdf-version/"
}
},
{
"tags": ["digital-literacy"],
"title": "HCI design principles",
"url":{
"iDEA": "https://idea.org.uk/badge/ux"
}
},
{
"tags": ["digital-literacy", "framework"],
"title": "gov.uk Education for a connected world",
"description": "eSafety, Cyber awareness, Digital Citizenship. Age appropriate benchmark statements",
"url": {
"gov.uk": "https://www.gov.uk/government/publications/education-for-a-connected-world",
"projectevolve": "https://projectevolve.co.uk/"
}
},
{
"id": "",
"tags": ["ict", "digital-literacy"],
"title": "File Organisation",
"description": "Naming your documents. Use of folders. Backing up and restoring your data. Where is your data? (in memory?, on ssd? on usb? on the cloud? which country?)",
"url": {
}
},
{
"id": "",
"tags": ["digital-literacy"],
"title": "Hotkeys",
"description": "Windows accessibility, window arrangement, undo, select-all, copy/paste, triple click, move tabs, screenshot"
},
{
"tags": ["digital-literacy"],
"title": "Touch Typing",
"description": "Typing Speed + fluent use of keyboard. Students can't trial ideas and be creative with a device if they spend 7 minuets typing in one line of text using a single finger and looking for each letter on the keyboard individually. (some school have 10min of this as a starter of every year 7 and 8 lesson).",
"url": {
}
},
{
"tags": ["digital-literacy", "computing"],
"title": "IDE",
"description": "autoformatter, auto-complete, run/debug cycle, hotkeys, find-uses, ctrl+click goto definition"
},
{
"tags": ["digital-literacy"],
"title": "Multiple Desktop Operating System user paradigms",
"description": "Linux, Windows, Mac (cultural capital). differences Hotkeys, privacy, storage, drivers"
},
{
"tags": ["digital-literacy", "computing"],
"title": "Command Line",
"description": "do an operation in gui and commandline. Download youtube downloaded? encode a video? compress a folder? flags"
},
{
"tags": ["digital-literacy"],
"title": "File format extensions/mime-types",
"description": "pdf? doc? jpg? csv?"
},
{
"tags": ["digital-literacy", "ict", "computing"],
"title": "Document format conversion",
"description": "convert a document to other file format. What is lost/damaged? (docx,odt) (xlsx,csv) pandoc?"
},
{
"tags": ["computing"],
"title": "Version Control",
"description": "git?, diff(+,-,context), history, branch, merge"
},
{
"tags": ["digital-literacy"],
"title": "Document History",
"description": "See a documents version history. see previous versions of a document. who changed them? compare changes?"
},
{
"tags": ["digital-literacy", "physical"],
"title": "Interesting hardware peripherals",
"description": "keylogger, magnetic strip reader, smartcard reader, mini thermal printer, ultraleap, barcode reader, rf reader"
},
{
"title": "markdown",
"description": "headings, bullets, code blocks, tables, images, see mermaid and `Remark`"
},
{
"title": "mermaid",
"description": "diagram notation",
"url": {
"mermaid.js.org": "https://mermaid.js.org/intro/n00b-gettingStarted.html"
}
},
{
"title": "wiki/knowlege-base",
"tags": ["digital-literacy"],
"description": "non linear web of linked concepts. hashtags, backreferences, search plain text (maybe with commandline grep?)"
},
{
"title": "API",
"tags": ["digital-literacy", "computing"],
"description": "Use an api to get/post data. Understand json data structures.",
"url": {
"": "https://rapidapi.com/collection/list-of-free-apis"
}
},
{
"title": "Task Automation",
"tags": ["computing", "ict", "digital-literacy"],
"description": "Automate a task. macros? commandline-script? no-code? (IDEA course example send text when leave house). Think of more",
"url":{
"iDEA": "https://idea.org.uk/badge/automation"
}
},
{
"title": "GDPR",
"tags": ["digital-literacy"],
"description": "Terminology, rights as a data subject",
"url": {
"iDEA": "https://idea.org.uk/badge/gdpr"
}
},
{
"tags": ["ict", "digital-literacy"],
"title": "email",
"description": "Setup rules and forwarding, signatures, cc and bcc, replying inline `>`"
},
{
"tags": ["ict", "digital-literacy", "physical"],
"title": "Printer",
"description": "preview, duplex, 2 to a page, margins, headers/footers, printing tables"
},
{
"id": "",
"tags": ["physical", "ict"],
"title": "3D Printer + 3D Model",
"description": "Print a 3D model. Simple creation and modification of a 3D model"
},
{
"tags": ["computing"],
"title": "UnrealEngine: Blueprints",
"description": "A practical alternate paradigm for writing logic. 2d linked components",
"url": {
"UnrealEngine": "https://dev.epicgames.com/community/learning/courses/QGD/unreal-engine-blueprint-essential-concepts/P7L/unreal-engine-introduction-to-blueprint-essential-concepts"
}
},
{
"tags": ["pedagogy", "computing"],
"title": "Network Simulator",
"description": "Use a network simulator to make networking more practical than theoretical",
"url": {
"cs4g": "https://netsim.erinn.io/",
"code.org": "https://studio.code.org/s/netsim/",
"ncce": "https://teachcomputing.org/curriculum/key-stage-4/networks",
"HelloWorld": "https://helloworld.raspberrypi.org/articles/HW8-make-networks-interesting-with-filius"
}
},
{
"tags": ["computing", "digital-literacy"],
"title": "Domain name",
"description": "Understand the process of registering a domain name and hosting a service. DNS Record A, AAAA, MX. Mail forwarding?",
"url": {
}
},
{
"tags": ["digital-literacy"],
"title": "Judging Quality of Information",
"description": "FakeNews, DeepFakes, Quality/Credibility of information",
"url": {
"iDEA": "https://idea.org.uk/badge/fake-news",
"iDEA2": "https://idea.org.uk/badge/fake-news-detector",
"nc": "key-stage-3"
}
},
{
"tags": ["digital-literacy"],
"title": "Careers",
"description": "Breath of digital careers. Bioinformatics, Social media co-ordination, AI Prompt Engineer, Dev-Ops, Embedded systems, VR, IoT, Data Science, Data Visualisation, more!",
"url": {
"iDEA": "https://idea.org.uk/badge/digital-careers"
}
},
{
"id": "",
"tags": ["ict", "computing"],
"title": "Draw a graph/visualisation from a dataset",
"description": "",
"url": {
"iDEA": "https://idea.org.uk/badge/data-visualisation",
"nc": "key-stage-3"
}
},
{
"id": "",
"tags": ["computing"],
"title": "Draw geometric shapes with recursion",
"description": "Recursive tree"
},
{
"id": "",
"tags": ["ict"],
"title": "Advanced Web Search: AND, OR, NOT, Date, Location",
"description": "",
"url": {
"nc": "key-stage-3"
}
}
]