-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslides.html
2734 lines (2678 loc) · 137 KB
/
slides.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Self-Directed Learning with Online Resources — Self Directed Learning with Online Resources</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="_static/css/basicstrap-base.css" type="text/css" />
<link rel="stylesheet" id="current-theme" href="_static/css/bootstrap3/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" id="current-adjust-theme" type="text/css" />
<link rel="stylesheet" href="_static/css/font-awesome.min.css">
<link rel="stylesheet" href="_static/css/basicstrap.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/local.css" type="text/css" />
<link rel="stylesheet" href="_static/css/local.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: 'v0.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/js/jquery.min.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/local.js"></script>
<script type="text/javascript" src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="_static/js/bootstrap3.min.js"></script>
<script type="text/javascript" src="_static/js/jquery.cookie.min.js"></script>
<script type="text/javascript" src="_static/js/basicstrap.js"></script>
<script type="text/javascript">
</script>
<link rel="top" title="Self Directed Learning with Online Resources" href="index.html" />
<link rel="next" title="Glossary" href="glossary.html" />
<link rel="prev" title="Self-Directed Learning with Online Resources" href="index.html" />
</head>
<body role="document">
<div id="navbar-top" class="navbar navbar-default" role="navigation" aria-label="top navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Self Directed Learning with Online Resources</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown visible-xs">
<a role="button" id="localToc" data-toggle="dropdown" data-target="#" href="#">Table Of Contents <b class="caret"></b></a>
<ul class="dropdown-menu localtoc sp-localtoc" role="menu" aria-labelledby="localToc">
<ul>
<li><a class="reference internal" href="#">Self-Directed Learning with Online Resources</a><ul>
<li><a class="reference internal" href="#objectives">Objectives</a><ul>
<li><a class="reference internal" href="#self-directed-learning">Self Directed Learning</a><ul>
<li><a class="reference internal" href="#aquariums-and-cave-diving">Aquariums and Cave Diving</a></li>
</ul>
</li>
<li><a class="reference internal" href="#undergradate-stem-graduates">Undergradate STEM Graduates</a></li>
</ul>
</li>
<li><a class="reference internal" href="#background">Background</a><ul>
<li><a class="reference internal" href="#learning-resource-timeline">Learning Resource Timeline</a></li>
<li><a class="reference internal" href="#knowledge-economy-roles">Knowledge Economy Roles</a></li>
<li><a class="reference internal" href="#yearly-knowledge-data-graph">Yearly Knowledge/Data Graph</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#challenges">Challenges</a><ul>
<li><a class="reference internal" href="#resource-constraints">Resource Constraints</a><ul>
<li><a class="reference internal" href="#learning-materials">Learning Materials</a><ul>
<li><a class="reference internal" href="#course-artifacts-and-components">Course Artifacts and Components</a></li>
<li><a class="reference internal" href="#resources-course-lifecycle">Resources: Course Lifecycle</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#employer-acceptance">Employer Acceptance</a><ul>
<li><a class="reference internal" href="#verification">Verification</a></li>
</ul>
</li>
<li><a class="reference internal" href="#incentivization">Incentivization</a><ul>
<li><a class="reference internal" href="#human-motivation">Human Motivation</a></li>
<li><a class="reference internal" href="#why">Why?</a></li>
</ul>
</li>
<li><a class="reference internal" href="#learning-assessments">Learning Assessments</a><ul>
<li><a class="reference internal" href="#self-evaluation">Self Evaluation</a></li>
<li><a class="reference internal" href="#standard-normal-testing">Standard-Normal Testing</a></li>
<li><a class="reference internal" href="#voting-choice-theory">Voting Choice Theory</a></li>
<li><a class="reference internal" href="#essay-qualification-quantification">Essay Qualification & Quantification</a></li>
</ul>
</li>
<li><a class="reference internal" href="#sharing-resources">Sharing Resources</a><ul>
<li><a class="reference internal" href="#creating-and-updating-resources">Creating and Updating Resources</a></li>
<li><a class="reference internal" href="#information-access-optimizations">Information Access Optimizations</a></li>
<li><a class="reference internal" href="#bibliographic-citations">Bibliographic Citations</a></li>
<li><a class="reference internal" href="#sharing-data-resources">Sharing Data Resources</a></li>
<li><a class="reference internal" href="#resources-bookmarks">Resources: Bookmarks</a></li>
<li><a class="reference internal" href="#document-capturing-process">Document Capturing Process</a></li>
<li><a class="reference internal" href="#workflow-sharing-documents-as-email-attachments">Workflow: Sharing Documents as Email Attachments</a></li>
<li><a class="reference internal" href="#designing-uris-for-resource-collections">Designing URIs for Resource Collections</a></li>
<li><a class="reference internal" href="#versioning-project-resources">Versioning Project Resources</a></li>
</ul>
</li>
<li><a class="reference internal" href="#interface-usability-and-accessibility">Interface Usability and Accessibility</a><ul>
<li><a class="reference internal" href="#interfaces-for-online-learning">Interfaces for Online Learning</a></li>
<li><a class="reference internal" href="#interface-criteria">Interface Criteria</a></li>
<li><a class="reference internal" href="#interface-questions">Interface Questions</a></li>
<li><a class="reference internal" href="#separating-content-and-presentation">Separating Content and Presentation</a></li>
</ul>
</li>
<li><a class="reference internal" href="#privacy-and-security">Privacy and Security</a><ul>
<li><a class="reference internal" href="#privacy">Privacy</a></li>
<li><a class="reference internal" href="#security">Security</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#opportunities">Opportunities</a><ul>
<li><a class="reference internal" href="#direct-returns">Direct Returns</a><ul>
<li><a class="reference internal" href="#teacher-salaries">Teacher Salaries</a></li>
</ul>
</li>
<li><a class="reference internal" href="#indirect-returns-externalities">Indirect Returns / Externalities</a><ul>
<li><a class="reference internal" href="#network-effects">Network Effects</a></li>
<li><a class="reference internal" href="#goodwill">Goodwill</a></li>
<li><a class="reference internal" href="#knowledge-economy">Knowledge Economy</a></li>
<li><a class="reference internal" href="#stem-theory-process-and-knowledge">STEM Theory, Process, and Knowledge</a></li>
<li><a class="reference internal" href="#goal-maximize-collaborative-output">Goal: Maximize Collaborative Output</a></li>
<li><a class="reference internal" href="#generalizing-educational-momentum">Generalizing Educational Momentum</a></li>
<li><a class="reference internal" href="#knowledge-graph">Knowledge Graph</a></li>
<li><a class="reference internal" href="#linking-between-things-with-urls-and-metadata">Linking Between Things with URLs and Metadata</a></li>
<li><a class="reference internal" href="#tools-pushing-for-better-calculators">Tools: Pushing for Better Calculators</a></li>
<li><a class="reference internal" href="#publishing-storage-and-presentation">Publishing, Storage, and Presentation</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#strategies">Strategies</a><ul>
<li><a class="reference internal" href="#channels">Channels</a><ul>
<li><a class="reference internal" href="#publishing-static-documents">Publishing Static Documents</a></li>
<li><a class="reference internal" href="#video">Video</a></li>
<li><a class="reference internal" href="#q-a">Q&A</a><ul>
<li><a class="reference internal" href="#q-a-web-sites">Q&A Web Sites</a></li>
</ul>
</li>
<li><a class="reference internal" href="#social-media">Social Media</a></li>
</ul>
</li>
<li><a class="reference internal" href="#implementations">Implementations</a><ul>
<li><a class="reference internal" href="#opencourseware">OpenCourseWare</a></li>
<li><a class="reference internal" href="#mooc-opencourseware-coursera-edx">MOOC: OpenCourseware, Coursera, EdX</a></li>
<li><a class="reference internal" href="#mooc-online-course-features">MOOC Online Course Features</a></li>
<li><a class="reference internal" href="#online-course-experience">Online Course Experience</a></li>
<li><a class="reference internal" href="#software-programming-codecademy">Software Programming: CodeCademy</a></li>
<li><a class="reference internal" href="#math-based-web-game-design">Math-based web game design</a></li>
<li><a class="reference internal" href="#university-online-offerings">University Online Offerings</a></li>
<li><a class="reference internal" href="#learning-dashboard">Learning Dashboard</a><ul>
<li><a class="reference internal" href="#charting-competencies">Charting Competencies</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#authoring-tools">Authoring Tools</a><ul>
<li><a class="reference internal" href="#authoring-tool-features">Authoring Tool Features</a></li>
<li><a class="reference internal" href="#format-support">Format Support</a></li>
<li><a class="reference internal" href="#standards-web">Standards: Web</a><ul>
<li><a class="reference internal" href="#links-urls-and-uris">Links, URLs, and URIs</a></li>
<li><a class="reference internal" href="#http">HTTP</a></li>
<li><a class="reference internal" href="#html">HTML</a></li>
</ul>
</li>
<li><a class="reference internal" href="#standards-education">Standards: Education</a><ul>
<li><a class="reference internal" href="#scorm">SCORM</a></li>
<li><a class="reference internal" href="#tincan-api">TinCan API</a></li>
</ul>
</li>
<li><a class="reference internal" href="#standards-markup-languages">Standards: Markup Languages</a></li>
<li><a class="reference internal" href="#standards-tincan-api">Standards: TinCan API</a><ul>
<li><a class="reference internal" href="#signing-authority">Signing Authority</a></li>
</ul>
</li>
<li><a class="reference internal" href="#scorm-in-html5-tincan-activities">SCORM in HTML5: TinCan Activities</a></li>
<li><a class="reference internal" href="#lightweight-markup-languages">Lightweight Markup Languages</a></li>
<li><a class="reference internal" href="#organizing-a-sphinx-documentation-project">Organizing a Sphinx Documentation Project</a></li>
<li><a class="reference internal" href="#knowledge-resource-criteria">Knowledge Resource Criteria</a></li>
<li><a class="reference internal" href="#authoring-sequencing-learning-objects">Authoring: Sequencing Learning Objects</a></li>
</ul>
</li>
<li><a class="reference internal" href="#learning-sequences-and-curricula">Learning Sequences and Curricula</a><ul>
<li><a class="reference internal" href="#sequencing-exercise-pen-and-paper">Sequencing Exercise: Pen and Paper</a></li>
<li><a class="reference internal" href="#curriculum-interfaces">Curriculum Interfaces</a></li>
<li><a class="reference internal" href="#a-curriculum-sequence">A Curriculum Sequence</a></li>
<li><a class="reference internal" href="#sequencing-tagged-resources">Sequencing Tagged Resources</a></li>
<li><a class="reference internal" href="#authoring-generating-curricula-activity-graphs">Authoring: Generating Curricula Activity Graphs</a></li>
<li><a class="reference internal" href="#curriculum-degree-sequence-requirements">Curriculum/Degree Sequence Requirements</a></li>
<li><a class="reference internal" href="#reviewing-curriculum-sequences">Reviewing Curriculum Sequences</a></li>
<li><a class="reference internal" href="#authoring-curricula-management">Authoring: Curricula Management</a></li>
<li><a class="reference internal" href="#learning-metrics">Learning Metrics</a></li>
</ul>
</li>
<li><a class="reference internal" href="#software-r-d-and-learning">Software R&D and Learning</a><ul>
<li><a class="reference internal" href="#project-based-learning">Project Based Learning</a></li>
<li><a class="reference internal" href="#augmenting-learning">Augmenting Learning</a></li>
<li><a class="reference internal" href="#standard-project-documents">Standard Project Documents</a></li>
<li><a class="reference internal" href="#revision-control">Revision Control</a></li>
<li><a class="reference internal" href="#open-source-software-development-community">Open Source Software Development Community</a></li>
<li><a class="reference internal" href="#version-control-workflow-development">Version Control Workflow Development</a></li>
<li><a class="reference internal" href="#collaborative-review">Collaborative Review</a><ul>
<li><a class="reference internal" href="#reviewboard">Reviewboard</a></li>
</ul>
</li>
<li><a class="reference internal" href="#compile-a-course">Compile a Course</a></li>
<li><a class="reference internal" href="#continuous-regression-testing-for-learning">Continuous Regression Testing for Learning</a></li>
<li><a class="reference internal" href="#sequences">Sequences</a></li>
<li><a class="reference internal" href="#spaced-repetitions">Spaced Repetitions</a></li>
<li><a class="reference internal" href="#optimization-machine-learning-for-sequence-optimization">Optimization: Machine Learning for Sequence Optimization</a><ul>
<li><a class="reference internal" href="#optimization-a-b-testing">Optimization: A/B Testing</a></li>
<li><a class="reference internal" href="#optimization-cost-flow">Optimization: Cost/Flow</a></li>
<li><a class="reference internal" href="#optimization-receiver-operating-characteristics">Optimization: Receiver Operating Characteristics</a></li>
<li><a class="reference internal" href="#optimization-streamgraph-conversion-funnel">Optimization: Streamgraph Conversion Funnel</a></li>
</ul>
</li>
<li><a class="reference internal" href="#searching-and-indexing">Searching and Indexing</a></li>
<li><a class="reference internal" href="#namespacing">Namespacing</a></li>
<li><a class="reference internal" href="#finding-and-disambiguating-concept-instance-identifiers">Finding and Disambiguating Concept & Instance Identifiers</a></li>
<li><a class="reference internal" href="#linked-open-data-wikipedia-and-dbpedia">Linked Open Data: Wikipedia and DBPedia</a></li>
</ul>
</li>
<li><a class="reference internal" href="#stem-labs">STEM Labs</a><ul>
<li><a class="reference internal" href="#stem-labs-laboratory-based-learning">STEM Labs: Laboratory Based Learning</a></li>
<li><a class="reference internal" href="#stem-labs-data-science-laboratory">STEM Labs: Data Science Laboratory</a></li>
<li><a class="reference internal" href="#stem-labs-services">STEM Labs: Services</a></li>
<li><a class="reference internal" href="#stem-labs-student-api">STEM Labs: Student API</a></li>
<li><a class="reference internal" href="#stem-labs-student-assignment-api">STEM Labs: Student Assignment API</a></li>
<li><a class="reference internal" href="#stem-labs-setup-python-application-framework">STEM Labs: Setup Python Application Framework</a></li>
<li><a class="reference internal" href="#stem-labs-python-tools">STEM Labs: Python Tools</a></li>
<li><a class="reference internal" href="#stem-labs-cloud-services">STEM Labs: Cloud Services</a></li>
<li><a class="reference internal" href="#stem-labs-open-learning-stacks">STEM Labs: Open Learning Stacks</a></li>
<li><a class="reference internal" href="#stem-labs-media-repository">STEM Labs: Media Repository</a><ul>
<li><a class="reference internal" href="#build-a-bookstore-api">Build a Bookstore API</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#identifying-tools-gaps-as-opportunities">Identifying Tools Gaps as Opportunities</a><ul>
<li><a class="reference internal" href="#communicating-feature-requests">Communicating Feature Requests</a></li>
<li><a class="reference internal" href="#achieving-feature-decision-consensus">Achieving Feature Decision Consensus</a></li>
<li><a class="reference internal" href="#learning-content-management-systems">Learning Content Management Systems</a></li>
<li><a class="reference internal" href="#rubrics-and-feature-matrices">Rubrics and Feature Matrices</a></li>
<li><a class="reference internal" href="#document-publishing-feature-comparison-matrix">Document Publishing Feature Comparison Matrix</a></li>
<li><a class="reference internal" href="#gap-freemind-to-restructuredtext">Gap: Freemind to ReStructuredText</a></li>
<li><a class="reference internal" href="#gap-sphinxcontrib-courses">Gap: sphinxcontrib-courses</a><ul>
<li><a class="reference internal" href="#q-a-authoring">Q&A Authoring</a></li>
</ul>
</li>
<li><a class="reference internal" href="#gap-per-course-sidewiki">Gap: Per-Course Sidewiki</a></li>
<li><a class="reference internal" href="#process-citations">Process: Citations</a></li>
<li><a class="reference internal" href="#tools-managing-bibliographic-sources">Tools: Managing Bibliographic Sources</a></li>
<li><a class="reference internal" href="#publishing-research-metadata">Publishing Research Metadata</a></li>
<li><a class="reference internal" href="#id1">Tools: Managing Bibliographic Sources</a></li>
<li><a class="reference internal" href="#gap-managing-structured-citations">Gap: Managing Structured Citations</a><ul>
<li><a class="reference internal" href="#zotero">Zotero</a></li>
<li><a class="reference internal" href="#restructuredtext-citations">ReStructuredText Citations</a></li>
</ul>
</li>
<li><a class="reference internal" href="#gap-sphinx-widont">Gap: Sphinx Widont</a></li>
<li><a class="reference internal" href="#gap-tincan-server-python-reference-implementation">Gap: TinCan Server Python Reference Implementation</a></li>
<li><a class="reference internal" href="#gap-security-student-api-access-control">Gap: Security: Student API Access Control</a></li>
<li><a class="reference internal" href="#gap-restructuredtext-outlines-and-s5-presentations">Gap: ReStructuredText Outlines and S5 Presentations</a></li>
<li><a class="reference internal" href="#gap-sphinx-glossary-thesarus">Gap: Sphinx Glossary Thesarus</a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#license">License</a></li>
</ul>
</ul>
</li>
<li><a href="index.html" title="Self-Directed Learning with Online Resources" accesskey="P">previous </a></li>
<li><a href="glossary.html" title="Glossary" accesskey="N">next </a></li>
<li><a href="genindex.html" title="General Index" accesskey="I">index </a></li>
<li class="visible-xs"><a href="_sources/slides.txt" rel="nofollow">Show Source</a></li>
<li class="visible-xs">
<form class="search form-search form-inline navbar-form navbar-right sp-searchbox" action="search.html" method="get">
<div class="input-append input-group">
<input type="text" class="search-query form-control" name="q" placeholder="Search...">
<span class="input-group-btn">
<input type="submit" class="btn" value="Go" />
</span>
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</li>
</ul>
</div>
</div>
</div>
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row">
<div class="col-md-7" id="content-wrapper">
<div class="document" role="main">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="self-directed-learning-with-online-resources">
<h1>Self-Directed Learning with Online Resources<a class="headerlink" href="#self-directed-learning-with-online-resources" title="Permalink to this headline">¶</a></h1>
<p>An independent study of
challenges,
opportunities
and strategies
for encouraging feedback
between tools and resources
in online learning systems</p>
<div class="highlight-python"><div class="highlight"><pre>aquariums and cave diving
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">might as well be a request for proposal</p>
</div>
<div class="section" id="objectives">
<h2>Objectives<a class="headerlink" href="#objectives" title="Permalink to this headline">¶</a></h2>
<div class="section" id="self-directed-learning">
<h3>Self Directed Learning<a class="headerlink" href="#self-directed-learning" title="Permalink to this headline">¶</a></h3>
<p><em class="xref std std-term">Autodidactism</em>: Self-Directed Learning</p>
<ul class="simple">
<li>Time</li>
<li>Skills</li>
<li>Discipline</li>
<li>Rhetoric</li>
<li><a class="reference internal" href="glossary.html#term-resource"><em class="xref std std-term">Resources</em></a></li>
</ul>
<p>And tools that <em class="xref std std-term">augment</em> learning in application to:</p>
<ul class="simple">
<li>Theory</li>
<li>Knowledge</li>
<li>Wisdom</li>
</ul>
<div class="section" id="aquariums-and-cave-diving">
<h4>Aquariums and Cave Diving<a class="headerlink" href="#aquariums-and-cave-diving" title="Permalink to this headline">¶</a></h4>
<div class="highlight-python"><div class="highlight"><pre>Aquariums and Cave Diving
</pre></div>
</div>
<ul class="simple">
<li>Jacques Cousteau</li>
<li>Edutainment/Infotainment</li>
<li>Documentary :: Reality</li>
<li>Information Chunking</li>
<li>Market Study Confidence</li>
<li>Attention Retention</li>
</ul>
</div>
</div>
<div class="section" id="undergradate-stem-graduates">
<h3>Undergradate STEM Graduates<a class="headerlink" href="#undergradate-stem-graduates" title="Permalink to this headline">¶</a></h3>
<p>“We need one million more <a class="reference internal" href="glossary.html#term-stem"><em class="xref std std-term">STEM</em></a> trained:”</p>
<ul class="simple">
<li>Qualified, Knowledgeable Consumers</li>
<li>Efficient, Sustainable, Creative Producers</li>
<li>Data Science Influencers</li>
</ul>
</div>
</div>
<div class="section" id="background">
<h2>Background<a class="headerlink" href="#background" title="Permalink to this headline">¶</a></h2>
<div class="section" id="learning-resource-timeline">
<h3>Learning Resource Timeline<a class="headerlink" href="#learning-resource-timeline" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python"><div class="highlight"><pre> Printing Newspaper
Press Telegraph
Magazines
Radio
Television
Internet: URLs
Wireless Internet
Mobile Internet
Tablets
Wireless
Stone Papyrus Copper Fiber
BC CE 1800 1900 2000 2100
</pre></div>
</div>
<p>[TODO:cite][TODO:correct]</p>
</div>
<div class="section" id="knowledge-economy-roles">
<h3>Knowledge Economy Roles<a class="headerlink" href="#knowledge-economy-roles" title="Permalink to this headline">¶</a></h3>
<p><em>Producer</em></p>
<ul class="simple">
<li>Creating</li>
<li>Synthesizing</li>
<li>Distilling</li>
<li>Adding Value</li>
</ul>
<p><em>Consumer</em></p>
<ul class="simple">
<li>“Smart Consumer”</li>
<li>Searching for Value</li>
</ul>
<p><em>Influencer</em></p>
<ul class="simple">
<li>Continually learning the market</li>
</ul>
<blockquote class="epigraph">
<div>When are the dances?</div></blockquote>
</div>
<div class="section" id="yearly-knowledge-data-graph">
<h3>Yearly Knowledge/Data Graph<a class="headerlink" href="#yearly-knowledge-data-graph" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python"><div class="highlight"><pre>Stream/stacked graph by source with rough yearly data transfer
</pre></div>
</div>
<p>[TODO:cite]</p>
</div>
</div>
</div>
<div class="section" id="challenges">
<h1>Challenges<a class="headerlink" href="#challenges" title="Permalink to this headline">¶</a></h1>
<ul class="simple">
<li>Room to Grow</li>
<li>Resource Efficacy</li>
<li>Cost/Return Curve</li>
<li>Creativity & Process Control</li>
<li>Tool Frustration -> Resistance to Change</li>
<li>Taking a step back</li>
</ul>
<p>Reaching People with Busy Schedules</p>
<ul class="simple">
<li>Data<ul>
<li>Charts</li>
<li>Analyses</li>
</ul>
</li>
<li>Opportunities</li>
<li>URLS<ul>
<li>Bookmarkable</li>
<li>Shareable</li>
<li>Referenceable</li>
<li>Archivable</li>
</ul>
</li>
</ul>
<div class="section" id="resource-constraints">
<h2>Resource Constraints<a class="headerlink" href="#resource-constraints" title="Permalink to this headline">¶</a></h2>
<div class="section" id="learning-materials">
<h3>Learning Materials<a class="headerlink" href="#learning-materials" title="Permalink to this headline">¶</a></h3>
<p>Learning <em class="xref std std-term">Resources</em></p>
<div class="section" id="course-artifacts-and-components">
<h4>Course Artifacts and Components<a class="headerlink" href="#course-artifacts-and-components" title="Permalink to this headline">¶</a></h4>
<blockquote class="epigraph">
<div>“I want to download all of this as a zip file”</div></blockquote>
<ul class="simple">
<li>Syllabus</li>
<li>Lectures</li>
<li>Slides</li>
<li>Quizzes</li>
<li>Assignments / <a class="reference internal" href="glossary.html#term-activity"><em class="xref std std-term">Activities</em></a></li>
<li>Expected Assignment Durations</li>
<li>Documents: <a class="reference internal" href="glossary.html#term-95"><em class="xref std std-term">PDF</em></a>, <a class="reference internal" href="glossary.html#term-html"><em class="xref std std-term">HTML</em></a></li>
<li>Audio</li>
<li>Photo</li>
<li>Video</li>
<li>Books</li>
<li>Web Pages</li>
<li>Datasets</li>
<li><a class="reference internal" href="glossary.html#term-linked-data"><em class="xref std std-term">Linked Data</em></a></li>
<li>Knowledge Triple Repositories</li>
<li><a class="reference internal" href="glossary.html#term-url"><em class="xref std std-term">URLs</em></a></li>
<li>Notes</li>
<li>Questions</li>
<li>Answers</li>
</ul>
</div>
<div class="section" id="resources-course-lifecycle">
<h4>Resources: Course Lifecycle<a class="headerlink" href="#resources-course-lifecycle" title="Permalink to this headline">¶</a></h4>
<blockquote class="epigraph">
<div>“Why do we do it this way?”</div></blockquote>
<p><strong>Answer</strong></p>
<div class="line-block">
<div class="line">We used to ___________, but __________,</div>
<div class="line">so we tried __________, but __________,</div>
<div class="line">and now ______________________________,</div>
<div class="line">so what we’re looking to do is</div>
<div class="line">______________________________________</div>
<div class="line">on the <a class="reference internal" href="glossary.html#term-web"><em class="xref std std-term">web</em></a></div>
<div class="line"><br /></div>
<div class="line">with <a class="reference internal" href="glossary.html#term-version-control-system"><em class="xref std std-term">revision controls</em></a></div>
</div>
<div class="highlight-python"><div class="highlight"><pre>Topics -> Requirements -> Research -> Expertise (Reivew) ->
Chunking Wisdom -> Formatting -> Publishing
Publishing:
PDF
Books
Slides
Tapes
CDs
WebPages
Knowledge Repositories
Databases
</pre></div>
</div>
</div>
</div>
</div>
<div class="section" id="employer-acceptance">
<h2>Employer Acceptance<a class="headerlink" href="#employer-acceptance" title="Permalink to this headline">¶</a></h2>
<div class="section" id="verification">
<h3>Verification<a class="headerlink" href="#verification" title="Permalink to this headline">¶</a></h3>
</div>
</div>
<div class="section" id="incentivization">
<h2>Incentivization<a class="headerlink" href="#incentivization" title="Permalink to this headline">¶</a></h2>
<div class="section" id="human-motivation">
<h3>Human Motivation<a class="headerlink" href="#human-motivation" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="why">
<h3>Why?<a class="headerlink" href="#why" title="Permalink to this headline">¶</a></h3>
</div>
</div>
<div class="section" id="learning-assessments">
<h2>Learning Assessments<a class="headerlink" href="#learning-assessments" title="Permalink to this headline">¶</a></h2>
<div class="section" id="self-evaluation">
<h3>Self Evaluation<a class="headerlink" href="#self-evaluation" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="standard-normal-testing">
<h3>Standard-Normal Testing<a class="headerlink" href="#standard-normal-testing" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="voting-choice-theory">
<h3>Voting Choice Theory<a class="headerlink" href="#voting-choice-theory" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="essay-qualification-quantification">
<h3>Essay Qualification & Quantification<a class="headerlink" href="#essay-qualification-quantification" title="Permalink to this headline">¶</a></h3>
</div>
</div>
<div class="section" id="sharing-resources">
<h2>Sharing Resources<a class="headerlink" href="#sharing-resources" title="Permalink to this headline">¶</a></h2>
<div class="section" id="creating-and-updating-resources">
<h3>Creating and Updating Resources<a class="headerlink" href="#creating-and-updating-resources" title="Permalink to this headline">¶</a></h3>
<p>What does it mean to produce a <em>hyperlinked</em> document?</p>
<ul class="simple">
<li>Why HTTP?</li>
<li>Why HTML?</li>
<li>Why Javascript?</li>
</ul>
</div>
<div class="section" id="information-access-optimizations">
<h3>Information Access Optimizations<a class="headerlink" href="#information-access-optimizations" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li><em>Table of Contents</em></li>
<li><em>Index</em>: Terminological Lexicon</li>
<li><cite>Glossary</cite>: Compendium of Definitions</li>
<li><em>Search</em></li>
</ul>
</div>
<div class="section" id="bibliographic-citations">
<h3>Bibliographic Citations<a class="headerlink" href="#bibliographic-citations" title="Permalink to this headline">¶</a></h3>
<p>Maintaining structured links to reference and documentation sources</p>
<ul class="simple">
<li>Document title</li>
<li>Page Number</li>
<li>#URL Fragment</li>
<li>Attachment Revisions</li>
</ul>
</div>
<div class="section" id="sharing-data-resources">
<h3>Sharing Data Resources<a class="headerlink" href="#sharing-data-resources" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div><em>Neat</em>, <strong>Awesome</strong> Study, but</div></blockquote>
<ul class="simple">
<li>What is this <a class="reference internal" href="glossary.html#term-namespacing"><em class="xref std std-term">named</em></a></li>
<li>How easily can our tools share data?</li>
<li>Where can I download the checksums?</li>
<li>How do I download it?</li>
<li>What do you want to do with it?</li>
<li>What concepts and keywords does it reference?</li>
<li>Which part of this should I translate?</li>
</ul>
<blockquote class="epigraph">
<div>“One of them is ‘Naming Things’”
– TODO</div></blockquote>
</div>
<div class="section" id="resources-bookmarks">
<h3>Resources: Bookmarks<a class="headerlink" href="#resources-bookmarks" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Bookmarks are great</li>
<li>Bookmarks are resources</li>
<li>I need to consolidate my bookmarks</li>
<li>I need to manage my bookmarks</li>
<li>I need a bookmark manager</li>
<li>I want a bookmark management system</li>
<li>I want to upload my bookmarks</li>
<li>And search them</li>
<li>And paste them to you</li>
<li>At opportune moments</li>
</ul>
<blockquote class="epigraph">
<div>Check this out.</div></blockquote>
</div>
<div class="section" id="document-capturing-process">
<h3>Document Capturing Process<a class="headerlink" href="#document-capturing-process" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>Wait? What? You want to scan this? Awesome.</div></blockquote>
<p><em>Artifacts</em></p>
<ul class="simple">
<li>Why tag things?</li>
<li>Why name them?</li>
<li>Why label them?</li>
</ul>
</div>
<div class="section" id="workflow-sharing-documents-as-email-attachments">
<h3>Workflow: Sharing Documents as Email Attachments<a class="headerlink" href="#workflow-sharing-documents-as-email-attachments" title="Permalink to this headline">¶</a></h3>
<p>I want to email a document that would be better if
we were to revise collaboratively.</p>
<p>Why would it be inefficient to email variously named and occasionally
versioned versions of a document resource?</p>
<p>When do we file this?</p>
</div>
<div class="section" id="designing-uris-for-resource-collections">
<h3>Designing URIs for Resource Collections<a class="headerlink" href="#designing-uris-for-resource-collections" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>What page number was that? If this was a web page, I could
just __________?</div></blockquote>
<ul class="simple">
<li>Which page is it on?</li>
<li>What is the <a class="reference internal" href="glossary.html#term-url"><em class="xref std std-term">URL</em></a> ?</li>
<li>Why doesn’t this <a class="reference internal" href="glossary.html#term-95"><em class="xref std std-term">PDF</em></a>
<em class="xref std std-term">Bookmark</em>
include the document title?</li>
<li>This page does not include content mentioning these keywords.</li>
<li>Can I link to a document subsection with a <em class="xref std std-term">URL Fragment</em>?</li>
<li>How should I organize course files for a zip archive?</li>
<li>How should I organize course files for packaging?</li>
<li>How do I watch/listen to course lectures on a phone, tablet, TV, mac, pc?</li>
<li>How can I adjust the font?</li>
<li>Where should the <em class="xref std std-term">presentation</em>
mix with the <a class="reference internal" href="glossary.html#term-content"><em class="xref std std-term">Content</em></a>?</li>
<li>“Data not available”</li>
<li>How do I search based on <a class="reference internal" href="glossary.html#term-metadata"><em class="xref std std-term">metadata</em></a>?<ul>
<li>Can I facet the search query with certain criteria?</li>
</ul>
</li>
<li>Can I share this link?</li>
</ul>
</div>
<div class="section" id="versioning-project-resources">
<h3>Versioning Project Resources<a class="headerlink" href="#versioning-project-resources" title="Permalink to this headline">¶</a></h3>
<p>Managing a <strong>Project</strong>
as a <a class="reference internal" href="glossary.html#term-resource"><em class="xref std std-term">Resource</em></a> with versioned links to
additional <em class="xref std std-term">Resources</em></p>
<p>Comparing wikis and version control</p>
<p>Wiki</p>
<ul class="simple">
<li>Revision Trail: “History”</li>
<li>Talk Page: Commentary, Feedback</li>
</ul>
<p>Version Control</p>
<ul class="simple">
<li>Revision Trail: “Commit Log”</li>
</ul>
</div>
</div>
<div class="section" id="interface-usability-and-accessibility">
<h2>Interface Usability and Accessibility<a class="headerlink" href="#interface-usability-and-accessibility" title="Permalink to this headline">¶</a></h2>
<div class="section" id="interfaces-for-online-learning">
<h3>Interfaces for Online Learning<a class="headerlink" href="#interfaces-for-online-learning" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>“Really what I want is...”</div></blockquote>
<ul class="simple">
<li>Focused learning activities</li>
<li>search</li>
<li>animated</li>
<li>four-dimensional</li>
<li>through my phone/tablet</li>
</ul>
<p>Managing and encouraging feedback at scale</p>
<p>Designing flexibly linked data models to support cool <a class="reference internal" href="glossary.html#term-ui"><em class="xref std std-term">UIs</em></a>.</p>
</div>
<div class="section" id="interface-criteria">
<h3>Interface Criteria<a class="headerlink" href="#interface-criteria" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Where is the table of contents?</li>
<li>What do <code class="docutils literal"><span class="pre">Page</span> <span class="pre">Up</span></code> and <code class="docutils literal"><span class="pre">Page</span> <span class="pre">Down</span></code> do?</li>
<li>What about <code class="docutils literal"><span class="pre">Tab</span></code>?</li>
<li>Why do I have to <strong>click</strong> next and previous?</li>
<li>Can I <code class="docutils literal"><span class="pre">Ctrl-F</span></code> to search within the resource?</li>
<li>Can I tab through these?</li>
<li>What can I link to?</li>
<li>Can I link to a URL fragment in a new tab?</li>
<li>Can I scroll with the mouse wheel?</li>
</ul>
</div>
<div class="section" id="interface-questions">
<h3>Interface Questions<a class="headerlink" href="#interface-questions" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Can I download a list of my assignment due dates?<ul>
<li>To my iCal</li>
<li>As a list of tasks with duration</li>
<li>As an RSS feed</li>
</ul>
</li>
<li>What does it mean that a course is worth N credit hours?<ul>
<li>How many hours a week is that?</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="separating-content-and-presentation">
<h3>Separating Content and Presentation<a class="headerlink" href="#separating-content-and-presentation" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>Which page number is it on my device?</div></blockquote>
<div class="highlight-python"><div class="highlight"><pre>________________________
| ________________|
| | _____________|
| | | _________|
| | | | ____|
| | | | | |
|_____|___|___|___|____|
</pre></div>
</div>
<p>I want to review this course on my</p>
<blockquote>
<div><ul class="simple">
<li>Laptop</li>
<li>TV</li>
<li>Tablet</li>
<li>Phone</li>
</ul>
</div></blockquote>
<ul class="simple">
<li>Screen Size</li>
<li>Bandwidth</li>
<li>External Media<ul>
<li>USB Drive</li>
<li>SD Card</li>
<li>MicroSD Card</li>
</ul>
</li>
</ul>
<p><strong>Web Standards</strong></p>
<p>Cascading Style Sheets</p>
<ul class="simple">
<li>Text Reflow</li>
<li>Fluid Layouts</li>
</ul>
</div>
</div>
<div class="section" id="privacy-and-security">
<h2>Privacy and Security<a class="headerlink" href="#privacy-and-security" title="Permalink to this headline">¶</a></h2>
<div class="section" id="privacy">
<h3>Privacy<a class="headerlink" href="#privacy" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>“How do we verify this curriculum vitae?”</div></blockquote>
<p>Status Quo</p>
<ul class="simple">
<li>Limited Records</li>
<li>Access Logs</li>
<li>Retention Policies</li>
</ul>
<p>Standards</p>
<ul class="simple">
<li>FOAF (Friend of a Friend)</li>
<li>OAUTH API Controls</li>
<li>OpenID</li>
</ul>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last"><em>Health Photo Journal</em> Balancing Act</p>
</div>
<ul class="simple">
<li>Personal student health information?</li>
<li>Privacy Controls for remotely hosted resources</li>
<li>Difficulties of data scrubbing</li>
</ul>
</div>
<div class="section" id="security">
<h3>Security<a class="headerlink" href="#security" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>Which email is this linked to?</div></blockquote>
<p>Assurances Necessary for Measuring Learning</p>
<ul class="simple">
<li>Confidentiality</li>
<li>Integrity</li>
<li>Availability</li>
</ul>
</div>
</div>
</div>
<div class="section" id="opportunities">
<h1>Opportunities<a class="headerlink" href="#opportunities" title="Permalink to this headline">¶</a></h1>
<div class="section" id="direct-returns">
<h2>Direct Returns<a class="headerlink" href="#direct-returns" title="Permalink to this headline">¶</a></h2>
<div class="section" id="teacher-salaries">
<h3>Teacher Salaries<a class="headerlink" href="#teacher-salaries" title="Permalink to this headline">¶</a></h3>
</div>
</div>
<div class="section" id="indirect-returns-externalities">
<h2>Indirect Returns / Externalities<a class="headerlink" href="#indirect-returns-externalities" title="Permalink to this headline">¶</a></h2>
<div class="section" id="network-effects">
<h3>Network Effects<a class="headerlink" href="#network-effects" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="goodwill">
<h3>Goodwill<a class="headerlink" href="#goodwill" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="knowledge-economy">
<h3>Knowledge Economy<a class="headerlink" href="#knowledge-economy" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="stem-theory-process-and-knowledge">
<h3>STEM Theory, Process, and Knowledge<a class="headerlink" href="#stem-theory-process-and-knowledge" title="Permalink to this headline">¶</a></h3>
<p>Learning STEM <em>Theory</em>, <em>Process</em>, and <em>Knowledge</em>
through applied data science.</p>
<ul class="simple">
<li><strong>Linking things together</strong></li>
<li>Feedback and Collaboration</li>
<li>Communication Channels</li>
<li>Q&A</li>
</ul>
</div>
<div class="section" id="goal-maximize-collaborative-output">
<h3>Goal: Maximize Collaborative Output<a class="headerlink" href="#goal-maximize-collaborative-output" title="Permalink to this headline">¶</a></h3>
<p>Criteria for evaluating collaborative learning products</p>
<p>Network Effects n^2</p>
<ul class="simple">
<li>Jointly Authored Pages</li>
<li>Information Access</li>
<li>Streaming</li>
</ul>
<p>[TODO:cite]</p>
</div>
<div class="section" id="generalizing-educational-momentum">
<h3>Generalizing Educational Momentum<a class="headerlink" href="#generalizing-educational-momentum" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Stratified skills objectives</li>
<li>Measuring for<ul>
<li><em class="xref std std-term">Ability</em></li>
<li><em class="xref std std-term">Aptitude</em></li>
<li><em class="xref std std-term">Proficiency</em></li>
</ul>
</li>
<li>Serial Order Effect</li>
</ul>
</div>
<div class="section" id="knowledge-graph">
<h3>Knowledge Graph<a class="headerlink" href="#knowledge-graph" title="Permalink to this headline">¶</a></h3>
<p><a class="reference internal" href="glossary.html#term-ontology"><em class="xref std std-term">Ontologically</em></a> related fields</p>
<p><a class="reference internal" href="glossary.html#term-graph"><em class="xref std std-term">Graphs</em></a> of
<a class="reference internal" href="glossary.html#term-knowledge"><em class="xref std std-term">Knowledge</em></a>,
<em class="xref std std-term">Skills</em>,
<em class="xref std std-term">Competencies</em></p>
<p>Overlaid onto a <em>knowledge graph</em> of <a class="reference internal" href="glossary.html#term-resource"><em class="xref std std-term">resources</em></a>
and their <em class="xref std std-term">artifacts</em></p>
<p>Subgraphs</p>
<ul class="simple">
<li>People</li>
<li>Citations</li>
<li><a class="reference internal" href="glossary.html#term-learning-object"><em class="xref std std-term">Learning Objects</em></a></li>
<li><a class="reference internal" href="glossary.html#term-curriculum"><em class="xref std std-term">Curriculum</em></a>
<em class="xref std std-term">Sequences</em></li>
<li>Degree Requirements</li>
<li>Progress Flows</li>
</ul>
<p>Media</p>
<ul class="simple">
<li><a class="reference internal" href="glossary.html#term-document"><em class="xref std std-term">Documents</em></a></li>
<li>Photos</li>
<li>Recordings</li>
<li>Videos</li>
<li><a class="reference internal" href="glossary.html#term-url"><em class="xref std std-term">URL</em></a></li>
<li><em class="xref std std-term">Datasets</em></li>
</ul>
</div>
<div class="section" id="linking-between-things-with-urls-and-metadata">
<h3>Linking Between Things with URLs and Metadata<a class="headerlink" href="#linking-between-things-with-urls-and-metadata" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Bibliography Lists: <a class="reference internal" href="glossary.html#term-bibtex"><em class="xref std std-term">BibTeX</em></a>,
<a class="reference internal" href="glossary.html#term-api"><em class="xref std std-term">APIs</em></a></li>
<li><a class="reference internal" href="glossary.html#term-document"><em class="xref std std-term">Document</em></a>
<a class="reference internal" href="glossary.html#term-repository"><em class="xref std std-term">Repositories</em></a>: Document Identifiers</li>
<li>Document Authoring: naming URLs</li>
<li><em class="xref std std-term">Bookmarks</em>: Adding tags and attributes</li>
<li><a class="reference internal" href="glossary.html#term-learning-object"><em class="xref std std-term">Learning Objects</em></a></li>
<li>Utilizing <em class="xref std std-term">Web Standards</em></li>
</ul>
</div>
<div class="section" id="tools-pushing-for-better-calculators">
<h3>Tools: Pushing for Better Calculators<a class="headerlink" href="#tools-pushing-for-better-calculators" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>“Where do I set the calculator?”</div></blockquote>
<p>Why is it that we would be interested in pushing for:</p>
<ul class="simple">
<li>Better Personal Calculators</li>
<li>Computers, Notebooks, and Tablets</li>
</ul>
</div>
<div class="section" id="publishing-storage-and-presentation">
<h3>Publishing, Storage, and Presentation<a class="headerlink" href="#publishing-storage-and-presentation" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>Where should I put my slides?</div></blockquote>
<p><em>Answer</em></p>
<ul class="simple">
<li>The Shared Drive</li>
<li>Your USB drive</li>
<li>Your Cloud Drive</li>
<li>Cloud Presentation Services<ul>
<li>Commenting</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div class="section" id="strategies">
<h1>Strategies<a class="headerlink" href="#strategies" title="Permalink to this headline">¶</a></h1>
<blockquote class="epigraph">
<div>“How do we make this better?”</div></blockquote>
<blockquote class="epigraph">
<div>“There has to be a better way of doing this”</div></blockquote>
<ul class="simple">
<li>I need to write this down</li>
<li>Can I just lay it all out?</li>
<li>Can we list it in a table?</li>
<li>Can I add columns?</li>
<li>Which columns can I add?</li>
<li>Which columns are already there?</li>
<li>Which columns should I add?</li>
<li>What did they call a <code class="docutils literal"><span class="pre">Widget</span></code>?</li>
</ul>
<div class="section" id="channels">
<h2>Channels<a class="headerlink" href="#channels" title="Permalink to this headline">¶</a></h2>
<div class="section" id="publishing-static-documents">
<h3>Publishing Static Documents<a class="headerlink" href="#publishing-static-documents" title="Permalink to this headline">¶</a></h3>
</div>
<div class="section" id="video">
<h3>Video<a class="headerlink" href="#video" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Growth Metrics</li>
<li>Bandwidth minimzation</li>
<li>Broadband availability</li>
<li>Replicated hosting</li>
<li>Metadata API</li>
<li>Subtitles API</li>
<li>Referencability</li>
</ul>
<p>[TODO:cite]</p>
</div>
<div class="section" id="q-a">
<h3>Q&A<a class="headerlink" href="#q-a" title="Permalink to this headline">¶</a></h3>
<blockquote class="epigraph">
<div>“But they are sharing the answers!”</div></blockquote>
<p>Asking for answers.</p>
<blockquote class="epigraph">
<div>“You want to answer questions?”</div></blockquote>
<div class="section" id="q-a-web-sites">
<h4>Q&A Web Sites<a class="headerlink" href="#q-a-web-sites" title="Permalink to this headline">¶</a></h4>
<ul class="simple">
<li><a class="reference external" href="http://stackoverflow.com">http://stackoverflow.com</a></li>
<li><a class="reference external" href="http://quora.com">http://quora.com</a></li>
<li><em class="xref std std-term">askbot</em></li>
</ul>
</div>
</div>
<div class="section" id="social-media">
<h3>Social Media<a class="headerlink" href="#social-media" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Whiteboarding</li>
<li>Games with friends</li>