-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata_scrapper.py
7271 lines (7241 loc) · 338 KB
/
data_scrapper.py
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
from bs4 import BeautifulSoup
from string import ascii_lowercase
from urllib.request import urlopen
import requests
list_of_url = []
# My starred repos 😊
list_of_url += [
"https://github.com/adrianvillanueva997/DeficienteBot_Telegram",
"https://github.com/rabbitmq/rabbitmq-server",
"https://github.com/Unity-Technologies/Animation-Instancing",
"https://github.com/uutils/coreutils",
"https://github.com/williamFalcon/DeepRLHacks",
"https://github.com/NVlabs/stylegan2",
"https://github.com/nyu-dl/bert-gen",
"https://github.com/idiap/fast-transformers",
"https://github.com/d3/d3-force",
"https://github.com/anseki/vscode-color",
"https://github.com/hfoffani/pddl-lib",
"https://github.com/dityas/Athene",
"https://github.com/yuce/pyswip",
"https://github.com/openai/DALL-E",
"https://github.com/dorarad/gansformer",
"https://github.com/CompVis/taming-transformers",
"https://github.com/reactstrap/reactstrap",
"https://github.com/sindresorhus/got",
"https://github.com/serengil/deepface",
"https://github.com/googlecolab/colabtools",
"https://github.com/Arvtesh/UnityFx.Outline",
"https://github.com/therealsreehari/Learn-Data-Science-For-Free",
"https://github.com/lukehoban/es6features",
"https://github.com/philtabor/Youtube-Code-Repository",
"https://github.com/ColinLeung-NiloCat/UnityURP-MobileScreenSpacePlanarReflection",
"https://github.com/noob-hackers/grabcam",
"https://github.com/mantissa-/RandoMesh",
"https://github.com/droberson/ssh-honeypot",
"https://github.com/wesdoyle/design-patterns-explained-with-food",
"https://github.com/Hax4us/TermuxBlack",
"https://github.com/magpylib/magpylib",
"https://github.com/frederick0329/TracIn",
"https://github.com/wandb/client",
"https://github.com/pytorch/text",
"https://github.com/huggingface/blog",
"https://github.com/yargs/yargs",
"https://github.com/axios/axios",
"https://github.com/lyhue1991/eat_tensorflow2_in_30_days",
"https://github.com/Akshay090/colab-cli",
"https://github.com/brix/crypto-js",
"https://github.com/ethereum/go-ethereum",
"https://github.com/zihangdai/xlnet",
"https://github.com/Sentdex/cyberpython2077",
"https://github.com/lead-ratings/gender-guesser",
"https://github.com/jcjohnson/neural-style",
"https://github.com/CMU-Perceptual-Computing-Lab/openpose",
"https://github.com/microsoft/DialoGPT",
"https://github.com/tensorflow/models",
"https://github.com/PaddlePaddle/PaddleOCR",
"https://github.com/josephg/noisejs",
"https://github.com/johh/three-gltf-loader",
"https://github.com/react-boilerplate/react-boilerplate",
"https://github.com/kahing/goofys",
"https://github.com/google/jax",
"https://github.com/dmlc/xgboost",
"https://github.com/slundberg/shap",
"https://github.com/itsuncheng/fine-tuning-GPT2",
"https://github.com/garabik/grc",
"https://github.com/infinitered/nsfwjs",
"https://github.com/lutzroeder/netron",
"https://github.com/bettercap/bettercap",
"https://github.com/ultralytics/yolov5",
"https://github.com/qinnzou/DeepCrack",
"https://github.com/yhlleo/DeepCrack",
"https://github.com/bryanroma/web-pentesting",
"https://github.com/mjpost/sacrebleu",
"https://github.com/saffsd/langid.py",
"https://github.com/fogleman/Craft",
"https://github.com/cabaletta/baritone",
"https://github.com/Mimino666/langdetect",
"https://github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words",
"https://github.com/brillout/awesome-react-components",
"https://github.com/binhnguyennus/awesome-scalability",
"https://github.com/trimstray/the-book-of-secret-knowledge",
"https://github.com/prakhar1989/awesome-courses",
"https://github.com/sindresorhus/awesome-nodejs",
"https://github.com/wasabeef/awesome-android-ui",
"https://github.com/papers-we-love/papers-we-love",
"https://github.com/binux/pyspider",
"https://github.com/reddit-archive/reddit",
"https://github.com/MLEveryday/100-Days-Of-ML-Code",
"https://github.com/realpython/python-guide",
"https://github.com/faif/python-patterns",
"https://github.com/RaRe-Technologies/gensim",
"https://github.com/keon/awesome-nlp",
"https://github.com/ashishpatel26/500-AI-Machine-learning-Deep-learning-Computer-vision-NLP-Projects-with-code",
"https://github.com/malavbhavsar/sentimentalizer",
"https://github.com/philipperemy/keras-attention-mechanism",
"https://github.com/brightmart/text_classification",
"https://github.com/lucidrains/DALLE-pytorch",
"https://github.com/openai/gpt-2",
"https://github.com/openai/CLIP",
"https://github.com/n7olkachev/imgdiff",
"https://github.com/louisfb01/Best_AI_paper_2020",
"https://github.com/denoland/deno",
"https://github.com/GitbookIO/gitbook",
"https://github.com/desktop/desktop",
"https://github.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Tensorflow-2",
"https://github.com/ankith26/My-PyChess",
"https://github.com/DrKLO/Telegram",
"https://github.com/ThilinaRajapakse/simpletransformers",
"https://github.com/joeante/Unity.GPUAnimation",
"https://github.com/arimger/Unity-Editor-Toolbox",
"https://github.com/buzzfeed/libgif-js",
"https://github.com/mnielsen/neural-networks-and-deep-learning",
"https://github.com/openai/improved-gan",
"https://github.com/nutti/fake-bpy-module",
"https://github.com/ttezel/twit",
"https://github.com/cookiecutter/cookiecutter",
"https://github.com/official-stockfish/Stockfish",
"https://github.com/microsoft/vscode-remote-release",
"https://github.com/sturdyspoon/unity-movement-ai",
"https://github.com/simoninithomas/Deep_reinforcement_learning_Course",
"https://github.com/microsoft/MixedRealityToolkit-Unity",
"https://github.com/Perfare/AssetStudio",
"https://github.com/Jason-Ma-233/JasonMaToonRenderPipeline",
"https://github.com/3b1b/videos",
"https://github.com/OpenGenus/cosmos",
"https://github.com/ageron/handson-ml2",
"https://github.com/albumentations-team/albumentations",
"https://github.com/commaai/openpilot",
"https://github.com/karpathy/char-rnn",
"https://github.com/imageio/imageio",
"https://github.com/owid/covid-19-data",
"https://github.com/eriklindernoren/Keras-GAN",
"https://github.com/nashory/gans-awesome-applications",
"https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life",
"https://github.com/junyanz/CycleGAN",
"https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix",
"https://github.com/phillipi/pix2pix",
"https://github.com/Unity-Technologies/AutoLOD",
"https://github.com/simonarvin/eyeloop",
"https://github.com/TaylorSMarks/playsound",
"https://github.com/tyiannak/pyAudioAnalysis",
"https://github.com/spatialaudio/python-sounddevice",
"https://github.com/assimp/assimp",
"https://github.com/JaidedAI/EasyOCR",
"https://github.com/tesseract-ocr/tessdata",
"https://github.com/Swind/pure-python-adb",
"https://github.com/PeterL1n/BackgroundMattingV2",
"https://github.com/googleworkspace/PyDrive",
"https://github.com/UKPLab/sentence-transformers",
"https://github.com/rjalfa/depixelize",
"https://github.com/PyTorchLightning/pytorch-lightning",
"https://github.com/Neo-Oli/termux-ubuntu",
"https://github.com/photoprism/photoprism",
"https://github.com/Nagakiran1/Extending-Google-BERT-as-Question-and-Answering-model-and-Chatbot",
"https://github.com/dcetin/eth-cs-notes",
"https://github.com/tryolabs/norfair",
"https://github.com/dccuchile/beto",
"https://github.com/NVIDIA/Megatron-LM",
"https://github.com/sffjunkie/astral",
"https://github.com/skyfielders/python-skyfield",
"https://github.com/astropy/astropy",
"https://github.com/MichMich/MagicMirror",
"https://github.com/NVlabs/SPADE",
"https://github.com/pbaylies/stylegan-encoder",
"https://github.com/matterport/Mask_RCNN",
"https://github.com/bokeh/bokeh",
"https://github.com/google/deepdream",
"https://github.com/automl/auto-sklearn",
"https://github.com/shyamupa/snli-entailment",
"https://github.com/keras-rl/keras-rl",
"https://github.com/leriomaggio/deep-learning-keras-tensorflow",
"https://github.com/rlcode/reinforcement-learning",
"https://github.com/luanfujun/deep-painterly-harmonization",
"https://github.com/keras-team/autokeras",
"https://github.com/alphacep/vosk-api",
"https://github.com/xiph/rnnoise",
"https://github.com/AaronFeng753/Waifu2x-Extension-GUI",
"https://github.com/albermax/innvestigate",
"https://github.com/tocoteron/joycon-python",
"https://github.com/atulshanbhag/Layerwise-Relevance-Propagation",
"https://github.com/keijiro/HdrpVatExample",
"https://github.com/WerWolv/ImHex",
"https://github.com/dair-ai/awesome-ML-projects-guide",
"https://github.com/shreyashankar/create-ml-app",
"https://github.com/alugili/CSharp-9-CheatSheet",
"https://github.com/yenchenlin/awesome-NeRF",
"https://github.com/sxyu/pixel-nerf",
"https://github.com/beurtschipper/Depix",
"https://github.com/deepmind/graph_nets",
"https://github.com/JosephAssaker/Twitter-Sentiment-Analysis-Classical-Approach-VS-Deep-Learning",
"https://github.com/date-fns/date-fns",
"https://github.com/FormidableLabs/spectacle",
"https://github.com/emotion-js/emotion",
"https://github.com/gregberge/svgr",
"https://github.com/Pomax/bezierjs",
"https://github.com/qrohlf/trianglify",
"https://github.com/nodegit/nodegit",
"https://github.com/prettier/prettier",
"https://github.com/airbnb/Lona",
"https://github.com/monicahq/monica",
"https://github.com/mattdesl/canvas-sketch",
"https://github.com/Jezzamonn/fourier",
"https://github.com/arturbien/React95",
"https://github.com/pomber/git-history",
"https://github.com/metafizzy/zdog",
"https://github.com/franciscop/ola",
"https://github.com/vercel/next.js",
"https://github.com/wesbos/beginner-javascript",
"https://github.com/jdan/isomer",
"https://github.com/skeeto/endlessh",
"https://github.com/dennybritz/reinforcement-learning",
"https://github.com/plamere/spotipy",
"https://github.com/xianzhez/Coding-Interview-101",
"https://github.com/sadanandpai/javascript-code-challenges",
"https://github.com/ide-stories/vscode-stories",
"https://github.com/1j01/jspaint",
"https://github.com/burtonator/polar-bookshelf",
"https://github.com/axelboc/anki-ultimate-geography",
"https://github.com/FooSoft/anki-connect",
"https://github.com/hindupuravinash/the-gan-zoo",
"https://github.com/mafda/generative_adversarial_networks_101",
"https://github.com/alyssaxuu/screenity",
"https://github.com/felixpalmer/procedural-gl-js",
"https://github.com/yagop/node-telegram-bot-api",
"https://github.com/sentiment-analysis-spanish/sentiment-analysis-model-neural-network",
"https://github.com/sentiment-analysis-spanish/sentiment-spanish",
"https://github.com/celery/celery",
"https://github.com/cjhutto/vaderSentiment",
"https://github.com/burningtree/awesome-json",
"https://github.com/gtanner/qrcode-terminal",
"https://github.com/websocket-client/websocket-client",
"https://github.com/mnooner256/pyqrcode",
"https://github.com/pedroslopez/whatsapp-web.js",
"https://github.com/XRobots/3D_R2_Public",
"https://github.com/XRobots/3D_BB8_Public",
"https://github.com/Tonejs/Tone.js",
"https://github.com/forensic-architecture/timemap",
"https://github.com/cduck/drawSvg",
"https://github.com/mozman/svgwrite",
"https://github.com/microsoft/Web-Dev-For-Beginners",
"https://github.com/timhutton/PseudosphereGeodesics",
"https://github.com/QianMo/Unity-Design-Pattern",
"https://github.com/keenanwoodall/Deform",
"https://github.com/EsProgram/InkPainter",
"https://github.com/radiatoryang/hedera",
"https://github.com/gwaredd/UnityMarkdownViewer",
"https://github.com/intel/acat",
"https://github.com/fpaupier/RapLyrics-Scraper",
"https://github.com/Sorumi/UnityFurShader",
"https://github.com/yosinski/deep-visualization-toolbox",
"https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap",
"https://github.com/benoit-dumas/SplineMesh",
"https://github.com/ColinLeung-NiloCat/UnityURP-BillboardLensFlareShader",
"https://github.com/microsoft/vscode-jupyter",
"https://github.com/maidis/awesome-machine-translation",
"https://github.com/bentrevett/pytorch-seq2seq",
"https://github.com/OpenNMT/OpenNMT",
"https://github.com/google/sentencepiece",
"https://github.com/OpenNMT/OpenNMT-tf",
"https://github.com/OpenNMT/OpenNMT-py",
"https://github.com/pytorch/fairseq",
"https://github.com/Marak/faker.js",
"https://github.com/marian-nmt/marian",
"https://github.com/ncase/loopy",
"https://github.com/awesomedata/awesome-public-datasets",
"https://github.com/bckenstler/CLR",
"https://github.com/CyberZHG/keras-bert",
"https://github.com/Unity-Technologies/FontainebleauDemo",
"https://github.com/Helsinki-NLP/Opus-MT",
"https://github.com/nagadomi/waifu2x",
"https://github.com/facebookresearch/fastText",
"https://github.com/OskarSigvardsson/unity-delaunay",
"https://github.com/facebookresearch/pytorch_GAN_zoo",
"https://github.com/Elringus/SpriteGlow",
"https://github.com/mob-sakai/SoftMaskForUGUI",
"https://github.com/madmaze/pytesseract",
"https://github.com/UB-Mannheim/tesseract",
"https://github.com/plotly/dash",
"https://github.com/chenjd/Render-Crowd-Of-Animated-Characters",
"https://github.com/ColinLeung-NiloCat/UnityURPUnlitScreenSpaceDecalShader",
"https://github.com/microsoft/Git-Credential-Manager-for-Windows",
"https://github.com/huggingface/tokenizers",
"https://github.com/huggingface/datasets",
"https://github.com/AMAI-GmbH/AI-Expert-Roadmap",
"https://github.com/home-assistant/core",
"https://github.com/leon-ai/leon",
"https://github.com/olivia-ai/olivia",
"https://github.com/MycroftAI/mycroft-core",
"https://github.com/justcoding121/advanced-algorithms",
"https://github.com/ArthurBrussee/Vapor",
"https://github.com/53jk1/auto-following-github",
"https://github.com/keithito/tacotron",
"https://github.com/atom-community/atom-ide-definitions",
"https://github.com/Shenggan/BCCD_Dataset",
"https://github.com/trashhalo/imgcat",
"https://github.com/scastillo/not-youtube-dl",
"https://github.com/voila-dashboards/voila",
"https://github.com/patrickwalls/mathematical-python",
"https://github.com/openai/spinningup",
"https://github.com/tensorflow/addons",
"https://github.com/goodfeli/adversarial",
"https://github.com/taye/interact.js",
"https://github.com/timhutton/livingphysics",
"https://github.com/GollyGang/ready",
"https://github.com/google-research/vision_transformer",
"https://github.com/AllenInstitute/deepinterpolation",
"https://github.com/timhutton/GravityIsNotAForce",
"https://github.com/udacity/deep-learning",
"https://github.com/jalammar/simpleTensorFlowClassificationExample",
"https://github.com/jalammar/jalammar.github.io",
"https://github.com/requilence/integram",
"https://github.com/discord/discord-open-source",
"https://github.com/alelievr/HDRP-Custom-Passes",
"https://github.com/mattatz/unity-procedural-tree",
"https://github.com/mxrch/GHunt",
"https://github.com/Asabeneh/30-Days-Of-React",
"https://github.com/Gameye98/Lazymux",
"https://github.com/travis-ci/travis-ci",
"https://github.com/nodemailer/nodemailer",
"https://github.com/adrian-miasik/unity-shaders",
"https://github.com/Unity-Technologies/HLODSystem",
"https://github.com/Unity-Technologies/VFXToolbox",
"https://github.com/mongodb/mongo-python-driver",
"https://github.com/soulwire/FontMetrics",
"https://github.com/tiangolo/fastapi",
"https://github.com/keijiro/KinoFog",
"https://github.com/iiab/iiab",
"https://github.com/deepfakes/faceswap",
"https://github.com/iperov/DeepFaceLab",
"https://github.com/natethegreate/hent-AI",
"https://github.com/jonathan-bower/DataScienceResources",
"https://github.com/eladrich/pixel2style2pixel",
"https://github.com/funbox/optimizt",
"https://github.com/ossu/computer-science",
"https://github.com/Pessimistress/minecraft-chunk-viewer",
"https://github.com/streamich/react-use",
"https://github.com/rstacruz/nprogress",
"https://github.com/game-ci/unity-actions",
"https://github.com/sdras/awesome-actions",
"https://github.com/codesuki/react-d3-components",
"https://github.com/react-grid-layout/react-grid-layout",
"https://github.com/mikeal/daily",
"https://github.com/snori74/linuxupskillchallenge",
"https://github.com/microsoft/vscode-recipes",
"https://github.com/probot/probot",
"https://github.com/goldfire/howler.js",
"https://github.com/damiannolan/iris-neural-network",
"https://github.com/JohannBlake/debugging-electron",
"https://github.com/Hax4us/Nethunter-In-Termux",
"https://github.com/noob-hackers/snap",
"https://github.com/lucidrains/vit-pytorch",
"https://github.com/SchedMD/slurm",
"https://github.com/watson-developer-cloud/speech-to-text-nodejs",
"https://github.com/pyinstaller/pyinstaller",
"https://github.com/py2exe/py2exe",
"https://github.com/Scrawk/PBD-Fluid-in-Unity",
"https://github.com/deepmipt/DeepPavlov",
"https://github.com/TeamHG-Memex/sklearn-crfsuite",
"https://github.com/muesli/duf",
"https://github.com/sarfraznawaz2005/whatspup",
"https://github.com/mafintosh/csv-parser",
"https://github.com/gvanrossum/500lines",
"https://github.com/CoreyMSchafer/code_snippets",
"https://github.com/tensorflow/examples",
"https://github.com/balancap/SSD-Tensorflow",
"https://github.com/zalandoresearch/fashion-mnist",
"https://github.com/facebookresearch/ParlAI",
"https://github.com/FrictionalGames/AmnesiaAMachineForPigs",
"https://github.com/FrictionalGames/AmnesiaTheDarkDescent",
"https://github.com/alirezamika/autoscraper",
"https://github.com/datastacktv/data-engineer-roadmap",
"https://github.com/alandefreitas/matplotplusplus",
"https://github.com/Toblerity/Shapely",
"https://github.com/harvitronix/neural-network-genetic-algorithm",
"https://github.com/electron/electron-packager",
"https://github.com/jaraco/irc",
"https://github.com/keijiro/Kino",
"https://github.com/cli/cli",
"https://github.com/flamacore/UnityHDRPSimpleWater",
"https://github.com/request/request",
"https://github.com/dexteryy/spellbook-of-modern-webdev",
"https://github.com/ipfs/ipfs",
"https://github.com/sebastianruder/NLP-progress",
"https://github.com/javascript-tutorial/en.javascript.info",
"https://github.com/gohugoio/hugo",
"https://github.com/Unity-Technologies/Graphics",
"https://github.com/demonixis/SSGI-URP",
"https://github.com/keijiro/TestbedHDRP",
"https://github.com/python/peps",
"https://github.com/react-dnd/react-dnd",
"https://github.com/chenjd/Realistic-Real-Time-Grass-Rendering-With-Unity",
"https://github.com/brunosimon/keppler",
"https://github.com/RadarCOVID/radar-covid-android",
"https://github.com/mudcube/MIDI.js",
"https://github.com/ovity/octotree",
"https://github.com/termux/science-packages",
"https://github.com/IronWarrior/UnityGrassGeometryShader",
"https://github.com/MrRio/jsPDF",
"https://github.com/electron-react-boilerplate/electron-react-boilerplate",
"https://github.com/yaph/d3-geomap",
"https://github.com/d3/d3-geo",
"https://github.com/pytroll/pyorbital",
"https://github.com/hoanhan101/ultimate-go",
"https://github.com/citybound/citybound",
"https://github.com/zhoumu53/few_shot_learning",
"https://github.com/MichaIng/DietPi",
"https://github.com/itzg/docker-minecraft-server",
"https://github.com/KebabLord/teriyaki",
"https://github.com/openai/sparse_attention",
"https://github.com/tensorflow/tensor2tensor",
"https://github.com/typeiii/jquery-csv",
"https://github.com/ubisoft/mixer",
"https://github.com/jairajs89/Touchy.js",
"https://github.com/zingchart/zingtouch",
"https://github.com/Toinane/colorpicker",
"https://github.com/jamiebuilds/tinykeys",
"https://github.com/klieret/AnkiPandas",
"https://github.com/kerrickstaley/genanki",
"https://github.com/karpathy/minGPT",
"https://github.com/fonttools/fonttools",
"https://github.com/google/fonts",
"https://github.com/infinyte7/Anki-Custom-Card-Layout",
"https://github.com/OSGeo/gdal",
"https://github.com/swig/swig",
"https://github.com/cambecc/earth",
"https://github.com/openai/gpt-3",
"https://github.com/TheAlgorithms/Python",
"https://github.com/felixrieseberg/macintosh.js",
"https://github.com/Kink3d/kDecals",
"https://github.com/Chris-Johnston/PythonWifiBulb",
"https://github.com/surya-veer/movement-tracking",
"https://github.com/elyase/awesome-gpt3",
"https://github.com/mrdbourke/machine-learning-roadmap",
"https://github.com/shreyashankar/gpt3-sandbox",
"https://github.com/UnityTechnologies/ShaderGraph_ExampleLibrary",
"https://github.com/termux/termux.github.io",
"https://github.com/TechnicalMujeeb/Termux-Login-v1.2",
"https://github.com/kautukkundan/Awesome-Profile-README-templates",
"https://github.com/XRobots/openDogV2",
"https://github.com/typora/typora-issues",
"https://github.com/foambubble/foam-template",
"https://github.com/gaearon/whatthefuck.is",
"https://github.com/anuraghazra/github-readme-stats",
"https://github.com/foambubble/foam",
"https://github.com/yasirkula/UnityNativeCamera",
"https://github.com/valryon/water2d-unity",
"https://github.com/eliasts/Ocean_Community_Next_Gen",
"https://github.com/Facepunch/Facepunch.Highlight",
"https://github.com/wave-harmonic/crest",
"https://github.com/real-marco-b/unity-water-shader2d",
"https://github.com/AdultLink/VerticalDissolve",
"https://github.com/keijiro/KinoBloom",
"https://github.com/keijiro/KvantGrass",
"https://github.com/AdultLink/RadialProgressBar",
"https://github.com/kimsama/Unity-QuickSheet",
"https://github.com/baba-s/awesome-unity-open-source-on-github",
"https://github.com/snozbot/fungus",
"https://github.com/zalo/MathUtilities",
"https://github.com/michidk/Unity-Script-Collection",
"https://github.com/accord-net/framework",
"https://github.com/AirtestProject/Airtest",
"https://github.com/kbengine/kbengine",
"https://github.com/andydbc/unity-texture-packer",
"https://github.com/Flow11/zelda-botw-starter",
"https://github.com/sqlitebrowser/sqlitebrowser",
"https://github.com/keijiro/unity-webcam-example",
"https://github.com/Kobzol/hardware-effects",
"https://github.com/Unity-Technologies/UnityCsReference",
"https://github.com/vkbansal/react-contextmenu",
"https://github.com/keijiro/Skinner",
"https://github.com/keijiro/KinoGlitch",
"https://github.com/keijiro/Klak",
"https://github.com/keijiro/KvantSpray",
"https://github.com/Scrawk/Hull-Delaunay-Voronoi",
"https://github.com/keijiro/DepthInverseProjection",
"https://github.com/Scrawk/Terrain-Topology-Algorithms",
"https://github.com/Scrawk/Ceto",
"https://github.com/simeonradivoev/UniGit",
"https://github.com/simeonradivoev/GPU-Planetary-Rendering",
"https://github.com/simeonradivoev/ComputeStochasticReflections",
"https://github.com/Niekes/d3-3d",
"https://github.com/sarathsaleem/grained",
"https://github.com/mapbox/rio-pansharpen",
"https://github.com/esa/pykep",
"https://github.com/nasa/NASA-3D-Resources",
"https://github.com/phlntn/emojibuilder",
"https://github.com/openhardwaremonitor/openhardwaremonitor",
"https://github.com/tjguk/wmi",
"https://github.com/T-vK/Termux-DeepSpeech",
"https://github.com/LuxCoreRender/LuxCore",
"https://github.com/ankidroid/Anki-Android",
"https://github.com/atomiks/tippyjs",
"https://github.com/flammified/terrabot",
"https://github.com/bendc/sprint",
"https://github.com/caolan/async",
"https://github.com/foreversd/forever",
"https://github.com/geopy/geopy",
"https://github.com/josephmisiti/awesome-machine-learning",
"https://github.com/gatsbyjs/gatsby",
"https://github.com/facebook/pyre-check",
"https://github.com/google/pytype",
"https://github.com/microsoft/pyright",
"https://github.com/microsoft/language-server-protocol",
"https://github.com/klen/pylama",
"https://github.com/microsoft/pylance-release",
"https://github.com/stageinfo/CapturePage",
"https://github.com/fregante/Awesome-WebExtensions",
"https://github.com/Nick-Gottschlich/Social-Amnesia",
"https://github.com/luis-l/UnityNodeEditorBase",
"https://github.com/chrislgarry/Apollo-11",
"https://github.com/emedvedev/attention-ocr",
"https://github.com/clovaai/deep-text-recognition-benchmark",
"https://github.com/hwalsuklee/awesome-deep-text-detection-recognition",
"https://github.com/ianzhao05/textshot",
"https://github.com/tg-bomze/Face-Depixelizer",
"https://github.com/2020PB/police-brutality",
"https://github.com/SaekiRaku/vscode-rainbow-fart",
"https://github.com/dabeaz-course/practical-python",
"https://github.com/anopara/genetic-drawing",
"https://github.com/r-spacex/SpaceX-API",
"https://github.com/soumith/ganhacks",
"https://github.com/facebookresearch/detr",
"https://github.com/Yours3lf/rpi-vk-driver",
"https://github.com/kazuhikoarase/qrcode-generator",
"https://github.com/KamitaniLab/DeepImageReconstruction",
"https://github.com/dproldan/Esp32AutoCamera",
"https://github.com/MunGell/awesome-for-beginners",
"https://github.com/leachim6/hello-world",
"https://github.com/ncjones/python-guerrillamail",
"https://github.com/proginosko/LeechBlockNG",
"https://github.com/microsoft/python-language-server",
"https://github.com/tqdm/tqdm",
"https://github.com/eligrey/FileSaver.js",
"https://github.com/bobbyrne01/save-text-to-file-firefox",
"https://github.com/mdn/webextensions-examples",
"https://github.com/leemunroe/responsive-html-email-template",
"https://github.com/rough-stuff/rough-notation",
"https://github.com/Leaflet/Leaflet",
"https://github.com/Azgaar/Fantasy-Map-Generator",
"https://github.com/pqina/filepond",
"https://github.com/caroso1222/notyf",
"https://github.com/avelino/awesome-go",
"https://github.com/MrMimic/data-scientist-roadmap",
"https://github.com/ozel/DIY_particle_detector",
"https://github.com/donnemartin/system-design-primer",
"https://github.com/borgbackup/borg",
"https://github.com/andydbc/unity-frosted-glass",
"https://github.com/fastai/course-v3",
"https://github.com/fastai/courses",
"https://github.com/fivethirtyeight/data",
"https://github.com/susanli2016/NLP-with-Python",
"https://github.com/HackerShackOfficial/Smart-Security-Camera",
"https://github.com/Rigellute/spotify-tui",
"https://github.com/vahidk/tensorflow-snippets",
"https://github.com/deepakdaswani/whatsapp_discover",
"https://github.com/derv82/wifite",
"https://github.com/ompl/ompl",
"https://github.com/krishauser/Klampt",
"https://github.com/processing/processing",
"https://github.com/restic/restic",
"https://github.com/jakesgordon/javascript-state-machine",
"https://github.com/dcorboy/VGAPViewer",
"https://github.com/Turfjs/turf",
"https://github.com/cyrildiagne/ar-cutpaste",
"https://github.com/bradtraversy/design-resources-for-developers",
"https://github.com/tholman/elevator.js",
"https://github.com/llSourcell/Gaussian_Mixture_Models",
"https://github.com/nschloe/perfplot",
"https://github.com/peterbrittain/asciimatics",
"https://github.com/amoshydra/draw",
"https://github.com/subarnop/AMachineLearningWalkThrough",
"https://github.com/sanheensethi/Installing-ML-In-Termux-Python",
"https://github.com/its-pointless/termux-packages",
"https://github.com/ProbableTrain/MapGenerator",
"https://github.com/Nekose/Mouseomate",
"https://github.com/luspr/awesome-ml-courses",
"https://github.com/hediet/vscode-drawio",
"https://github.com/openai/baselines",
"https://github.com/keijiro/ShadowDrawer",
"https://github.com/alexgand/springer_free_books",
"https://github.com/openai/jukebox",
"https://github.com/georgejecook/UnityTimelineEvents",
"https://github.com/keijiro/ProceduralMotion",
"https://github.com/kwnetzwelt/unity3d-dissolve-shader",
"https://github.com/huggingface/awesome-papers",
"https://github.com/MKorostoff/1-pixel-wealth",
"https://github.com/kaldi-asr/kaldi",
"https://github.com/facebookresearch/wav2letter",
"https://github.com/shanselman/WindowsTerminalHere",
"https://github.com/yhirose/cpp-httplib",
"https://github.com/hgrecco/pint",
"https://github.com/pjreddie/darknet",
"https://github.com/AlexeyAB/darknet",
"https://github.com/sympy/sympy",
"https://github.com/sympy/sympy.github.com",
"https://github.com/cupy/cupy",
"https://github.com/deepmind/sonnet",
"https://github.com/deepmind/lab",
"https://github.com/deepmind/learning-to-learn",
"https://github.com/deepmind/pysc2",
"https://github.com/deepmind/deepmind-research",
"https://github.com/BoboTiG/python-mss",
"https://github.com/ibrahimokdadov/openCV3_tutorials",
"https://github.com/minivision-ai/photo2cartoon",
"https://github.com/aristocratos/bashtop",
"https://github.com/zylo117/Yet-Another-EfficientDet-Pytorch",
"https://github.com/vt-vl-lab/3d-photo-inpainting",
"https://github.com/bansal-io/pattern.css",
"https://github.com/jdan/98.css",
"https://github.com/alievk/avatarify-python",
"https://github.com/rtyley/bfg-repo-cleaner",
"https://github.com/termux/termux-api-package",
"https://github.com/termux/termux-tasker",
"https://github.com/keijiro/UnityAnime4K",
"https://github.com/marytts/marytts",
"https://github.com/dwmkerr/hacker-laws",
"https://github.com/karpathy/neuraltalk",
"https://github.com/LAStools/LAStools",
"https://github.com/love2d/love",
"https://github.com/idlesign/torrentool",
"https://github.com/bpmn-io/diagram-js",
"https://github.com/javascript-obfuscator/javascript-obfuscator",
"https://github.com/microsoft/monaco-editor",
"https://github.com/journaldev/journaldev",
"https://github.com/keijiro/WfcMaze",
"https://github.com/sdkcarlos/artyom.js",
"https://github.com/jagregory/abrash-black-book",
"https://github.com/mourner/simpleheat",
"https://github.com/labuladong/fucking-algorithm",
"https://github.com/jsvine/markovify",
"https://github.com/vednoc/dark-whatsapp",
"https://github.com/DopplerHQ/awesome-interview-questions",
"https://github.com/Pickfordmatt/SharpLocker",
"https://github.com/gentilkiwi/mimikatz",
"https://github.com/MicrosoftDocs/live-share",
"https://github.com/alievk/npbg",
"https://github.com/google/seq2seq",
"https://github.com/VGraupera/1on1-questions",
"https://github.com/google-coral/tflite",
"https://github.com/elastic/elasticsearch",
"https://github.com/Kcnarf/d3-weighted-voronoi",
"https://github.com/Kcnarf/d3-voronoi-map",
"https://github.com/CodingTrain/website",
"https://github.com/transmission/transmission",
"https://github.com/qbittorrent/qBittorrent",
"https://github.com/lukesampson/scoop",
"https://github.com/collin80/EEPROMAnything",
"https://github.com/oakes/vim_cubed",
"https://github.com/justvanrossum/fontgoggles",
"https://github.com/jpamental/variable-fonts",
"https://github.com/tokotype/Mohave-Typefaces",
"https://github.com/ImageMagick/ImageMagick",
"https://github.com/nvdv/vprof",
"https://github.com/internetwache/GitTools",
"https://github.com/ros/rosdistro",
"https://github.com/GhostPack/Rubeus",
"https://github.com/rougier/numpy-100",
"https://github.com/sybrenstuvel/python-rsa",
"https://github.com/mathjax/MathJax-src",
"https://github.com/WorldHealthOrganization/app",
"https://github.com/alexeygrigorev/data-science-interviews",
"https://github.com/s-matyukevich/raspberry-pi-os",
"https://github.com/NVIDIA/vid2vid",
"https://github.com/hql287/Manta",
"https://github.com/jlobos/instagram-web-api",
"https://github.com/tannerlinsley/react-table",
"https://github.com/fastlane/fastlane",
"https://github.com/reduxjs/redux",
"https://github.com/karpathy/covid-sanity",
"https://github.com/paularmstrong/normalizr",
"https://github.com/missive/emoji-mart",
"https://github.com/airbnb/lottie-web",
"https://github.com/posquit0/awesome-engineering-team-principles",
"https://github.com/RasaHQ/rasa",
"https://github.com/microsoft/recommenders",
"https://github.com/palmerabollo/egov",
"https://github.com/pyenv/pyenv",
"https://github.com/harpribot/awesome-information-retrieval",
"https://github.com/cool-RR/PySnooper",
"https://github.com/satwikkansal/wtfpython",
"https://github.com/CoatiSoftware/Sourcetrail",
"https://github.com/fegennari/3DWorld",
"https://github.com/readthedocs/readthedocs.org",
"https://github.com/iliasam/OpenLIDAR",
"https://github.com/openai/mujoco-py",
"https://github.com/pyca/cryptography",
"https://github.com/pytest-dev/pytest",
"https://github.com/eamodio/vscode-gitlens",
"https://github.com/eriklindernoren/PyTorch-YOLOv3",
"https://github.com/Anniepoo/prolog-examples",
"https://github.com/brechtvl/brechtvl.github.io",
"https://github.com/blender/blender",
"https://github.com/gpg/gnupg",
"https://github.com/molecularsets/moses",
"https://github.com/tabler/tabler-icons",
"https://github.com/tailwindlabs/heroicons",
"https://github.com/hhatto/autopep8",
"https://github.com/AcademySoftwareFoundation/openvdb",
"https://github.com/PrismarineJS/prismarine-chunk",
"https://github.com/fastai/fastbook",
"https://github.com/wonderunit/storyboarder",
"https://github.com/voghDev/git-pushdemont",
"https://github.com/sigalor/whatsapp-web-reveng",
"https://github.com/propelml/propel",
"https://github.com/gpujs/gpu.js",
"https://github.com/websockets/ws",
"https://github.com/goldbergyoni/nodebestpractices",
"https://github.com/psf/black",
"https://github.com/go-gitea/gitea",
"https://github.com/poteto/hiring-without-whiteboards",
"https://github.com/google/gif-for-cli",
"https://github.com/octalmage/robotjs",
"https://github.com/rollup/awesome",
"https://github.com/icetee/remote-ftp",
"https://github.com/tokyo-metropolitan-gov/covid19",
"https://github.com/pcm-dpc/COVID-19",
"https://github.com/Machine-Learning-Tokyo/AI_Curriculum",
"https://github.com/aCluelessDanny/typora-theme-ursine",
"https://github.com/elitistsnob/typora-cobalt-theme",
"https://github.com/microsoft/vscode-python",
"https://github.com/hashcat/hashcat",
"https://github.com/gvanrossum/guidos_time_machine",
"https://github.com/LotteMakesStuff/LetsGoECS",
"https://github.com/json-schema-org/json-schema-spec",
"https://github.com/LotteMakesStuff/SimplePhysicsDemo",
"https://github.com/knutsynstad/faux-code-generator",
"https://github.com/CarsonScott/OpenAgent",
"https://github.com/PavelDoGreat/WebGL-Fluid-Simulation",
"https://github.com/pypa/virtualenv",
"https://github.com/suda/python-emoji-encoding",
"https://github.com/jlmakes/scrollreveal",
"https://github.com/imakewebthings/deck.js",
"https://github.com/python/typeshed",
"https://github.com/davidsbatista/NER-Evaluation",
"https://github.com/dropbox/pyannotate",
"https://github.com/PyCQA/flake8",
"https://github.com/hfg-gmuend/openmoji",
"https://github.com/nuno-faria/tiler",
"https://github.com/glutanimate/review-heatmap",
"https://github.com/dair-ai/nlp_paper_summaries",
"https://github.com/mattroconnor/deep_learning_coronavirus_cure",
"https://github.com/aboSamoor/polyglot",
"https://github.com/David-Else/modern-typescript-with-examples-cheat-sheet",
"https://github.com/feathericons/feather",
"https://github.com/keithwhor/audiosynth",
"https://github.com/teropa/nlp",
"https://github.com/jasonmayes/Real-Time-Person-Removal",
"https://github.com/jagenjo/litegraph.js",
"https://github.com/rollup/rollup",
"https://github.com/paperjs/paper.js",
"https://github.com/projectmesa/mesa",
"https://github.com/NetLogo/NetLogo",
"https://github.com/termux/play-audio",
"https://github.com/termux/termux-create-package",
"https://github.com/termux/termux-api",
"https://github.com/termux/termux-widget",
"https://github.com/termux/termux-boot",
"https://github.com/termux/termux-exec",
"https://github.com/ultralytics/yolov3",
"https://github.com/OpenDungeons/OpenDungeons",
"https://github.com/chokkan/crfsuite",
"https://github.com/scrapinghub/python-crfsuite",
"https://github.com/aframevr/aframe",
"https://github.com/seatgeek/fuzzywuzzy",
"https://github.com/fabricjs/fabric.js",
"https://github.com/NickeManarin/ScreenToGif",
"https://github.com/Kaggle/kaggle-api",
"https://github.com/CSSEGISandData/COVID-19",
"https://github.com/krispo/awesome-haskell",
"https://github.com/SpacehuhnTech/esp8266_deauther",
"https://github.com/you-dont-need/You-Dont-Need-Momentjs",
"https://github.com/moment/moment",
"https://github.com/actoron/jadex",
"https://github.com/dinerojs/dinero.js",
"https://github.com/GoogleChrome/lighthouse",
"https://github.com/fpereiro/backendlore",
"https://github.com/danielmiessler/SecLists",
"https://github.com/jeffbass/imagezmq",
"https://github.com/man-group/dtale",
"https://github.com/bitsadmin/fakelogonscreen",
"https://github.com/adrai/flowchart.js",
"https://github.com/visjs/vis-network",
"https://github.com/Igglybuff/awesome-piracy",
"https://github.com/cia-foundation/TempleOS",
"https://github.com/felixrieseberg/windows95",
"https://github.com/faressoft/terminalizer",
"https://github.com/leonardomso/33-js-concepts",
"https://github.com/google-research/google-research",
"https://github.com/huggingface/transformers",
"https://github.com/GokuMohandas/madewithml",
"https://github.com/google-research/bert",
"https://github.com/hanxiao/bert-as-service",
"https://github.com/iptv-org/iptv",
"https://github.com/agalwood/Motrix",
"https://github.com/notable/notable",
"https://github.com/goabstract/Awesome-Design-Tools",
"https://github.com/diem/diem",
"https://github.com/google/robotstxt",
"https://github.com/lettier/3d-game-shaders-for-beginners",
"https://github.com/nodegui/nodegui",
"https://github.com/rasbt/deeplearning-models",
"https://github.com/lydiahallie/javascript-questions",
"https://github.com/1995parham/github-do-not-ban-us",
"https://github.com/denisidoro/navi",
"https://github.com/leeoniya/uPlot",
"https://github.com/Querela/termux-usb-python",
"https://github.com/theonemule/no-ip",
"https://github.com/ankitects/anki",
"https://github.com/bradtraversy/vanillawebprojects",
"https://github.com/tianshanghong/awesome-anki",
"https://github.com/teivah/algodeck",
"https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite",
"https://github.com/thewildnath/X-Ray-Render",
"https://github.com/vaexio/vaex",
"https://github.com/ytdl-org/youtube-dl",
"https://github.com/react-native-camera/react-native-camera",
"https://github.com/react-native-sensors/react-native-sensors",
"https://github.com/GeekyAnts/NativeBase",
"https://github.com/websemantics/awesome-ant-design",
"https://github.com/sindresorhus/screenfull.js",
"https://github.com/ReactTraining/react-router",
"https://github.com/vega/vega",
"https://github.com/react-d3-library/react-d3-library",
"https://github.com/mui-org/material-ui",
"https://github.com/rebassjs/rebass",
"https://github.com/parcel-bundler/parcel",
"https://github.com/tkrabel/bamboolib",
"https://github.com/processing/p5.js",
"https://github.com/JacquesLucke/blender_vscode",
"https://github.com/herrbischoff/awesome-command-line-apps",
"https://github.com/yuanming-hu/difftaichi",
"https://github.com/vim/vim",
"https://github.com/amueller/ml-workshop-4-of-4",
"https://github.com/JetBrains/intellij-community",
"https://github.com/JetBrains/kotlin",
"https://github.com/jonnyhyman/Chaos",
"https://github.com/dbader/schedule",
"https://github.com/Unity-Technologies/VehicleTools",
"https://github.com/Unity-Technologies/DOTS-training-samples",
"https://github.com/Unity-Technologies/2d-extras",
"https://github.com/eykrehbein/cook",
"https://github.com/arrybn/opencv_intro",
"https://github.com/StevenBlack/hosts",
"https://github.com/arunponnusamy/object-detection-opencv",
"https://github.com/llSourcell/YOLO_Object_Detection",
"https://github.com/chuanqi305/MobileNet-SSD",
"https://github.com/PrismJS/prism",
"https://github.com/googlearchive/code-prettify",
"https://github.com/BVLC/caffe",
"https://github.com/yangrc1234/VolumeCloud",
"https://github.com/adrianvillanueva997/system-monitoring",
"https://github.com/rlguy/Blender-FLIP-Fluids",
"https://github.com/tirthajyoti/Data-science-best-resources",
"https://github.com/firmai/data-science-career",
"https://github.com/ryanmcdermott/code-review-tips",
"https://github.com/ryanmcdermott/clean-code-javascript",
"https://github.com/facebook/create-react-app",
"https://github.com/urbanadventurer/WhatWeb",
"https://github.com/Unity-Technologies/UnityRenderStreaming",
"https://github.com/Unity-Technologies/roslyn",
"https://github.com/Unity-Technologies/InputSystem",
"https://github.com/Eugeny/terminus",
"https://github.com/khanhas/Spicetify",
"https://github.com/carpedm20/emoji",
"https://github.com/harvesthq/chosen",
"https://github.com/select2/select2",
"https://github.com/TerryCavanagh/VVVVVV",
"https://github.com/marijnz/unity-toolbar-extender",
"https://github.com/K-410/blender-scripts",
"https://github.com/JoelBesada/activate-power-mode",
"https://github.com/missing-semester/missing-semester",
"https://github.com/alyssaxuu/flowy",
"https://github.com/beautifulinteractions/beautiful-react-hooks",
"https://github.com/Asabeneh/30-Days-Of-JavaScript",
"https://github.com/excalidraw/excalidraw",
"https://github.com/victorqribeiro/isocity",
"https://github.com/ceuk/spotui",
"https://github.com/leapmotion/leapjs",
"https://github.com/leapmotion/UnityModules",
"https://github.com/luruke/browser-2020",
"https://github.com/taichi-dev/taichi",
"https://github.com/openlayers/openlayers",
"https://github.com/chatwoot/chatwoot",
"https://github.com/securas/SealedBite",
"https://github.com/mozilla/DeepSpeech-examples",
"https://github.com/zricethezav/gitleaks",
"https://github.com/irssi/irssi",
"https://github.com/adrianogil/awesome-termux",
"https://github.com/schachmat/wego",
"https://github.com/chubin/wttr.in",
"https://github.com/T4P4N/Awesome-Termux",
"https://github.com/termux/x11-packages",
"https://github.com/termux/termux-services",
"https://github.com/andydbc/HologramShader",
"https://github.com/Picovoice/cheetah",
"https://github.com/FormidableLabs/react-live",
"https://github.com/serialoverflow/blockify",
"https://github.com/evernote/evernote-sdk-python",
"https://github.com/3DMish/Blender-Add-ons-3DM-Snow",
"https://github.com/raspberrypi/linux",
"https://github.com/raspberrypi/firmware",
"https://github.com/slimbook/slimbook",
"https://github.com/openssh/openssh-portable",
"https://github.com/rshipp/awesome-malware-analysis",
"https://github.com/statsmodels/statsmodels",
"https://github.com/30-seconds/30-seconds-of-python",
"https://github.com/sagemath/sage",
"https://github.com/prime31/TouchKit",
"https://github.com/facebookresearch/deepmask",
"https://github.com/facebookresearch/DensePose",
"https://github.com/facebookresearch/pytext",
"https://github.com/facebookresearch/detectron2",
"https://github.com/facebookresearch/faiss",
"https://github.com/fossasia/visdom",
"https://github.com/facebookresearch/maskrcnn-benchmark",
"https://github.com/facebookresearch/demucs",
"https://github.com/davatron5000/awesome-standalones",
"https://github.com/alphaSeclab/awesome-reverse-engineering",
"https://github.com/termux/game-packages",
"https://github.com/WarWithinMe/better-align",
"https://github.com/andrews1022/web-development-2021-course-list",
"https://github.com/EmbarkStudios/blender-tools",
"https://github.com/trekhleb/nano-neuron",
"https://github.com/cwilso/Audio-Input-Effects",
"https://github.com/edeno/d3-save-svg",
"https://github.com/matplotlib/matplotlib",
"https://github.com/mwaskom/seaborn",
"https://github.com/Sentdex/QuantumComputing",
"https://github.com/Amin-Tgz/awesome-tensorflow-2",
"https://github.com/mechatroner/vscode_rainbow_csv",
"https://github.com/jjuback/gc-excelviewer",
"https://github.com/vinta/awesome-python",
"https://github.com/thibmaek/awesome-raspberry-pi",
"https://github.com/scikit-image/scikit-image",
"https://github.com/scipy/scipy",
"https://github.com/evanw/glfx.js",
"https://github.com/kkroening/ffmpeg-python",
"https://github.com/pyglet/pyglet",
"https://github.com/CorentinJ/Real-Time-Voice-Cloning",
"https://github.com/fossephate/JoyCon-Driver",
"https://github.com/shauleiz/vJoy",
"https://github.com/Maximus5/ConEmu",
"https://github.com/chiphuyen/machine-learning-systems-design",
"https://github.com/alirezadir/Production-Level-Deep-Learning",
"https://github.com/KhronosGroup/glTF",
"https://github.com/TeamHG-Memex/eli5",
"https://github.com/tensorflow/tensorboard",
"https://github.com/GitSquared/edex-ui",
"https://github.com/jlevy/the-art-of-command-line",
"https://github.com/mhammond/pywin32",
"https://github.com/jquery/jquery-mousewheel",
"https://github.com/streamlit/streamlit",
"https://github.com/overdodactyl/ShadowFox",
"https://github.com/Semantic-Org/Semantic-UI",
"https://github.com/oblador/react-native-vector-icons",
"https://github.com/akveo/eva-icons",
"https://github.com/SortableJS/Sortable",
"https://github.com/Shopify/draggable",
"https://github.com/nathancahill/split",
"https://github.com/openai/gym",
"https://github.com/bitcoin/bitcoin",
"https://github.com/NeXTs/Clusterize.js",
"https://github.com/atom/teletype",
"https://github.com/boltgolt/howdy",
"https://github.com/numpy/numpy",
"https://github.com/itdxer/neupy",
"https://github.com/AprilRobotics/apriltag",
"https://github.com/thegoodhen/AprilTools",
"https://github.com/juanigp/Pytorch-Deep-Dream",
"https://github.com/SFTtech/openage",
"https://github.com/EnergizedProtection/block",
"https://github.com/polybar/polybar",
"https://github.com/jithurjacob/Windows-10-Toast-Notifications",
"https://github.com/bkaradzic/bgfx",
"https://github.com/USCiLab/cereal",
"https://github.com/microsoft/vscode-tips-and-tricks",
"https://github.com/plotly/plotly.js",
"https://github.com/plotly/plotly.py",
"https://github.com/lirantal/is-website-vulnerable",
"https://github.com/bregman-arie/devops-exercises",
"https://github.com/yizhen20133868/MIT-Linear-Algebra-Notes",
"https://github.com/wesbos/twitter-unfollower",
"https://github.com/stanfordnlp/CoreNLP",
"https://github.com/shieldfy/API-Security-Checklist",
"https://github.com/chiphuyen/python-is-cool",
"https://github.com/laurent22/joplin",
"https://github.com/phoenix16/SIFT",
"https://github.com/mml-book/mml-book.github.io",
"https://github.com/aliyr/Nodejs-Developer-Roadmap",
"https://github.com/me2d13/hidmacros",
"https://github.com/amitness/learning",
"https://github.com/netdata/netdata",
"https://github.com/ritchieng/the-incredible-pytorch",
"https://github.com/Alir3z4/stop-words",