-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsh.json
More file actions
1003 lines (1003 loc) Β· 45.3 KB
/
sh.json
File metadata and controls
1003 lines (1003 loc) Β· 45.3 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
[
"https://github.com/asdf-vm/asdf",
"https://github.com/ahmadrosid/gemoji",
"https://github.com/tailwindlabs/tailwindcss",
"https://github.com/libgdx/libgdx",
"https://github.com/shengxinjing/programmer-job-blacklist",
"https://github.com/mathiasbynens/dotfiles",
"https://github.com/pyenv/pyenv",
"https://github.com/StreisandEffect/streisand",
"https://github.com/powerline/fonts",
"https://github.com/dokku/dokku",
"https://github.com/dwmkerr/hacker-laws",
"https://github.com/fish-shell/fish-shell",
"https://github.com/zsh-users/zsh-autosuggestions",
"https://github.com/dotnet/core",
"https://github.com/hwdsl2/setup-ipsec-vpn",
"https://github.com/romkatv/powerlevel10k",
"https://github.com/source-foundry/Hack",
"https://github.com/denysdovhan/spaceship-prompt",
"https://github.com/233boy/v2ray",
"https://github.com/taizilongxu/interview_python",
"https://github.com/graphql/graphql-spec",
"https://github.com/rbenv/rbenv",
"https://github.com/Powerlevel9k/powerlevel9k",
"https://github.com/Nyr/openvpn-install",
"https://github.com/trimstray/nginx-admins-handbook",
"https://github.com/VSCodium/vscodium",
"https://github.com/sorin-ionescu/prezto",
"https://github.com/zsh-users/zsh-syntax-highlighting",
"https://github.com/ramitsurana/awesome-kubernetes",
"https://github.com/dylanaraps/neofetch",
"https://github.com/deviantony/docker-elk",
"https://github.com/alex000kim/nsfw_data_scraper",
"https://github.com/kaldi-asr/kaldi",
"https://github.com/xdissent/ievms",
"https://github.com/sindresorhus/pure",
"https://github.com/lewagon/dotfiles",
"https://github.com/k4m4/terminals-are-sexy",
"https://github.com/learnbyexample/Command-line-text-processing",
"https://github.com/foxlet/macOS-Simple-KVM",
"https://github.com/ansible/ansible-examples",
"https://github.com/RetroPie/RetroPie-Setup",
"https://github.com/unixorn/awesome-zsh-plugins",
"https://github.com/babun/babun",
"https://github.com/awslabs/git-secrets",
"https://github.com/aristocratos/bashtop",
"https://github.com/k4m4/movies-for-hackers",
"https://github.com/facebookarchive/caffe2",
"https://github.com/boot2docker/boot2docker",
"https://github.com/rgcr/m-cli",
"https://github.com/EtherDream/jsproxy",
"https://github.com/alexanderepstein/Bash-Snippets",
"https://github.com/thibmaek/awesome-raspberry-pi",
"https://github.com/rootsongjc/kubernetes-handbook",
"https://github.com/CISOfy/lynis",
"https://github.com/rabbitmq/rabbitmq-server",
"https://github.com/phusion/baseimage-docker",
"https://github.com/guarinogabriel/Mac-CLI",
"https://github.com/thoughtbot/laptop",
"https://github.com/p8952/bocker",
"https://github.com/nodesource/distributions",
"https://github.com/tmux-plugins/tmux-resurrect",
"https://github.com/codota/TabNine",
"https://github.com/paperwork/paperwork",
"https://github.com/dnschneid/crouton",
"https://github.com/spinnaker/spinnaker",
"https://github.com/teddysun/shadowsocks_install",
"https://github.com/judasn/Linux-Tutorial",
"https://github.com/jayphelps/git-blame-someone-else",
"https://github.com/brendangregg/perf-tools",
"https://github.com/oh-my-fish/oh-my-fish",
"https://github.com/OWASP/owasp-mstg",
"https://github.com/kamranahmedse/git-standup",
"https://github.com/sstephenson/bats",
"https://github.com/skywind3000/awesome-cheatsheets",
"https://github.com/tmux-plugins/tpm",
"https://github.com/sameersbn/docker-gitlab",
"https://github.com/docker-mailserver/docker-mailserver",
"https://github.com/osxfuse/osxfuse",
"https://github.com/docker/docker-bench-security",
"https://github.com/marcan/takeover.sh",
"https://github.com/thoughtbot/dotfiles",
"https://github.com/zsh-users/antigen",
"https://github.com/kylemanna/docker-openvpn",
"https://github.com/NodeOS/NodeOS",
"https://github.com/myspaghetti/macos-virtualbox",
"https://github.com/github/super-linter",
"https://github.com/sb2nov/mac-setup",
"https://github.com/andreafabrizi/Dropbox-Uploader",
"https://github.com/Gazler/githug",
"https://github.com/opsnull/follow-me-install-kubernetes-cluster",
"https://github.com/holman/dotfiles",
"https://github.com/snowdream/awesome-android",
"https://github.com/wulabing/V2Ray_ws-tls_bash_onekey",
"https://github.com/moovweb/gvm",
"https://github.com/magicmonty/bash-git-prompt",
"https://github.com/google/oss-fuzz",
"https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion",
"https://github.com/angristan/openvpn-install",
"https://github.com/daliansky/Hackintosh",
"https://github.com/Dhghomon/easy_rust",
"https://github.com/holman/spark",
"https://github.com/toniblyx/my-arsenal-of-aws-security-tools",
"https://github.com/Mayccoll/Gogh",
"https://github.com/gliderlabs/docker-alpine",
"https://github.com/zardus/ctf-tools",
"https://github.com/clvv/fasd",
"https://github.com/spotify/docker-gc",
"https://github.com/ashishb/android-security-awesome",
"https://github.com/niieani/bash-oo-framework",
"https://github.com/nicolashery/mac-dev-setup",
"https://github.com/wurstmeister/kafka-docker",
"https://github.com/dehydrated-io/dehydrated",
"https://github.com/git-ftp/git-ftp",
"https://github.com/MichielDerhaeg/build-linux",
"https://github.com/drwetter/testssl.sh",
"https://github.com/JetBrains/JetBrainsMono",
"https://github.com/inishchith/autoenv",
"https://github.com/oldratlee/useful-scripts",
"https://github.com/jorgebucaran/fisher",
"https://github.com/SeleniumHQ/docker-selenium",
"https://github.com/petervanderdoes/gitflow-avh",
"https://github.com/rust-unofficial/patterns",
"https://github.com/opengapps/opengapps",
"https://github.com/termux/termux-packages",
"https://github.com/docker-library/official-images",
"https://github.com/HIT-Alibaba/interview",
"https://github.com/Varying-Vagrant-Vagrants/VVV",
"https://github.com/rvm/rvm",
"https://github.com/oracle/docker-images",
"https://github.com/zplug/zplug",
"https://github.com/todotxt/todo.txt-cli",
"https://github.com/xzhih/one-key-hidpi",
"https://github.com/jedi4ever/veewee",
"https://github.com/haoel/haoel.github.io",
"https://github.com/AaronJackson/vrn",
"https://github.com/arzzen/git-quick-stats",
"https://github.com/1N3/Sn1per",
"https://github.com/zsh-users/zsh-completions",
"https://github.com/jenkinsci/docker",
"https://github.com/arrow-kt/arrow",
"https://github.com/pyenv/pyenv-virtualenv",
"https://github.com/nojhan/liquidprompt",
"https://github.com/ToyoDAdoubi/doubi",
"https://github.com/pivpn/pivpn",
"https://github.com/PapirusDevelopmentTeam/papirus-icon-theme",
"https://github.com/oblique/create_ap",
"https://github.com/Fmstrat/winapps",
"https://github.com/lambci/lambci",
"https://github.com/kubernetes/examples",
"https://github.com/rebootuser/LinEnum",
"https://github.com/jpetazzo/pipework",
"https://github.com/hwdsl2/docker-ipsec-vpn-server",
"https://github.com/softwaredownload/openwrt-fanqiang",
"https://github.com/docker-library/docs",
"https://github.com/RichardLitt/standard-readme",
"https://github.com/laravel/homestead",
"https://github.com/hendricius/the-bread-code",
"https://github.com/gfw-breaker/ssr-accounts",
"https://github.com/chef/bento",
"https://github.com/getsentry/onpremise",
"https://github.com/jenv/jenv",
"https://github.com/willianjusten/awesome-audio-visualization",
"https://github.com/basho/riak",
"https://github.com/rauchg/wifi-password",
"https://github.com/awesome-lists/awesome-bash",
"https://github.com/qw3rtman/git-fire",
"https://github.com/aws/containers-roadmap",
"https://github.com/rust-lang/rfcs",
"https://github.com/rbenv/ruby-build",
"https://github.com/zolrath/wemux",
"https://github.com/arialdomartini/oh-my-git",
"https://github.com/pi-hole/docker-pi-hole",
"https://github.com/speed47/spectre-meltdown-checker",
"https://github.com/trimstray/htrace.sh",
"https://github.com/teddysun/across",
"https://github.com/jkaving/intellij-colors-solarized",
"https://github.com/txthinking/google-hosts",
"https://github.com/v1s1t0r1sh3r3/airgeddon",
"https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks",
"https://github.com/cknadler/vim-anywhere",
"https://github.com/KittyKatt/screenFetch",
"https://github.com/mskyaxl/wsl-terminal",
"https://github.com/Medicean/VulApps",
"https://github.com/dylanaraps/fff",
"https://github.com/snori74/linuxupskillchallenge",
"https://github.com/alibaba/dragonwell8",
"https://github.com/geerlingguy/mac-dev-playbook",
"https://github.com/budtmo/docker-android",
"https://github.com/puckel/docker-airflow",
"https://github.com/PaperMC/Paper",
"https://github.com/agnoster/agnoster-zsh-theme",
"https://github.com/LukeSmithxyz/voidrice",
"https://github.com/91yun/serverspeeder",
"https://github.com/toniblyx/prowler",
"https://github.com/guysoft/FullPageOS",
"https://github.com/P3TERX/Actions-OpenWrt",
"https://github.com/xwmx/nb",
"https://github.com/GRVYDEV/Project-Lightspeed",
"https://github.com/dtcooper/raspotify",
"https://github.com/frenck/awesome-home-assistant",
"https://github.com/square/java-code-styles",
"https://github.com/nextcloud/docker",
"https://github.com/h5bp/server-configs-apache",
"https://github.com/pirate/wireguard-docs",
"https://github.com/jessfraz/dotfiles",
"https://github.com/erikw/tmux-powerline",
"https://github.com/mars/create-react-app-buildpack",
"https://github.com/osixia/docker-openldap",
"https://github.com/wangdoc/javascript-tutorial",
"https://github.com/dylanaraps/pure-sh-bible",
"https://github.com/kewlbear/FFmpeg-iOS-build-script",
"https://github.com/bobthecow/git-flow-completion",
"https://github.com/lei-hsia/grokking-system-design",
"https://github.com/arismelachroinos/lscript",
"https://github.com/transcode-open/apt-cyg",
"https://github.com/adi1090x/polybar-themes",
"https://github.com/OpenVPN/easy-rsa",
"https://github.com/helmuthdu/aui",
"https://github.com/jverkoey/iOS-Framework",
"https://github.com/michaeldfallen/git-radar",
"https://github.com/phusion/passenger-docker",
"https://github.com/jakeday/linux-surface",
"https://github.com/wangdoc/bash-tutorial",
"https://github.com/microservices-demo/microservices-demo",
"https://github.com/mviereck/x11docker",
"https://github.com/GameServerManagers/LinuxGSM",
"https://github.com/foospidy/payloads",
"https://github.com/micha/resty",
"https://github.com/ServiceStack/redis-windows",
"https://github.com/nicolaka/netshoot",
"https://github.com/Blackjacx/WWDC",
"https://github.com/npryce/adr-tools",
"https://github.com/hackerb9/lsix",
"https://github.com/pyenv/pyenv-installer",
"https://github.com/jpetazzo/nsenter",
"https://github.com/paulirish/git-open",
"https://github.com/postmodern/chruby",
"https://github.com/kaitai-io/kaitai_struct",
"https://github.com/scmbreeze/scm_breeze",
"https://github.com/oneinstack/lnmp",
"https://github.com/mzet-/linux-exploit-suggester",
"https://github.com/lmk123/oh-my-wechat",
"https://github.com/yeszao/dnmp",
"https://github.com/ekalinin/github-markdown-toc",
"https://github.com/jamesob/desk",
"https://github.com/MichaIng/DietPi",
"https://github.com/internetwache/GitTools",
"https://github.com/ingydotnet/git-subrepo",
"https://github.com/Cocos-BCX/cocos-bcx-node-bin",
"https://github.com/laurent22/rsync-time-backup",
"https://github.com/cloudevents/spec",
"https://github.com/aws-samples/aws-workshop-for-kubernetes",
"https://github.com/sobolevn/git-secret",
"https://github.com/flyzy2005/ss-fly",
"https://github.com/haugene/docker-transmission-openvpn",
"https://github.com/longhorn/longhorn",
"https://github.com/jpetazzo/dind",
"https://github.com/neologd/mecab-ipadic-neologd",
"https://github.com/teddysun/lamp",
"https://github.com/DP-3T/documents",
"https://github.com/geerlingguy/macos-virtualbox-vm",
"https://github.com/fengyuhetao/shell",
"https://github.com/chubin/awesome-console-services",
"https://github.com/gabrielelana/awesome-terminal-fonts",
"https://github.com/jghoman/awesome-apache-airflow",
"https://github.com/johanhaleby/kubetail",
"https://github.com/CyC2018/Job-Recommend",
"https://github.com/bats-core/bats-core",
"https://github.com/Khan/style-guides",
"https://github.com/jpetazzo/container.training",
"https://github.com/github/scripts-to-rule-them-all",
"https://github.com/OWASP/wstg",
"https://github.com/Fakerr/git-recall",
"https://github.com/jimeh/git-aware-prompt",
"https://github.com/itzg/docker-minecraft-server",
"https://github.com/nginxinc/docker-nginx",
"https://github.com/x2on/OpenSSL-for-iPhone",
"https://github.com/zudochkin/awesome-newsletters",
"https://github.com/sdushantha/tmpmail",
"https://github.com/hoochanlon/fq-book",
"https://github.com/robcowart/elastiflow",
"https://github.com/donnyyou/torchcv",
"https://github.com/jonmosco/kube-ps1",
"https://github.com/rails/rails-dev-box",
"https://github.com/evertramos/docker-compose-letsencrypt-nginx-proxy-companion",
"https://github.com/lakshayg/tensorflow-build-archived",
"https://github.com/scopatz/nanorc",
"https://github.com/apple/tensorflow_macos",
"https://github.com/mathiasbynens/evil.sh",
"https://github.com/looly/elasticsearch-definitive-guide-cn",
"https://github.com/fideloper/Vaprobash",
"https://github.com/phusion/traveling-ruby",
"https://github.com/bunkerity/bunkerized-nginx",
"https://github.com/licess/lnmp",
"https://github.com/ttlequals0/autovpn",
"https://github.com/tfutils/tfenv",
"https://github.com/ONLYOFFICE/DocumentServer",
"https://github.com/hbin/top-programming-fonts",
"https://github.com/fastai/fastmac",
"https://github.com/aruhier/gnome-terminal-colors-solarized",
"https://github.com/tmux-plugins/tmux-continuum",
"https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker",
"https://github.com/klever1988/nanopi-openwrt",
"https://github.com/pimusicbox/pimusicbox",
"https://github.com/Hexxeh/rpi-update",
"https://github.com/steveloughran/winutils",
"https://github.com/dominictarr/JSON.sh",
"https://github.com/spujadas/elk-docker",
"https://github.com/HazyResearch/deepdive",
"https://github.com/quericy/one-key-ikev2-vpn",
"https://github.com/oneinstack/oneinstack",
"https://github.com/zimfw/zimfw",
"https://github.com/kylef/swiftenv",
"https://github.com/leucos/ansible-tuto",
"https://github.com/ryanmjacobs/c",
"https://github.com/b4b4r07/enhancd",
"https://github.com/openstack/devstack",
"https://github.com/docker-library/mysql",
"https://github.com/BlackArch/blackarch",
"https://github.com/gilesbowkett/rewind",
"https://github.com/mrzool/bash-sensible",
"https://github.com/charlax/engineering-management",
"https://github.com/fastos/tcpdive",
"https://github.com/just-containers/s6-overlay",
"https://github.com/japaric/rust-cross",
"https://github.com/Juude/droidReverse",
"https://github.com/rust-embedded/cross",
"https://github.com/tmux-plugins/tmux-yank",
"https://github.com/kvz/bash3boilerplate",
"https://github.com/apachecn/ai-roadmap",
"https://github.com/dysfunc/ascii-emoji",
"https://github.com/MicrosoftDocs/live-share",
"https://github.com/plexinc/pms-docker",
"https://github.com/karalabe/xgo",
"https://github.com/keeferrourke/la-capitaine-icon-theme",
"https://github.com/Drewsif/PiShrink",
"https://github.com/CentOS/CentOS-Dockerfiles",
"https://github.com/wmnnd/nginx-certbot",
"https://github.com/wind-liang/leetcode",
"https://github.com/Gictorbit/photoshopCClinux",
"https://github.com/andsens/homeshick",
"https://github.com/silinternational/ecs-deploy",
"https://github.com/LCTT/TranslateProject",
"https://github.com/skvark/opencv-python",
"https://github.com/RichiH/vcsh",
"https://github.com/v2fly/fhs-install-v2ray",
"https://github.com/lanceseidman/PiCAST",
"https://github.com/hnarayanan/shpotify",
"https://github.com/rainglow/jetbrains",
"https://github.com/firehol/blocklist-ipsets",
"https://github.com/clinical-meteor/software-development-kit",
"https://github.com/larsenwork/Gidole",
"https://github.com/ohmybash/oh-my-bash",
"https://github.com/ru-de/faq",
"https://github.com/cleanbrowsing/dnsperftest",
"https://github.com/MikeMcQuaid/strap",
"https://github.com/matryer/bitbar-plugins",
"https://github.com/dustinkirkland/hollywood",
"https://github.com/basecamp/sub",
"https://github.com/8483/notes",
"https://github.com/plexguide/PlexGuide.com",
"https://github.com/oupala/apaxy",
"https://github.com/minamarkham/formation",
"https://github.com/miripiruni/frontdesk",
"https://github.com/bigH/git-fuzzy",
"https://github.com/stefanprodan/swarmprom",
"https://github.com/Dunedan/mbp-2016-linux",
"https://github.com/keyboardsurfer/idea-live-templates",
"https://github.com/microsoft/vscode-dev-containers",
"https://github.com/warpling/Macmoji",
"https://github.com/dokterdok/Continuity-Activation-Tool",
"https://github.com/fcambus/ansiweather",
"https://github.com/guysoft/OctoPi",
"https://github.com/pry0cc/axiom",
"https://github.com/huyng/bashmarks",
"https://github.com/scop/bash-completion",
"https://github.com/postmodern/ruby-install",
"https://github.com/rootsongjc/kubernetes-vagrant-centos-cluster",
"https://github.com/simonwhitaker/gibo",
"https://github.com/armbian/build",
"https://github.com/tony/tmux-config",
"https://github.com/adi1090x/rofi",
"https://github.com/barryclark/bashstrap",
"https://github.com/dana-at-cp/backdoor-apk",
"https://github.com/zhuangbiaowei/learn-with-open-source",
"https://github.com/Yolean/kubernetes-kafka",
"https://github.com/kiwenlau/hadoop-cluster-docker",
"https://github.com/MatMoul/archfi",
"https://github.com/Coding/WebIDE",
"https://github.com/samtap/fang-hacks",
"https://github.com/opencardev/crankshaft",
"https://github.com/ninjudd/drip",
"https://github.com/kodekloudhub/certified-kubernetes-administrator-course",
"https://github.com/LukeSmithxyz/mutt-wizard",
"https://github.com/bpkg/bpkg",
"https://github.com/uBlockOrigin/uAssets",
"https://github.com/WritingMinds/ffmpeg-android",
"https://github.com/RPi-Distro/pi-gen",
"https://github.com/jakubnabrdalik/gitkurwa",
"https://github.com/ameizi/DevArticles",
"https://github.com/srvrco/getssl",
"https://github.com/Winetricks/winetricks",
"https://github.com/lensesio/fast-data-dev",
"https://github.com/docker-library/postgres",
"https://github.com/msys2/MINGW-packages",
"https://github.com/fatihacet/turkcekaynaklar-com",
"https://github.com/isaacs/nave",
"https://github.com/neoFelhz/neohosts",
"https://github.com/anyenv/anyenv",
"https://github.com/cytopia/ffscreencast",
"https://github.com/zsh-users/zsh-history-substring-search",
"https://github.com/supercrabtree/k",
"https://github.com/simplesteph/kafka-stack-docker-compose",
"https://github.com/nodenv/nodenv",
"https://github.com/brikis98/docker-osx-dev",
"https://github.com/cowboy/dotfiles",
"https://github.com/pavanjadhaw/betterlockscreen",
"https://github.com/angristan/wireguard-install",
"https://github.com/Cloudbox/Cloudbox",
"https://github.com/drduh/pwd.sh",
"https://github.com/tanrax/maza-ad-blocking",
"https://github.com/gohugoio/hugoThemes",
"https://github.com/linrunner/TLP",
"https://github.com/chadoe/docker-cleanup-volumes",
"https://github.com/oznu/docker-homebridge",
"https://github.com/elgalu/docker-selenium",
"https://github.com/EnergizedProtection/block",
"https://github.com/dhruvvyas90/qemu-rpi-kernel",
"https://github.com/mrworf/plexupdate",
"https://github.com/RehabMan/OS-X-Clover-Laptop-Config",
"https://github.com/xero/dotfiles",
"https://github.com/mrowa44/emojify",
"https://github.com/chriskempson/base16-shell",
"https://github.com/megastep/makeself",
"https://github.com/LukeSmithxyz/LARBS",
"https://github.com/trapd00r/LS_COLORS",
"https://github.com/ahmetb/cloud-run-faq",
"https://github.com/wslutilities/wslu",
"https://github.com/GoogleCloudPlatform/continuous-deployment-on-kubernetes",
"https://github.com/andrew-d/static-binaries",
"https://github.com/DominicBreuker/stego-toolkit",
"https://github.com/billw2/rpi-clone",
"https://github.com/goodtft/LCD-show",
"https://github.com/bitnami/minideb",
"https://github.com/simpligility/maven-android-sdk-deployer",
"https://github.com/puneetsl/lotion",
"https://github.com/adtac/climate",
"https://github.com/zfl9/ss-tproxy",
"https://github.com/diego-treitos/linux-smart-enumeration",
"https://github.com/spotify/docker-kafka",
"https://github.com/wfxr/forgit",
"https://github.com/lukechilds/zsh-nvm",
"https://github.com/qw3rtman/gg",
"https://github.com/greymd/tmux-xpanes",
"https://github.com/jasonGeng88/blog",
"https://github.com/azlux/log2ram",
"https://github.com/gentoo/gentoo",
"https://github.com/fossasia/x-mario",
"https://github.com/kingkool68/generate-ssl-certs-for-local-development",
"https://github.com/fossasia/xmario_buildscript",
"https://github.com/gcgarner/IOTstack",
"https://github.com/micha/jsawk",
"https://github.com/kerl/kerl",
"https://github.com/rust-lang-nursery/rust-cookbook",
"https://github.com/badtuxx/DescomplicandoKubernetes",
"https://github.com/cloudavail/aws-missing-tools",
"https://github.com/github/platform-samples",
"https://github.com/user1121114685/koolproxyR",
"https://github.com/JBakamovic/yavide",
"https://github.com/infostreams/db",
"https://github.com/pipeseroni/pipes.sh",
"https://github.com/turkenh/ansible-interactive-tutorial",
"https://github.com/apenwarr/git-subtree",
"https://github.com/sgerrand/alpine-pkg-glibc",
"https://github.com/discourse/discourse_docker",
"https://github.com/ilikenwf/apt-fast",
"https://github.com/fossasia/arch-travis",
"https://github.com/nextcloud/nextcloudpi",
"https://github.com/awslabs/amazon-eks-ami",
"https://github.com/tarjoilija/zgen",
"https://github.com/aviaryan/awesome-no-login-web-apps",
"https://github.com/esc0rtd3w/wifi-hacker",
"https://github.com/fossasia/meilix-artwork",
"https://github.com/hardware/mailserver",
"https://github.com/sjl/learnvimscriptthehardway",
"https://github.com/govolution/avet",
"https://github.com/avleen/bashttpd",
"https://github.com/message-db/message-db",
"https://github.com/nahamsec/lazyrecon",
"https://github.com/team-video/aviary.sh",
"https://github.com/zhanghai/MaterialColdStart",
"https://github.com/bioconda/bioconda-recipes",
"https://github.com/meskarune/i3lock-fancy",
"https://github.com/quicwg/base-drafts",
"https://github.com/ZZROTDesign/docker-clean",
"https://github.com/P3TERX/aria2.conf",
"https://github.com/themattrix/bash-concurrent",
"https://github.com/maxlicheng/luci-app-unblockmusic",
"https://github.com/Benjamin-Dobell/nvidia-update",
"https://github.com/fritz-smh/yi-hack",
"https://github.com/studygolang/GCTT",
"https://github.com/GhostWriters/DockSTARTer",
"https://github.com/crosstool-ng/crosstool-ng",
"https://github.com/pote/gpm",
"https://github.com/hijkpw/scripts",
"https://github.com/mchav/with",
"https://github.com/gaoyifan/china-operator-ip",
"https://github.com/firehol/firehol",
"https://github.com/tylertreat/chan",
"https://github.com/gliderlabs/herokuish",
"https://github.com/void-linux/void-packages",
"https://github.com/jwiegley/git-scripts",
"https://github.com/dokku-alt/dokku-alt",
"https://github.com/smarthosts/smarthosts",
"https://github.com/donavon/hook-flow",
"https://github.com/elastic/stack-docker",
"https://github.com/wnameless/docker-oracle-xe-11g",
"https://github.com/polybar/polybar-scripts",
"https://github.com/rocker-org/rocker",
"https://github.com/c0ny1/vulstudy",
"https://github.com/samoshkin/tmux-config",
"https://github.com/pch/welder",
"https://github.com/docker-library/wordpress",
"https://github.com/joyent/triton",
"https://github.com/trimstray/sandmap",
"https://github.com/aforensics/HiddenVM",
"https://github.com/debian-pi/raspbian-ua-netinst",
"https://github.com/P3TERX/aria2.sh",
"https://github.com/ConSol/docker-headless-vnc-container",
"https://github.com/duguying/parsing-techniques",
"https://github.com/shellfire-dev/shellfire",
"https://github.com/progrium/gitreceive",
"https://github.com/loklak/loklak_heroku_ant_buildpack",
"https://github.com/visionmedia/deploy",
"https://github.com/dreamfactorysoftware/dreamfactory",
"https://github.com/reportportal/reportportal",
"https://github.com/davestephens/ansible-nas",
"https://github.com/1N3/Findsploit",
"https://github.com/firmadyne/firmadyne",
"https://github.com/loklak/loklak_bluemix_ant_buildpack",
"https://github.com/webdevops/Dockerfile",
"https://github.com/devdawei/libstdc-",
"https://github.com/TheCrypt0/yi-hack-v4",
"https://github.com/big-data-europe/docker-hadoop",
"https://github.com/m9rco/Genymotion_ARM_Translation",
"https://github.com/hillwoodroc/winetricks-zh",
"https://github.com/heroku/heroku-buildpack-nodejs",
"https://github.com/zendesk/helm-secrets",
"https://github.com/ceph/ceph-container",
"https://github.com/fwartner/homebrew-mac-cleanup",
"https://github.com/kubernetes-retired/kubeadm-dind-cluster",
"https://github.com/aqzt/kjyw",
"https://github.com/SuLingGG/OpenWrt-Rpi",
"https://github.com/rainglow/vscode",
"https://github.com/rasa/vmware-tools-patches",
"https://github.com/fsquillace/junest",
"https://github.com/windelicato/dotfiles",
"https://github.com/bigeagle/gohop",
"https://github.com/cfenollosa/bashblog",
"https://github.com/niklasb/libc-database",
"https://github.com/atomantic/dotfiles",
"https://github.com/kward/shunit2",
"https://github.com/rogaha/docker-desktop",
"https://github.com/pristineio/webrtc-build-scripts",
"https://github.com/zabbix/zabbix-docker",
"https://github.com/basecamp/xip-pdns",
"https://github.com/ncuillery/rn-diff",
"https://github.com/paz-sh/paz",
"https://github.com/coreos/coreos-kubernetes",
"https://github.com/oh-my-fish/theme-bobthefish",
"https://github.com/dennyzhang/cheatsheet-kubernetes-A4",
"https://github.com/jclem/gifify",
"https://github.com/kuoruan/shell-scripts",
"https://github.com/lxqt/lxqt",
"https://github.com/gliderlabs/docker-consul",
"https://github.com/lujun9972/emacs-document",
"https://github.com/FydeOS/chromium_os-raspberry_pi",
"https://github.com/markshust/docker-magento",
"https://github.com/kboghdady/youTube_ads_4_pi-hole",
"https://github.com/liuyi01/kubernetes-starter",
"https://github.com/ToutyRater/v2ray-guide",
"https://github.com/mack-a/v2ray-agent",
"https://github.com/nezhar/wordpress-docker-compose",
"https://github.com/horst3180/arc-icon-theme",
"https://github.com/alrra/dotfiles",
"https://github.com/japaric/trust",
"https://github.com/rtrouton/rtrouton_scripts",
"https://github.com/jeremyFreeAgent/oh-my-zsh-powerline-theme",
"https://github.com/create-dmg/create-dmg",
"https://github.com/Aniverse/inexistence",
"https://github.com/Tecate/bitmap-fonts",
"https://github.com/docker-library/golang",
"https://github.com/driesvints/dotfiles",
"https://github.com/bradp/vv",
"https://github.com/timsutton/osx-vm-templates",
"https://github.com/zdharma/fast-syntax-highlighting",
"https://github.com/linux-surface/linux-surface",
"https://github.com/rastikerdar/vazir-font",
"https://github.com/phpenv/phpenv",
"https://github.com/wodby/docker4drupal",
"https://github.com/fhd/init-script-template",
"https://github.com/sameersbn/docker-redmine",
"https://github.com/twolfson/sexy-bash-prompt",
"https://github.com/noplay/docker-osx",
"https://github.com/jacobalberty/unifi-docker",
"https://github.com/andrewjfreyer/monitor",
"https://github.com/nextcloud/nextcloud-snap",
"https://github.com/mislav/dotfiles",
"https://github.com/enki/libev",
"https://github.com/mozilla-b2g/B2G",
"https://github.com/arakasi72/rtinst",
"https://github.com/vinceliuice/grub2-themes",
"https://github.com/xdtianyu/scripts",
"https://github.com/floriankarsten/space-grotesk",
"https://github.com/h5bp/ant-build-script",
"https://github.com/bclswl0827/v2ray-heroku",
"https://github.com/msmhq/msm",
"https://github.com/ralsina/rst-cheatsheet",
"https://github.com/postmarketOS/pmbootstrap",
"https://github.com/Kong/docker-kong",
"https://github.com/kadirahq/mantra",
"https://github.com/laravel/settler",
"https://github.com/johnrosen1/vpstoolbox",
"https://github.com/yakumioto/YaHei-Consolas-Hybrid-1.12",
"https://github.com/mlocati/docker-php-extension-installer",
"https://github.com/shipping-docker/vessel",
"https://github.com/sickill/bitpocket",
"https://github.com/21y4d/nmapAutomator",
"https://github.com/docker/docker-install",
"https://github.com/WICG/webusb",
"https://github.com/oooldking/script",
"https://github.com/openservicebrokerapi/servicebroker",
"https://github.com/begriffs/haskell-vim-now",
"https://github.com/elasticdog/transcrypt",
"https://github.com/bjango/Bjango-Templates",
"https://github.com/pi-hole/PADD",
"https://github.com/osresearch/heads",
"https://github.com/jayrambhia/Install-OpenCV",
"https://github.com/seebi/tmux-colors-solarized",
"https://github.com/shadowsocks/luci-app-shadowsocks",
"https://github.com/dikiaap/dotfiles",
"https://github.com/ivanilves/xiringuito",
"https://github.com/syscl/Enable-HiDPI-OSX",
"https://github.com/shr3ddersec/Shr3dKit",
"https://github.com/danielmiessler/RobotsDisallowed",
"https://github.com/msys2/MSYS2-packages",
"https://github.com/Homebrew/install",
"https://github.com/confluentinc/examples",
"https://github.com/zero-to-mastery/resources",
"https://github.com/Floris497/mac-pixel-clock-patch-V2",
"https://github.com/guardianproject/android-ffmpeg",
"https://github.com/MvsCode/frps-onekey",
"https://github.com/1N3/BruteX",
"https://github.com/Supervisor/initscripts",
"https://github.com/TH3xACE/SUDO_KILLER",
"https://github.com/gitwatch/gitwatch",
"https://github.com/atrandys/trojan",
"https://github.com/mayankk2308/purge-wrangler",
"https://github.com/sameersbn/docker-postgresql",
"https://github.com/syscl/XPS9350-macOS",
"https://github.com/philhagen/sof-elk",
"https://github.com/gtoonstra/etl-with-airflow",
"https://github.com/tmux-plugins/tmux-sensible",
"https://github.com/go-modules-by-example/index",
"https://github.com/pimterry/notes",
"https://github.com/kpwn/iOSRE",
"https://github.com/the0demiurge/CharlesScripts",
"https://github.com/sickill/git-dude",
"https://github.com/ftao/vpn-deploy-playbook",
"https://github.com/andreasgal/B2G",
"https://github.com/tursunovic/xcode-themes",
"https://github.com/fizx/parsley",
"https://github.com/denilsonsa/prettyping",
"https://github.com/devmentors/DNC-DShop",
"https://github.com/syndbg/goenv",
"https://github.com/hypriot/flash",
"https://github.com/dsixda/Android-Kitchen",
"https://github.com/archlinuxcn/repo",
"https://github.com/mattermost/mattermost-docker",
"https://github.com/sharanda/manrope",
"https://github.com/udhos/update-golang",
"https://github.com/scotch-io/All-Github-Emoji-Icons",
"https://github.com/poststatus/wptest",
"https://github.com/php-build/php-build",
"https://github.com/lamw/ghettoVCB",
"https://github.com/gerhard/deliver",
"https://github.com/gf3/dotfiles",
"https://github.com/beautifulcode/ssh-copy-id-for-OSX",
"https://github.com/zachcurry/emacs-anywhere",
"https://github.com/prey/prey-bash-client",
"https://github.com/paulolramos/eslint-prettier-airbnb-react",
"https://github.com/coreos/docs",
"https://github.com/pubnub/eon",
"https://github.com/RoverWire/virtualhost",
"https://github.com/vivien/i3blocks-contrib",
"https://github.com/m-ab-s/media-autobuild_suite",
"https://github.com/kevinSuttle/macOS-Defaults",
"https://github.com/keroserene/rickrollrc",
"https://github.com/robertfoss/audio_shop",
"https://github.com/Nitrux/luv-icon-theme",
"https://github.com/huan/docker-wechat",
"https://github.com/rauchg/spot",
"https://github.com/smallmuou/ios-icon-generator",
"https://github.com/pgexperts/pgx_scripts",
"https://github.com/eugeneware/docker-wordpress-nginx",
"https://github.com/paulp/sbt-extras",
"https://github.com/xyu/heroku-wp",
"https://github.com/jawj/IKEv2-setup",
"https://github.com/philcryer/lipsync",
"https://github.com/lnbook/lnbook",
"https://github.com/hellofwy/ss-bash",
"https://github.com/alexellis/docker-arm",
"https://github.com/tmux-plugins/tmux-copycat",
"https://github.com/atmoz/sftp",
"https://github.com/gaomd/docker-ikev2-vpn-server",
"https://github.com/CrunchyData/crunchy-containers",
"https://github.com/cytopia/pwncat",
"https://github.com/dokku/dokku-letsencrypt",
"https://github.com/r00t-3xp10it/venom",
"https://github.com/qt/qt5",
"https://github.com/Screetsec/Dracnmap",
"https://github.com/matchai/spacefish",
"https://github.com/square/workflow",
"https://github.com/dyne/Tomb",
"https://github.com/vigneshwaranr/bd",
"https://github.com/kfahy/slack-disable-wysiwyg-bookmarklet",
"https://github.com/saltstack/salt-bootstrap",
"https://github.com/swizzin/swizzin",
"https://github.com/heroku/heroku-buildpack-python",
"https://github.com/ToyoDAdoubiBackup/doubi",
"https://github.com/omer-dogan/whoami",
"https://github.com/starkandwayne/concourse-tutorial",
"https://github.com/rockymadden/slack-cli",
"https://github.com/HariSekhon/Dockerfiles",
"https://github.com/jorgebucaran/nvm.fish",
"https://github.com/antonbabenko/pre-commit-terraform",
"https://github.com/alexellis/k8s-on-raspbian",
"https://github.com/Cleafy/sxkdvm",
"https://github.com/robbintt/popup-openvpn",
"https://github.com/geekofweek/homeassistant",
"https://github.com/Stadicus/RaspiBolt",
"https://github.com/jonathanpenn/ui-screen-shooter",
"https://github.com/subtleGradient/Appify-UI",
"https://github.com/sipcapture/homer",
"https://github.com/jimeh/tmuxifier",
"https://github.com/rmarquis/pacaur",
"https://github.com/ddollar/heroku-buildpack-multi",
"https://github.com/gluster/gluster-kubernetes",
"https://github.com/htpcBeginner/docker-traefik",
"https://github.com/riscv/riscv-tools",
"https://github.com/nodesocket/jsonlite",
"https://github.com/keycloak/keycloak-containers",
"https://github.com/lhelontra/tensorflow-on-arm",
"https://github.com/sakaki-/gentoo-on-rpi-64bit",
"https://github.com/archlinuxarm/PKGBUILDs",
"https://github.com/ValveSoftware/steam-runtime",
"https://github.com/ioBroker/ioBroker",
"https://github.com/digitalocean/do_user_scripts",
"https://github.com/dakshshah96/local-cert-generator",
"https://github.com/justinmayer/virtualfish",
"https://github.com/liquanzhou/ops_doc",
"https://github.com/mydzor/bash2048",
"https://github.com/jneen/balls",
"https://github.com/paulirish/git-recent",
"https://github.com/Orbiter/git2feed",
"https://github.com/barrykn/big-sur-micropatcher",
"https://github.com/M0Rf30/android-udev-rules",
"https://github.com/Desgard/iOS-Source-Probe",
"https://github.com/aurora/rmate",
"https://github.com/pentestmonkey/unix-privesc-check",
"https://github.com/nicothin/web-development",
"https://github.com/toptal/gitignore",
"https://github.com/postgis/docker-postgis",
"https://github.com/brson/rust-anthology",
"https://github.com/g0tmi1k/msfpc",
"https://github.com/jpetazzo/dockvpn",
"https://github.com/cstrap/monaco-font",
"https://github.com/SecurityFTW/cs-suite",
"https://github.com/dmarmor/epichrome",
"https://github.com/adlogix/docker-machine-nfs",
"https://github.com/magnific0/wondershaper",
"https://github.com/envygeeks/jekyll-docker",
"https://github.com/nvie/git-toolbelt",
"https://github.com/Azure/azure-blockchain-projects",
"https://github.com/riobard/bash-powerline",
"https://github.com/mariusv/nginx-badbot-blocker",
"https://github.com/chovy/node-startup",
"https://github.com/chaifeng/ufw-docker",
"https://github.com/kstaken/dockerfile-examples",
"https://github.com/topojson/world-atlas",
"https://github.com/rust-lang/async-book",
"https://github.com/deadc0de6/dotdrop",
"https://github.com/dperson/samba",
"https://github.com/docker-library/mongo",
"https://github.com/authy/authy-ssh",
"https://github.com/gh2o/digitalocean-debian-to-arch",
"https://github.com/boostchicken/udm-utilities",
"https://github.com/imperador/chromefy",
"https://github.com/stark/Color-Scripts",
"https://github.com/larkery/zsh-histdb",
"https://github.com/koutto/pi-pwnbox-rogueap",
"https://github.com/awslabs/ecs-refarch-continuous-deployment",
"https://github.com/moritz-wundke/Boost-for-Android",
"https://github.com/Zuikyo/iOS-System-Symbols",
"https://github.com/caison/java-knowledge-mind-map",
"https://github.com/SonarSource/SonarTS",
"https://github.com/ingydotnet/git-hub",
"https://github.com/10up/wp-local-docker",
"https://github.com/multiarch/qemu-user-static",
"https://github.com/sequenceiq/docker-spark",
"https://github.com/benrady/shinatra",
"https://github.com/Screetsec/Sudomy",
"https://github.com/pypa/manylinux",
"https://github.com/coursehero/slacktee",
"https://github.com/paulirish/github-email",
"https://github.com/openipcamera/openipc-firmware",
"https://github.com/bash-my-aws/bash-my-aws",
"https://github.com/Cyclenerd/ethereum_nvidia_miner",
"https://github.com/offa/android-foss",
"https://github.com/crowbar/crowbar",
"https://github.com/confluentinc/demo-scene",
"https://github.com/geometry-zsh/geometry",
"https://github.com/bufferapp/android-guidelines",
"https://github.com/veggiedefender/open-and-shut",
"https://github.com/monfresh/laptop",
"https://github.com/qw3rtman/p",
"https://github.com/Accenture/adop-docker-compose",
"https://github.com/heroku/heroku-buildpack-go",
"https://github.com/sameersbn/docker-bind",
"https://github.com/mikehardy/jetifier",
"https://github.com/dylanaraps/pfetch",
"https://github.com/HashNuke/heroku-buildpack-elixir",
"https://github.com/arloor/iptablesUtils",
"https://github.com/rfxn/linux-malware-detect",
"https://github.com/goreliu/zshguide",
"https://github.com/cokebar/gfwlist2dnsmasq",
"https://github.com/ashishb/osx-and-ios-security-awesome",
"https://github.com/thi-ng/geom",
"https://github.com/dperson/openvpn-client",
"https://github.com/Hax4us/Nethunter-In-Termux",
"https://github.com/basherpm/basher",
"https://github.com/heroku/heroku-buildpack-php",
"https://github.com/carloscuesta/materialshell",
"https://github.com/AdnanHodzic/displaylink-debian",
"https://github.com/cnabio/cnab-spec",
"https://github.com/paxtonhare/demo-magic",
"https://github.com/necolas/dotfiles",
"https://github.com/gfw-breaker/nogfw",
"https://github.com/gradle/gradle-completion",
"https://github.com/nahamsec/bbht",
"https://github.com/qoomon/docker-host",
"https://github.com/Langhalsdino/Kubernetes-GPU-Guide",
"https://github.com/htpcBeginner/AtoMiC-ToolKit",
"https://github.com/ContainerSolutions/kubernetes-examples",
"https://github.com/kitabisa/ssb",
"https://github.com/Osedea/nodock",
"https://github.com/topojson/us-atlas",
"https://github.com/taniman/profit-trailer",
"https://github.com/artem-zinnatullin/RxJavaProGuardRules",
"https://github.com/wireghoul/graudit",
"https://github.com/colinmollenhour/modman",
"https://github.com/enginyoyen/ansible-best-practises",
"https://github.com/umiddelb/armhf",
"https://github.com/emberjs/rfcs",
"https://github.com/maxfields2000/dockerjenkins_tutorial",
"https://github.com/abiosoft/caddy-docker",
"https://github.com/helixarch/debtap",
"https://github.com/corbindavenport/creative-cloud-linux",
"https://github.com/xuexb/learn-nginx",
"https://github.com/philcook/brew-php-switcher",
"https://github.com/metmuseum/openaccess",
"https://github.com/rtomayko/git-sh",
"https://github.com/pixelb/scripts",
"https://github.com/StarshipEngineer/OpenVPN-Setup",
"https://github.com/Miserlou/lambda-packages",
"https://github.com/mcrapet/plowshare",
"https://github.com/dylanbai8/kmspro",
"https://github.com/samrocketman/gitlab-mirrors",
"https://github.com/pure-fish/pure",
"https://github.com/vincentcox/bypass-firewalls-by-DNS-history",
"https://github.com/nerdgeneration/www.sh",
"https://github.com/adi1090x/dynamic-wallpaper",
"https://github.com/google/cityhash",
"https://github.com/kickstartcoding/cheatsheets",
"https://github.com/SecUpwN/Spotify-AdKiller",
"https://github.com/microsoft/linux-vm-tools",
"https://github.com/doctormo/GimpPs",
"https://github.com/tinyclub/open-c-book",
"https://github.com/wireghoul/htshells",
"https://github.com/learnbyexample/learn_gnuawk",
"https://github.com/toleda/audio_CloverALC",
"https://github.com/dockerfile/java",
"https://github.com/sebgl/htpc-download-box",
"https://github.com/raspberrypi/rpi-eeprom",
"https://github.com/taylor/kiex",
"https://github.com/KrumpetPirate/AAXtoMP3",
"https://github.com/gotbletu/shownotes",
"https://github.com/ruanyf/simple-bash-scripts",
"https://github.com/htr-tech/nexphisher",
"https://github.com/vmware-tanzu/tgik",
"https://github.com/alexylem/jarvis",
"https://github.com/dustinkirkland/byobu",
"https://github.com/icy/pacapt",
"https://github.com/learex-zz/macOS-eGPU",
"https://github.com/dylanaraps/wal",
"https://github.com/viljoviitanen/setup-simple-pptp-vpn",
"https://github.com/sdushantha/tmpsms",
"https://github.com/iridakos/goto",
"https://github.com/viccherubini/get-shit-done",
"https://github.com/summerblue/laravel-ubuntu-init",
"https://github.com/google/cmockery",
"https://github.com/AladW/aurutils",
"https://github.com/aws/eks-distro",
"https://github.com/NHDaly/tmux-better-mouse-mode",
"https://github.com/konstruktoid/hardening",
"https://github.com/Aloxaf/fzf-tab",
"https://github.com/tmux-plugins/tmux-logging",
"https://github.com/hestiacp/hestiacp",
"https://github.com/clangcn/kcp-server",
"https://github.com/StamusNetworks/SELKS",
"https://github.com/ANXS/postgresql",
"https://github.com/boxcutter/ubuntu",
"https://github.com/Debdut/names.io",
"https://github.com/yboetz/motd",
"https://github.com/hongwenjun/vps_setup",
"https://github.com/hectorm/hblock",
"https://github.com/nextcloud/vm",
"https://github.com/spencerwooo/dotfiles",
"https://github.com/graysky2/profile-sync-daemon",
"https://github.com/deajan/osync",
"https://github.com/redbooth/gockerize",
"https://github.com/example42/psick",
"https://github.com/arnoo/git-deliver",
"https://github.com/brson/multirust",
"https://github.com/ben1234560/k8s_PaaS",
"https://github.com/AdmitHub/meteor-buildpack-horse",
"https://github.com/acantril/learn-cantrill-io-labs",
"https://github.com/webpro/dotfiles",
"https://github.com/sameersbn/docker-squid",
"https://github.com/workman-layout/Workman",
"https://github.com/krzysztofzablocki/IconOverlaying",
"https://github.com/CompSciLauren/awesome-git-hooks",
"https://github.com/hannob/bashcheck",
"https://github.com/wuseman/EMAGNET",
"https://github.com/dylanbai8/V2Ray_ws-tls_Website_onekey",
"https://github.com/flexiondotorg/oab-java6",
"https://github.com/awesome-streamers/awesome-streamerrc",
"https://github.com/monlor/Monlor-Tools",
"https://github.com/rwu823/afloat",
"https://github.com/sdushantha/fontpreview",
"https://github.com/AsteroidOS/asteroid",
"https://github.com/fabiomaia/linuxify",
"https://github.com/schors/tgdante2",
"https://github.com/sunaku/dasht",
"https://github.com/RokasUrbelis/docker-wine-linux",
"https://github.com/micahwedemeyer/automongobackup",
"https://github.com/kitten/setup-simple-ipsec-l2tp-vpn",
"https://github.com/Piker-Alpha/ssdtPRGen.sh",
"https://github.com/s0md3v/Diggy",
"https://github.com/github/backup-utils",
"https://github.com/multiformats/multihash",
"https://github.com/balena-io/open-balena",
"https://github.com/zfsonlinux/zfs-auto-snapshot",
"https://github.com/stuxnet999/MemLabs",
"https://github.com/RichardLitt/awesome-styleguides",
"https://github.com/tadfisher/pass-otp",
"https://github.com/maaaaz/thc-hydra-windows",
"https://github.com/MichaelAquilina/zsh-you-should-use",
"https://github.com/MycroftAI/enclosure-picroft",
"https://github.com/openzipkin-attic/docker-zipkin",
"https://github.com/ashinkarov/i3-extras",
"https://github.com/wilmoore/php-version",
"https://github.com/erik-nelson/blam",
"https://github.com/vinceliuice/Tela-icon-theme",
"https://github.com/kitten/setup-strong-strongswan",
"https://github.com/WongKinYiu/CrossStagePartialNetworks",
"https://github.com/elsamuko/Shirt-without-Stripes",
"https://github.com/Und3rf10w/kali-anonsurf",
"https://github.com/six2dez/reconftw",
"https://github.com/vaniacer/piu-piu-SH",
"https://github.com/caarlos0/dotfiles",
"https://github.com/FabioLolix/LinuxTimeline",
"https://github.com/jinwyp/one_click_script",
"https://github.com/iam4x/zsh-iterm-touchbar",
"https://github.com/oracle/vagrant-projects",
"https://github.com/gregsaun/prusa_i3_bear_upgrade",
"https://github.com/adi1090x/plymouth-themes",
"https://github.com/travis-ci/gimme",
"https://github.com/ahmadrosid/tpd",
"https://github.com/FedericoCeratto/nimfmt",
"https://github.com/ahmadrosid/gemoji",
"https://github.com/tldr-pages/tldr",
"https://github.com/nvm-sh/nvm",
"https://github.com/ohmyzsh/ohmyzsh",
"https://github.com/open-guides/og-aws",
"https://github.com/Bash-it/bash-it",
"https://github.com/rupa/z",
"https://github.com/tj/n",
"https://github.com/fatih/color",