-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfreebies.json
2965 lines (2965 loc) · 154 KB
/
freebies.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"/r/learnmath resource list": {
"id": 0,
"name": "/r/learnmath resource list",
"url": "https://www.reddit.com/r/learnmath/comments/8p922p/list_of_websites_ebooks_downloads_etc_for_mobile/",
"type": "Other Resource Lists",
"description": "It's a resource list for learning math made by the [/r/learnmath](https://www.reddit.com/r/learnmath/) community.",
"personalComment": "Best explanation right there, folks."
},
"/r/learnprogramming wiki": {
"id": 1,
"name": "/r/learnprogramming wiki",
"url": "https://www.reddit.com/r/learnprogramming/wiki/tools",
"type": "Other Resource Lists",
"description": "Contains an overview of tools and some recommendations that you'll be using for the process of programming."
},
"/r/AskElectronics wiki": {
"id": 2,
"name": "/r/AskElectronics wiki",
"url": "https://www.reddit.com/r/AskElectronics/wiki/index",
"type": "Other Resource Lists",
"description": "If you're looking on electronics-related resources, here's a community-made wiki from [/r/AskElectronics](https://www.reddit.com/r/AskElectronics/) that gives details and pointers on it."
},
"awesome": {
"id": 3,
"name": "awesome",
"url": "https://github.com/sindresorhus/awesome",
"type": "Other Resource Lists",
"description": "It's a curated tech-oriented list of resource lists; I guess you can say it's **awesome**, mwehehehehehehehe... 😎",
"personalComment": "This is one of the most starred project in GitHub and for a good reason. It's a very cool project suitable for all especially for tech."
},
"Become a Programmer, Motherfucker": {
"id": 4,
"name": "Become a Programmer, Motherfucker",
"url": "http://programming-motherfucker.com/become.html",
"type": "Other Resource Lists",
"description": "A site of resource list of programming-related stuff for you to take a testdive into the programming world. With the resource list also includes an attention-inducing title, good visuals, and a graphic of a man pointing a gun at you (unless you're on mobile), isn't that lovely.",
"personalComment": "Recommended if you're starting into programming."
},
"Best For Dev": {
"id": 5,
"name": "Best For Dev",
"url": "https://bestfordev.github.io/",
"type": "Other Resource Lists",
"description": "A technical resource list, mainly includes tutorials, at one place."
},
"Boomkrak": {
"id": 6,
"name": "Boomkrak",
"url": "http://boomkrak.com/",
"type": "Other Resource Lists",
"description": "A resource list of tools for aiding you into getting started with your next project.",
"personalComment": "Recommended for design-related resources."
},
"Grow With Google": {
"id": 7,
"name": "Grow With Google",
"url": "https://buildyourfuture.withgoogle.com/resources/",
"type": "Other Resource Lists",
"description": "A curated collection by Google that points out the directions on where to start in the world of tech."
},
"List of applications from the Arch Linux wiki": {
"id": 8,
"name": "List of applications from the Arch Linux wiki",
"url": "https://wiki.archlinux.org/index.php/List_of_applications",
"type": "Other Resource Lists",
"description": "A list of mostly free and open source applications for various purposes listed from the [Arch Linux Wiki](https://wiki.archlinux.org/)."
},
"Lospec": {
"id": 9,
"name": "Lospec",
"url": "https://lospec.com/",
"type": "Other Resource Lists",
"description": "A website that curates digital art-related resources and articles for everyone interested on the field.",
"personalComment": "If you want to get started on digital art, I recommend you to take a quick gander here."
},
"No Excuse List": {
"id": 10,
"name": "No Excuse List",
"url": "http://www.noexcuselist.com/",
"type": "Other Resource Lists",
"description": "A meta-list of resource list that points out to different resources for taking a particular field whether it is cooking, music, or programming."
},
"Tech Dev Guide with Google": {
"id": 11,
"name": "Tech Dev Guide with Google",
"url": "https://techdevguide.withgoogle.com/resources/",
"type": "Other Resource Lists",
"description": "Another curated collection by Google."
},
"Useful websites for programmers (by *sdmg15* on GitHub)": {
"id": 12,
"name": "Useful websites for programmers (by *sdmg15* on GitHub)",
"url": "https://github.com/sdmg15/Best-websites-a-programmer-should-visit/",
"type": "Other Resource Lists",
"description": "Also here's [an mirror article by *Sahil Rajput* on dev.to](https://dev.to/sahilrajput/useful-websites-for-programmers-36k#coding-practice-for-beginners)."
},
"Adobe Education Exchange": {
"id": 13,
"name": "Adobe Education Exchange",
"url": "https://edex.adobe.com/en/professional-development/courses",
"type": "Distance Learning Resources",
"description": "Free courses offered by Adobe and its community."
},
"Brilliant": {
"id": 14,
"name": "Brilliant",
"url": "https://brilliant.org",
"type": "Distance Learning Resources",
"description": "An online education platform where they encourage learning through constantly solving of challenging problems."
},
"Coursera": {
"id": 15,
"name": "Coursera",
"url": "https://coursera.org/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "Similar to edX over the content and entry barrier being the platform is filled with courses created by institutions and universities.",
"personalComment": "Another MOOC platform recommendation. Also have some exclusive courses that can be found only on Coursera so neither edX and Coursera can have a huge content gap over the other (I think, anyway)."
},
"edX": {
"id": 16,
"name": "edX",
"url": "https://edx.org",
"type": "Massive Open Online Courses (MOOCS)",
"description": "An online platform with most of its courses created by figurehead institutions and universities such as Microsoft, Harvard University, Standford University, Linux Foundation, and more.",
"personalComment": "Hard to be able to create a course inside of the platform. Mostly created by well-known institutions and universities. Yup, I recommend it a lot."
},
"fast.ai": {
"id": 17,
"name": "fast.ai",
"url": "http://www.fast.ai/",
"type": "Distance Learning Resources",
"description": "Free courses on machine learning, ooooh yeah."
},
"Google Developers": {
"id": 18,
"name": "Google Developers",
"url": "https://developers.google.com/",
"type": "Distance Learning Resources",
"description": "A hub of extensive documenations provided by Google developers. Not only it contains documentation on [web development](https://developers.google.com/web/) but also could get you started on [Android app development](https://developer.android.com/) and developing products utilizing [YouTube](https://developers.google.com/youtube/)."
},
"HTML5 Rocks": {
"id": 19,
"name": "HTML5 Rocks",
"url": "https://www.html5rocks.com/en/",
"type": "Distance Learning Resources",
"description": "A tutorial and explainer site for web developers."
},
"Learn X in Y Minutes": {
"id": 20,
"name": "Learn X in Y Minutes",
"url": "https://learnxinyminutes.com",
"type": "Distance Learning Resources",
"description": "A community-created repository of summaries for you to learn the X programming languages and tools in just Y minutes.",
"personalComment": "What's `Y` minutes, you ask? The world may never know."
},
"MDN Web Docs": {
"id": 21,
"name": "MDN Web Docs",
"url": "https://developer.mozilla.org/en-US/",
"type": "Distance Learning Resources",
"description": "An extensive documentation on web development provided by Mozilla Developer Network. Contains a gigantic amount of resources especially for those who are new to web development and programming, in general.",
"personalComment": "I think not a lot of people recommend to take a deep examination at this site but it does have a lot of things to offer. Seriously, take some time to take a stroll (uhh... visit?) into this site."
},
"Scrimba": {
"id": 22,
"name": "Scrimba",
"url": "https://scrimba.com/",
"type": "Distance Learning Resources",
"description": "A free online platform that offers videos with interactive code. It's like a child of [YouTube](https://youtube.com/) and [Glitch](https://glitch.com/), as they say.",
"personalComment": "recommended"
},
"SkillShare": {
"id": 23,
"name": "SkillShare",
"url": "https://www.skillshare.com/",
"type": "Distance Learning Resources",
"description": "An online platform for well-known instructors. It requires you to have some form of subscription to be able to access its premium courses but you can find some free trials with a new account."
},
"Teach Engineering": {
"id": 24,
"name": "Teach Engineering",
"url": "https://www.teachengineering.org/",
"type": "Distance Learning Resources",
"description": "It's a educational resources site containing engineering stuff."
},
"Tutorials Point": {
"id": 25,
"name": "Tutorials Point",
"url": "https://www.tutorialspoint.com/index.htm",
"type": "Distance Learning Resources",
"description": "A good overview on a bunch of programming languages.",
"personalComment": "I recommend this one though not as much."
},
"TutPlus": {
"id": 26,
"name": "TutPlus",
"url": "https://tutsplus.com/",
"type": "Distance Learning Resources",
"description": "A website that offers resources such as course, articles, and ebooks on different fields such as web design, programming, graphic design, and business."
},
"Udacity": {
"id": 27,
"name": "Udacity",
"url": "https://www.udacity.com/",
"type": "Distance Learning Resources",
"description": "Most, if not all courses are focused on technology."
},
"W3Schools": {
"id": 28,
"name": "W3Schools",
"url": "https://www.w3schools.com/",
"type": "Distance Learning Resources",
"description": "A site of programming tutorials and such.",
"personalComment": "Personally, I mostly see this more of a quick referential site instead of a tutorial site."
},
"BC Campus Open Ed Open Textbook Database": {
"id": 29,
"name": "BC Campus Open Ed Open Textbook Database",
"url": "https://open.bccampus.ca/",
"type": "Open Educational Resources",
"description": "An open educational resource database backed by [BC Campus](https://bccampus.ca/). Offers wide variety of open textbooks for arts, sciences, and business (among many others)."
},
"CK12": {
"id": 30,
"name": "CK12",
"url": "https://www.ck12.org/student/",
"type": "Open Educational Resources",
"description": "A community group that offers variety of open educational resources from Flexbooks open textbooks, activities, and simulations.",
"personalComment": "Recommended for looking/reviewing into high school sciences curriculum."
},
"Community College Consortium for Open Educational Resources": {
"id": 31,
"name": "Community College Consortium for Open Educational Resources",
"url": "https://www.cccoer.org/",
"type": "Open Educational Resources",
"description": "You can find it [here](https://www.cccoer.org/learn/find-oer/) for the most part if you want the open educational resources (OER)."
},
"freeCodeCamp": {
"id": 32,
"name": "freeCodeCamp",
"url": "https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ",
"type": "YouTube Channels",
"description": "freeCodeCamp's official YouTube channel. Its content varies from tutorials from other developers to a whole course series (in fact, CS50 made it as one of them). You could also view some of their content from their [freeCodeCamp Talks channel](https://www.youtube.com/channel/UCVk8weS4S2kJfja72fTxh5A/videos).",
"personalComment": "Since the amount of content in this channel is gigantic and most of them came from third-party developers, it's a good idea to use this as a browser of referential videos."
},
"IXL": {
"id": 33,
"name": "IXL",
"url": "https://www.ixl.com/",
"type": "Open Educational Resources",
"description": "An educational resource and learning site on K-12 curriculum."
},
"JHU Data Science Lab": {
"id": 34,
"name": "JHU Data Science Lab",
"url": "https://jhudatascience.org/",
"type": "Open Educational Resources",
"description": "An organization with the goal of making learning data science accessible. They mainly do their goal by providing open source educational content for learning different subfields on data science."
},
"Khan Academy": {
"id": 35,
"name": "Khan Academy",
"url": "https://www.youtube.com/channel/UC4a-Gbdw7vOaccHmFo40b9g",
"type": "YouTube Channels",
"description": "Videos on various academic topics from mathematics, electronics, to economics and politics."
},
"Math Wiki": {
"id": 36,
"name": "Math Wiki",
"url": "https://math.wikia.com/wiki/Math_Wiki",
"type": "Open Educational Resources",
"description": "A community-made and continuously updated textbook on mathematics.",
"personalComment": "Well, it is structured like a textbook and it is said that the Math Wiki is a textbook so there's that."
},
"Merlot": {
"id": 37,
"name": "Merlot",
"url": "https://www.merlot.org/merlot/index.htm",
"type": "Open Educational Resources",
"description": "An archive site of open educational resources viewable to everyone."
},
"MIT OpenCourseWare": {
"id": 38,
"name": "MIT OpenCourseWare",
"url": "https://ocw.mit.edu/index.htm",
"type": "Open Educational Resources",
"description": "Contains courses from a lot of subjects; you also might want to check out their [OCW Scholar Courses](https://ocw.mit.edu/courses/ocw-scholar/) wherein they are essentially more in-depth versions of the usual courses.",
"personalComment": "Mah boi, I recommend this by a *loooooong* shot."
},
"MIT Press Open": {
"id": 39,
"name": "MIT Press Open",
"url": "https://mitpress.mit.edu/mit-press-open",
"type": "Open Educational Resources",
"description": "Yes, free and open access books from MIT Press."
},
"OER Commons": {
"id": 40,
"name": "OER Commons",
"url": "https://www.oercommons.org/",
"type": "Open Content Communities",
"description": "A community that supports open educational resources to be accessible to all."
},
"Open Library": {
"id": 41,
"name": "Open Library",
"url": "https://openlibrary.org/",
"type": "Open Educational Resources",
"description": "A web library backed by Internet Archive that contains books that has opened for public domain. Include books for science, literature, novels, and even recipes."
},
"Open SUNY Textbooks": {
"id": 42,
"name": "Open SUNY Textbooks",
"url": "https://textbooks.opensuny.org/",
"type": "Open Educational Resources",
"description": "An open textbook publication platform established by State University of New York libraries and supported by SUNY Innovative Instruction Technology Grants in which they offer their own set of textbooks."
},
"Open Textbook Library": {
"id": 43,
"name": "Open Textbook Library",
"url": "https://open.umn.edu/opentextbooks",
"type": "Open Educational Resources",
"description": "A library of published open textbooks by different professionals and experts from different institutions.",
"personalComment": "If you want to look for a wide database of open textbooks, here's one of them that I personally use."
},
"Open University": {
"id": 44,
"name": "Open University",
"url": "https://www.open.edu/openlearn/",
"type": "Open Educational Resources",
"description": "Features free courses, interactives, and educational materials. They also provide TV & audio programs which is certainly interesting, to say the least."
},
"OpenStax CNX": {
"id": 45,
"name": "OpenStax CNX",
"url": "https://cnx.org/",
"type": "Open Educational Resources",
"description": "A database of open educational resources backed up [OpenStax](https://openstax.org/). Also offers some community-made books."
},
"OpenStax": {
"id": 46,
"name": "OpenStax",
"url": "https://openstax.org/",
"type": "Open Educational Resources",
"description": "A library of open-licensed expert-curated high school- and college-level textbook and resources.",
"personalComment": "I recommend this one a lot. It has attained large backup from foundations such as [Melinda and Gates Foundation](https://www.gatesfoundation.org/), [Google](https://www.google.com/), [The Open Society Foundation](https://www.opensocietyfoundations.org/), and the [National Science Foundation](https://www.nsf.gov/)."
},
"OSDev.org": {
"id": 47,
"name": "OSDev.org",
"url": "https://wiki.osdev.org/Main_Page",
"type": "Inspiration",
"description": "A detailed wiki on operating system development."
},
"ossu": {
"id": 48,
"name": "ossu",
"url": "https://github.com/ossu/computer-science",
"type": "Open Educational Resources",
"description": "A community-built and approved curriculum for self-taught students to follow."
},
"Teach Yourself CS": {
"id": 49,
"name": "Teach Yourself CS",
"url": "https://teachyourselfcs.com/",
"type": "Open Educational Resources",
"description": "A site that recommends resources on the topic of learning computer science. Kinda similar to ossu's curriculum."
},
"The Feynman's Lectures on Physics": {
"id": 50,
"name": "The Feynman's Lectures on Physics",
"url": "http://www.feynmanlectures.caltech.edu/",
"type": "Open Educational Resources",
"description": "Well,self-explanatory title is self-explanatory. It's the website that lets you view [Richard Feynman](https://en.wikipedia.org/wiki/Richard_Feynman)'s legendary notes on physics."
},
"The Open Source Computer Science Degree": {
"id": 51,
"name": "The Open Source Computer Science Degree",
"url": "https://github.com/ForrestKnight/open-source-cs",
"type": "Open Educational Resources",
"description": "Similar to `ossu`, it's a open source curriculum with linked courses from reputable universities such as Stanford, MIT, and Princeton."
},
"Wikibooks": {
"id": 52,
"name": "Wikibooks",
"url": "https://en.wikibooks.org/wiki/Main_Page",
"type": "Open Educational Resources",
"description": "Contains community-curated books for various subjects such as [Introduction to LaTeX](https://en.wikibooks.org/wiki/LaTeX) and [Introduction to Blender](https://en.wikibooks.org/wiki/Blender_3D:_Noob_to_Pro)."
},
"WikiToLearn": {
"id": 53,
"name": "WikiToLearn",
"url": "https://www.wikitolearn.org/",
"type": "Open Educational Resources",
"description": "A collaborative effort made into an introductory wiki for different subjects such as computer science, mathematics, engineering, business, and more.",
"personalComment": "One of my personal recommendations right here."
},
"Algorithms (by *Jeff Erickson*)": {
"id": 54,
"name": "Algorithms (by *Jeff Erickson*)",
"url": "http://algorithms.wtf/",
"type": "Free and Open Access Textbooks",
"description": "It's a good book on algorithms (though not recommended as a first book on data structures and algorithms)."
},
"All About Circuits Textbook": {
"id": 55,
"name": "All About Circuits Textbook",
"url": "https://www.allaboutcircuits.com/textbook/",
"type": "Free and Open Access Textbooks",
"description": "An electronics textbook made by the Tony R. Kuphaldt. Contains a set of volumes covering electricity and electronics."
},
"American Institute of Mathematics Approved Open Textbooks": {
"id": 56,
"name": "American Institute of Mathematics Approved Open Textbooks",
"url": "https://aimath.org/textbooks/approved-textbooks/",
"type": "Mathematics",
"description": "Quite self explanatory. It's a list of approved open textbooks for a variety of mathematics-related branches such as calculus, number theory, logic, and differential equations. You can also see how these books has been approved through their open [evaluation criteria](https://aimath.org/textbooks/evaluation-criteria/) that has been put up on their website."
},
"Building Blocks for Theoretical Computer Science": {
"id": 57,
"name": "Building Blocks for Theoretical Computer Science",
"url": "http://mfleck.cs.illinois.edu/building-blocks/",
"type": "Free and Open Access Textbooks",
"description": "A book that gives you a rudimentary class on theoretical side of computer science. Most of the focus are directed on the formal mathematical side of things with the lessons being set theory, logic, proofs, graphs, and calculus.",
"personalComment": "Self-explanatory title is self-explanatory, I think."
},
"Calculus (by *Kalid Azad* from *Better Explained*)": {
"id": 58,
"name": "Calculus (by *Kalid Azad* from *Better Explained*)",
"url": "https://betterexplained.com/calculus/",
"type": "Free and Open Access Textbooks",
"description": "A free online primer that tackles on learning calculus with intuition.",
"personalComment": "One of the more beginner-friendly books on learning calculus. I recommend it to give it a chance."
},
"Free Math Textbooks": {
"id": 59,
"name": "Free Math Textbooks",
"url": "http://www.openculture.com/free-math-textbooks",
"type": "Free and Open Access Textbooks",
"description": "A list of free math textbooks from [Open Culture](http://www.openculture.com/)."
},
"Free Programming Books": {
"id": 60,
"name": "Free Programming Books",
"url": "https://github.com/EbookFoundation/free-programming-books",
"type": "Free and Open Access Textbooks",
"description": "A GitHub repo by the E-Book Foundation that lists out free programming books.",
"personalComment": "One of my top starred recommendations."
},
"Free Science Books": {
"id": 61,
"name": "Free Science Books",
"url": "https://github.com/EbookFoundation/free-science-books",
"type": "Free and Open Access Textbooks",
"description": "Another GitHub repo by the E-Book Foundation."
},
"Game Programming Patterns": {
"id": 62,
"name": "Game Programming Patterns",
"url": "http://gameprogrammingpatterns.com/",
"type": "Game Development",
"description": "A free web-based book that discusses about different coding patterns that is usually found on game development.",
"personalComment": "Recommending this so much when starting out with game development."
},
"How to Design Programs, 2nd Edition": {
"id": 63,
"name": "How to Design Programs, 2nd Edition",
"url": "https://htdp.org/",
"type": "Free and Open Access Textbooks",
"description": "A computer science book published by the MIT Press that focuses on designing programs and in hindsight, how to efficiently formulate plans and stick with it until the very completion of your program."
},
"Introduction to Embedded Systems, 2nd Edition (2017, Lee and Seshia)": {
"id": 64,
"name": "Introduction to Embedded Systems, 2nd Edition (2017, Lee and Seshia)",
"url": "https://ptolemy.berkeley.edu/books/leeseshia/download.html",
"type": "Free and Open Access Textbooks"
},
"Invent with Python": {
"id": 65,
"name": "Invent with Python",
"url": "https://inventwithpython.com/",
"type": "Free and Open Access Textbooks",
"description": "A collection of free Python online books authored by Al Sweigart."
},
"Learning JavaScript Design Patterns": {
"id": 66,
"name": "Learning JavaScript Design Patterns",
"url": "https://addyosmani.com/resources/essentialjsdesignpatterns/book/",
"type": "Free and Open Access Textbooks",
"description": "A free and open source textbook authored by Addy Osmani. It describes different design patterns that are commonly found written in JavaScript as a bridge to implementing them."
},
"Learn You A Haskell": {
"id": 67,
"name": "Learn You A Haskell",
"url": "http://learnyouahaskell.com/",
"type": "Free and Open Access Textbooks",
"description": "A free web book that teaches you functional programming through [Haskell](https://www.haskell.org/)."
},
"Notes for Professionals": {
"id": 68,
"name": "Notes for Professionals",
"url": "http://book.goalkicker.com/",
"type": "Free and Open Access Textbooks",
"description": "Made by folks at Stack Overflow from the Stack Overflow documentation for variety of languages and despite the title, it is quite helpful for beginners like me, as well.",
"personalComment": "This is not much of a recommended resource in the long term since it's based on [Stack Overflow's experimental documenation project that has been abandoned recently](https://meta.stackoverflow.com/questions/354217/sunsetting-documentation). Also see the /r/learnprogramming explanation as to [why this resource is discouraged](https://www.reddit.com/r/learnprogramming/wiki/index#wiki_discouraged_resources). Yeah, take caution when referring with this material. Ultimately, it's better to refer to the official documentation than this one though it's nice while it still lasts."
},
"Open Data Structures": {
"id": 69,
"name": "Open Data Structures",
"url": "http://opendatastructures.org/",
"type": "Free and Open Access Textbooks",
"description": "An open content textbook that tackles the implementation and analysis of data structures such as queues, dictionaries, and graphs. Offers versions for different programming languages as well for you to take the book with ease in your favorite programming language.",
"personalComment": "I really like the different programming languages approach with this book."
},
"Open Music Theory": {
"id": 70,
"name": "Open Music Theory",
"url": "http://openmusictheory.com/",
"type": "Music",
"description": "A open textbook on college-level music theories and lessons."
},
"Project Gutenburg": {
"id": 71,
"name": "Project Gutenburg",
"url": "http://www.gutenberg.org/",
"type": "Free and Open Access Textbooks",
"description": "An archive site of more than 50,000 publicly available (mostly from public domain) digital books. It contains literary materials for different subjects such as music, science, psychology, and more."
},
"Scientific Programming and Computer Architecture": {
"id": 72,
"name": "Scientific Programming and Computer Architecture",
"url": "https://divakarvi.github.io/bk-spca/spca.html",
"type": "Free and Open Access Textbooks",
"description": "An open MIT Press web book that focuses on analyzing and discussing the performance of computer programs and the practices of writing fast programs."
},
"Structure and Interpretation of Computer Programs, 2nd Edition (HTML version)": {
"id": 73,
"name": "Structure and Interpretation of Computer Programs, 2nd Edition (HTML version)",
"url": "https://sarabander.github.io/sicp/",
"type": "Free and Open Access Textbooks",
"description": "Unofficial (and prettier) version of [one of MIT's famous programming book (that can also be found online)](https://mitpress.mit.edu/sites/default/files/sicp/index.html)."
},
"The Architecture on Open Source Applications": {
"id": 74,
"name": "The Architecture on Open Source Applications",
"url": "http://aosabook.org/en/index.html",
"type": "Free and Open Access Textbooks",
"description": "A bundle of books that are free to read online."
},
"Algorithms (Part 1) by Princeton University": {
"id": 75,
"name": "Algorithms (Part 1) by Princeton University",
"url": "https://www.coursera.org/learn/algorithms-part1",
"type": "Massive Open Online Courses (MOOCS)",
"description": "An online course offered by Princeton University that tackles the essential concepts and information on algorithms. This is a fit for programmers who seriously need to know about algorithms and data structure. As you can tell, it's a two-parter and in this part, it mainly tackles sorting algorithms and some data structures."
},
"Algorithms (Part 2) by Princeton University": {
"id": 76,
"name": "Algorithms (Part 2) by Princeton University",
"url": "https://www.coursera.org/learn/algorithms-part2",
"type": "Massive Open Online Courses (MOOCS)",
"description": "The second part of the Algorithms course from Princeton University. In this part, it mainly tackles about recursive data structures such as tries, trees, and graphs."
},
"Algorithms and Data Structures by The University of California, San Diego": {
"id": 77,
"name": "Algorithms and Data Structures by The University of California, San Diego",
"url": "https://www.edx.org/micromasters/ucsandiegox-algorithms-and-data-structures",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A edX algorithms course set offered by The University of California, San Diego. Composes of eight courses tackling on analysis, implementation, and deep discussion on creating data structures and algorithms. Since it's an [edX](https://www.edx.org/) course set, you can just go to the individual courses and audit the course to access its learning materials."
},
"Awesome CS Courses": {
"id": 78,
"name": "Awesome CS Courses",
"url": "https://github.com/prakhar1989/awesome-courses",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A GitHub repo containing a list of free computer science courses from well-known universities such as MIT, Stanford, UC Berkeley, and Harvard."
},
"Class Central": {
"id": 79,
"name": "Class Central",
"url": "https://www.class-central.com/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A search engine for courses at different MOOC sites."
},
"Computational Thinking for Modeling and Simulation": {
"id": 80,
"name": "Computational Thinking for Modeling and Simulation",
"url": "https://courses.edx.org/courses/course-v1:MITx+2.086x+3T2018/course/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A course that focuses on how to create effective models and techniques to folster computational thinking.",
"personalComment": "I recommend this very much, personally."
},
"CS50 Course by Harvard University": {
"id": 81,
"name": "CS50 Course by Harvard University",
"url": "http://cs50.harvard.edu/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A very good introductory course on computer science in general, just take it easy and follow the schedule then you'll be fine; I also recommend to take it with friends or a study group too, much easier unlike the way I took 😥, but still doable with solo. Also, [CS50 has branched out some courses](https://www.edx.org/cs50) for you to take specific development skills.",
"personalComment": "Very very recommend. Much cool and intuitive."
},
"Data Structures and Algorithms Specialization by the University of California, San Diego and National Research University Higher School of Economics": {
"id": 82,
"name": "Data Structures and Algorithms Specialization by the University of California, San Diego and National Research University Higher School of Economics",
"url": "https://www.coursera.org/specializations/data-structures-algorithms",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A Coursera Specialization course that focuses on mastering algorithmic programs and techniques to create algorithms on generally complex data structures.",
"personalComment": "This one's different from the UC, San Diego edX course, mind you."
},
"Fundamentals of Computers by the Rice University": {
"id": 83,
"name": "Fundamentals of Computers by the Rice University",
"url": "https://www.coursera.org/specializations/computer-fundamentals",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A Coursera specialization course (that is, a set of courses) said to be equivalent to Rice University's first year computer science students' undertaking. Here you'll be creating up to 20 projects while tackling about the computer sciencey stuff like algorithms, dynamic programming, and recursions.",
"personalComment": "Like the rest of Coursera's specialization course sets, you can just go and visit the individual course modules to get audit the course for free."
},
"Fundamentals of Music Theory": {
"id": 84,
"name": "Fundamentals of Music Theory",
"url": "https://www.coursera.org/learn/edinburgh-music-theory",
"type": "Music",
"description": "A Coursera course offered by Edinburgh University to get you started on learning the rudimentary information on music theory."
},
"Hacker Tools": {
"id": 85,
"name": "Hacker Tools",
"url": "https://hacker-tools.github.io/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "An MIT lecture series on programming tools. Also can serve as a resource list for different programming tools on text editors, version control systems, and desktop configurations.",
"personalComment": "I recommend this a lot if you want to explore options for programming. A lot of people said that tools are not much of importance but I still think it's great to have an overview course regarding those said tools."
},
"MOOC List": {
"id": 86,
"name": "MOOC List",
"url": "https://www.mooc-list.com/",
"type": "Massive Open Online Courses (MOOCS)",
"description": "A MOOC search engine, similar to Class Central."
},
"8-bit Music Theory": {
"id": 87,
"name": "8-bit Music Theory",
"url": "https://www.youtube.com/channel/UCeZLO2VgbZHeDcongKzzfOw",
"type": "YouTube Channels",
"description": "A YouTube channel that focuses on video game music from dynamic music similar to [Banjo Kazooie](https://en.wikipedia.org/wiki/Banjo-Kazooie)'s (or [A Hat in Time](http://hatintime.com/), if you want a modern example) varying version of the stage theme to video game music with odd time signatures."
},
"Ardour": {
"id": 88,
"name": "Ardour",
"url": "https://ardour.org/",
"type": "Music",
"description": "A free and open source digital audio workstation (DAW) with an emphasis on audio recording. It is also a cross-platform tool being able to run on the three major OS (Windows, Mac OS, and Linux). If you want to see the source code of this tool, you can visit the [remote repo](https://github.com/Ardour/ardour)."
},
"Awesome Music": {
"id": 89,
"name": "Awesome Music",
"url": "https://github.com/ciconia/awesome-music",
"type": "Music",
"description": "An [awesome](https://github.com/sindresorhus/awesome) list that lists out free music libraries and tools."
},
"Bandlab": {
"id": 90,
"name": "Bandlab",
"url": "https://www.bandlab.com/",
"type": "Music",
"description": "A free web-based digital audio workstation (DAW) by Cakewalk, known for their premium DAW by the same name. It's also a social platform for musicians to share their work."
},
"Chrome Music Lab": {
"id": 91,
"name": "Chrome Music Lab",
"url": "https://musiclab.chromeexperiments.com/",
"type": "Music",
"description": "A compilation of experimental musical tools built by Google. It could be a fun way of fiddling around with music."
},
"LMMS": {
"id": 92,
"name": "LMMS",
"url": "https://lmms.io/",
"type": "Music",
"description": "A free and open source digital audio workstation that lets you composes beats and music. It can run on the major desktop operating systems: Windows, Mac OS, and Linux. If you want to visit the source code, you can go [right here](https://github.com/LMMS/lmms/).",
"personalComment": "Also comes with a community of musicians with their sharing platform."
},
"MuseScore": {
"id": 93,
"name": "MuseScore",
"url": "https://musescore.org/",
"type": "Music",
"description": "A free and open source composition and notation software. It also has cross-platform support for Windows, Mac OS, and Linux. You can see the source code itself on their [remote Git repo](https://github.com/musescore/MuseScore/).",
"personalComment": "I recommend this one a lot if you want to aid with studying music theory, they've done good last year ever since they've been acquired by the Ultimate Guitar company."
},
"musictheory.net": {
"id": 94,
"name": "musictheory.net",
"url": "https://www.musictheory.net/",
"type": "Music",
"description": "A website that mainly features lessons, exercises, and tools for you to learn and practice on music theory topics."
},
"Music Theory for Musicians and Normal People (by *Toby W. Rush*)": {
"id": 95,
"name": "Music Theory for Musicians and Normal People (by *Toby W. Rush*)",
"url": "http://tobyrush.com/theorypages/index.html",
"type": "Music",
"description": "A free collection of one-page PDFs created by Toby Rush discussing the basics of music theory. (Also, you could just download all of the pages in one PDF if you look at the bottom.)"
},
"Native Instruments Komplete Start Production Suite": {
"id": 96,
"name": "Native Instruments Komplete Start Production Suite",
"url": "https://www.native-instruments.com/en/products/free/",
"type": "Music",
"description": "A free music production suite provided by Native Instruments, famous for their sampler program, Kontakt."
},
"SampleSwap": {
"id": 97,
"name": "SampleSwap",
"url": "https://sampleswap.org/",
"type": "Stock Resources",
"description": "A website that contains royalty-free music that is free to use for commercial purposes (depending on the author, still read their respective licensing page). Also contains samples and loops if you're there for composing music."
},
"Sonic Pi": {
"id": 98,
"name": "Sonic Pi",
"url": "https://github.com/samaaron/sonic-pi",
"type": "Music",
"description": "A programming language that lets you create music.",
"personalComment": "This is why programming is fantastic."
},
"teoria": {
"id": 99,
"name": "teoria",
"url": "https://www.teoria.com/",
"type": "Music",
"description": "A website that dedicates to list music theory resources and tutorials."
},
"Virtual Piano": {
"id": 100,
"name": "Virtual Piano",
"url": "https://virtualpiano.net/",
"type": "Music",
"description": "A virtual piano that can be interacted with the computer keyboard.",
"personalComment": "If you don't have any physical instrument to interact with at the moment, you could always take a virtual instrument. Like this virtual piano, for instance."
},
"VSCO2 Community Edition": {
"id": 101,
"name": "VSCO2 Community Edition",
"url": "https://vis.versilstudios.com/vsco-community.html",
"type": "Music",
"description": "An open source sample set of orchestral instruments. You can see the samples themselves in [their GitHub repo](https://github.com/sgossner/VSCO-2-CE)."
},
"/r/AskElectronics": {
"id": 102,
"name": "/r/AskElectronics",
"url": "https://www.reddit.com/r/AskElectronics/",
"type": "Electronics",
"description": "A beginner-friendly subreddit on getting help on your electronics projects or anything hardware-related. Just be sure to help them helping you by providing as much necessary details as possible."
},
"/r/electronics": {
"id": 103,
"name": "/r/electronics",
"url": "https://www.reddit.com/r/electronics/",
"type": "Electronics",
"description": "A subreddit on anything electronics-related from news, articles, discussions, or project showoffs."
},
"All About Circuits": {
"id": 104,
"name": "All About Circuits",
"url": "https://www.allaboutcircuits.com/",
"type": "Electronics",
"description": "A website that is all about electronics and hardware. They offer a wide range of electronic-related materials such as datasheets, calculators, video lessons, articles, a discussion forum, and a textbook.",
"personalComment": "I recommend it a lot if you're looking for an electronics/hardware reference. Also, they provide a really good starting point on electronics by providing you with various video lessons, articles, and even a textbook with multiple volumes."
},
"Awesome Electronics (by *kitspace*)": {
"id": 105,
"name": "Awesome Electronics (by *kitspace*)",
"url": "https://github.com/kitspace/awesome-electronics",
"type": "Electronics",
"description": "An [awesome](https://github.com/sindresorhus/awesome) list of various links and references to get started in electronics."
},
"Circuitlab": {
"id": 106,
"name": "Circuitlab",
"url": "https://www.circuitlab.com/",
"type": "Electronics",
"description": "An online circuit schematics editor and simulator. Supports analog and digital circuits and no installation or registration required to use it."
},
"FreeCAD": {
"id": 107,
"name": "FreeCAD",
"url": "https://www.freecadweb.org/",
"type": "Computer-aided Design (CAD)",
"description": "A cross-platform free and open source modeller. Offers usefulness for various scientific and engineering fields such as electronics, mechatronics, and mathematics."
},
"GreatScott!": {
"id": 108,
"name": "GreatScott!",
"url": "https://www.youtube.com/channel/UC6mIxFTvXkWQVEHPsEdflzQ",
"type": "YouTube Channels",
"description": "A YouTube channel of electronic projects how-tos and tutorials."
},
"Hackaday": {
"id": 109,
"name": "Hackaday",
"url": "https://hackaday.io/",
"type": "Communities",
"description": "A online global hardware-/hacker-oriented community dedicated on sharing hardware-related knowledge to fellow hackers and to those with budding interests on the hardware hacking field."
},
"Hackster": {
"id": 110,
"name": "Hackster",
"url": "https://www.hackster.io/",
"type": "Communities",
"description": "A online global community dedicated to learning hardware."
},
"Instructables": {
"id": 111,
"name": "Instructables",
"url": "https://www.instructables.com",
"type": "Communities",
"description": "A community of DIY and hardware hackers that shares and explore for your DIY journey. They also offer [an array of courses regarding DIY](https://www.instructables.com/classes/) within the website, as well. We have electronics, 3D printing, cooking, and so much more.",
"personalComment": "One of the best DIY community out there. Easy to navigate and explore, too."
},
"KiCAD": {
"id": 112,
"name": "KiCAD",
"url": "http://kicad-pcb.org/",
"type": "Computer-aided Design (CAD)",
"description": "A cross-platform free and open source electronics design automation suite."
},
"KTechLabs": {
"id": 113,
"name": "KTechLabs",
"url": "https://github.com/ktechlab/ktechlab",
"type": "Electronics",
"description": "A free and open source IDE for microcontrollers and electronics."
},
"Tinkercad": {
"id": 114,
"name": "Tinkercad",
"url": "https://www.tinkercad.com/",
"type": "Electronics",
"description": "A free collection of tools by Autodesk to get started on electronics, engineering, and programming. It may look like it's targeted for kids but it's still a good way on getting started with electronics, nonetheless by offering a circuit simulator and an integrated environment for programming and debugging your circuits."
},
"Awesome Gamedev (by *Calinou*)": {
"id": 115,
"name": "Awesome Gamedev (by *Calinou*)",
"url": "https://github.com/Calinou/awesome-gamedev",
"type": "Game Development",
"description": "An [awesome](https://github.com/sindresorhus/awesome) list on free and open source software and free cultures to aid you in your game developing process.",
"personalComment": "I could've chose [this featured list on awesome](https://github.com/ellisonleao/magictools) but for the spirit of free culture, I decided this pick the list by Calinou, instead."
},
"Blender": {
"id": 116,
"name": "Blender",
"url": "https://www.blender.org/",
"type": "Computer-aided Design (CAD)",
"description": "A cross-platform free and open source 3D modelling software. One of the leading software in terms of free software in 3D modelling. It also features video editing and a variety of physics simulation from cloth, smoke, to liquid.",
"personalComment": "If you're looking for a start in 3D modelling with free tools, this is one of the de facto tools on it."
},
"Boundary Break video series by *Shesez*": {
"id": 117,
"name": "Boundary Break video series by *Shesez*",
"url": "https://www.youtube.com/playlist?list=PLYfhW_P-MkU7vBmWwwyqdIWNDzXfEZwnO",
"type": "Game Development",
"description": "A YouTube video series by Shesez where he plays video games outside of gameplay boundaries. If you want to see how video games set are made, this can be a good starting point."
},
"Byond": {
"id": 118,
"name": "Byond",
"url": "https://secure.byond.com/",
"type": "Game Development",
"description": "A platform for creating and maintaining your online multiplayer games. Offers a custom language in order to create one and it is free, after all (I mean it wouldn't be listed here if it wasn't)."
},
"CS50's Introduction to Game Development": {
"id": 119,
"name": "CS50's Introduction to Game Development",
"url": "https://www.edx.org/course/cs50s-introduction-to-game-development",
"type": "Game Development",
"description": "One of CS50x's branching course. This time they introduce you to the game development process. Just like CS50, it offers you challenging problem sets to be able to get a solid grasp after lectures.",
"personalComment": "I mean it's CS50, I totally recommend this one."
},
"Game Jolt": {
"id": 120,
"name": "Game Jolt",
"url": "https://gamejolt.com/",
"type": "Communities",
"description": "One of the go-to game marketplace for indie game developers. As such, you can explore, meet, and create your audience and fellow game developers. Submitted games vary from its genre, quality, and pricing. Think Steam but for indie game devs."
},
"GDevelop": {
"id": 121,
"name": "GDevelop",
"url": "https://gdevelop-app.com/",
"type": "Game Development",
"description": "A free and open source app for game creation. You could create games without programming skills, a suitable tool for introducing to game development (and programming, overall)."
},
"Godot Engine": {
"id": 122,
"name": "Godot Engine",
"url": "https://godotengine.org/",
"type": "Game Development",
"description": "A free and open source cross-platform 2D and 3D game engine. You can visit the source code repo [right here](https://github.com/godotengine/godot).",
"personalComment": "I recommend this very much especially with their free asset store."
},
"itch.io": {
"id": 123,
"name": "itch.io",
"url": "https://itch.io/",
"type": "Communities",
"description": "Similar to Game Jolt, it is one of the biggest indie game marketplace for indie game developers who are living the indie game dev life (or aspires to be one). They're more upfront with building a community by providing more than games like [game jams](https://itch.io/jams), [an asset store](https://itch.io/game-assets), and [a forum](https://itch.io/community)."
},
"Kenney": {
"id": 124,
"name": "Kenney",
"url": "https://kenney.nl/",
"type": "Game Development",
"description": "It's a company that creates free game assets (both 2D and 3D and varies between graphics and audio) with no strings attached as all of their assets are released under [Public Domain CC0](https://creativecommons.org/publicdomain/zero/1.0/)."
},
"Make Human": {
"id": 125,
"name": "Make Human",
"url": "http://www.makehumancommunity.org/",
"type": "Game Development",
"description": "A professional-grade free and open source software for creating 3D human (and humanoid) models."
},
"Open Game Art": {
"id": 126,
"name": "Open Game Art",
"url": "https://opengameart.org/",
"type": "Game Development",
"description": "A website that offers free stock resources/assets for your game development process."
},
"Red Blob Games": {
"id": 127,
"name": "Red Blob Games",
"url": "https://www.redblobgames.com/",
"type": "Blogs",
"description": "A blog from a game developer on game development. His posts usually include visual and interactive examples to aid his explanation which is really a nice way to discuss game dev concepts."
},
"TIC-80 Computer": {
"id": 128,
"name": "TIC-80 Computer",
"url": "https://tic.computer/",
"type": "Game Development",
"description": "A virtual machine (or a fantasy computer, as they say) that specifically made for games and game development. Includes hardware-like restrictions, built-in tools for creating your games, and multiple language support such as Lua and JavaScript."
},
"0AD": {
"id": 129,
"name": "0AD",
"url": "https://play0ad.com/",
"type": "Games",
"description": "A free and open source ancient warfare strategy game based off [Age of Empires](https://www.ageofempires.com/).",
"personalComment": "This is one of the grandest free and open source game out there. From its presentation to its gameplay. And as of writing this (on 2019-07-24), it is still under early development so expect instability when first starting this game."
},
"Battle of Wesnoth": {
"id": 130,
"name": "Battle of Wesnoth",
"url": "https://www.wesnoth.org",
"type": "Games",
"description": "A free and open source turn-based game that takes place in a fantasy world. The source code is [freely available at GitHub](https://github.com/wesnoth/wesnoth)."
},
"Cataclysm: Dark Days Ahead": {
"id": 131,
"name": "Cataclysm: Dark Days Ahead",
"url": "https://cataclysmdda.org/",
"type": "Games",
"description": "A free and open source cross-platform turn-based survival game that takes place in an apocalyptic world with you having to do everything just to survive.",
"personalComment": "I find it hard to start with but it is becoming fun over time. Surprisingly, there's a _lot_ of variety here."
},
"Citybound": {
"id": 132,
"name": "Citybound",
"url": "http://cityboundsim.com/",
"type": "Games",
"description": "A city building game with a focus on realism through details. The source code is available in the [official GitHub repo](https://github.com/citybound/citybound)."
},
"Clone Hero": {
"id": 133,
"name": "Clone Hero",
"url": "https://clonehero.net/",
"type": "Games",
"description": "As it is already indicated by the title, it is a clone of Guitar Hero. It is available for the major operating systems."
},
"Dwarf Fortress": {
"id": 134,
"name": "Dwarf Fortress",
"url": "http://www.bay12games.com/dwarves/index.html",
"type": "Games",
"description": "A free cross-platform (*very*) ambitious world simulator. It is famously known for the amount of details and realism integrated within the game. Its source is openly distributed and the devs mostly get their support through donations.",
"personalComment": "If you want to get started, you're free to lurk in [this subreddit](https://www.reddit.com/r/dwarffortress/) and look for their [getting started guide](https://www.reddit.com/r/dwarffortress/#side-heading)."
},
"FreeCiv": {
"id": 135,
"name": "FreeCiv",
"url": "http://www.freeciv.org/",
"type": "Games",
"description": "A free and open source real-time strategy (RTS) game inspired from the Sid Meier's Civilization series. If you want to see the source code, you can visit it at the [official GitHub repo](https://en.wikipedia.org/wiki/Freeciv)."
},
"id Software's Games": {
"id": 136,
"name": "id Software's Games",
"url": "https://github.com/id-Software",
"type": "Games",