This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlists.js
1401 lines (1401 loc) · 52.6 KB
/
lists.js
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 {
"sorrycc/awesome-javascript": {
slug: "javascript",
label: "JavaScript",
description:
"JavaScript is an object-oriented programming language used alongside HTML and CSS to give functionality to web pages.",
logo:
"https://raw.githubusercontent.com/github/explore/master/topics/javascript/javascript.png",
color: "#f7df1e",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"vinta/awesome-python": {
slug: "python",
label: "Python",
description: "Python is a dynamically typed programming language.",
logo: "/logos/python.png",
favicon: "/favicons/python.png",
color: "#3572a5",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"h4cc/awesome-elixir": {
slug: "elixir",
label: "Elixir",
description:
"Elixir is a dynamic, functional language designed for building scalable and maintainable applications.",
logo: "https://avatars.githubusercontent.com/elixir-lang",
color: "#4e2a8e",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"razum2um/awesome-clojure": {
slug: "clojure",
label: "Clojure",
description: "Clojure is a functional, dynamic, general-purpose programming language.",
logo: "https://avatars.githubusercontent.com/clojure",
color: "#26324b",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"hantuzun/awesome-clojurescript": {
slug: "clojurescript",
label: "ClojureScript",
description:
"ClojureScript is a compiler for the Clojure programming language that targets JavaScript.",
logo: "https://avatars.githubusercontent.com/cljsinfo",
color: "#26324b",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector(":scope > hr:first-of-type").style.display = "none";
},
mutateTOC() {
this.querySelector(
"#toc-a-community-driven-list-of-clojurescript-frameworks-libraries-and-wrappers"
).style.display =
"none";
},
},
"fsprojects/awesome-fsharp": {
slug: "fsharp",
label: "F#",
description:
"F# is an open source cross-platform functional-first programming language built on the .NET Framework.",
logo: "https://avatars.githubusercontent.com/fsharp",
color: "#378bba",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"quozd/awesome-dotnet": {
slug: "dotnet",
label: ".NET",
description:
".NET is a developer platform with tools and libraries for building any type of app, including web, mobile, desktop, games, IoT, cloud, and microservices.",
logo: "https://avatars.githubusercontent.com/dotnet",
color: "#512bd4",
category: "Programming Languages",
mutateContent() {},
},
"avelino/awesome-go": {
slug: "go",
label: "Go",
description:
"Go is a programming language built to resemble a simplified version of the C programming language.",
logo: "https://avatars.githubusercontent.com/golang",
color: "#375eab",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
this.querySelector("#toc-contributing").style.display = "none";
const selector =
"#toc-if-you-see-a-package-or-project-here-that-is-no-longer-maintained-or-is-not-a-good-fit-please-submit-a-pull-request-to-improve-this-file-thank-you";
this.querySelector(selector).style.display = "none";
},
},
"markets/awesome-ruby": {
slug: "ruby",
label: "Ruby",
description:
"Ruby is a scripting language designed for simplified object-oriented programming.",
logo: "https://avatars.githubusercontent.com/ruby",
color: "#cc342d",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
mutateTOC() {
const h = this.querySelector("#toc-awesome-ruby");
h.className = h.className.replace("h3", "h1");
},
},
"matteocrippa/awesome-swift": {
slug: "swift",
label: "Swift",
description:
"Swift is a modern programming language focused on safety, performance and expressivity.",
logo: "https://raw.githubusercontent.com/github/explore/master/topics/swift/swift.png",
color: "#ef5138",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"uraimo/Awesome-Swift-Playgrounds": {
slug: "swift-playgrounds",
label: "Swift Playgrounds",
description:
"Swift Playgrounds make learning the Swift programming language interactive and fun.",
logo: "https://raw.githubusercontent.com/github/explore/master/topics/swift/swift.png",
color: "#ef5138",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"isRuslan/awesome-elm": {
slug: "elm",
label: "Elm",
description:
"Elm is a programming language for declaratively creating web browser-based graphical user interfaces.",
logo: "https://avatars.githubusercontent.com/elm-lang",
color: "#60b5cc",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"vramana/awesome-reasonml": {
slug: "reason",
label: "Reason",
description:
"Reason is a new syntax and toolchain powered by the OCaml language that can be compiled to JavaScript.",
logo: "https://avatars.githubusercontent.com/reasonml",
color: "#db4d3f",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"akullpp/awesome-java": {
slug: "java",
label: "Java",
description:
"Java is an object-oriented programming language used mainly for desktop and mobile applications.",
logo: "/logos/java.png",
favicon: "/favicons/java.png",
color: "#5382a1",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"KotlinBy/awesome-kotlin": {
slug: "kotlin",
label: "Kotlin",
description: "A modern programming language that makes developers happier and runs on the JVM.",
logo: "https://avatars.githubusercontent.com/kotlin",
color: "#6b70fc",
category: "Programming Languages",
mutateContent() {},
},
"rizo/awesome-ocaml": {
slug: "ocaml",
label: "OCaml",
description:
"OCaml is an industrial strength programming language supporting functional, imperative and object-oriented styles.",
logo: "https://avatars.githubusercontent.com/ocaml",
color: "#c97928",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"ziadoz/awesome-php": {
slug: "php",
label: "PHP",
description:
"PHP is a scripting language that works particularly well for server-side web development.",
logo: "https://avatars.githubusercontent.com/php",
color: "#4f5d95",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"veelenga/awesome-crystal": {
slug: "crystal",
label: "Crystal",
description: "Crystal is a self-hosted, general purpose programming language.",
logo: "https://avatars.githubusercontent.com/crystal-lang",
color: "#222222",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"qinwf/awesome-R": {
slug: "r",
label: "R",
description:
"R is a free programming language and software environment for statistical computing and graphics.",
logo: "https://raw.githubusercontent.com/github/explore/master/topics/r/r.png",
color: "#198ce7",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"parro-it/awesome-micro-npm-packages": {
slug: "micro-npm",
label: "Micro npm Packages",
description:
"A curated list of small, focused npm packages. npm is a package manager for JavaScript included with Node.js.",
logo: "https://avatars.githubusercontent.com/npm",
color: "#cb3837",
category: "Programming Languages",
},
"dustinspecker/awesome-eslint": {
slug: "eslint",
label: "ESLint",
description:
"ESLint is an extensible static-analysis tool for JavaScript and related languages that helps catch errors.",
logo: "https://avatars.githubusercontent.com/eslint",
color: "#463fd4",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"fffaraz/awesome-cpp": {
slug: "cpp",
label: "C and C++",
description:
"C++ is a general purpose and object-oriented programming language. It was designed as an extension of the C language.",
logo: "https://avatars.githubusercontent.com/isocpp",
color: "#00589c",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"hachiojipm/awesome-perl": {
slug: "perl",
label: "Perl",
description:
"Perl is a highly capable and feature-rich programming language with over 29 years of development.",
logo: "https://avatars.githubusercontent.com/Perl",
color: "#0073a1",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"rust-unofficial/awesome-rust": {
slug: "rust",
label: "Rust",
description:
"Rust is a systems programming language. It is designed for improved memory safety without sacrificing performance.",
logo: "https://avatars.githubusercontent.com/rust-lang",
color: "#428bca",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
this.querySelectorAll("li img").forEach(h => (h.style.verticalAlign = "-4px"));
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"drobakowski/awesome-erlang": {
slug: "erlang",
label: "Erlang",
description: "Erlang is a general-purpose, concurrent, functional programming language.",
logo: "/logos/erlang.png",
favicon: "/favicons/erlang.png",
color: "#a2003e",
category: "Programming Languages",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"enaqx/awesome-react": {
slug: "react",
label: "React",
description: "React is an open source JavaScript library used for designing user interfaces.",
logo: "https://avatars.githubusercontent.com/react-community",
color: "#61dafb",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
mutateTOC() {
this.style.marginLeft = "-16px";
},
},
"Granze/awesome-polymer": {
slug: "polymer",
label: "Polymer",
description:
"Polymer is an open source JavaScript library for building web applications using Web Components.",
logo: "https://avatars.githubusercontent.com/Polymer",
color: "#e8345a",
category: "Front-End Development",
},
"PatrickJS/awesome-angular": {
slug: "angular",
label: "Angular",
description:
"Angular is an open source JavaScript-based framework for building web applications.",
logo: "https://avatars.githubusercontent.com/angular",
color: "#dd0031",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector(":scope > p:first-of-type").style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-current-angular-version").style.display = "none";
this.querySelector("#toc-current-browser-support-for-angular").style.display = "none";
this.querySelector("#toc-awesome-angular--").style.display = "none";
this.style.marginLeft = "-16px";
},
},
"vuejs/awesome-vue": {
slug: "vue",
label: "Vue.js",
description: "Vue.js is a JavaScript framework for building interactive web applications.",
logo: "https://avatars.githubusercontent.com/vuejs",
color: "#4fc08d",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector(":scope > p:first-of-type").style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-awesome-vuejs-").style.display = "none";
},
},
"webpack-contrib/awesome-webpack": {
slug: "webpack",
label: "Webpack",
description:
"Webpack is a bundler that takes modules with dependencies and creates static assets.",
logo: "https://avatars.githubusercontent.com/webpack",
color: "#2b3a42",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-").style.display = "none";
this.querySelector("#toc-contents").style.display = "none";
},
},
"chentsulin/awesome-graphql": {
slug: "graphql",
label: "GraphQL & Relay",
description:
"GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data.",
logo: "/logos/graphql.png",
favicon: "/favicons/graphql.png",
color: "#d64292",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"Famolus/awesome-sass": {
slug: "sass",
label: "Sass",
description:
"Sass is an extension of CSS, adding nested rules, variables, selector inheritance and more.",
logo: "https://avatars.githubusercontent.com/sass",
color: "#c6538c",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"unicodeveloper/awesome-nextjs": {
slug: "next",
label: "Next.js",
description: "Next.js is a framework for server-rendered or statically-exported React apps.",
logo: "https://avatars.githubusercontent.com/zeit",
color: "#222",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"hyperapp/awesome": {
slug: "hyperapp",
label: "Hyperapp",
description: "Hyperapp is a 1 KB JavaScript library for building frontend applications.",
logo: "https://avatars.githubusercontent.com/hyperapp",
color: "#00bbff",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"Urigo/awesome-meteor": {
slug: "meteor",
label: "Meteor",
description:
"Meteor is an open source platform for developing web, mobile and desktop applications.",
logo: "/logos/meteor.png",
favicon: "/favicons/meteor.png",
color: "#de4f4f",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"wbkd/awesome-d3": {
slug: "d3js",
label: "D3.js",
description:
"D3.js is a JavaScript library for manipulating documents based on data. D3 brings data to life using HTML, SVG and CSS.",
logo: "https://avatars.githubusercontent.com/d3",
color: "#f79045",
category: "Front-End Development",
mutateTOC() {
this.querySelector("#toc-third-party").style.display = "none";
this.querySelector("#toc-third-party-1").style.display = "none";
},
},
"addyosmani/es6-tools": {
slug: "es6-tools",
label: "ECMAScript 6 Tools",
description:
"An aggregation of tooling for using ES6 today. EcmaScript 6 is the sixth release of the ECMAScript language.",
logo:
"https://raw.githubusercontent.com/github/explore/master/topics/javascript/javascript.png",
color: "#f7df1e",
category: "Front-End Development",
},
"babel/awesome-babel": {
slug: "babel",
label: "Babel",
description: "Babel is a compiler for writing next generation JavaScript, today.",
logo: "https://avatars.githubusercontent.com/babel",
color: "#f5da55",
category: "Front-End Development",
},
"mateusortiz/webcomponents-the-right-way": {
slug: "webcomponents",
label: "Web Components",
description:
"Web Components are a set of features that allow for the creation of reusable components in web applications.",
logo: "https://avatars.githubusercontent.com/webcomponents",
color: "#e6e6e6",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"sotayamashita/awesome-css": {
slug: "css",
label: "CSS",
description:
"Cascading Style Sheets (CSS) is a language used most often to style and improve upon the appearance of views.",
logo: "https://avatars.githubusercontent.com/css",
color: "#256bdc",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"afonsopacifer/awesome-flexbox": {
slug: "flexbox",
label: "Flexbox",
description:
"The CSS Flexible Box Module is a layout model and method that offers powerful space distribution and alignment capabilities.",
logo: "https://avatars.githubusercontent.com/css",
color: "#256bdc",
category: "Front-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"ChromeDevTools/awesome-chrome-devtools": {
slug: "chrome-devtools",
label: "Chrome DevTools",
description:
"Chrome DevTools is a set of authoring, debugging, and profiling tools built into Google Chrome.",
logo: "https://avatars.githubusercontent.com/ChromeDevTools",
color: "#307eff",
category: "Front-End Development",
},
"shahraizali/awesome-django": {
slug: "django",
label: "Django",
description:
"Django is a web application framework for Python. It is meant to prioritize reusability and rapid development.",
logo: "https://avatars.githubusercontent.com/django",
color: "#0c4b33",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"humiaozuzu/awesome-flask": {
slug: "flask",
label: "Flask",
description:
"Flask is a micro web framework written in Python and based on the Werkzeug toolkit and Jinja2 template engine.",
logo: "https://raw.githubusercontent.com/pallets/flask/master/docs/_static/flask-icon.png",
color: "#ffffff",
category: "Back-End Development",
},
"ekremkaraca/awesome-rails": {
slug: "rails",
label: "Rails",
description:
"Ruby on Rails is a web application framework written in Ruby. It is meant to help simplify the building of complex websites.",
logo: "https://avatars.githubusercontent.com/rails",
color: "#cc342d",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"hothero/awesome-rails-gem": {
slug: "rails-gems",
label: "Rails Gems",
description:
"A collection of Ruby Gems for Rails development. The goal is to help developers build awesome applications.",
logo: "https://avatars.githubusercontent.com/rails",
color: "#cc342d",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"chiraggude/awesome-laravel": {
slug: "laravel",
label: "Laravel",
description:
"Laravel is a popular PHP framework, used for the development of MVC web applications.",
logo: "https://avatars.githubusercontent.com/laravel",
color: "#e74430",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
this.querySelectorAll(".toc-h5, .toc-h4").forEach(
h => (h.className = h.className.replace(/h[54]/, "h3"))
);
},
},
"veggiemonk/awesome-docker": {
slug: "docker",
label: "Docker",
description: "Docker is a platform built for developers to build and run applications.",
logo: "https://avatars.githubusercontent.com/docker",
color: "#066da5",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
const selector =
"#toc-if-you-see-a-link-here-that-is-not-any-longer-a-good-fit-you-can-fix-it-by-submitting-a-pull-request-to-improve-this-file-thank-you";
this.querySelector(selector).style.display = "none";
},
},
"ramitsurana/awesome-kubernetes": {
slug: "kubernetes",
label: "Kubernetes",
description:
"Kubernetes is a system for automating deployment, scaling and management of containerized applications.",
logo: "https://avatars.githubusercontent.com/kubernetes",
color: "#2754e0",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector(":scope > hr:first-of-type").style.display = "none";
this.querySelector("#user-content-menu").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-menu").style.display = "none";
},
},
"jdauphant/awesome-ansible": {
slug: "ansible",
label: "Ansible",
description:
"Ansible is a powerful automation engine used for configuration management, application deployment and task automation.",
logo: "/logos/ansible.png",
favicon: "/favicons/ansible.png",
color: "#333333",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("strong:first-of-type").style.display = "none";
},
},
"anaibol/awesome-serverless": {
slug: "serverless",
label: "Serverless",
description:
"Serverless refers to apps that depend on third-party services (backend as a service) or custom code (functions as a service).",
category: "Back-End Development",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
const selector =
"#toc-a-curated-list-of-awesome-services-solutions-and-resources-for-serverless--nobackend-applications";
this.querySelector(selector).style.display = "none";
},
},
"JStumpp/awesome-android": {
slug: "android",
label: "Android",
description: "Android is an operating system built by Google designed for mobile applications.",
logo: "https://avatars.githubusercontent.com/android",
color: "#6ab344",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"vsouza/awesome-ios": {
slug: "ios",
label: "iOS",
description: "iOS is the operating system for all of Apple’s mobile products.",
logo: "https://raw.githubusercontent.com/github/explore/master/topics/ios/ios.png",
color: "#ef5138",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-content").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-content").style.display = "none";
},
},
"jondot/awesome-react-native": {
slug: "react-native",
label: "React Native",
description: "React Native is a JavaScript mobile framework developed by Facebook.",
logo: "https://avatars.githubusercontent.com/react-community",
color: "#61dafb",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"sindresorhus/awesome-electron": {
slug: "electron",
label: "Electron",
description:
"Electron is a framework for building cross-platform desktop applications with web technology.",
logo: "https://avatars.githubusercontent.com/electron",
color: "#2f3241",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
this.querySelectorAll(".toc-h6").forEach(
h => (h.className = h.className.replace(/h6/, "h4"))
);
},
},
"sindresorhus/awesome-nodejs": {
slug: "nodejs",
label: "Node.js",
description: "Node.js is a tool for executing JavaScript in a variety of environments.",
logo: "https://avatars.githubusercontent.com/nodejs",
color: "#43853d",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"iCHAIT/awesome-macOS": {
slug: "macos",
label: "macOS",
description:
"macOS is the operating system for Mac computers. It was designed by Apple and is meant specifically for their hardware.",
logo: "https://avatars.githubusercontent.com/apple",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"Awesome-Windows/Awesome": {
slug: "windows",
label: "Windows",
description: "Windows is Microsoft's GUI-based operating system.",
logo: "https://avatars.githubusercontent.com/Microsoft",
color: "#e6e6e6",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector(":scope > h1:nth-of-type(2)").style.display = "none";
},
},
"aleksandar-todorovic/awesome-linux": {
slug: "linux",
label: "Linux",
description:
"Linux is an open source operating system modeled after UNIX. Widely used, it is known for its efficiency and reliability.",
logo: "/logos/linux.png",
favicon: "/favicons/linux.png",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-content").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-content").style.display = "none";
},
},
"benoitjadinon/awesome-xamarin": {
slug: "xamarin",
label: "Xamarin",
description: "Xamarin is a platform for developing iOS and Android applications.",
logo: "https://avatars.githubusercontent.com/xamarin",
color: "#2c3e50",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"deephacks/awesome-jvm": {
slug: "jvm",
label: "JVM",
description:
"A curated list of low-level, performance and non-framework related resources for the Java virtual machine.",
logo: "/logos/java.png",
favicon: "/favicons/java.png",
color: "#5382a1",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"donnemartin/awesome-aws": {
slug: "aws",
label: "AWS",
description:
"Amazon Web Services provides on-demand cloud computing platforms on a subscription basis.",
logo: "https://avatars.githubusercontent.com/aws",
color: "#ffa93f",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-index").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-index").style.display = "none";
this.querySelector("#toc-awesome-aws-python-module").style.display = "none";
},
},
"ianstormtaylor/awesome-heroku": {
slug: "heroku",
label: "Heroku",
description:
"Heroku is a cloud platform as a service supporting several programming languages that is used as a deployment model.",
logo: "https://avatars.githubusercontent.com/heroku",
color: "#624eaf",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"ipfs/awesome-ipfs": {
slug: "ipfs",
label: "IPFS",
description:
"IPFS is a peer-to-peer protocol for content-addressed sharing of data via a distributed file system.",
logo: "/logos/ipfs.png",
favicon: "/favicons/ipfs.png",
color: "#6acad1",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-contents").style.display = "none";
},
},
"thibmaek/awesome-raspberry-pi": {
slug: "raspberry-pi",
label: "Raspberry Pi",
description:
"A Raspberry Pi is a popular piece of hardware called a micro-controller. Its use ranges from robotics to home automation.",
logo: "https://avatars.githubusercontent.com/raspberrypi",
color: "#d6264f",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"Lembed/Awesome-arduino": {
slug: "arduino",
label: "Arduino",
description: "Arduino is an open source hardware and software company and maker community.",
logo: "https://avatars.githubusercontent.com/arduino",
color: "#00979d",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
},
},
"JesseTG/awesome-qt": {
slug: "qt",
label: "Qt",
description:
"Qt is a powerful cross-platform application development framework, for use primarily (but not exclusively) in C++.",
logo: "https://avatars.githubusercontent.com/qt",
color: "#41cd52",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:nth-of-type(2)").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"Kazhnuz/awesome-gnome": {
slug: "gnome",
label: "GNOME",
description:
"GNOME is a desktop environment composed of free and open-source software that runs on Linux and most BSD derivatives.",
logo: "https://avatars.githubusercontent.com/GNOME",
color: "#4a86cf",
category: "Platforms",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"mehcode/awesome-atom": {
slug: "atom",
label: "Atom",
description:
"Atom is a text editor developed by GitHub. It is designed to be approachable out of the box yet highly customizable.",
logo: "https://avatars.githubusercontent.com/atom",
color: "#5fb57d",
category: "Editors",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-content").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-table-of-content").style.display = "none";
},
},
"dhamaniasad/awesome-postgres": {
slug: "postgresql",
label: "PostgreSQL",
description:
"PostgreSQL is an open source database management system that is object-relational.",
logo: "https://avatars.githubusercontent.com/postgres",
color: "#336791",
category: "Databases",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-contents").parentNode.style.display = "none";
},
mutateTOC() {
this.querySelector("#toc-contents").style.display = "none";
},
},
"ramnes/awesome-mongodb": {
slug: "mongodb",
label: "MongoDB",
description:
"MongoDB is a NoSQL cross-platform database. It is designed for scalability and performance.",
logo: "https://avatars.githubusercontent.com/mongodb",
color: "#218e38",
category: "Databases",
mutateContent() {
this.querySelector(":scope > ul:first-of-type").style.display = "none";
this.querySelector("#user-content-table-of-contents").parentNode.style.display = "none";
},