-
Notifications
You must be signed in to change notification settings - Fork 24
/
lessons.json
1000 lines (999 loc) · 30 KB
/
lessons.json
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"title": "PostgreSQL for Everybody (PG4E)",
"description" : "Hello and welcome to my site where you can work through these modules and learn develop to use the PostgreSQL database.",
"count": true,
"required_modules": [
"https://github.com/tsugitools/gift",
"https://github.com/tsugitools/youtube",
"https://github.com/tsugitools/peer-grade",
"https://github.com/tsugitools/tdiscus"
],
"badges": [
],
"discussions" : [
{
"title" : "Welcome to PostgreSQL for Everybody",
"launch" : "mod/tdiscus/",
"resource_link_id": "discussion_welcome"
}
],
"modules": [
{
"title": "Single Table SQL",
"anchor": "week1",
"icon" : "fa-globe",
"description": "Single Table SQL",
"slides": "{apphome}/lectures/01-Intro-to-SQL.ppt",
"discussions" : [
{
"title" : "Single Table SQL",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_01_sql"
}
],
"videos" : [
{
"title" : "Welcome to PostgreSQL for Everybody",
"clip": "00-Why-PostgreSQL-1080.mov",
"youtube" : "flRUuodVPq0"
},
{
"title" : "History of Relational Databases",
"ai": "mads.sqldatabases.01.032519.mov",
"youtube" : "4wordgUuF8M"
},
{
"title" : "Bonus Video: Elizabeth Fong and SQL Standards",
"youtube" : "rLUm3vst87g"
},
{
"title" : "SQL Architecture",
"ai": "mads.sqldatabases.02.032519.mov",
"youtube" : "pppvrhN7-tg"
},
{
"title" : "Working with Tables and PostgreSQL",
"ai": "mads.sqldatabases.03.032519.mov",
"youtube" : "ifCqRFfZxdk"
},
{
"title" : "Data Types in PostgreSQL",
"ai": "mads.sqldatabases.04.032519.mov",
"youtube" : "LQusrJ0Ssks"
},
{
"title" : "Database Keys and Indexes in PostgreSQL",
"ai": "mads.sqldatabases.05.032519.mov",
"youtube" : "23ALVJNhMl8"
},
{
"title" : "Demonstration: Making our First Tables",
"project": "00-first-2020-04-18-save.mov",
"youtube" : "f0DPs29Pfg0"
},
{
"title" : "Demonstration: Musical Track Database (CSV)",
"project": "01_single_track_music-pyaw-21-01.mov",
"youtube" : "7QLqVTHzV_k"
}
],
"references" : [
{
"title" : "Using PostgreSQL on PythonAnywhere",
"href" : "{apphome}/assn/pg4e_pyaw_psql.md"
},
{
"title" : "Demonstration: Using PostgreSQL on PythonAnywhere",
"href" : "https://youtu.be/a6-1bsy9kxw"
},
{
"title" : "Sample SQL For Lecture",
"href" : "{apphome}/lectures/01-Intro-to-SQL.txt"
},
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/01-Intro-to-SQL-BW.pdf"
},
{
"title" : "Demonstration: Using DBeaver Client to Run SQL",
"href" : "https://youtu.be/xFv-TeIroV8"
},
{
"title" : "Download DBeaver Client",
"href" : "https://dbeaver.io/"
}
],
"lti" : [
{
"title" : "Quiz: Single Table SQL",
"launch" : "mod/gift/?quiz=01-Intro.txt",
"resource_link_id" : "pg4e_01_quiz"
},
{
"title" : "Autograder: Initial Database Setup",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_00_setup",
"custom" : [
{
"key": "exercise",
"value": "00setup.php"
}
]
},
{
"title" : "Autograder: Making our first tables",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_00_first",
"custom" : [
{
"key": "exercise",
"value": "00first.php"
}
]
},
{
"title" : "Autograder: Inserting some data into a table",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_01_single",
"custom" : [
{
"key": "exercise",
"value": "01single.php"
}
]
},
{
"title" : "Autograder: Serial Fields / Auto Increment",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_01_auto",
"custom" : [
{
"key": "exercise",
"value": "01auto.php"
}
]
},
{
"title" : "Autograder: Musical Track Database",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_01_single_track",
"custom" : [
{
"key": "exercise",
"value": "01single_track.php"
}
]
}
]
},
{
"title": "Data Relationships",
"anchor": "week2",
"icon" : "fa-globe",
"description": "Multi-Table SQL and Relationships.",
"slides": "{apphome}/lectures/02-Database-Design-Many-to-Many.ppt",
"discussions" : [
{
"title" : "Data Relationships",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_02_model"
}
],
"videos" : [
{
"title" : "Relational Database Design Part 1",
"ai": "mads.sqldatabases.01.050619.mov",
"youtube" : "9mldwpXgEhs"
},
{
"title" : "Relational Database Design Part 2",
"ai": "mads.sqldatabases.02.050619.mov",
"youtube" : "S2kEcw9H888"
},
{
"title" : "Database Keys",
"ai": "mads.sqldatabases.03.050619.mov",
"youtube" : "5Zb6UiwqUSA"
},
{
"title" : "Database Normalization",
"ai": "mads.sqldatabases.04.050619.mov",
"youtube" : "RC5dZc2O9Js"
},
{
"title" : "Building Tables",
"ai": "mads.sqldatabases.05.050619.mov",
"youtube" : "MHHfu51IXbA"
},
{
"title" : "Inserting Data",
"ai": "mads.sqldatabases.01.051319.mov",
"youtube" : "QdpVO6IAquY"
},
{
"title" : "Using JOIN Across Tables",
"ai": "mads.sqldatabase.02.051319v2.mov",
"youtube" : "AVDm4dEv-OU"
},
{
"title" : "Many-to-Many Relationships",
"ai": "mads.sqldatabases.03.051319.mov",
"youtube" : "hyFgX9_ynw4"
},
{
"title" : "Demonstration: Database Design and Many to Many",
"project": "02-Database-Design-Many-To-Many.mov",
"youtube" : "HWXAIDeT5UM"
}
],
"references" : [
{
"title" : "Sample SQL For Lecture",
"href" : "{apphome}/lectures/02-Database-Design-Many-to-Many.txt"
},
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/02-Database-Design-Many-to-Many-BW.pdf"
}
],
"lti" : [
{
"title" : "Quiz: Data Relationships",
"launch" : "mod/gift/?quiz=02-Database-Design-Many-to-Many.txt",
"resource_link_id" : "pg4e_02_quiz"
},
{
"title" : "Autograder: Entering Many-to-One Data - Automobiles",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_02many_one_manual",
"custom" : [
{
"key": "exercise",
"value": "02many_one_manual.php"
}
]
},
{
"title" : "Autograder: Building a many-to-many roster",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_03many_to_many_roster",
"custom" : [
{
"key": "exercise",
"value": "03many_to_many_roster.php"
}
]
}
]
},
{
"title": "SQL Techniques",
"anchor": "week3",
"icon" : "fa-globe",
"description": "Intermediate PostgreSQL techniques.",
"slides": "{apphome}/lectures/03-Techniques.pptx",
"discussions" : [
{
"title" : "SQL Techniques",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_03_techniques"
}
],
"videos" : [
{
"title" : "Tools and Techniques",
"todo": "Redo first part - second part is 'Altering...'",
"ai": "mads.sqldatabases.02.061919v2.mov",
"youtube" : "r_HbRGHt0Cg"
},
{
"title" : "Altering Table Schema",
"edited" : "03-01-After-Create-1080.mov",
"formerly": "mads.sqldatabases.02.061919v2.mov",
"youtube" : "vUWkiBa9m_A"
},
{
"title" : "Dates",
"ai": "mads.sqldatabases.03.061919v2.mov",
"youtube" : "Rj68mCIgWa4"
},
{
"title" : "DISTINCT / GROUP BY",
"ai": "mads.sqldatabases.04.061919.mov",
"youtube" : "ZwE9p3F0mcs"
},
{
"title" : "Sub-Queries",
"ai": "mads.sqldatabases.05.061919.mov",
"youtube" : "mo8Q_jsZrfI"
},
{
"title" : "Concurrency",
"ai": "mads.sqldatabases.06.061919.mov",
"youtube" : "1Gbxl_dbUvI"
},
{
"title" : "Stored Procedures",
"ai": "mads.sqldatabases.07.061919v2.mov",
"youtube" : "ei0XPaacesg"
},
{
"title" : "Reading and Parsing Files",
"ai": "mads.sqldatabases.08.061919.mov",
"youtube" : "OsfoKmvZR10"
},
{
"title" : "Demonstration: Creating and Loading a Database",
"project": "03-Techniques-01-Create-Load-21-01-Edit.mov",
"youtube" : "i3kv_FUsj2I"
},
{
"title" : "Demonstration: SELECT DISTINCT",
"project": "03-Techniques-02-Distinct.mov",
"youtube" : "T2sGwt7S378"
},
{
"title" : "Demonstration: GROUP BY",
"project": "03-Techniques-03-Group-By.mov",
"note": "Uploaded to Coursera as 03-Techniques-02-Group-By.mov",
"youtube" : "RVXn0lxKgM4"
},
{
"title" : "Demonstration: Sub Query",
"project": "03-Techniques-04-Subquery.mov",
"youtube" : "jEsEba_SYKU"
},
{
"title" : "Demonstration: Transactions",
"project": "03-Techniques-05-Transactions.mov",
"youtube" : "f4eJGQ6bV0E"
},
{
"title" : "Demonstration: Stored Procedures",
"project": "03-Techniques-06-Stored-Proc.mov",
"youtube" : "H-k_Gzo8aow"
},
{
"title" : "Demonstration: Loading and Normalizing CSV Data",
"project": "03-Techniques-07-CSV-Load.mov",
"youtube" : "L3FgCZnYvSE"
}
],
"references" : [
{
"title" : "Sample SQL For Lecture",
"href" : "{apphome}/lectures/03-Techniques.txt"
},
{
"title" : "Sample SQL For CSV Loading",
"href" : "{apphome}/lectures/03-Techniques-Load.txt"
},
{
"title" : "Sample CSV Data",
"href" : "{apphome}/lectures/03-Techniques.csv"
},
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/03-Techniques-BW.pdf"
}
],
"lti" : [
{
"title" : "Quiz: SQL Techniques",
"launch" : "mod/gift/?quiz=03-Techniques.txt",
"resource_link_id" : "pg4e_03_quiz"
},
{
"title" : "Autograder: Musical Tracks Many-to-One",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_02many_one_track",
"custom" : [
{
"key": "exercise",
"value": "02many_one_track.php"
}
]
},
{
"title" : "Autograder: Unesco Heritage Sites Many-to-One",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_02many_one_unesco",
"custom" : [
{
"key": "exercise",
"value": "02many_one_unesco.php"
}
]
},
{
"title" : "Autograder: Musical Track Database plus Artists",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_03many_to_many_track",
"custom" : [
{
"key": "exercise",
"value": "03many_to_many_track.php"
}
]
}
]
},
{
"title": "Text in PostgreSQL",
"anchor": "week4",
"icon" : "fa-globe",
"description": "Handling text in PostgreSQL (but not Natural Language).",
"slides": "{apphome}/lectures/04-Text.pptx",
"discussions" : [
{
"title" : "Text in PostgreSQL",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_04_text"
}
],
"videos" : [
{
"title" : "Text in Databases",
"ai": "mads.sqldatabases.01.070319.mov",
"youtube" : "l6VXvUKMj3E"
},
{
"title" : "Text Functions",
"ai": "mads.sqldatabases.02.070319.mov",
"youtube" : "mP1ODCgUH_Q"
},
{
"title" : "Character Sets",
"ai": "mads.sqldatabases.03.070319.mov",
"youtube" : "f9jiltUPqs8"
},
{
"title" : "Character Sets in Python",
"ai": "mads.sqldatabases.04.070319.mov",
"youtube" : "lyTm3m19WEU"
},
{
"title" : "Inside Hashes",
"ai": "mads.sqldatabases.05.070319.mov",
"youtube" : "tesvI85tRag"
},
{
"title" : "Index Choices and Techniques",
"ai": "mads.sqldatabases.06.070319.mov",
"youtube" : "38aKjHiYS7Q"
},
{
"title" : "Regular Expressions",
"ai": "mads.sqldatabases.01.070919.mov",
"youtube" : "Kf97H26C5IA"
},
{
"title" : "Using Regular Expressions",
"ai": "mads.sqldatabases.02.070919.mov",
"youtube" : "BjfemxvHwno"
},
{
"title" : "Demonstration: Generating and Scanning Text",
"project": "04-Text-01-Functions-edited.mov",
"youtube" : "BG9buwh_abo"
},
{
"title" : "Demonstration: Regular Expressions",
"project": "04-Text-02-RegEx.mov",
"youtube" : "0DIejmpwy7c"
},
{
"title" : "Demonstration: Flat files, Regex, Email",
"project": "04-Text-03-Email-Edited.mov",
"youtube" : "2hh2lcDHxJ8"
}
],
"references" : [
{
"title" : "Sample SQL For Lecture",
"href" : "{apphome}/lectures/04-Text.txt"
},
{
"title" : "Regular Expression Handout",
"href" : "{apphome}/lectures/04-Text-Regex-Handout.txt"
},
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/04-Text-BW.pdf"
}
],
"lti" : [
{
"title" : "Quiz: Text in PostgreSQL",
"launch" : "mod/gift/?quiz=04-Text.txt",
"resource_link_id" : "pg4e_04_quiz"
},
{
"title" : "Autograder: Creating a Stored Procedure",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_03updated",
"custom" : [
{
"key": "exercise",
"value": "03updated.php"
}
]
},
{
"title" : "Autograder: Regular Expressions",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_03regex",
"custom" : [
{
"key": "exercise",
"value": "03regexp.php"
}
]
},
{
"title" : "Autograder: Generating Text",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_04bigtext",
"custom" : [
{
"key": "exercise",
"value": "04bigtext.php"
}
]
},
{
"title" : "Puzzle: Break a Hashing Function",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_hashpuzzle",
"custom" : [
{
"key": "exercise",
"value": "04hash.php"
}
]
}
]
},
{
"title": "Natural Language",
"anchor": "week5",
"icon" : "fa-globe",
"description": "Handling Natural Language fields and indexes in PostgreSQL.",
"slides": "{apphome}/lectures/05-FullText.php",
"discussions" : [
{
"title" : "Natural Language",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_05_language"
}
],
"videos" : [
{
"title" : "Lecture: 05 FullText 01 Blocks 1080",
"project": "Lecture: 05 FullText 01 Blocks 1080",
"youtube" : "D5WWAH1P3F8"
},
{
"title" : "Lecture: 05 FullText 02 Index 1080",
"project": "Lecture: 05 FullText 02 Index 1080",
"youtube" : "-joun4la9LA"
},
{
"title" : "Lecture: 05 FullText 03 Invert SQL 1080",
"project": "Lecture: 05 FullText 03 Invert SQL 1080",
"youtube" : "e7Qx8ud2cfs"
},
{
"title" : "Demonstration: 05 01 Inverted SQL edited",
"project": "Demonstration: 05 01 Inverted SQL edited",
"youtube" : "p6xFBJZtRmM"
},
{
"title" : "Lecture: 05 FullText 04 Invert PG 1080",
"project": "Lecture: 05 FullText 04 Invert PG 1080",
"youtube" : "vfMooBDgrBw"
},
{
"title" : "Demonstration: 05 02 String GIN raw",
"project": "Demonstration: 05 02 String GIN raw",
"youtube" : "0NY20ast0yo"
},
{
"title" : "Lecture: 05 FullText 05 Natural SQL 1080",
"project": "Lecture: 05 FullText 05 Natural SQL 1080",
"youtube" : "qlimiFYOius"
},
{
"title" : "Demonstration: 05 03 stop stem raw",
"project": "Demonstration: 05 03 stop stem raw",
"youtube" : "wHL1VVejFEk"
},
{
"title" : "Lecture: 05 FullText 06 Natural PG 1080",
"project": "Lecture: 05 FullText 06 Natural PG 1080",
"youtube" : "OV08eCK9Ymc"
},
{
"title" : "Demonstration: 05 04 fulltext functions raw",
"project": "Demonstration: 05 04 fulltext functions raw",
"youtube" : "LmTnMz6Il3A"
},
{
"title" : "Demonstration: 05 05 tsvector gin raw",
"ai": "Demonstration: 05 05 tsvector gin raw",
"youtube" : "aQnFBLaUos8"
}
],
"references" : [
{
"title" : "Sample SQL For Lecture",
"href" : "{apphome}/lectures/05-FullText.txt"
},
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/05-FullText-BW.pdf"
}
],
"lti" : [
{
"title" : "Quiz: Natural Language",
"launch" : "mod/gift/?quiz=05-FullText.txt",
"resource_link_id" : "pg4e_05_quiz"
},
{
"title" : "Autograder: Inverted Index in SQL",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_05sqlstring",
"custom" : [
{
"key": "exercise",
"value": "05sqlstring.php"
}
]
},
{
"title" : "Autograder: Reverse Index (with stop words) in SQL",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_05sqlstop",
"custom" : [
{
"key": "exercise",
"value": "05sqlstop.php"
}
]
},
{
"title" : "Autograder: String Array GIN Index",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_05ginstring",
"custom" : [
{
"key": "exercise",
"value": "05ginstring.php"
}
]
},
{
"title" : "Autograder: GIN ts_vector Index",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_05fulltext",
"custom" : [
{
"key": "exercise",
"value": "05fulltext.php"
}
]
}
]
},
{
"title": "Python and PostgreSQL",
"anchor": "week6a",
"icon" : "fa-globe",
"description": "Using PostgreSQL with Python. Using PostgreSQL to retrieve and store API data.",
"slides": [
"{apphome}/lectures/06-Python.php"
],
"discussions" : [
{
"title" : "Python and PostgreSQL",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_06_python"
}
],
"videos" : [
{
"title" : "Lecture: PY-PG 06 01 Python 1080",
"project": "Lecture: PY-PG 06 01 Python 1080",
"youtube" : "x_hHGVLh1r4"
},
{
"title" : "Demonstration: 06 01 simple raw",
"project": "Demonstration: 06 01 simple raw",
"youtube" : "j1p-AfH-Gww"
},
{
"title" : "Lecture: Mail 06 02 Gmane",
"project": "Lecture: Mail 06 02 Gmane",
"youtube" : "0Psz8eMaw7Y"
},
{
"title" : "Demonstration: Mail 1/3 06 03 gmane raw",
"project": "Demonstration: Mail 1/3 06 03 gmane raw",
"youtube" : "WAWmA2ru0Pw"
},
{
"title" : "Demonstration: Mail 2/3 06 04 gmane edited",
"project": "Demonstration: Mail 2/3 06 04 gmane edited",
"youtube" : "qCOjlnsuG0U"
},
{
"title" : "Lecture: Ranking 06 03 Rank 1080",
"project": "Lecture: Ranking 06 03 Rank 1080",
"youtube" : "ELgDJemd_Yg"
},
{
"title" : "Demonstration: Mail 3/3 06 05 gmane raw",
"project": "Demonstration: Mail 3/3 06 05 gmane raw",
"youtube" : "MKjxxms_Fu8"
}
],
"references" : [
{
"title" : "Sample SQL For Python Lecture",
"href" : "{apphome}/lectures/06-Python.txt"
}
],
"lti" : [
]
},
{
"title": "JSON and PostgreSQL",
"anchor": "week6b",
"icon" : "fa-globe",
"description": "Handling JSON in PostgreSQL.",
"slides": [
"{apphome}/lectures/06-JSON.php"
],
"discussions" : [
{
"title" : "JSON and PostgreSQL",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_07_json"
}
],
"videos" : [
{
"title" : "Lecture: JSON 06 04 JSON 1080",
"project": "Lecture: JSON 06 04 JSON 1080",
"youtube" : "rBs-mOwTv-4"
},
{
"title" : "Lecture: 06 05 JSON Python 1080",
"project": "Lecture: 06 05 JSON Python 1080",
"youtube" : "EnTGM_E-vgE"
},
{
"title" : "Lecture: PG+JSONB 06 06 PostgreSQL JSON 1080",
"project": "Lecture: PG+JSONB 06 06 PostgreSQL JSON 1080",
"youtube" : "G8ySI_nnRAA"
},
{
"title" : "Demonstration: Tracks 06 06 jsonb raw",
"project": "Demonstration: Tracks 06 06 jsonb raw",
"youtube" : "4ooyafEnUzw"
},
{
"title" : "Lecture: 06 07 Swapi 1080",
"project": "Lecture: 06 07 Swapi 1080",
"youtube" : "j3LrZIxDGV8"
},
{
"title" : "Demonstration: API 1/2 06 07 swapi raw",
"project": "Demonstration: API 1/2 06 07 swapi raw",
"youtube" : "hqrfotnwd_Y"
},
{
"title" : "Demonstration: API 2/2 06 08 swapi raw",
"project": "Demonstration: API 2/2 06 08 swapi raw",
"youtube" : "UYhn9h1OnLs"
}
],
"references" : [
{
"title" : "Sample SQL For JSON Lecture",
"href" : "{apphome}/lectures/06-JSON.txt"
}
],
"lti" : [
{
"title" : "Quiz: JSON in PostgreSQL",
"launch" : "mod/gift/?quiz=06-JSON.txt",
"resource_link_id" : "pg4e_06_quiz"
},
{
"title" : "Loading JSON from PokéAPI",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_06pokeapi",
"custom" : [
{
"key": "exercise",
"value": "06pokeapi.php"
}
]
}
]
},
{
"title": "Database Architectures",
"anchor": "week7",
"icon" : "fa-globe",
"description": "Database architectures, production deplopyment, scalability, and NoSQL.",
"slides": [
"{apphome}/lectures/07-Architecture.pptx"
],
"discussions" : [
{
"title" : "Database Architectures",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_08_arch"
}
],
"videos" : [
{
"title" : "Database Architectures (07 01 acid base)",
"project": "Database Architectures (07 01 acid base)",
"youtube" : "2k3GiQWTcnY"
},
{
"title" : "Scaling ACID Databases (07 02 acid scale) (fixed)",
"project": "Scaling ACID Databases (07 02 acid scale) (fixed)",
"youtube" : "WRuuhgMdn6w"
},
{
"title" : "True Cloud Applications (Part 1) 07 03 cloud first gen 1 1080",
"project": "True Cloud Applications (Part 1) 07 03 cloud first gen 1 1080",
"youtube" : "apUkKLbckSg"
},
{
"title" : "Google I/O '08 Keynote by Marissa Mayer",
"youtube" : "6x0cAzQ7PVs"
},
{
"title" : "Google container data center tour",
"youtube" : "zRwPSFpLX8I"
},
{
"title" : "How Search Works - Matt Cutts",
"youtube" : "BNHR6IQJGZs"
},
{
"title" : "First Generation Cloud Applications (Part 2) (07 04 cloud first gen 2 fixed)",
"project": "First Generation Cloud Applications (Part 2) (07 04 cloud first gen 2 fixed)",
"youtube" : "W6z7A2ZDgck"
},
{
"title" : "Second Generation Cloud Applications (07 05 cloud second gen fixed)1080",
"project": "Second Generation Cloud Applications (07 05 cloud second gen fixed)1080",
"youtube" : "jj3W-VU4Mhg"
},
{
"title" : "Emerging BASE Databases 07 06 base",
"project": "Emerging BASE Databases 07 06 base",
"youtube" : "bbEx6tkyblM"
},
{
"title" : "Evolving ACID Databases (07 07 acid reaction 1080)",
"project": "Evolving ACID Databases (07 07 acid reaction 1080)",
"youtube" : "3CBSqWh_-JE"
}
],
"references" : [
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/07-Architecture-BW.pdf"
}
],
"lti" : [
{
"title" : "Quiz: Database Architecture",
"launch" : "mod/gift/?quiz=07-Arch.txt",
"resource_link_id" : "pg4e_07_quiz"
}
]
},
{
"title": "Elastic Search",
"anchor": "week7a",
"icon" : "fa-globe",
"description": "Using ElasticSearch to explore NoSQL.",
"slides": [
"{apphome}/lectures/07-Elastic.pptx"
],
"discussions" : [
{
"title" : "Elastic Search",
"launch" : "mod/tdiscus/",
"resource_link_id": "discuss_09_elastic"
}
],
"videos" : [
{
"title" : "Elastic Search Overview (7.x)",
"project": "Elastic Search Overview (7.x)",
"youtube" : "T5LzslZid9s"
},
{
"title" : "Elastic Search 7.x Python Code",
"project": "Elastic Search 7.x Python Code",
"youtube" : "oy49afXmvtY"
},
{
"title" : "Demonstration: Loading a book into Elastic Search",
"project": "Demonstration: Loading a book into Elastic Search",
"youtube" : "xdjXB6RutQU"
},
{
"title" : "Demonstration: Using Elastic Search's REST API",
"project": "Demonstration: Using Elastic Search's REST API",
"youtube" : "933wuij1-_I"
},
{
"title" : "Demonstration: Scraping an Email API and Loading it into Elastic Search",
"project": "Demonstration: Scraping an Email API and Loading it into Elastic Search",
"youtube" : "dBQ7eP-U7YE"
},
{
"title" : "Demonstration: Loading A Tweet into Elastic Search",
"project": "Demonstration: Loading A Tweet into Elastic Search",
"youtube" : "h3_pPEXuWx8"
}
],
"references" : [
{
"title" : "High Contrast / Printable Slides",
"href" : "{apphome}/lectures/07-Elastic-BW.pdf"
},
{
"title" : "Using ElasticSearch on PythonAnywhere",
"href" : "{apphome}/assn/pg4e_pyaw_es.md"
}
],
"lti" : [
{
"title" : "Autograder: Elasticsearch Book Load",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_07book",
"custom" : [
{
"key": "exercise",
"value": "07book.php"
}
]
},
{
"title" : "Autograder: Elasticsearch Email Load",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_07gmane",
"custom" : [
{
"key": "exercise",
"value": "07gmane.php"
}
]
},
{
"title" : "Autograder: Elasticsearch Tweets",
"launch" : "tools/sql/",
"resource_link_id" : "pg4e_07tweet",
"custom" : [
{
"key": "exercise",
"value": "07tweet.php"
}
]
}
]
}
]
}