-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxp_list.js
More file actions
5384 lines (5384 loc) · 193 KB
/
xp_list.js
File metadata and controls
5384 lines (5384 loc) · 193 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
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
export const XPs = [{
"Science": "TRUE",
"XP_NUM": "1",
"xpId": "XP1",
"Page": "Home",
"title": "A Hard Truth: Reading",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Meet a HS principal and his teens who cannot read",
"text2": "",
"xpUrl": "https://growinggoodschools.blogspot.com/2018/01/a-hard-truth.html",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "2",
"xpId": "XP2",
"Page": "Home",
"title": "Reading vs. Prison",
"xpType": "YtVideo",
"YTvideoId": "F1Pvoz1zxDA",
"Subtitle": "",
"xpText": "The sad connection between illiteracy and prison inmates.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "3",
"xpId": "XP3",
"Page": "Home",
"title": "We're Just Not Wired to Read",
"xpType": "YtVideo",
"YTvideoId": "wlYZBi_07vk",
"Subtitle": "",
"xpText": "Explore what modern brain scanners show us about reading.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "4",
"xpId": "XP4",
"Page": "Home",
"title": "Meet Kyle, a Teen Who's Recovered from Bad Middle School",
"xpType": "radio",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Kyle Weinfurter is a junior at Rhinelander High School. From the beginning, dyslexia really affected his ability in school. His parents and teachers put him in special education. "It was kind of a 'one size fits all'. I was kind of being thrown into a place that I didn't feel like I was in the right area in." Hear more of his story, and how one state is trying to make things better for kids like Kyle.",
"text2": "",
"xpUrl": "https://www.wxpr.org/post/kids-dyslexia-struggle-wisconsin-considers-first-dyslexia-legislation#stream/0",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "5",
"xpId": "XP5",
"Page": "Baseball",
"title": "A Baseball Story",
"xpType": "YtVideo",
"YTvideoId": "qP6qpSrr3cg",
"Subtitle": "",
"xpText": "This video has done more to impact how teachers and parent think about reading than nearly any other.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "6",
"xpId": "XP6",
"Page": "Baseball",
"title": "Phonics is just 30 minutes a day. C’mon!",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "It's not easy. Yet, that's all it should take.",
"xpText": "Reactionaries like to pretend that the Science of Reading is 'all phonics'.",
"text2": "Nothing could be further from the truth.",
"xpUrl": "https://languageandliteracy.blog/phonics-is-just-30-minutes-a-day",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "7",
"xpId": "XP7",
"Page": "",
"title": "na",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "8",
"xpId": "XP8",
"Page": "",
"title": "na",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "9",
"xpId": "XP9",
"Page": "Dyslexia",
"title": "Millions Have Dyslexia, Few Understand It",
"xpType": "radio",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Listen as this NPR Reporter describes her own dyslexia, then talks with a boy who is currently learning.",
"text2": "",
"xpUrl": "https://www.npr.org/sections/ed/2016/11/28/502601662/millions-have-dyslexia-few-understand-it",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "10",
"xpId": "XP10",
"Page": "Dyslexia",
"title": "Dyslexia and the Brain",
"xpType": "YtVideo",
"YTvideoId": "QrF6m1mRsCQ",
"Subtitle": "",
"xpText": "Does the brain of a child with dyslexia work differently than other kids' brains? See how the brain function of a child with dyslexia can actually change when he learns how to read fluently.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "11",
"xpId": "XP11",
"Page": "Dyslexia",
"title": "On the Reality of Dyslexia",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "A great, short, take on what the term `Dyslexia` really means.",
"text2": "",
"xpUrl": "http://danielwillingham.com/daniel-willingham-science-and-education-blog/on-the-reality-of-dyslexia",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "12",
"xpId": "XP12",
"Page": "Dyslexia",
"title": "What Dyslexia Looks Like By Grade Level",
"xpType": "list",
"YTvideoId": "",
"Subtitle": "An Excerpt From the Fluency Builders Teacher Toolkit",
"xpText": "Quick list of signs that a child may have dysxlexia.",
"text2": "",
"xpUrl": "https://www.earlyliteracysolutions.com/_files/ugd/ef0779_9abd29d9b5674e5395ec2cb7443f10bc.pdf",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "13",
"xpId": "XP13",
"Page": "Improvement",
"title": "Hard Words: Why aren't kids being taught to read?",
"xpType": "radio",
"YTvideoId": "",
"Subtitle": "",
"xpText": "In September, this radio documentary went viral. It launched a movement to assure that ALL kids are taught to read.",
"text2": "",
"xpUrl": "https://www.apmreports.org/story/2018/09/10/hard-words-why-american-kids-arent-being-taught-to-read",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "14",
"xpId": "XP14",
"Page": "Improvement",
"title": "Sufficiency of state reading assessment requirements",
"xpType": "study",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Which states require sufficient testing of teacher candidates in the science of learning to read?",
"text2": "",
"xpUrl": "https://www.nctq.org/dmsView/Strengthening_Reading_Instruction_Databurst",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "15",
"xpId": "XP15",
"Page": "Improvement",
"title": "At a Loss for Words",
"xpType": "radio",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Teaching 3-cueing is teaching children to model how dyslexic kids cope. Yet thousands of schools still teach it.",
"text2": "",
"xpUrl": "https://www.apmreports.org/story/2019/08/22/whats-wrong-how-schools-teach-reading",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "16",
"xpId": "XP16",
"Page": "Improvement",
"title": "The West Dunbartonshire Study",
"xpType": "study",
"YTvideoId": "",
"Subtitle": "",
"xpText": "This incredible study suggests that fewer than 1 in 10,000 kids cannot learn to read, via public schools.",
"text2": "",
"xpUrl": "https://www.researchgate.net/profile/Tommy_Mackay2/publication/268386849_Achieving_the_Vision_The_Final_Research_Report_of_the_West_Dunbartonshire_Literacy_Initiative/links/5469e7730cf20dedafd1ef3e/Achieving-the-Vision-The-Final-Research-Report-of-the-West-Dunbartonshire-Literacy-Initiative.pdf?origin=publication_detail",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "17",
"xpId": "XP17",
"Page": "Comprehension",
"title": "The 57 Most Important Words In Ed Reform",
"xpType": "YtVideo",
"YTvideoId": "WKSIRXa6OLk",
"Subtitle": "",
"xpText": "When reading instruction became a 'cargo cult', too many kids got left behind. A 'cargo cult'?",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "18",
"xpId": "XP18",
"Page": "Comprehension",
"title": "A conversation with Natalie Wexler",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "In the very first episode of the Science of Reading podcast, an amazingly rich tour of the reading instruction scene today.",
"text2": "",
"xpUrl": "https://www.buzzsprout.com/612361/1866718-a-conversation-with-natalie-wexler",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "19",
"xpId": "XP19",
"Page": "Comprehension",
"title": "The Matthew Effect",
"xpType": "YtVideo",
"YTvideoId": "WKSIRXa6OLk",
"Subtitle": "",
"xpText": "The second half of the above video (at 3m 45s) introduces us to `The Matthew Effect`, a critical concept in understanding reading comprehension.",
"text2": "How is this different from other explanations, which refer mainly to skills?",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "20",
"xpId": "XP20",
"Page": "Comprehension",
"title": "What Works in Comprehension Instruction",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "Summary from the National Reading Panel",
"xpText": "`Because these three themes serve as the foundation for understanding how best to help teachers develop students' comprehension abilities, ...comprehension strategies was examined in detail by the NRP.`",
"text2": "",
"xpUrl": "https://www.readingrockets.org/article/what-works-comprehension-instruction",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "21",
"xpId": "XP21",
"Page": "KnowledgeCurse",
"title": "Reading: The Tapping Game",
"xpType": "YtVideo",
"YTvideoId": "oc4eiX5tGSk",
"Subtitle": "",
"xpText": "Can a tiny bit of knowledge make a big difference? What kind?",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "22",
"xpId": "XP22",
"Page": "KnowledgeCurse",
"title": "How to fix `The Knowledge Gap`",
"xpType": "video_pic",
"YTvideoId": "",
"imageSource": "wexler.jpg",
"Subtitle": "",
"xpText": "Willie Geist interviews Natalie Wexler on growing gap students' knowledge and achievement.",
"text2": "",
"xpUrl": "https://www.msnbc.com/morning-joe/watch/how-to-fix-the-knowledge-gap-68259909585",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "23",
"xpId": "XP23",
"Page": "Comprehension",
"title": "Rethinking the Reading Rope with Nell K. Duke",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "A fun, fast podcast on reading, comprehension, and what we've learned more recently.",
"xpText": "This discussion builds on the Reading Rope, which we've not directly explored here. But if comprehension is your worry--or if you're in the 'take care of phonics and comprehension will take care of itself' camp--dig in!",
"text2": "",
"xpUrl": "https://www.buzzsprout.com/287733/13662823-listen-again-ep-66-science-of-reading-comprehension-with-nell-duke",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "24",
"xpId": "XP24",
"Page": "Comprehension",
"title": "The Science of Reading Comprehension Instruction",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "Nell K. Duke, Alessandra E. Ward, P. David Pearson",
"xpText": "'What have decades of research told us about the nature of comprehension and how to develop students’ comprehension in schools?'",
"text2": "",
"xpUrl": "https://ila.onlinelibrary.wiley.com/doi/epdf/10.1002/trtr.1993?domain=p2p_domain&token=EY54CV8GCFUVIXR4MKTS",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "25",
"xpId": "XP25",
"Page": "Curriculum",
"title": "School Yourself: Phonics Edition",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "This post by Karen Vaites lists six curicula recognized for their excellence in early education reading. ",
"text2": "Is your among them?",
"xpUrl": "https://eduvaites.org/2019/07/11/school-yourself-phonics-edition/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "26",
"xpId": "XP26",
"Page": "Curriculum",
"title": "A Closer Look at Open Educational Resources",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "In this `Cult of Pedagogy` podcast episode, Jennifer Gonzalez interviews Karen Vaites about quality in Open Educational Resources.",
"text2": "",
"xpUrl": "https://www.cultofpedagogy.com/open-educational-resources/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "27",
"xpId": "XP27",
"Page": "Curriculum",
"title": "What Is the ELA Knowledge Map?",
"xpType": "video",
"YTvideoId": "",
"Subtitle": "",
"xpText": "This webinar recording introduces a new tool to analyze an ELA curriculum. It can provide compelling, actionable data to amend or choose classroom materials.",
"text2": "",
"xpUrl": "https://edpolicy.education.jhu.edu/events/webinar-introduction-to-the-ela-knowledge-map/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "28",
"xpId": "XP28",
"Page": "Curriculum",
"title": "Sold a Story:",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "How Teaching Kids to Read Went So Wrong",
"xpText": "'There's an idea about how children learn to read that's held sway in schools for more than a generation — even though it was proven wrong by cognitive scientists decades ago.'",
"text2": "",
"xpUrl": "https://features.apmreports.org/sold-a-story/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "29",
"xpId": "XP29",
"Page": "Decoding",
"title": "What Is Phonemic Awareness?",
"xpType": "YtVideo",
"YTvideoId": "8JNVzioC7lc",
"Subtitle": "",
"xpText": "...and the difference from phonological awareness.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "30",
"xpId": "XP30",
"Page": "Decoding",
"title": "The Great American Phonics Instruction Test, Part I",
"xpType": "quiz",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Try your hand at this short quiz on the very basics of phonics.",
"text2": "",
"xpUrl": "https://shanahanonliteracy.com/blog/the-great-american-phonics-instruction-test-part-i",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "31",
"xpId": "XP31",
"Page": "Decoding",
"title": "There is No Age Where a Student is Too Old for Phonemic Awareness Training",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "`If the skills have not been mastered, the student should get the training.`",
"text2": "",
"xpUrl": "https://thelearningspark.blogspot.com/2019/07/phonemic-awareness-where-do-i-start.html",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "32",
"xpId": "XP32",
"Page": "Decoding",
"title": "Phonological awareness, phonemic awareness, and phonics",
"xpType": "YtVideo",
"YTvideoId": "McJldIFIpC8",
"Subtitle": "",
"xpText": "Fast introduction to the teaching of phonemic awareness in preparation for mastering the alphabetic principle and phonics.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "33",
"xpId": "XP33",
"Page": "StructuredLit",
"title": "What is Structured Literacy?",
"xpType": "graphic",
"YTvideoId": "",
"Subtitle": "",
"xpText": "`A Primer on Effective Reading Instruction`. This colorful infographic lays it all out in one page. ",
"text2": "",
"xpUrl": "https://dyslexiaida.org/what-is-structured-literacy/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "34",
"xpId": "XP34",
"Page": "StructuredLit",
"title": "Sight Words and Orthographic Mapping",
"xpType": "YtVideo",
"YTvideoId": "XfRHcUeGohc",
"Subtitle": "",
"xpText": "`What it Is and Why It's So Important`. Be sure to go at least as far as `Just name the color of the letters`. Great video on how words become sight words. ",
"text2": "",
"xpUrl": "https://www.parkerphonics.com/post/sight-words-orthographic-mapping-and-self-teaching",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "35",
"xpId": "XP35",
"Page": "StructuredLit",
"title": "The Big Cahuna",
"xpType": "MetaStudy",
"YTvideoId": "",
"Subtitle": "Corrigendum: Ending the Reading Wars: Reading Acquisition From Novice to Expert",
"xpText": "Comprehensive review of the SoR science.",
"text2": "",
"xpUrl": "https://journals.sagepub.com/doi/pdf/10.1177/1529100618772271",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "36",
"xpId": "XP36",
"Page": "StructuredLit",
"title": "Sight Words, Orthographic Mapping, and Self-Teaching",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Don't let the big word scare you! How youth build a huge orthographic lexicon.",
"text2": "",
"xpUrl": "https://www.parkerphonics.com/post/sight-words-orthographic-mapping-and-self-teaching",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "37",
"xpId": "XP37",
"Page": "EdSchools",
"title": "An open letter to my ed school dean",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "",
"xpText": "`It's hard to look at my diploma without wincing a bit. I mastered no effective literacy practices...`",
"text2": "",
"xpUrl": "https://fordhaminstitute.org/national/commentary/open-letter-my-ed-school-dean",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "38",
"xpId": "XP38",
"Page": "EdSchools",
"title": "Teacher Education Reboot: An Expert Proposal",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Do teachers know enough about how students think and what motivates them?",
"text2": "",
"xpUrl": "https://soundcloud.com/education-next/ep-120-april-18-2018-teacher-education-reboot-expert-proposal",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "39",
"xpId": "XP39",
"Page": "EdSchools",
"title": "NCTQ Strengthening Reading Instruction through Better Preparation of Elementary Teachers",
"xpType": "study",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Which ed schools currently teach reading instruction properly?",
"text2": "",
"xpUrl": "https://www.nctq.org/publications/2020-Teacher-Prep-Review:-Program-Performance-in-Early-Reading-Instruction",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "40",
"xpId": "XP40",
"Page": "EdSchools",
"title": "Teachers Won't Embrace Research Until It Embraces Them",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Excellent perspective from a teacher ",
"text2": "",
"xpUrl": "https://righttoreadproject.com/2019/07/19/teachers-wont-embrace-research-until-it-embraces-them/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "41",
"xpId": "XP41",
"Page": "Poverty",
"title": "Steubenville Part 2: A Program in Service of a Vision",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "`In other words, much higher percentages of students in high poverty Steubenville are exceeding state standards, than in one of the wealthiest districts in the state.`",
"text2": "",
"xpUrl": "https://edtrust.org/the-equity-line/steubenville-part-2-program-service-vision/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "42",
"xpId": "XP42",
"Page": "Poverty",
"title": "Mauricio Miller on Poverty, Social Work, and the Alternative",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "While not about reading or education, this podcast presents ideas about poverty that turn status quo thinking on its head.",
"text2": "",
"xpUrl": "https://www.econtalk.org/mauricio-miller-on-poverty-social-work-and-the-alternative/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "43",
"xpId": "XP43",
"Page": "",
"title": "na",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "44",
"xpId": "XP44",
"Page": "",
"title": "na",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "45",
"xpId": "XP45",
"Page": "Morphology",
"title": "Root Words and Prefixes: Quick Reference",
"xpType": "list",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Do you know these? ~350 root words and prefixes that readers have stored in their heads.",
"text2": "",
"xpUrl": "https://www.learnthat.org/pages/view/roots.html",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "46",
"xpId": "XP46",
"Page": "Morphology",
"title": "An Introduction to Morphology",
"xpType": "YtVideo",
"YTvideoId": "syjbhT45J14",
"Subtitle": "",
"xpText": "Excellent fast-paced video on everything you could want to know to use morphemes.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "47",
"xpId": "XP47",
"Page": "Morphology",
"title": "Deep into the Weeds",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Is Morphology Training Better Than Phonics Instruction? Many people want to push morphology deeper into the very earliest grades. This piece and its comments illustrate.",
"text2": "",
"xpUrl": "https://shanahanonliteracy.com/blog/is-morphology-training-better-than-phonics-instruction",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "48",
"xpId": "XP48",
"Page": "",
"title": "na",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "49",
"xpId": "XP49",
"Page": "",
"title": "",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "50",
"xpId": "XP50",
"Page": "Fluency",
"title": "A conversation w Tim Rasinski on Science of Reading: The Podcast",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "`Fluency is the bridge and we can't ignore it.` `Speed is the consequence of automaticity\u2013automaticity is not the consequence of speed.' Important concepts for developing fluent readers.",
"text2": "",
"xpUrl": "https://www.buzzsprout.com/612361/1963366-a-conversation-with-tim-rasinski",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "51",
"xpId": "XP51",
"Page": "Fluency",
"title": "Wake Up Reading Wars Combatants: Fluency Instruction is Part of the Science of Reading",
"xpType": "blog",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Tim Shanahan comments on why Science of reading advocates shouldn't pooh-pooh the fluency parts of reading instruction.",
"text2": "",
"xpUrl": "https://www.shanahanonliteracy.com/blog/wake-up-reading-wars-combatants-fluency-instruction-is-part-of-the-science-of-reading",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "52",
"xpId": "XP52",
"Page": "Fluency",
"title": "Reading Fluency: The Bridge Between Phonics and Comprehension",
"xpType": "webinar",
"YTvideoId": "",
"Subtitle": "",
"xpText": "We`re putting this here as an example of how you might help iterate this app.",
"text2": "While a great presentation, it`s not really efficient for a busy student. The science is presented well into the video, and the implications for teaching even further in.",
"xpUrl": "https://home.edweb.net/webinar/literacyhero20210923/",
"Text3": "What are the critical points here, and how would you replace this?",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "53",
"xpId": "XP53",
"Page": "DyslexiaIII",
"title": "Rapid Automatized Naming (RAN) and Reading Fluency: Implications for Understanding and Treatment of Reading Disabilities",
"xpType": "lit_survey",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "This deep paper is likely not great for a busy student.",
"xpUrl": "https://drive.google.com/file/d/1rqCo_lxicWB9EbHa9K_LpxcMb2lQUpSe/view?usp=sharing",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "54",
"xpId": "XP54",
"Page": "Fluency",
"title": "Spotting Dyslexia: Rapid Automatic Naming",
"xpType": "YtVideo",
"YTvideoId": "zPC4wiYbhh0",
"Subtitle": "",
"xpText": "If a child has trouble reading fluently, an underlying issue could be RAN. This video explains how to spot it.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "55",
"xpId": "XP55",
"Page": "Fluency",
"title": "The Science of Repeated Reading",
"xpType": "YtVideo",
"YTvideoId": "mFuz8W6F8qg",
"Subtitle": "",
"xpText": "Quick video on Repeated Reading, the research supporting it, and when & how to use it",
"text2": "(Spoiler: Repeated Reading builds fluency.)",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "56",
"xpId": "XP56",
"Page": "Fluency",
"title": "Fluency Norms Chart (2017 Update)",
"xpType": "xpComposite",
"YTvideoId": "",
"Subtitle": "",
"xpText": "From Hasbrouck and Tinsdale, the latest in national norms for scoring Oral Reading Fluency assessments.",
"text2": "An update to the original 'Oral Reading Fluency: 90 Years of Measurement'",
"xpUrl": "https://www.readingrockets.org/article/fluency-norms-chart-2017-update",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "57",
"xpId": "XP57",
"Page": "Fluency",
"title": "Repeated Reading",
"xpType": "xpComposite",
"CompositeXP": "true",
"has_subitems": true,
"subitems": ["XP55", "XP5511"],
"YTvideoId": "",
"Subtitle": "",
"xpText": "Should teachers add Repeated Reading to their toolkit? When?",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "58",
"xpId": "XP58",
"Page": "",
"title": "",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "59",
"xpId": "XP59",
"Page": "",
"title": "",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "60",
"xpId": "XP60",
"Page": "",
"title": "",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "61",
"xpId": "XP61",
"Page": "RocketScience",
"title": "Teaching Reading is Rocket Science",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "",
"xpText": "The classic (1999) article via the American Federation of Teachers",
"text2": "",
"xpUrl": "https://www.louisamoats.com/Assets/Reading.is.Rocket.Science.pdf",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "62",
"xpId": "XP62",
"Page": "RocketScience",
"title": "Interview with Louisa Moats",
"xpType": "podcast",
"YTvideoId": "",
"Subtitle": "",
"xpText": "The first ~10 minutes give a wonderful introduction to how this energized septuagenarian has spent a life engaged with the science of reading.",
"text2": "Continue listening for a fantastic introduction to what this means for kids.",
"xpUrl": "https://www.buzzsprout.com/612361/7707625-s3-03-deconstructing-the-rope-phonological-awareness-with-louisa-moats",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "63",
"xpId": "XP63",
"Page": "RocketScience",
"title": "AFT: Teaching Reading IS Rocket Science--2020",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "",
"xpText": "A Vicennial Remix in the AFT flagship publication.",
"text2": "",
"xpUrl": "https://www.aft.org/sites/default/files/moats.pdf",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "64",
"xpId": "XP64",
"Page": "RocketScience",
"title": "A Johnny Cash story, or How a Nashville school begat the Science of Reading",
"xpType": "YtVideo",
"YTvideoId": "uo1FVNuJuuA",
"Subtitle": "",
"xpText": "After a meeting with Dr. Moats, Johnny Cash took his son out of school.",
"text2": "It's what happened next that helped change how we think about reading.",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "65",
"xpId": "XP65",
"Page": "RocketScience",
"title": "Language at the Speed of Sight--How We Read, Why So Many Can't",
"xpType": "Book",
"YTvideoId": "",
"Subtitle": "",
"xpText": "While this book is a bit heavy for many K-3 T's, if you work in a university or think tank, or foundation setting, or SEA, or LEA,...and don't have a copy,... do not pass Go. Get it. Read it.",
"text2": "",
"xpUrl": "https://www.amazon.com/Language-Speed-Sight-Can%C2%92t-About/dp/0465019323/",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "66",
"xpId": "XP66",
"Page": "",
"title": "",
"xpType": "",
"YTvideoId": "",
"Subtitle": "",
"xpText": "",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "70",
"xpId": "XP70",
"Page": "RowsIsRose",
"title": "A ROWS is a ROSE: Spelling, sound, and reading",
"xpType": "lab",
"YTvideoId": "",
"Subtitle": "",
"xpText": "The complete text of this groundbreaking work.",
"text2": "While the scientific terminology may be a bit of a slog for many readers, it seems important to at least look through this paper. Maybe someone can make a detailed video.",
"xpUrl": "https://link.springer.com/article/10.3758/BF03197716",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "81",
"xpId": "XP81",
"Page": "Home",
"title": "Letter Names with Reese",
"xpType": "YtVideo",
"YTvideoId": "VKN3oJVBvEw",
"Subtitle": "",
"xpText": "Reese is a bit confused about the names of some letters. Correcting this will set him up to better learn with his peers.",
"text2": "",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "82",
"xpId": "XP82",
"Page": "RowsIsRose",
"title": "the Van Orden Experiments",
"xpType": "YtVideo",
"YTvideoId": "bjqsI-JH4Os",
"Subtitle": "",
"xpText": "One set of experiments changed how we view reading.",
"text2": "They happened back in 1987.",
"xpUrl": "",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "83",
"xpId": "XP83",
"Page": "EdSchools",
"title": "Preservice Teachers Are Getting Mixed Messages on How to Teach Reading",
"xpType": "article",
"YTvideoId": "",
"Subtitle": "",
"xpText": "Of professors who teach reading teachers, only 1/4 subscribe to the science of reading.",
"text2": "",
"xpUrl": "https://www.edweek.org/ew/articles/2020/01/22/preservice-teachers-are-getting-mixed-messages-on.html",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",
"XP_NUM": "84",
"xpId": "XP84",
"Page": "EdSchools",
"title": "What incarcerated youth can teach teachers",
"xpType": "YtVideo",
"YTvideoId": "n-PWRcP60lo",
"Subtitle": "",
"xpText": "Hilderbrand Pelzer examines urban education from a perspective that is grossly underrepresented in national debates, namely, incarcerated students. ",
"text2": "",
"xpUrl": "https://youtu.be/n-PWRcP60lo",
"Text3": "",
"points": "2500"
}, {
"Science": "TRUE",