-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2203 lines (2058 loc) · 192 KB
/
index.html
File metadata and controls
2203 lines (2058 loc) · 192 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
<!DOCTYPE html>
<html>
<head>
<title>LiaBooks - Collection of interactive Textbooks</title>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Lua-Programming/master/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de.org",
"name": "Wikibooks"
},
"description": "This is a transcript of the open wikibook [Lua Programming](https://en.wikibooks.org/wiki/Lua_Programming) to LiaScript.",
"image": {
"@type": "ImageObject",
"url": "https://www.lua.org/images/luaa.gif"
},
"inLanguage": "en",
"name": "Lua-Programming",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Lua-Programming/master/README.md",
"version": "1.0.2"
}, {
"@id": "https://raw.githubusercontent.com/liaBooks/C-Programmierung/master/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "André Dietrich"
},
"description": "Dieses Buch hat sich zum Ziel gesetzt, den Anwendern eine Einführung in C zu bieten, die noch keine oder eine geringe Programmiererfahrung haben. Es werden lediglich die grundlegenden Kenntnisse im Umgang mit dem Betriebssystem gefordert.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/liaBooks/C-Programmierung/pic/logo.jpg"
},
"inLanguage": "de",
"name": "C-Programmierung",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/liaBooks/C-Programmierung/master/README.md",
"version": "2.0.0"
}, {
"@id": "https://raw.githubusercontent.com/liaBooks/C-Programming/master/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "André Dietrich"
},
"description": "This LiaScript book is based on the free [Wikibook on C-Programming](https://en.wikibooks.org/wiki/C_Programming). It provides a comprehensive look at the C programming language and its features. Examples are made interactive by using the [CodeRunner](https://github.com/liascript/coderunner).",
"image": {
"@type": "ImageObject",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/1b/Ken_Thompson_and_Dennis_Ritchie--1973.jpg"
},
"inLanguage": "en",
"name": "C-Programming",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/liaBooks/C-Programming/master/README.md",
"version": "2.0.0"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/How-To-Code-in-Python-3/main/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Lisa Tagliaferri"
},
"description": "DigitalOcean’s How To Code in Python 3 tutorial series is available for free as an open educational eBook in both EPUB and PDF formats. Having these tutorials together in an eBook format provides you with a resource that you can use on your favorite e-reader without maintaining a constant internet connection. This way, you can use the book to learn key concepts while offline, or as a reference guide while you are coding on your computer.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/How-To-Code-in-Python-3/media/cover.jpg"
},
"inLanguage": "en",
"name": "How To Code in Python 3",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/How-To-Code-in-Python-3/main/README.md",
"version": "1.0.2"
}, {
"@id": "https://raw.githubusercontent.com/liaBooks/Arbeitsbuch-Prolog/master/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "andre.dietrich@ovgu.de",
"name": "André Dietrich"
},
"description": "Dieses Buch soll in die Programmiersprache PROLOG und in die mit ihr verbundene 'Logik-programmierung' einführen. Die Idee, 'Logik als eine Programmiersprache' zu verwenden, führt zu einer völlig neuen Auffassung vom Programmieren: Das Programm ist nicht eine Folge von Handlungsanweisungen, sondern eine Sammlung von Fakten und Regeln. Das zu lösende Problem wird als eine Anfrage an diese Sammlung formuliert. Im Idealfall führt die logisch korrekte Formulierung der Regeln und der Anfrage zur Lösung des Problems.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/liaBooks/Arbeitsbuch-Prolog/img/logo.jpg"
},
"inLanguage": "de",
"name": "Arbeitsbuch PROLOG",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/liaBooks/Arbeitsbuch-Prolog/master/README.md",
"version": "1.0.3"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Kieran Gallagher; Lizhi Fan"
},
"description": "This stand-alone module intends to provide some motivation for studying organic chemistry. The topics touch briefly on some basic organic chemistry topics and focus on various organic compounds that readers would encounter in everyday life.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"alcohol",
"aldehyde",
"amine",
"benzene",
"carboxylic acid",
"CK.SCI.ENG.SE.1.Organic-Chemistry-Applications",
"ester",
"ether",
"ketone",
"science",
"chemistry"],
"name": "From Vitamins to Baked Goods: Real Applications of Organic Chemistry",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Biology/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Jean Brainard, Ph.D."
},
"description": "CK-12 Biology is a high school FlexBook® textbook covering cell biology, genetics, evolution, ecology, microorganisms, fungi, plants, invertebrates, vertebrates, and physiology.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Biology/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"biology",
"FlexBook",
"high school",
"textbook",
"science"],
"name": "CK-12 Biology",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Biology/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Anatomy-and-Physiology/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Anika Miller"
},
"description": "...",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Anatomy-and-Physiology/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"anatomy",
"physiology",
"medicine",
"human health"],
"name": "Anatomy & Physiology",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Anatomy-and-Physiology/main/English/README.md",
"version": "0.0.1"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Pre-K-through-Grade-7/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Mary Cavanagh; Carol Findell; Carole Greenes"
},
"description": "CK-12 Algebra Explorations is a hands-on series of activities that guides students from Pre-K to Grade 7 through algebraic concepts.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Pre-K-through-Grade-7/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"mathematics",
"algebra",
"activities"],
"name": "Algebra Explorations, Pre-K through Grade 7",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Pre-K-through-Grade-7/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-I-Honors/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Brenda Meery"
},
"description": "mathematics, algebra",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-I-Honors/cover.jpg"
},
"inLanguage": "en",
"keywords": "Real world math introduction ...",
"name": "CK-12 Algebra I - Honors",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-I-Honors/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-Basic/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Melissa Kramer; Anne Gloag; Andrew Gloag"
},
"description": "CK-12 Foundation’s Basic Algebra FlexBook® textbook is an introduction to the algebraic topics of functions, equations, and graphs for middle-school and high-school students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-Basic/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"algebra",
"equations",
"exponential functions",
"expressions",
"factorization",
"functions",
"graphs",
"quadratic equations",
"real numbers",
"systems of equations",
"mathematics"],
"name": "CK-12 Algebra - Basic",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-Basic/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-8/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Jen Kershaw, M.ed"
},
"description": "...",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-8/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"mathematics",
"Algebra",
"Geometry",
"arithmetic",
"probability",
"statistics",
"Measurement"],
"name": "CK-12 Middle School Math - Grade 8",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-8/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/flexbook-cbse-maths-class-12/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Neenu Gupta; Rajeev Kumar Jha"
},
"description": "This maths text was created using CK-12 resources to be seed content for a complete Maths Class 12 course for CBSE students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/flexbook-cbse-maths-class-12/cover.png"
},
"inLanguage": "en",
"keywords": [
"cbse",
"Class 12",
"India",
"mathematics",
"Algebra",
"Geometry"],
"name": "CK-12 CBSE Maths Class 12",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/flexbook-cbse-maths-class-12/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-II-with-Trigonometry/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Lori Jordan; Kate Dirga"
},
"description": "CK-12 Foundation’s Algebra II with Trigonometry FlexBook® textbook is an expansion on the algebraic topics of functions, equations, and graphs for high-school students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-II-with-Trigonometry/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"algebra",
"trigonometry",
"equations",
"functions",
"inequalities",
"linear equations",
"matrices",
"polynomial functions",
"quadratic functions",
"systems of equations"],
"name": "CK-12 Algebra II with Trigonometry",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Algebra-II-with-Trigonometry/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-7/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Jen Kershaw, M.ed"
},
"description": "CK-12's Math 7 explores foundational math concepts that will prepare students for Algebra and more advanced subjects. Material includes decimals, fractions, exponents, integers, percents, inequalities, and some basic geometry.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-7/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"mathematics",
"algebra",
"geometry",
"arithmetic",
"probability",
"statistics",
"measurement",
"decimals",
"equations",
"fractions",
"functions",
"geometry",
"inequalities",
"integers",
"percents",
"ratios"],
"name": "CK-12 Middle School Math - Grade 7",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-7/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-6/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Brianne Mergerdichian; Randy Green; Sarah Brockett; Jen Kershaw, M.ed; Colleen O'Donnell; Dan Greenberg"
},
"description": "CK-12 Foundation's Middle School Math – Grade 6 FlexBook® resource covers the fundamentals of fractions, decimals, and geometry. Also explored are units of measurement, graphing concepts, and strategies for utilizing the book's content in practical situations.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-6/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"mathematics",
"algebra",
"geometry",
"arithmetic",
"measurement"],
"name": "CK-12 Middle School Math - Grade 6",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Middle-School-Math-Grade-6/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Concepts-Pre-K-through-Grade-7/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "CK-12"
},
"description": "CK-12 Algebra Explorations is a hands-on series of activities that guides students from Pre-K to Grade 7 through algebraic concepts.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Concepts-Pre-K-through-Grade-7/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"algebra activities",
"algebra",
"mathematics"],
"name": "Algebra Explorations Concepts, Pre-K through Grade 7",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Algebra-Explorations-Concepts-Pre-K-through-Grade-7/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Maths-Class-11/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Neenu Gupta; Rajeev Kumar Jha"
},
"description": "This maths text was created using CK-12 resources to be seed content for a complete Maths Class 11 course for CBSE students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Maths-Class-11/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"mathematics",
"algebra",
"geometry",
"math"],
"name": "CK-12 CBSE Maths Class 11",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Maths-Class-11/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Interactive-Middle-School-Math-6/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "CK-12"
},
"description": "This is what digital education should be! This all-interactive MSM 6 course is a complete and rigorous Grade 6 Mathematics course where the text is the support material, NOT the main content. The course includes instructional interactives, inline immediate-feedback (formative) questions, 'Do you get it?' end-of-lesson quizzes, Adaptive Practice, curated additional Related Modalities, teacher's edition, and more. Furthermore, because it is CK-12, it is completely FREE! Like all CK-12 FlexBooks 2.0, it is a 'living book' and will be regularly updated to take advantage of the best possible content. The CK-12 Interactive Middle School Math series promotes exploratory learning (Stein 2010). Each lesson contains interactive applets which actively engage students in the learning process and allow them to explore concepts in an open-ended environment (Cocea & Magoulas, 2015; Hoyles, 2018; NCTM, 20115). Inline question sets Socratically guide students to discover connections present in the interactive applets.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Interactive-Middle-School-Math-6/cover.png"
},
"inLanguage": "en",
"keywords": [
"Algebra",
"Geometry",
"arithmetic",
"probability",
"statistics",
"math"],
"name": "CK-12 Interactive Middle School Math 6",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Interactive-Middle-School-Math-6/main/English/README.md",
"version": "0.0.1"
}],
"name": "Mathematics"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Workbook/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Don Calbreath, Ph.D."
},
"description": "The CK-12 Chemistry Workbook complements the CK-12 Chemistry - Intermediate FlexBook® textbook. Lesson worksheets include the following types of questions: multiple choice, T/F, vocabulary, critical reading, and critical writing.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Workbook/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"chemistry",
"flexbook",
"science"],
"name": "CK-12 Chemistry - Intermediate Workbook",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Workbook/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Kieran Gallagher; Lizhi Fan"
},
"description": "This stand-alone module intends to provide some motivation for studying organic chemistry. The topics touch briefly on some basic organic chemistry topics and focus on various organic compounds that readers would encounter in everyday life.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"alcohol",
"aldehyde",
"amine",
"benzene",
"carboxylic acid",
"CK.SCI.ENG.SE.1.Organic-Chemistry-Applications",
"ester",
"ether",
"ketone",
"science",
"chemistry"],
"name": "From Vitamins to Baked Goods: Real Applications of Organic Chemistry",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-From-Vitamins-to-Baked-Goods/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Wade Baxter, Ph.D."
},
"description": "CK-12 Chemistry - Intermediate is a NEW high school FlexBook® textbook covering Scientific Method, Matter, Atomic Structure, Elements, Chemical Reactions, Stoichiometry, Chemical Kinetics, Physical States of Matter, Thermodynamics, Nuclear & Organic Chemistry.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"chemistry",
"intermediate",
"flexbook",
"high school",
"textbook",
"science"],
"name": "CK-12 Chemistry - Intermediate",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Quizzes-and-Tests/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Don Calbreath, Ph.D."
},
"description": "CK-12 Chemistry Intermediate Quizzes and Tests complements the CK-12 Chemistry Intermediate FlexBook® textbook and includes one quiz per lesson, one chapter test, and one unit test.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Quizzes-and-Tests/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"chemistry",
"flexbook",
"science"],
"name": "CK-12 Chemistry - Intermediate Quizzes and Tests",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Chemistry-Intermediate-Quizzes-and-Tests/main/English/README.md",
"version": "0.0.1"
}],
"name": "Chemistry"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/flexbook-physics-from-stargazers-to-starships/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "David P. Stern"
},
"description": "An introduction to astronomy written with a historical perspective.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/flexbook-physics-from-stargazers-to-starships/cover.jpg"
},
"inLanguage": "en",
"name": "Physics - From Stargazers to Starships",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/flexbook-physics-from-stargazers-to-starships/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Physics-Intermediate/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Ira Nirenberg, M.A."
},
"description": "CK-12 Physics - Intermediate is a high school FlexBook® resource covering all standard high school physics topics with mathematical rigor and detailed examples.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Physics-Intermediate/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"physics",
"science"],
"name": "CK-12 Physics - Intermediate",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Physics-Intermediate/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Basic/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "James J Dann; James H Dann, PhD"
},
"description": "CK-12 Basic Physics - Second Edition updates CK-12 Basic Physics and is intended to be used as one small part of a multifaceted strategy to teach physics conceptually and mathematically.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Basic/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"circular motion",
"physics",
"electric circuits",
"electrostatics",
"energy",
"force",
"gravity",
"heat",
"light",
"momentum",
"motion",
"Optics",
"projectile motion",
"Units",
"Wave"],
"name": "People's Physics Book - Basic",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Basic/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Version-3/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "James H. Dann, PhD"
},
"description": "The People's Physics Book v3 is intended to be used as one small part of a multifaceted strategy to teach physics conceptually and mathematically.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Version-3/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"Physics",
"conservation",
"electricity",
"energy",
"fluids",
"forces",
"light",
"magnetism",
"momentum",
"motion",
"Newton",
"physics",
"thermodynamics",
"waves"],
"name": "People's Physics Book Version 3 (with Videos)",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Book-Version-3/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Concepts/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "James H Dann, Ph.D."
},
"description": "Adopts a multifaceted strategy to teach physics conceptually and mathematically.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Concepts/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"Physics",
"conservation",
"electricity",
"energy",
"fluids",
"forces",
"light",
"magnetism",
"momentum",
"motion",
"Newton",
"physics",
"thermodynamics",
"waves"],
"name": "People's Physics Concepts",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Peoples-Physics-Concepts/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Open-Problems-Adventures-in-Physics/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Byron Philhour, Ph.D.; Maxwell Shapiro, Ph.D."
},
"description": "The Open Problems - Adventures in Physics FlexBook® is intended to be used as a multifaceted strategy to teaching Physics conceptually and mathematically. It is intended as a reference guide and source of practice problems covering Calculus based Physics.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Open-Problems-Adventures-in-Physics/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"Physics",
"Calculus",
"practice",
"problems",
"science"],
"name": "Open Problems - Adventures in Physics",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Open-Problems-Adventures-in-Physics/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-9/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Anuradha Mathur; Vasant Vihar; Vandita Shukla"
},
"description": "This physics text was created using CK-12 resources to be seed content for a complete Physics Class 9 course for CBSE students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-9/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"physics",
"science",
"cbse"],
"name": "CK-12 CBSE Physics Class 9",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-9/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-11/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Anuradha Mathur; Vandita Shukla; Vineeta Rajpal; Yashu Chhabra"
},
"description": "This physics text was created using CK-12 resources to be seed content for a complete Physics Class 11 course for CBSE students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-11/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"physics",
"science"],
"name": "CK-12 CBSE Physics Class 11",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-CBSE-Physics-Class-11/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-BSE-Physics-Class-12/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Yashu Chhabra, PGT Physics, Anuradha Mathur"
},
"description": "This physics text was created using CK-12 resources to be seed content for a complete Physics Class 12 course for CBSE students.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-BSE-Physics-Class-12/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"physics",
"science"],
"name": "CK-12 CBSE Physics Class 12",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-BSE-Physics-Class-12/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Modeling-and-Simulation-for-High-School-Teachers/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Behzad Raiszadeh; James Batterson"
},
"description": "A joint collaboration between NASA and CK-12, the purpose of this FlexBook® resource is to provide high school teachers with an introduction to the main principles of modeling and simulation as used in science and engineering as well as a set of lesson plans.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Modeling-and-Simulation-for-High-School-Teachers/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"modelling",
"simulation",
"physics",
"science"],
"name": "CK-12 Modeling and Simulation for High School Teachers: Principles, Problems, and Lesson Plans",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-Modeling-and-Simulation-for-High-School-Teachers/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-21st-Century-Physics/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "CK-12"
},
"description": "The CK-12 21st Century Physics FlexBook® textbook is a collaborative effort of the Secretaries of Education and Technology and the Department of Education that seeks to elevate the quality of physics instruction across the Commonwealth of Virginia.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-21st-Century-Physics/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"science",
"Physics"],
"name": "CK-12 21st Century Physics - A Compilation of Contemporary and Emerging Technologies",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-CK-12-21st-Century-Physics/main/English/README.md",
"version": "0.0.1"
}],
"name": "Physics"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Commonsense-Composition/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Crystle Bruno"
},
"description": "This textbook follows California Language Arts Standards for grades 9-12 to provide a generalized understanding of composition and to serve as a supplementary aid to high school English teachers.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Commonsense-Composition/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"composition",
"english",
"writing",
"commonsense"],
"name": "Commonsense Composition",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Commonsense-Composition/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Journalism-101/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Nina S. Scott - Phillips Academy Andover"
},
"description": "Journalism",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Journalism-101/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"english",
"writing"],
"name": "Journalism 101",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Journalism-101/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-The-Glyfada-Method/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Linda C. Mitchell, Ph.D"
},
"description": "The Glyfada Method is a formula to help you write essays by focusing on the most difficult part of an assignment—getting started. This method helps you, the writer, discover what your main points are and what you have to say about each main point.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-The-Glyfada-Method/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"english",
"writing",
"composition"],
"name": "The Glyfada Method",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-The-Glyfada-Method/main/English/README.md",
"version": "0.0.1"
}],
"name": "Writing"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-An-Introduction-to-Solving-Engineering-Problems-with-MATLAB/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Darryl Morrell, Ph.D.; Anders Gjendemsjø, Ph.D."
},
"description": "MATLAB is a programming language used by several computational packages known as m-file environments. This text introduces freshman engineering students to problem solving using an m-file environment.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-An-Introduction-to-Solving-Engineering-Problems-with-MATLAB/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"matlab",
"engineering"],
"name": "An Introduction to Solving Engineering Problems with MATLAB",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-An-Introduction-to-Solving-Engineering-Problems-with-MATLAB/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-What-is-Testing/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "summerqamp.org; CK12.org"
},
"description": "This book is the outcome of summer QA program called SummerQAmp directed towards fresh college interns, where they get trained as quality assurance software professionals. It is a new nationwide initiative to train a new workforce in high-tech skills and create tech jobs for American youth. The goal of SummerQAmp is to introduce Quality Assurance (QA) as a potential career path to American youth (ages 18-24) who are unaware of the opportunity by allowing them to gain valuable work experience as summer interns at software companies. For further details please visit www.summerqamp.org",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-What-is-Testing/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"engineering",
"testing",
"software",
"quality assurance"],
"name": "What is Testing?",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-What-is-Testing/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Engineering-An-Introduction-for-High-School/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "CK12 Editor"
},
"description": "Nanoleap by MCREL",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Engineering-An-Introduction-for-High-School/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"science",
"technology",
"nanotechnology"],
"name": "Engineering: An Introduction for High School",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Engineering-An-Introduction-for-High-School/main/English/README.md",
"version": "0.0.1"
}],
"name": "Engineering"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Nanoleap-Student-Journal/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "CK12 Editor"
},
"description": "Nanoleap by MCREL",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Nanoleap-Student-Journal/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"science",
"technology",
"nanotechnology"],
"name": "Nanoleap Student Journal",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Nanoleap-Student-Journal/main/English/README.md",
"version": "0.0.1"
}, {
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Sustainable-Energy-Without-the-Hot-Air/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "David J. C. MacKay"
},
"description": "This book explores six strategies for eliminating the gap between consumption and renewable production.",
"image": {
"@type": "ImageObject",
"url": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Sustainable-Energy-Without-the-Hot-Air/cover.jpg"
},
"inLanguage": "en",
"keywords": [
"energy",
"fossil",
"green",
"renewable",
"sustainable",
"earth science",
"technology"],
"name": "Sustainable Energy – Without the Hot Air",
"url": "https://LiaScript.github.io/course/?https://raw.githubusercontent.com/LiaBooks/Flexbook-Sustainable-Energy-Without-the-Hot-Air/main/English/README.md",
"version": "0.0.1"
}],
"name": "Technology"
}, {
"@type": "ItemList",
"itemListElement": [{
"@id": "https://raw.githubusercontent.com/LiaBooks/Flexbook-Origins-and-the-Search-for-Life-in-the-Universe/main/English/README.md",
"@type": "Course",
"author": {
"@type": "Person",
"email": "LiaScript@web.de",
"name": "Debra Fischer; Lily Zhao"
},
"description": "...",
"image": {