-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathresourcesData.js
More file actions
2722 lines (2722 loc) · 95 KB
/
resourcesData.js
File metadata and controls
2722 lines (2722 loc) · 95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default [
{
id: 1,
link:
'https://raw.githubusercontent.com/bradtraversy/design-resources-for-developers/master/readme.md',
repoName: 'design-resources-for-developers',
description:
'Curated list of design and UI resources from stock photos, web templates, CSS frameworks, UI libraries, tools and much more',
repoOwnerName: 'bradtraversy',
repoOwner: 'Brad Traversy',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 2,
link:
'https://raw.githubusercontent.com/public-apis/public-apis/master/README.md',
repoName: 'public-apis',
description:
'A collective list of free APIs for use in software and web development.',
repoOwnerName: 'public-apis',
repoOwner: 'public-apis',
category: ['backend', 'web-dev', 'mob-dev'],
},
{
id: 3,
link:
'https://raw.githubusercontent.com/emmabostian/developer-portfolios/master/README.md',
repoName: 'developer-portfolios',
description: 'A list of developer portfolios for your inspiration',
repoOwnerName: 'emmabostian',
repoOwner: 'Emma Bostian',
category: ['backend', 'frontend', 'web-dev', 'mob-dev'],
},
{
id: 4,
link:
'https://raw.githubusercontent.com/ErikCH/DevYouTubeList/master/README.md',
repoName: 'DevYouTubeList',
description:
'A curated list of amazing development channels on YouTube. These include web development, back-end development, front-end development live coders and more!',
repoOwnerName: 'ErikCH',
repoOwner: 'Erik Hanchett',
category: [
'backend',
'frontend',
'web-dev',
'mob-dev',
'course',
'language',
],
},
{
id: 5,
link:
'https://raw.githubusercontent.com/florinpop17/app-ideas/master/README.md',
repoName: 'app-ideas',
description:
'A Collection of application ideas which can be used to improve your coding skills.',
repoOwnerName: 'florinpop17',
repoOwner: 'Florin Pop',
category: ['web-dev', 'mob-dev', 'project'],
},
{
id: 6,
link:
'https://raw.githubusercontent.com/lauragift21/awesome-learning-resources/master/README.md',
repoName: 'awesome-learning-resources',
description: 'list of resources on Web Development.',
repoOwnerName: 'lauragift21',
repoOwner: 'Gift Egwuenu',
category: ['backend', 'frontend', 'web-dev', 'mob-dev'],
},
{
id: 7,
link:
'https://raw.githubusercontent.com/alexpate/awesome-design-systems/master/README.md',
repoName: 'awesome-design-systems',
description:
'A design system is a collection of documentation on principles and best practices, that helps guide a team to build digital products.',
repoOwnerName: 'alexpate',
repoOwner: 'Alex Pate',
category: ['frontend'],
},
{
id: 8,
link:
'https://raw.githubusercontent.com/alexpate/design-system-talks/master/README.md',
repoName: 'design-system-talks',
description: 'A collection of talks on design systems',
repoOwnerName: 'alexpate',
repoOwner: 'Alex Pate',
category: ['frontend'],
},
{
id: 9,
link:
'https://raw.githubusercontent.com/dipakkr/A-to-Z-Resources-for-Students/master/README.md',
repoName: 'A-to-Z-Resources-for-Students',
description:
'Curated list of resources for college students. you should definitely check this out.',
repoOwnerName: 'dipakkr',
repoOwner: 'Deepak Kumar',
category: [
'backend',
'frontend',
'web-dev',
'mob-dev',
'course',
],
},
{
id: 10,
link:
'https://raw.githubusercontent.com/sdmg15/Best-websites-a-programmer-should-visit/master/README.md',
repoName: 'Best-websites-a-programmer-should-visit',
description:
'useful lists of websites for coders, must know to get always informed in order and learn new stuffs. ',
repoOwnerName: 'sdmg15',
repoOwner: 'Sonkeng Maldini',
category: ['podcast', 'interview'],
},
{
id: 11,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/javascript.md',
repoName: 'FAQ - javascript',
description: 'FAQ javascript questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'language'],
},
{
id: 12,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/react.md',
repoName: 'FAQ - React',
description: 'FAQ React questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 13,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/redux.md',
repoName: 'FAQ - Redux',
description: 'FAQ redux questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 14,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/vuejs.md',
repoName: 'FAQ - VueJS',
description: 'FAQ VueJS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 15,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/angular.md',
repoName: 'FAQ - Angular',
description: 'FAQ Angular questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 16,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/nodejs.md',
repoName: 'FAQ - nodeJS',
description: 'FAQ nodeJS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'backend'],
},
{
id: 17,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/angularjs.md',
repoName: 'FAQ - AngularJS',
description: 'FAQ AngularJS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 18,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/bootstrap.md',
repoName: 'FAQ - BootStrap',
description: 'FAQ BootStrap questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 19,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/css.md',
repoName: 'FAQ - CSS',
description: 'FAQ CSS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 20,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/html5.md',
repoName: 'FAQ - HTML5',
description: 'FAQ HTML5 questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 21,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/sass.md',
repoName: 'FAQ - SASS',
description: 'FAQ SASS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 22,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/webpack.md',
repoName: 'FAQ - WEBpack',
description: 'FAQ WEBpack questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev'],
},
{
id: 23,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/mongodb.md',
repoName: 'FAQ - mongoDB',
description: 'FAQ mongoDB questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'backend'],
},
{
id: 24,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/sql.md',
repoName: 'FAQ - SQL',
description: 'FAQ SQL questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'backend'],
},
{
id: 25,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/graphql.md',
repoName: 'FAQ - GraphQL',
description: 'FAQ GraphQL questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'frontend'],
},
{
id: 26,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/c.md',
repoName: 'FAQ - C#',
description: 'FAQ C# questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'language'],
},
{
id: 27,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/golang.md',
repoName: 'FAQ - GOLANG',
description: 'FAQ GOLANG questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'language'],
},
{
id: 28,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/java.md',
repoName: 'FAQ - JAVA',
description: 'FAQ JAVA questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'language'],
},
{
id: 29,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/typeScript.md',
repoName: 'FAQ - TypeScript',
description: 'FAQ TypeScript questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'language', 'web-dev'],
},
{
id: 30,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/aws.md',
repoName: 'FAQ - AWS',
description: 'FAQ AWS questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev'],
},
{
id: 31,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/git.md',
repoName: 'FAQ - GIT',
description: 'FAQ GIT questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'web-dev', 'mob-dev'],
},
{
id: 32,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/code-problems.md',
repoName: 'FAQ - code problems',
description: 'FAQ Code problems questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview'],
},
{
id: 33,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/data-structures.md',
repoName: 'FAQ - data structures',
description: 'FAQ Data Structures questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview'],
},
{
id: 34,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/design-patterns.md',
repoName: 'FAQ - Design patterns',
description: 'FAQ Design Patterns questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'frontend'],
},
{
id: 35,
link:
'https://raw.githubusercontent.com/FAQGURU/FAQGURU/master/topics/en/agile.md',
repoName: 'FAQ - Agile',
description: 'FAQ Agile questions in interviews',
repoOwnerName: 'FAQGURU',
repoOwner: 'FAQGURU',
category: ['interview', 'mob-dev', 'web-dev'],
},
{
id: 36,
link:
'https://raw.githubusercontent.com/Michael0x2a/curated-programming-resources/master/resources.md',
repoName: 'curated-programming-resources',
description: 'A curated list of resources for learning programming.',
repoOwnerName: 'Michael0x2a',
repoOwner: 'Michael Lee',
category: ['language', 'web-dev', 'mob-dev'],
},
{
id: 37,
link:
'https://raw.githubusercontent.com/charlax/professional-programming/master/README.md',
repoName: 'professional-programming',
description: 'A collection of full-stack resources for programmers.',
repoOwnerName: 'charlax',
repoOwner: 'Charles-Axel Dein',
category: ['frontend', 'backend', 'web-dev', 'mob-dev'],
},
{
id: 38,
link:
'https://raw.githubusercontent.com/charlax/engineering-management/master/README.md',
repoName: 'engineering-management',
description:
'A collection of inspiring resources related to engineering management and tech leadership',
repoOwnerName: 'charlax',
repoOwner: 'Charles-Axel Dein',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 39,
link:
'https://raw.githubusercontent.com/tuvtran/project-based-learning/master/README.md',
repoName: 'project-based-learning',
description:
'A list of programming tutorials in which learners build an application from scratch. These tutorials are divided into different primary programming languages.',
repoOwnerName: 'tuvtran',
repoOwner: 'Tu V. Tran',
category: ['project', 'course', 'language'],
},
{
id: 40,
link:
'https://raw.githubusercontent.com/MunGell/awesome-for-beginners/master/README.md',
repoName: 'awesome-for-beginners',
description: 'A list of awesome beginners-friendly projects.',
repoOwnerName: 'MunGell',
repoOwner: 'Shmavon Gazanchyan',
category: ['project', 'language'],
},
{
id: 41,
link:
'https://raw.githubusercontent.com/kamranahmedse/developer-roadmap/master/README.md',
repoName: 'developer-roadmap',
description:
'Roadmap to becoming a web developer in 2020 https://roadmap.sh',
repoOwnerName: 'kamranahmedse',
repoOwner: 'Kamran Ahmed',
category: ['web-dev', 'frontend', 'backend'],
},
{
id: 42,
link:
'https://raw.githubusercontent.com/mtdvio/every-programmer-should-know/master/README.md',
repoName: 'every-programmer-should-know',
description:
'A collection of (mostly) technical things every software developer should know',
repoOwnerName: 'mtdvio',
repoOwner: 'MTDV',
category: ['web-dev', 'mob-dev'],
},
{
id: 43,
link:
'https://raw.githubusercontent.com/hardikvasa/awesome-programming/master/README.md',
repoName: 'awesome-programming',
description:
'A curated list of awesome programming talks, articles, books, resources and more!!',
repoOwnerName: 'hardikvasa',
repoOwner: 'Hardik Vasa',
category: ['language', 'podcast'],
},
{
id: 44,
link:
'https://raw.githubusercontent.com/elsewhencode/project-guidelines/master/README.md',
repoName: 'project-guidelines',
description: 'A set of best practices for JavaScript projects',
repoOwnerName: 'elsewhencode',
repoOwner: 'Elsewhen ',
category: ['project', 'mob-dev', 'web-dev'],
},
{
id: 45,
link:
'https://raw.githubusercontent.com/RitikPatni/Front-End-Web-Development-Resources/master/README.md',
repoName: 'Front-End-Web-Development-Resources',
description:
'This repository contains content which will be helpful in your journey as a front-end Web Developer https://resources.ritikpatni.me/',
repoOwnerName: 'RitikPatni',
repoOwner: 'Ritik Patni',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 46,
link:
'https://raw.githubusercontent.com/ripienaar/free-for-dev/master/README.md',
repoName: 'free-for-dev',
description:
'A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev https://free-for.dev/',
repoOwnerName: 'ripienaar',
repoOwner: 'R.I.Pienaar',
category: ['web-dev', 'mob-dev'],
},
{
id: 47,
link:
'https://raw.githubusercontent.com/ryanmcdermott/clean-code-javascript/master/README.md',
repoName: 'clean-code-javascript',
description: 'Clean Code concepts adapted for JavaScript',
repoOwnerName: 'ryanmcdermott',
repoOwner: 'Ryan McDermott',
category: ['web-dev'],
},
{
id: 48,
link:
'https://raw.githubusercontent.com/ryanmcdermott/code-review-tips/master/README.md',
repoName: 'code-review-tips',
description: 'microscope Common problems to look for in a code review',
repoOwnerName: 'ryanmcdermott',
repoOwner: 'Ryan McDermott',
category: ['web-dev', 'mob-dev'],
},
{
id: 49,
link:
'https://raw.githubusercontent.com/lydiahallie/javascript-questions/master/README.md',
repoName: 'javascript-questions',
description:
'A long list of (advanced) JavaScript questions, and their explanations sparkles',
repoOwnerName: 'lydiahallie',
repoOwner: 'Lydia Hallie',
category: ['language', 'interview'],
},
{
id: 50,
link:
'https://raw.githubusercontent.com/denysdovhan/wtfjs/master/README.md',
repoName: 'wtfjs',
description: 'A list of funny and tricky JavaScript examples.',
repoOwnerName: 'denysdovhan',
repoOwner: 'Denys Dovhan',
category: ['language'],
},
{
id: 51,
link:
'https://raw.githubusercontent.com/denysdovhan/bash-handbook/master/README.md',
repoName: 'bash-handbook',
description: ' For those who wanna learn Bash',
repoOwnerName: 'denysdovhan',
repoOwner: 'Denys Dovhan',
category: ['language', 'course'],
},
{
id: 52,
link:
'https://raw.githubusercontent.com/jwasham/coding-interview-university/master/README.md',
repoName: 'coding-interview-university',
description:
' A complete computer science study plan to become a software engineer.',
repoOwnerName: 'jwasham',
repoOwner: 'John Washam',
category: ['web-dev', 'mob-dev', 'course', 'interview'],
},
{
id: 53,
link:
'https://raw.githubusercontent.com/leonardomso/33-js-concepts/master/README.md',
repoName: '33-js-concepts',
description: 'scroll 33 concepts every JavaScript developer should know.',
repoOwnerName: 'leonardomso',
repoOwner: 'Leonardo Maldonado',
category: ['language', 'course'],
},
{
id: 54,
link:
'https://raw.githubusercontent.com/mbeaudru/modern-js-cheatsheet/master/README.md',
repoName: 'modern-js-cheatsheet',
description:
'Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.',
repoOwnerName: 'mbeaudru',
repoOwner: 'Manuel Beaudru',
category: ['language', 'course'],
},
{
id: 55,
link:
'https://raw.githubusercontent.com/MaximAbramchuck/awesome-interview-questions/master/README.md',
repoName: 'awesome-interview-questions',
description:
' A curated awesome list of lists of interview questions. Feel free to contribute!.',
repoOwnerName: 'MaximAbramchuck',
repoOwner: 'Maksim Abramchuk',
category: ['interview', 'language'],
},
{
id: 56,
link:
'https://raw.githubusercontent.com/sindresorhus/awesome-electron/master/readme.md',
repoName: 'awesome-electron',
description: 'Useful resources for creating apps with Electron.',
repoOwnerName: 'sindresorhus',
repoOwner: 'Sindre Sorhus',
category: ['web-dev', 'language'],
},
{
id: 57,
link:
'https://raw.githubusercontent.com/JacobWylie/Web-Dev-Learning-Resources/master/README.md',
repoName: 'Web-Dev-Learning-Resources',
description:
'Collection of my favorite web development resources for beginners and professionals alike.',
repoOwnerName: 'JacobWylie',
repoOwner: 'Jacob Wylie',
category: ['frontend', 'web-dev', 'backend'],
},
{
id: 58,
link:
'https://raw.githubusercontent.com/sudheerj/reactjs-interview-questions/master/README.md',
repoName: 'reactjs-interview-questions',
description:
'List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!!',
repoOwnerName: 'sudheerj',
repoOwner: 'Sudheer Jonna',
category: ['interview', 'frontend', 'web-dev'],
},
{
id: 59,
link:
'https://raw.githubusercontent.com/sudheerj/angular-interview-questions/master/README.md',
repoName: 'angular-interview-questions',
description: 'List of 300 Angular Interview Questions and answers[WIP]',
repoOwnerName: 'sudheerj',
repoOwner: 'Sudheer Jonna',
category: ['interview', 'frontend', 'web-dev'],
},
{
id: 60,
link:
'https://raw.githubusercontent.com/sudheerj/javascript-interview-questions/master/README.md',
repoName: 'javascript-interview-questions',
description: 'List of 1000 JavaScript Interview Questions',
repoOwnerName: 'sudheerj',
repoOwner: 'Sudheer Jonna',
category: ['interview', 'frontend', 'language'],
},
{
id: 61,
link:
'https://raw.githubusercontent.com/sudheerj/vuejs-interview-questions/master/README.md',
repoName: 'vuejs-interview-questions',
description: 'List of 300 VueJS Interview Questions And Answers',
repoOwnerName: 'sudheerj',
repoOwner: 'Sudheer Jonna',
category: ['interview', 'frontend', 'web-dev'],
},
{
id: 62,
link:
'https://raw.githubusercontent.com/neutraltone/awesome-stock-resources/master/README.md',
repoName: 'awesome-stock-resources',
description:
' A collection of links for free stock photography, video and Illustration websites',
repoOwnerName: 'neutraltone',
repoOwner: 'Tony Phipps',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 63,
link:
'https://raw.githubusercontent.com/LisaDziuba/Awesome-Design-Tools/master/README.md',
repoName: 'Awesome-Design-Tools',
description:
'The best design tools and plugins for everything point_right https://flawlessapp.io/designtools',
repoOwnerName: 'LisaDziuba',
repoOwner: 'Lisa Dziuba',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 64,
link:
'https://raw.githubusercontent.com/gztchan/awesome-design/master/README.md',
repoName: 'awesome-design',
description: 'Curated design resources. ',
repoOwnerName: 'gztchan',
repoOwner: 'Tony Chan',
category: ['frontend', 'web-dev'],
},
{
id: 65,
link:
'https://raw.githubusercontent.com/MindorksOpenSource/android-interview-questions/master/README.md',
repoName: 'android-interview-questions',
description:
'Your Cheat Sheet For Android Interview - Android Interview Questions',
repoOwnerName: 'MindorksOpenSource',
repoOwner: 'MindOrks',
category: ['mob-dev', 'interview'],
},
{
id: 69,
link:
'https://raw.githubusercontent.com/sindresorhus/awesome/main/readme.md',
repoName: 'awesome',
description: 'Awesome lists about all kinds of interesting topics',
repoOwnerName: 'sindresorhus',
repoOwner: 'Sindre Sorhus',
category: ['language', 'web-dev', 'mob-dev', 'frontend', 'backend'],
},
{
id: 70,
link:
'https://raw.githubusercontent.com/sindresorhus/awesome-nodejs/master/readme.md',
repoName: 'awesome-nodejs',
description: 'Delightful Node.js packages and resources https://node.cool',
repoOwnerName: 'sindresorhus',
repoOwner: 'Sindre Sorhus',
category: ['backend', 'web-dev'],
},
{
id: 71,
link:
'https://raw.githubusercontent.com/sorrycc/awesome-javascript/master/README.md',
repoName: 'awesome-javascript',
description:
' A collection of awesome browser-side JavaScript libraries, resources and shiny things.',
repoOwnerName: 'sorrycc',
repoOwner: 'chencheng (云谦)',
category: ['language', 'web-dev'],
},
{
id: 72,
link:
'https://raw.githubusercontent.com/uhub/awesome-javascript/master/README.md',
repoName: 'awesome-javascript',
description:
'A curated list of awesome JavaScript frameworks, libraries and software.',
repoOwnerName: 'uhub',
repoOwner: 'uhub',
category: ['language', 'web-dev'],
},
{
id: 73,
link:
'https://raw.githubusercontent.com/micromata/awesome-javascript-learning/master/readme.md',
repoName: 'awesome-javascript-learning',
description:
'A tiny list limited to the best JavaScript Learning Resources',
repoOwnerName: 'micromata',
repoOwner: 'Micromata GmbH',
category: ['language', 'course'],
},
{
id: 74,
link:
'https://raw.githubusercontent.com/vinta/awesome-python/master/README.md',
repoName: 'awesome-python',
description:
'A curated list of awesome Python frameworks, libraries, software and resources',
repoOwnerName: 'vinta',
repoOwner: 'Vinta Chen',
category: ['language', 'podcast'],
},
{
id: 75,
link:
'https://raw.githubusercontent.com/akullpp/awesome-java/master/README.md',
repoName: 'awesome-java',
description:
'A curated list of awesome frameworks, libraries and software for the Java programming language.',
repoOwnerName: 'akullpp',
repoOwner: 'Andreas Kull',
category: ['language', 'podcast'],
},
{
id: 76,
link:
'https://raw.githubusercontent.com/avelino/awesome-go/master/README.md',
repoName: 'awesome-go',
description:
'A curated list of awesome Go frameworks, libraries and software https://awesome-go.com/',
repoOwnerName: 'avelino',
repoOwner: 'Avelino',
category: ['language'],
},
{
id: 77,
link:
'https://raw.githubusercontent.com/yissachar/awesome-dart/master/README.md',
repoName: 'awesome-dart',
description:
'A curated list of awesome Dart frameworks, libraries, and software',
repoOwnerName: 'yissachar',
repoOwner: 'yissachar',
category: ['mob-dev'],
},
{
id: 78,
link:
'https://raw.githubusercontent.com/rust-unofficial/awesome-rust/master/README.md',
repoName: 'awesome-rust',
description: 'A curated list of Rust code and resources.',
repoOwnerName: 'rust-unofficial',
repoOwner: 'rust-unofficial',
category: ['language'],
},
{
id: 79,
link:
'https://raw.githubusercontent.com/ForrestKnight/open-source-cs/master/README.md',
repoName: 'open-source-cs',
description:
'free courses from reputable universities like MIT, Stanford and Princeton that satisfy the same requirements as an undergraduate Computer Science degree.',
repoOwnerName: 'ForrestKnight',
repoOwner: 'Forrest Knight',
category: ['course', 'language'],
},
{
id: 80,
link:
'https://raw.githubusercontent.com/enaqx/awesome-react/master/README.md',
repoName: 'awesome-react',
description: 'A collection of awesome things regarding React ecosystem',
repoOwnerName: 'enaqx',
repoOwner: 'Nick Raienko',
category: ['frontend', 'web-dev'],
},
{
id: 81,
link:
'https://raw.githubusercontent.com/awesome-css-group/awesome-css/master/README.md',
repoName: 'awesome-css',
description: 'A curated contents of amazing CSS :)',
repoOwnerName: 'awesome-css-group',
repoOwner: 'awesome-css-group',
category: ['frontend', 'web-dev'],
},
{
id: 82,
link:
'https://raw.githubusercontent.com/PatrickJS/awesome-angular/gh-pages/README.md',
repoName: 'awesome-angular',
description: ' A curated list of awesome Angular resources',
repoOwnerName: 'PatrickJS',
repoOwner: 'PatrickJS',
category: ['frontend', 'web-dev'],
},
{
id: 83,
link:
'https://raw.githubusercontent.com/veggiemonk/awesome-docker/master/README.md',
repoName: 'awesome-docker',
description:
'A curated list of Docker resources and projects https://awesome-docker.netlify.app',
repoOwnerName: 'veggiemonk',
repoOwner: 'Julien Bisconti',
category: ['frontend', 'web-dev', 'mob-dev'],
},
{
id: 84,
link:
'https://raw.githubusercontent.com/lnishan/awesome-competitive-programming/master/README.md',
repoName: 'awesome-competitive-programming',
description:
'A curated list of awesome Competitive Programming, Algorithm and Data Structure resources http://codeforces.com/blog/entry/23054',
repoOwnerName: 'lnishan',
repoOwner: 'Jasmine Chen',
category: ['course', 'language'],
},
{
id: 85,
link:
'https://raw.githubusercontent.com/prakhar1989/awesome-courses/master/README.md',
repoName: 'awesome-courses',
description:
'List of awesome university courses for learning Computer Science!',
repoOwnerName: 'prakhar1989',
repoOwner: 'Prakhar Srivastav',
category: ['course', 'language'],
},
{
id: 86,
link:
'https://raw.githubusercontent.com/ossu/computer-science/master/README.md',
repoName: 'computer-science',
description: 'Path to a free self-taught education in Computer Science!',
repoOwnerName: 'ossu',
repoOwner: 'Open Source Society University',
category: ['course', 'language'],
},
{
id: 87,
link:
'https://raw.githubusercontent.com/Solido/awesome-flutter/master/source.md',
repoName: 'awesome-flutter',
description:
'An awesome list that curates the best Flutter libraries, tools, tutorials, articles and more.',
repoOwnerName: 'Solido',
repoOwner: 'Robert Felker',
category: ['mob-dev'],
},
{
id: 88,
link:
'https://raw.githubusercontent.com/tiimgreen/github-cheat-sheet/master/README.md',
repoName: 'github-cheat-sheet',
description:
'A list of cool features of Git and GitHub. http://git.io/sheet',
repoOwnerName: 'tiimgreen',
repoOwner: 'Tim Green',
category: ['web-dev', 'mob-dev', 'frontend', 'backend'],
},
{
id: 89,
link:
'https://raw.githubusercontent.com/jorgegonzalez/beginner-projects/master/README.md',
repoName: 'beginner-projects',
description: 'A list of projects for beginners.',
repoOwnerName: 'jorgegonzalez',
repoOwner: 'Jorge Gonzalez',
category: ['project'],
},
{
id: 90,
link:
'https://raw.githubusercontent.com/rShetty/awesome-podcasts/master/README.md',
repoName: 'awesome-podcasts',
description: 'Collection of awesome podcasts',
repoOwnerName: 'rShetty',
repoOwner: 'Rajeev N Bharshetty',
category: ['frontend', 'backend', 'podcast'],
},
{
id: 91,
link:
'https://raw.githubusercontent.com/thedaviddias/Front-End-Performance-Checklist/master/README.md',
repoName: 'Front-End-Performance-Checklist',
description:
'The only Front-End Performance Checklist that runs faster than the others',
repoOwnerName: 'thedaviddias',
repoOwner: 'David Dias',
category: ['web-dev'],
},
{
id: 92,
link:
'https://raw.githubusercontent.com/thedaviddias/Resources-Front-End-Beginner/master/README.md',
repoName: 'Resources-Front-End-Beginner',
description:
'The most essential list of resources for Front-End beginners (us gb canada & fr)',
repoOwnerName: 'thedaviddias',
repoOwner: 'David Dias',
category: ['web-dev'],
},
{
id: 93,
link:
'https://raw.githubusercontent.com/thedaviddias/Front-End-Checklist/master/README.md',
repoName: 'Front-End-Checklist',
description:
'The perfect Front-End Checklist for modern websites and meticulous developers',
repoOwnerName: 'thedaviddias',
repoOwner: 'David Dias',
category: ['web-dev'],
},
{
id: 94,
link:
'https://raw.githubusercontent.com/thedaviddias/Front-End-Design-Checklist/master/README.md',
repoName: 'Front-End-Design-Checklist',
description:
' The Design Checklist for Creative Web Designers and Patient Front-End Developers',
repoOwnerName: 'thedaviddias',
repoOwner: 'David Dias',
category: ['web-dev'],
},
{
id: 95,
link:
'https://raw.githubusercontent.com/vuejs/awesome-vue/master/README.md',
repoName: 'awesome-vue',
description: 'A curated list of awesome things related to Vue.js',
repoOwnerName: 'vuejs',
repoOwner: 'vuejs',
category: ['web-dev', 'frontend', 'podcast'],
},
{
id: 96,
link:
'https://raw.githubusercontent.com/vuejs/awesome-vue/master/awesome_vue_with_repo_info.md',
repoName: 'awesome-vue.js',
description:
'A curated list of awesome things related to Vue.js(tutorials, lib & plugins, project using vue.js, examples etc.)',
repoOwnerName: 'vuejs',
repoOwner: 'vuejs',
category: ['web-dev', 'frontend', 'podcast'],
},
{
id: 97,
link:
'https://raw.githubusercontent.com/vsouza/awesome-ios/master/README.md',
repoName: 'awesome-ios',
description:
'A curated list of awesome iOS ecosystem, including Objective-C and Swift Projects http://awesomeios.com',
repoOwnerName: 'vsouza',
repoOwner: 'Vinicius Souza',
category: ['mob-dev', 'podcast'],
},
{
id: 98,
link:
'https://raw.githubusercontent.com/JStumpp/awesome-android/master/readme.md',