-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorigin_repos.txt
1030 lines (1030 loc) · 44.8 KB
/
origin_repos.txt
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
c https://github.com/alibaba/tengine
c https://github.com/allinurl/goaccess
c https://github.com/apache/httpd
c https://github.com/arut/nginx-rtmp-module
c https://github.com/cesanta/mongoose
c https://github.com/cloudwu/skynet
c https://github.com/coturn/coturn
c https://github.com/curl/curl
c https://github.com/davatorium/rofi
c https://github.com/eclipse-mosquitto/mosquitto
c https://github.com/espressif/esp-idf
c https://github.com/existentialaudio/blackhole
c https://github.com/facebook/zstd
c https://github.com/ffmpeg/ffmpeg
c https://github.com/ffmpegwasm/ffmpeg.wasm
c https://github.com/glfw/glfw
c https://github.com/google/sanitizers
c https://github.com/haproxy/haproxy
c https://github.com/imagemagick/imagemagick
c https://github.com/jedisct1/libsodium
c https://github.com/krallin/tini
c https://github.com/libevent/libevent
c https://github.com/libuv/libuv
c https://github.com/lvgl/lvgl
c https://github.com/madler/zlib
c https://github.com/memcached/memcached
c https://github.com/mozilla/mozjpeg
c https://github.com/netdata/netdata
c https://github.com/nginx/nginx
c https://github.com/nothings/stb
c https://github.com/octalmage/robotjs
c https://github.com/openresty/lua-nginx-module
c https://github.com/openresty/openresty
c https://github.com/openssl/openssl
c https://github.com/ossec/ossec-hids
c https://github.com/pgvector/pgvector
c https://github.com/postgres/postgres
c https://github.com/raysan5/raylib
c https://github.com/redis/hiredis
c https://github.com/redis/redis
c https://github.com/rsyslog/liblognorm
c https://github.com/rsyslog/rsyslog
c https://github.com/skywind3000/kcp
c https://github.com/snaipe/libcsptr
c https://github.com/sqlite/sqlite
c https://github.com/swaywm/sway
c https://github.com/taosdata/tdengine
c https://github.com/timescale/timescaledb
c https://github.com/twitter/twemproxy
c https://github.com/utox/utox
c https://github.com/valkey-io/valkey
c https://github.com/vurtun/nuklear
c https://github.com/wg/wrk
c https://github.com/wireguard/wireguard-linux
c https://github.com/woltapp/blurhash
c https://github.com/xianyi/openblas
clojure https://github.com/metabase/metabase
cpp https://github.com/academysoftwarefoundation/openvdb
cpp https://github.com/alembic/alembic
cpp https://github.com/apache/arrow
cpp https://github.com/apache/incubator-brpc
cpp https://github.com/apache/mesos
cpp https://github.com/apache/mxnet
cpp https://github.com/apache/thrift
cpp https://github.com/ariya/phantomjs
cpp https://github.com/boostorg/boost
cpp https://github.com/bvlc/caffe
cpp https://github.com/catchorg/catch2
cpp https://github.com/ceph/ceph
cpp https://github.com/clickhouse/clickhouse
cpp https://github.com/dragonflydb/dragonfly
cpp https://github.com/duckdb/duckdb
cpp https://github.com/electron/electron
cpp https://github.com/embree/embree
cpp https://github.com/envoyproxy/envoy
cpp https://github.com/ethereum/solidity
cpp https://github.com/facebook/folly
cpp https://github.com/facebook/hermes
cpp https://github.com/facebook/rocksdb
cpp https://github.com/facebook/yoga
cpp https://github.com/facebookresearch/faiss
cpp https://github.com/fmtlib/fmt
cpp https://github.com/gabime/spdlog
cpp https://github.com/gflags/gflags
cpp https://github.com/google/flatbuffers
cpp https://github.com/google/leveldb
cpp https://github.com/google/re2
cpp https://github.com/grpc/grpc
cpp https://github.com/keepassxreboot/keepassxc
cpp https://github.com/lizardbyte/sunshine
cpp https://github.com/mariadb/server
cpp https://github.com/microsoft/cntk
cpp https://github.com/microsoft/vcpkg
cpp https://github.com/microsoft/win2d
cpp https://github.com/milostosic/mtuner
cpp https://github.com/ml-explore/mlx
cpp https://github.com/mongodb/mongo
cpp https://github.com/mysql/mysql
cpp https://github.com/nasa/trick
cpp https://github.com/nlohmann/json
cpp https://github.com/ocornut/imgui
cpp https://github.com/opencv/opencv
cpp https://github.com/open-source-parsers/jsoncpp
cpp https://github.com/oracle/node-oracledb
cpp https://github.com/ossrs/srs
cpp https://github.com/pocoproject/poco
cpp https://github.com/protocolbuffers/protobuf
cpp https://github.com/rethinkdb/rethinkdb
cpp https://github.com/ripple/rippled
cpp https://github.com/signalapp/signal-android
cpp https://github.com/simdjson/simdjson
cpp https://github.com/sqlcipher/sqlcipher
cpp https://github.com/taichi-dev/taichi
cpp https://github.com/tencent/mmkv
cpp https://github.com/tencent/ncnn
cpp https://github.com/tencent/rapidjson
cpp https://github.com/typesense/typesense
cpp https://github.com/unetworking/uwebsockets
cpp https://github.com/weidai11/cryptopp
cpp https://github.com/yhirose/cpp-httplib
cpp https://github.com/zeromq/libzmq
cpp https://github.com/zeromq/zeromq4-x
cpp https://github.com/zerotier/zerotierone
csharp https://github.com/abpframework/abp
csharp https://github.com/app-vnext/polly
csharp https://github.com/aspnet/entityframeworkcore
csharp https://github.com/autofixture/autofixture
csharp https://github.com/automapper/automapper
csharp https://github.com/avaloniaui/avalonia
csharp https://github.com/bchavez/bogus
csharp https://github.com/bitwarden/server
csharp https://github.com/cefsharp/cefsharp
csharp https://github.com/dapperlib/dapper
csharp https://github.com/dotnet/aspnetcore
csharp https://github.com/dotnet/docfx
csharp https://github.com/dotnet/efcore
csharp https://github.com/dotnet/eshop
csharp https://github.com/dotnet/maui
csharp https://github.com/dotnet/orleans
csharp https://github.com/dotnet/reactive
csharp https://github.com/dotnet/roslyn
csharp https://github.com/duendesoftware/products
csharp https://github.com/egametang/et
csharp https://github.com/elastic/elasticsearch-net
csharp https://github.com/elmah/elmah
csharp https://github.com/fluentvalidation/fluentvalidation
csharp https://github.com/graphql-dotnet/graphql-dotnet
csharp https://github.com/gui-cs/terminal.gui
csharp https://github.com/hangfireio/hangfire
csharp https://github.com/humanizr/humanizer
csharp https://github.com/identityserver/identityserver4
csharp https://github.com/jamesnk/newtonsoft.json
csharp https://github.com/jbogard/mediatr
csharp https://github.com/jellyfin/jellyfin
csharp https://github.com/jstedfast/mailkit
csharp https://github.com/lucasg/dependencies
csharp https://github.com/mahapps/mahapps.metro
csharp https://github.com/masstransit/masstransit
csharp https://github.com/materialdesigninxaml/materialdesigninxamltoolkit
csharp https://github.com/microsoft/garnet
csharp https://github.com/microsoft/semantic-kernel
csharp https://github.com/migueldeicaza/gui.cs
csharp https://github.com/mono/mono
csharp https://github.com/monogame/monogame
csharp https://github.com/mxgmn/wavefunctioncollapse
csharp https://github.com/netchx/netch
csharp https://github.com/nopsolutions/nopcommerce
csharp https://github.com/nuget/nuget.client
csharp https://github.com/nuke-build/nuke
csharp https://github.com/quantconnect/lean
csharp https://github.com/quartznet/quartznet
csharp https://github.com/questpdf/questpdf
csharp https://github.com/restsharp/restsharp
csharp https://github.com/serilog/serilog
csharp https://github.com/serilog/serilog-sinks-console
csharp https://github.com/servicestack/servicestack
csharp https://github.com/signalr/signalr
csharp https://github.com/sixlabors/imagesharp
csharp https://github.com/spectreconsole/spectre.console
csharp https://github.com/stackexchange/stackexchange.redis
csharp https://github.com/unoplatform/uno
dart https://github.com/baseflow/flutter-permission-handler
dart https://github.com/bitwarden/mobile
dart https://github.com/dart-lang/http
dart https://github.com/dart-lang/json_serializable
dart https://github.com/dart-lang/shelf
dart https://github.com/flame-engine/flame
dart https://github.com/flutter/devtools
dart https://github.com/flutter/engine
dart https://github.com/flutter/flutter
dart https://github.com/flutter/packages
dart https://github.com/getstream/stream-chat-flutter
dart https://github.com/isar/isar
dart https://github.com/leoafarias/fvm
dart https://github.com/miguelpruivo/flutter_file_picker
dart https://github.com/reactivex/rxdart
elixir https://github.com/elixir-lang/elixir
erlang https://github.com/apache/couchdb
erlang https://github.com/rabbitmq/rabbitmq-server
go https://github.com/99designs/gqlgen
go https://github.com/adguardteam/adguardhome
go https://github.com/alistgo/alist
go https://github.com/argoproj/argo-cd
go https://github.com/beego/beego
go https://github.com/caddyserver/caddy
go https://github.com/charmbracelet/bubbletea
go https://github.com/cilium/cilium
go https://github.com/cloudwego/kitex
go https://github.com/cockroachdb/cockroach
go https://github.com/containerd/containerd
go https://github.com/containers/podman
go https://github.com/coredns/coredns
go https://github.com/cortexproject/cortex
go https://github.com/dapr/dapr
go https://github.com/distribution/distribution
go https://github.com/docker/compose
go https://github.com/docker/docker
go https://github.com/etcd-io/etcd
go https://github.com/ethereum/go-ethereum
go https://github.com/evanw/esbuild
go https://github.com/fatedier/frp
go https://github.com/filebrowser/filebrowser
go https://github.com/filosottile/mkcert
go https://github.com/fyne-io/fyne
go https://github.com/gin-gonic/gin
go https://github.com/go-chi/chi
go https://github.com/gocolly/colly
go https://github.com/gofiber/fiber
go https://github.com/gogf/gf
go https://github.com/go-gitea/gitea
go https://github.com/go-gorm/gorm
go https://github.com/gogs/gogs
go https://github.com/goharbor/harbor
go https://github.com/go-kit/kit
go https://github.com/go-kratos/kratos
go https://github.com/golang-migrate/migrate
go https://github.com/go-martini/martini
go https://github.com/gorilla/mux
go https://github.com/gorilla/websocket
go https://github.com/go-sql-driver/mysql
go https://github.com/go-swagger/go-swagger
go https://github.com/grafana/grafana
go https://github.com/grafana/loki
go https://github.com/grpc/grpc-go
go https://github.com/harness/harness
go https://github.com/hashicorp/consul
go https://github.com/hashicorp/vault
go https://github.com/helm/helm
go https://github.com/hibiken/asynq
go https://github.com/hyperledger/fabric
go https://github.com/iawia002/lux
go https://github.com/icewhaletech/casaos
go https://github.com/inconshreveable/ngrok
go https://github.com/ipfs/go-ipfs
go https://github.com/istio/istio
go https://github.com/jaegertracing/jaeger
go https://github.com/juanfont/headscale
go https://github.com/k3s-io/k3s
go https://github.com/kataras/iris
go https://github.com/knative/community
go https://github.com/kubernetes/kubernetes
go https://github.com/labstack/echo
go https://github.com/letsencrypt/boulder
go https://github.com/libp2p/go-libp2p
go https://github.com/lightningnetwork/lnd
go https://github.com/mattermost/mattermost-server
go https://github.com/micro/go-micro
go https://github.com/micro/micro
go https://github.com/milvus-io/milvus
go https://github.com/minio/minio
go https://github.com/mislav/hub
go https://github.com/moby/moby
go https://github.com/mozilla/sops
go https://github.com/nektos/act
go https://github.com/nsqio/nsq
go https://github.com/olivere/elastic
go https://github.com/openfaas/faas
go https://github.com/open-telemetry/opentelemetry-collector
go https://github.com/opentofu/opentofu
go https://github.com/ory/hydra
go https://github.com/ory/kratos
go https://github.com/peergos/peergos
go https://github.com/photoprism/photoprism
go https://github.com/pingcap/tidb
go https://github.com/pocketbase/pocketbase
go https://github.com/prometheus/prometheus
go https://github.com/rancher/rancher
go https://github.com/rclone/rclone
go https://github.com/restic/restic
go https://github.com/revel/revel
go https://github.com/rook/rook
go https://github.com/schollz/croc
go https://github.com/seaweedfs/seaweedfs
go https://github.com/shopify/sarama
go https://github.com/sigstore/sigstore
go https://github.com/sirupsen/logrus
go https://github.com/smallstep/certificates
go https://github.com/spf13/cobra
go https://github.com/spf13/viper
go https://github.com/stackexchange/dnscontrol
go https://github.com/syncthing/syncthing
go https://github.com/tailscale/tailscale
go https://github.com/traefik/traefik
go https://github.com/tsenart/vegeta
go https://github.com/uber-go/zap
go https://github.com/urfave/cli
go https://github.com/usememos/memos
go https://github.com/v2ray/v2ray-core
go https://github.com/valyala/fasthttp
go https://github.com/vitessio/vitess
go https://github.com/wailsapp/wails
go https://github.com/wox-launcher/wox
go https://github.com/xtls/xray-core
go https://github.com/zeromicro/go-zero
groovy https://github.com/airbnb/okreplay
groovy https://github.com/akhikhl/gretty
groovy https://github.com/betamaxteam/betamax
groovy https://github.com/eleme/mess
groovy https://github.com/fabiomsr/drawable-optimizer
groovy https://github.com/fabric8io/fabric8-pipeline-library
groovy https://github.com/fizzed/font-mfizz
groovy https://github.com/geb/geb
groovy https://github.com/gradleup/shadow
groovy https://github.com/grails/grails
groovy https://github.com/hydraxman/hibeaver
groovy https://github.com/jenkinsci/job-dsl-plugin
groovy https://github.com/jenkinsci/pipeline-model-definition-plugin
groovy https://github.com/jfrog/artifactory-user-plugins
groovy https://github.com/jwagenleitner/groovy-wslite
groovy https://github.com/kezong/fat-aar-android
groovy https://github.com/marcelbirkner/docker-ci-tool-stack
groovy https://github.com/nationalsecurityagency/skills-service
groovy https://github.com/netflix/asgard
groovy https://github.com/nextflow-io/nextflow
groovy https://github.com/openboxes/openboxes
groovy https://github.com/pongasoft/glu
groovy https://github.com/prototypez/appjoint
groovy https://github.com/rundeck/rundeck
groovy https://github.com/spinnaker/clouddriver
groovy https://github.com/stjohnjohnson/smartthings-mqtt-bridge
groovy https://github.com/tonesto7/nest-manager
groovy https://github.com/ultraq/thymeleaf-layout-dialect
haskell https://github.com/jgm/pandoc
java https://github.com/activiti/activiti
java https://github.com/airbnb/lottie-android
java https://github.com/alibaba/druid
java https://github.com/alibaba/fastjson2
java https://github.com/alibaba/sentinel
java https://github.com/apache/cassandra
java https://github.com/apache/commons-codec
java https://github.com/apache/commons-io
java https://github.com/apache/commons-lang
java https://github.com/apache/dubbo
java https://github.com/apache/flink
java https://github.com/apache/hadoop
java https://github.com/apache/httpcomponents-client
java https://github.com/apache/httpcomponents-core
java https://github.com/apache/kafka
java https://github.com/apache/logging-log4j2
java https://github.com/apache/rocketmq
java https://github.com/apache/shardingsphere
java https://github.com/apache/skywalking
java https://github.com/apache/solr
java https://github.com/apache/struts
java https://github.com/apache/tomcat
java https://github.com/apache/zookeeper
java https://github.com/apolloconfig/apollo
java https://github.com/baseflow/photoview
java https://github.com/blankj/androidutilcode
java https://github.com/bumptech/glide
java https://github.com/camunda/camunda-bpm-platform
java https://github.com/conductor-oss/conductor
java https://github.com/dbeaver/dbeaver
java https://github.com/dromara/hutool
java https://github.com/dropwizard/dropwizard
java https://github.com/elastic/elasticsearch
java https://github.com/elastic/logstash
java https://github.com/fasterxml/jackson-core
java https://github.com/fasterxml/jackson-databind
java https://github.com/google/exoplayer
java https://github.com/google/guava
java https://github.com/google/guice
java https://github.com/google/tink
java https://github.com/greenrobot/eventbus
java https://github.com/hibernate/hibernate-orm
java https://github.com/jakewharton/butterknife
java https://github.com/jenkinsci/jenkins
java https://github.com/jodaorg/joda-time
java https://github.com/keycloak/keycloak
java https://github.com/libgdx/libgdx
java https://github.com/lmax-exchange/disruptor
java https://github.com/macrozheng/mall
java https://github.com/mybatis/mybatis-3
java https://github.com/netty/netty
java https://github.com/nextcloud/android
java https://github.com/oracle/graal
java https://github.com/philjay/mpandroidchart
java https://github.com/qos-ch/logback
java https://github.com/qos-ch/slf4j
java https://github.com/reactivex/rxandroid
java https://github.com/reactivex/rxjava
java https://github.com/realm/realm-java
java https://github.com/signalapp/signal-server
java https://github.com/spockframework/spock
java https://github.com/spring-projects/spring-boot
java https://github.com/spring-projects/spring-framework
java https://github.com/square/retrofit
java https://github.com/stirling-tools/stirling-pdf
java https://github.com/teamnewpipe/newpipe
java https://github.com/termux/termux-app
java https://github.com/thingsboard/thingsboard
java https://github.com/zxing/zxing
javascript https://github.com/adam-p/markdown-here
javascript https://github.com/addaleax/natives
javascript https://github.com/adobe/brackets
javascript https://github.com/airbnb/lottie-web
javascript https://github.com/alvarotrigo/fullpage.js
javascript https://github.com/ampproject/amphtml
javascript https://github.com/angular/angular.js
javascript https://github.com/asciinema/asciinema-player
javascript https://github.com/atom/atom
javascript https://github.com/axios/axios
javascript https://github.com/babel/babel
javascript https://github.com/bigskysoftware/htmx
javascript https://github.com/bpmn-io/bpmn-js
javascript https://github.com/caolan/async
javascript https://github.com/chartjs/chart.js
javascript https://github.com/cypress-io/cypress
javascript https://github.com/d3/d3
javascript https://github.com/daneden/animate.css
javascript https://github.com/dcloudio/uni-app
javascript https://github.com/dogfalo/materialize
javascript https://github.com/dominictarr/rc
javascript https://github.com/eggjs/egg
javascript https://github.com/elemefe/element
javascript https://github.com/element-hq/element-web
javascript https://github.com/emberjs/ember.js
javascript https://github.com/eslint/eslint
javascript https://github.com/expressjs/body-parser
javascript https://github.com/expressjs/express
javascript https://github.com/facebook/react
javascript https://github.com/facebook/react-native
javascript https://github.com/faisalman/ua-parser-js
javascript https://github.com/fastify/fastify
javascript https://github.com/feross/safe-buffer
javascript https://github.com/freecodecamp/freecodecamp
javascript https://github.com/gatsbyjs/gatsby
javascript https://github.com/hakimel/reveal.js
javascript https://github.com/handlebars-lang/handlebars.js
javascript https://github.com/hapijs/hapi
javascript https://github.com/hexojs/hexo
javascript https://github.com/iamkun/dayjs
javascript https://github.com/ianstormtaylor/slate
javascript https://github.com/impress/impress.js
javascript https://github.com/isaacs/inherits
javascript https://github.com/jasmine/jasmine
javascript https://github.com/jgraph/drawio
javascript https://github.com/jonschlinkert/kind-of
javascript https://github.com/jquery/jquery
javascript https://github.com/juliangarnier/anime
javascript https://github.com/juliangruber/isarray
javascript https://github.com/koajs/koa
javascript https://github.com/kong/insomnia
javascript https://github.com/leaflet/leaflet
javascript https://github.com/ljharb/qs
javascript https://github.com/lodash/lodash
javascript https://github.com/markedjs/marked
javascript https://github.com/meteor/meteor
javascript https://github.com/minimistjs/minimist
javascript https://github.com/mochajs/mocha
javascript https://github.com/moment/moment
javascript https://github.com/mozilla/pdf.js
javascript https://github.com/mrdoob/three.js
javascript https://github.com/naptha/tesseract.js
javascript https://github.com/nodejs/readable-stream
javascript https://github.com/nodejs/string_decoder
javascript https://github.com/nolimits4web/swiper
javascript https://github.com/nwjs/nw.js
javascript https://github.com/phaserjs/phaser
javascript https://github.com/pixijs/pixi.js
javascript https://github.com/preactjs/preact
javascript https://github.com/prettier/prettier
javascript https://github.com/rocketchat/rocket.chat
javascript https://github.com/semantic-org/semantic-ui
javascript https://github.com/serverless/serverless
javascript https://github.com/socketio/socket.io
javascript https://github.com/sortablejs/sortable
javascript https://github.com/standardnotes/app
javascript https://github.com/sveltejs/svelte
javascript https://github.com/tooljet/tooljet
javascript https://github.com/tryghost/ghost
javascript https://github.com/twbs/bootstrap
javascript https://github.com/typicode/json-server
javascript https://github.com/veged/coa
javascript https://github.com/vercel/hyper
javascript https://github.com/vercel/next.js
javascript https://github.com/videojs/video.js
javascript https://github.com/yarnpkg/berry
javascript https://github.com/zenorocha/clipboard.js
julia https://github.com/fluxml/flux.jl
kotlin https://github.com/acra/acra
kotlin https://github.com/afollestad/material-dialogs
kotlin https://github.com/airbnb/mavericks
kotlin https://github.com/airbnb/mvrx
kotlin https://github.com/alibaba/p3c
kotlin https://github.com/android/nowinandroid
kotlin https://github.com/android/sunflower
kotlin https://github.com/androidx/androidx
kotlin https://github.com/apollographql/apollo-android
kotlin https://github.com/appintro/appintro
kotlin https://github.com/arrow-kt/arrow
kotlin https://github.com/badoo/reaktive
kotlin https://github.com/coil-kt/coil
kotlin https://github.com/cymchad/baserecyclerviewadapterhelper
kotlin https://github.com/detekt/detekt
kotlin https://github.com/drakeet/multitype
kotlin https://github.com/element-hq/element-android
kotlin https://github.com/ethereum-lists/chains
kotlin https://github.com/facebook/facebook-android-sdk
kotlin https://github.com/facebook/litho
kotlin https://github.com/florisboard/florisboard
kotlin https://github.com/google/accompanist
kotlin https://github.com/google/filament
kotlin https://github.com/google/flexbox-layout
kotlin https://github.com/google/ksp
kotlin https://github.com/insertkoinio/koin
kotlin https://github.com/jakewharton/rxbinding
kotlin https://github.com/jakewharton/timber
kotlin https://github.com/javalin/javalin
kotlin https://github.com/jetbrains/compose-jb
kotlin https://github.com/jetbrains/compose-multiplatform
kotlin https://github.com/jetbrains/exposed
kotlin https://github.com/korlibs/korge
kotlin https://github.com/kotlin/anko
kotlin https://github.com/kotlin/kotlinx.cli
kotlin https://github.com/kotlin/kotlinx.coroutines
kotlin https://github.com/kotlin/kotlinx.serialization
kotlin https://github.com/kotlin/kotlinx-datetime
kotlin https://github.com/ktorio/ktor
kotlin https://github.com/liujingxing/rxhttp
kotlin https://github.com/lottie-react-native/lottie-react-native
kotlin https://github.com/mikepenz/android-iconics
kotlin https://github.com/mikepenz/materialdrawer
kotlin https://github.com/mobile-dev-inc/maestro
kotlin https://github.com/mockk/mockk
kotlin https://github.com/oracle/helidon
kotlin https://github.com/permissions-dispatcher/permissionsdispatcher
kotlin https://github.com/perwendel/spark
kotlin https://github.com/pinterest/ktlint
kotlin https://github.com/reactivex/rxkotlin
kotlin https://github.com/realm/realm-kotlin
kotlin https://github.com/rikkaapps/shizuku
kotlin https://github.com/sqldelight/sqldelight
kotlin https://github.com/square/leakcanary
kotlin https://github.com/square/moshi
kotlin https://github.com/square/okhttp
kotlin https://github.com/square/okio
kotlin https://github.com/square/picasso
kotlin https://github.com/square/workflow-kotlin
kotlin https://github.com/tapadoo/alerter
kotlin https://github.com/tiann/kernelsu
kotlin https://github.com/touchlab/kermit
kotlin https://github.com/uber/ribs
kotlin https://github.com/wasabeef/recyclerview-animators
kotlin https://github.com/yiiguxing/translationplugin
kotlin https://github.com/zetbaitsu/compressor
kotlin https://github.com/zhanghai/materialfiles
lua https://github.com/apache/incubator-apisix
lua https://github.com/kong/kong
lua https://github.com/nodemcu/nodemcu-firmware
objectivec https://github.com/afnetworking/afnetworking
objectivec https://github.com/bang590/jspatch
objectivec https://github.com/blockskit/blockskit
objectivec https://github.com/bradlarson/gpuimage
objectivec https://github.com/ccgus/fmdb
objectivec https://github.com/cocoalumberjack/cocoalumberjack
objectivec https://github.com/cocoanetics/dtcoretext
objectivec https://github.com/codermjlee/mjextension
objectivec https://github.com/codermjlee/mjrefresh
objectivec https://github.com/dzenbot/dznemptydataset
objectivec https://github.com/facebookarchive/kvocontroller
objectivec https://github.com/facebookarchive/shimmer
objectivec https://github.com/facebookarchive/three20
objectivec https://github.com/facebookincubator/socketrocket
objectivec https://github.com/flipboard/flanimatedimage
objectivec https://github.com/forkingdog/uitableview-fdtemplatelayoutcell
objectivec https://github.com/grouper/flatuikit
objectivec https://github.com/ibireme/yykit
objectivec https://github.com/ibireme/yytext
objectivec https://github.com/ifttt/jazzhands
objectivec https://github.com/instagram/iglistkit
objectivec https://github.com/ivpusic/react-native-image-crop-picker
objectivec https://github.com/jdg/mbprogresshud
objectivec https://github.com/jessesquires/jsqmessagesviewcontroller
objectivec https://github.com/johnezang/jsonkit
objectivec https://github.com/jsonmodel/jsonmodel
objectivec https://github.com/jverdi/jvfloatlabeledtextfield
objectivec https://github.com/jverkoey/nimbus
objectivec https://github.com/kanyun-inc/ytknetwork
objectivec https://github.com/kevinzhow/pnchart
objectivec https://github.com/kif-framework/kif
objectivec https://github.com/magicalpanda/magicalrecord
objectivec https://github.com/mamaral/onboard
objectivec https://github.com/mantle/mantle
objectivec https://github.com/marcuswestin/webviewjavascriptbridge
objectivec https://github.com/matthewyork/datetools
objectivec https://github.com/mortimergoro/mgswipetablecell
objectivec https://github.com/mutualmobile/mmdrawercontroller
objectivec https://github.com/mwaterfall/mwphotobrowser
objectivec https://github.com/nicklockwood/icarousel
objectivec https://github.com/nst/ios-runtime-headers
objectivec https://github.com/path/fastimagecache
objectivec https://github.com/purelayout/purelayout
objectivec https://github.com/react-native-maps/react-native-maps
objectivec https://github.com/realm/realm-swift
objectivec https://github.com/restkit/restkit
objectivec https://github.com/robbiehanson/cocoaasyncsocket
objectivec https://github.com/robbiehanson/xmppframework
objectivec https://github.com/romaonthego/residemenu
objectivec https://github.com/sdwebimage/sdwebimage
objectivec https://github.com/slackhq/slacktextviewcontroller
objectivec https://github.com/sparkle-project/sparkle
objectivec https://github.com/steipete/aspects
objectivec https://github.com/svprogresshud/svprogresshud
objectivec https://github.com/swisspol/gcdwebserver
objectivec https://github.com/tonymillion/reachability
objectivec https://github.com/tttattributedlabel/tttattributedlabel
objectivec https://github.com/vicc/chameleon
objectivec https://github.com/wenchaod/fscalendar
php https://github.com/bagisto/bagisto
php https://github.com/barryvdh/laravel-debugbar
php https://github.com/bcit-ci/codeigniter
php https://github.com/bcosca/fatfree
php https://github.com/blueimp/jquery-file-upload
php https://github.com/bookstackapp/bookstack
php https://github.com/briannesbitt/carbon
php https://github.com/cachethq/cachet
php https://github.com/cakephp/cakephp
php https://github.com/codeigniter4/codeigniter4
php https://github.com/coollabsio/coolify
php https://github.com/dingo/api
php https://github.com/doctrine/dbal
php https://github.com/doctrine/inflector
php https://github.com/doctrine/instantiator
php https://github.com/doctrine/lexer
php https://github.com/doctrine/orm
php https://github.com/dompdf/dompdf
php https://github.com/drupal/core
php https://github.com/drupal/drupal
php https://github.com/egulias/emailvalidator
php https://github.com/elastic/elasticsearch-php
php https://github.com/erusev/parsedown
php https://github.com/filamentphp/filament
php https://github.com/filp/whoops
php https://github.com/firefly-iii/firefly-iii
php https://github.com/flarum/flarum
php https://github.com/freshrss/freshrss
php https://github.com/friendsofphp/goutte
php https://github.com/fzaninotto/faker
php https://github.com/getgrav/grav
php https://github.com/getsentry/sentry-php
php https://github.com/googleapis/google-api-php-client
php https://github.com/guzzle/guzzle
php https://github.com/intervention/image
php https://github.com/joomla/joomla-cms
php https://github.com/koel/koel
php https://github.com/laminas/laminas-mvc
php https://github.com/laravel/framework
php https://github.com/laravel/laravel
php https://github.com/laravel-backpack/crud
php https://github.com/librespeed/speedtest
php https://github.com/livewire/livewire
php https://github.com/magento/magento2
php https://github.com/matomo-org/matomo
php https://github.com/mockery/mockery
php https://github.com/monicahq/monica
php https://github.com/mtdowling/cron-expression
php https://github.com/myclabs/deepcopy
php https://github.com/nextcloud/server
php https://github.com/nikic/fastroute
php https://github.com/nikic/php-parser
php https://github.com/octobercms/october
php https://github.com/owncloud/core
php https://github.com/parse-community/parse-server
php https://github.com/pestphp/pest
php https://github.com/phacility/phabricator
php https://github.com/phalcon/cphalcon
php https://github.com/phan/phan
php https://github.com/phpdocumentor/reflectioncommon
php https://github.com/phpdocumentor/typeresolver
php https://github.com/php-fig/container
php https://github.com/php-fig/log
php https://github.com/phpmailer/phpmailer
php https://github.com/phpoffice/phpexcel
php https://github.com/phpoffice/phppresentation
php https://github.com/phpoffice/phpspreadsheet
php https://github.com/prestashop/prestashop
php https://github.com/ramsey/uuid
php https://github.com/reactphp/reactphp
php https://github.com/roots/sage
php https://github.com/seldaek/monolog
php https://github.com/serbanghita/mobile-detect
php https://github.com/slimphp/slim
php https://github.com/snipe/snipe-it
php https://github.com/spartnernl/laravel-excel
php https://github.com/spatie/laravel-permission
php https://github.com/swiftmailer/swiftmailer
php https://github.com/symfony/console
php https://github.com/symfony/finder
php https://github.com/symfony/symfony
php https://github.com/symfonycasts/reset-password-bundle
php https://github.com/thealgorithms/php
php https://github.com/thedevdojo/voyager
php https://github.com/thephpleague/flysystem
php https://github.com/tymondesigns/jwt-auth
php https://github.com/typecho/typecho
php https://github.com/uvdesk/community-skeleton
php https://github.com/vlucas/phpdotenv
php https://github.com/walkor/workerman
php https://github.com/wallabag/wallabag
php https://github.com/woocommerce/woocommerce
php https://github.com/wordpress/wordpress
php https://github.com/yiisoft/yii2
php https://github.com/yourls/yourls
php https://github.com/z-song/laravel-admin
python https://github.com/3b1b/manim
python https://github.com/abi/screenshot-to-code
python https://github.com/ansible/ansible
python https://github.com/apache/airflow
python https://github.com/borgbackup/borg
python https://github.com/bottlepy/bottle
python https://github.com/celery/celery
python https://github.com/cocos2d/cocos2d-x
python https://github.com/comfyanonymous/comfyui
python https://github.com/commaai/openpilot
python https://github.com/coqui-ai/tts
python https://github.com/davidsandberg/facenet
python https://github.com/django/django
python https://github.com/dmlc/dgl
python https://github.com/dmlc/gluon-cv
python https://github.com/dmlc/xgboost
python https://github.com/encode/django-rest-framework
python https://github.com/fabric/fabric
python https://github.com/fastapi/fastapi
python https://github.com/freedombox/freedombox
python https://github.com/getredash/redash
python https://github.com/getsentry/sentry
python https://github.com/google/jax
python https://github.com/gradio-app/gradio
python https://github.com/graphite-project/graphite-web
python https://github.com/home-assistant/core
python https://github.com/httpie/cli
python https://github.com/keras-team/keras
python https://github.com/lllyasviel/fooocus
python https://github.com/locustio/locust
python https://github.com/matrix-org/synapse
python https://github.com/mesonbuild/meson
python https://github.com/mingrammer/diagrams
python https://github.com/misp/misp
python https://github.com/mitmproxy/mitmproxy
python https://github.com/mopidy/mopidy
python https://github.com/mozilla/addons-server
python https://github.com/nvlabs/stylegan
python https://github.com/odoo/odoo
python https://github.com/openai/gym
python https://github.com/opencv/opencv-python
python https://github.com/openinterpreter/open-interpreter
python https://github.com/pallets/click
python https://github.com/pallets/flask
python https://github.com/pallets/jinja
python https://github.com/pandas-dev/pandas
python https://github.com/paramiko/paramiko
python https://github.com/plotly/dash
python https://github.com/prefecthq/prefect
python https://github.com/psf/requests
python https://github.com/pypa/pipenv
python https://github.com/python-telegram-bot/python-telegram-bot
python https://github.com/pytorch/pytorch
python https://github.com/quivrhq/quivr
python https://github.com/ray-project/ray
python https://github.com/saltstack/salt
python https://github.com/searxng/searxng
python https://github.com/sqlalchemy/sqlalchemy
python https://github.com/sshwsfc/xadmin
python https://github.com/streamlit/streamlit
python https://github.com/stripe/stripe-python
python https://github.com/tensorflow/tensorflow
python https://github.com/textualize/rich
python https://github.com/tornadoweb/tornado
python https://github.com/ultralytics/yolov5
python https://github.com/urllib3/urllib3
ruby https://github.com/activeadmin/activeadmin
ruby https://github.com/activemerchant/active_merchant
ruby https://github.com/activerecord-hackery/ransack
ruby https://github.com/alexreisner/geocoder
ruby https://github.com/ankane/chartkick
ruby https://github.com/ankane/pghero
ruby https://github.com/ankane/searchkick
ruby https://github.com/basecamp/kamal
ruby https://github.com/bettererrors/better_errors
ruby https://github.com/bkeepers/dotenv
ruby https://github.com/capistrano/capistrano
ruby https://github.com/carrierwaveuploader/carrierwave
ruby https://github.com/chatwoot/chatwoot
ruby https://github.com/chef/chef
ruby https://github.com/cocoapods/cocoapods
ruby https://github.com/collectiveidea/delayed_job
ruby https://github.com/cucumber/cucumber-ruby
ruby https://github.com/ddollar/foreman
ruby https://github.com/diaspora/diaspora
ruby https://github.com/discourse/discourse
ruby https://github.com/docusealco/docuseal
ruby https://github.com/drapergem/draper
ruby https://github.com/faker-ruby/faker
ruby https://github.com/fastlane/fastlane
ruby https://github.com/fluent/fluentd
ruby https://github.com/flyerhzm/bullet
ruby https://github.com/forem/forem
ruby https://github.com/github/markup
ruby https://github.com/github/scientist
ruby https://github.com/gitlabhq/gitlabhq
ruby https://github.com/gollum/gollum
ruby https://github.com/guard/guard
ruby https://github.com/hanami/hanami
ruby https://github.com/heartcombo/devise
ruby https://github.com/heartcombo/simple_form
ruby https://github.com/homebrew/homebrew-cask
ruby https://github.com/homebrew/homebrew-core
ruby https://github.com/huginn/huginn
ruby https://github.com/imathis/octopress
ruby https://github.com/javan/whenever
ruby https://github.com/jekyll/jekyll
ruby https://github.com/jeremyevans/sequel
ruby https://github.com/jnunemaker/httparty
ruby https://github.com/jordansissel/fpm
ruby https://github.com/kaminari/kaminari
ruby https://github.com/kkuchta/css-only-chat
ruby https://github.com/lewagon/setup
ruby https://github.com/lostisland/faraday
ruby https://github.com/mame/quine-relay
ruby https://github.com/mastodon/mastodon
ruby https://github.com/maybe-finance/maybe
ruby https://github.com/middleman/middleman
ruby https://github.com/mikel/mail
ruby https://github.com/mislav/will_paginate
ruby https://github.com/norman/friendly_id
ruby https://github.com/omniauth/omniauth
ruby https://github.com/opf/openproject
ruby https://github.com/paper-trail-gem/paper_trail
ruby https://github.com/postalserver/postal
ruby https://github.com/presidentbeef/brakeman
ruby https://github.com/progit/progit
ruby https://github.com/puma/puma
ruby https://github.com/puppetlabs/puppet
ruby https://github.com/rails/rails
ruby https://github.com/railsadminteam/rails_admin
ruby https://github.com/rails-api/active_model_serializers
ruby https://github.com/realm/jazzy
ruby https://github.com/resque/resque
ruby https://github.com/rpush/rpush
ruby https://github.com/rubocop/rubocop
ruby https://github.com/ruby-concurrency/concurrent-ruby
ruby https://github.com/rubygems/rubygems
ruby https://github.com/ruby-grape/grape
ruby https://github.com/ryanb/cancan
ruby https://github.com/shakacode/react_on_rails
ruby https://github.com/shopify/liquid
ruby https://github.com/sidekiq/sidekiq
ruby https://github.com/simplecov-ruby/simplecov
ruby https://github.com/sinatra/sinatra
ruby https://github.com/sj26/mailcatcher
ruby https://github.com/skwp/dotfiles
ruby https://github.com/spree/spree
ruby https://github.com/teamcapybara/capybara
ruby https://github.com/theforeman/foreman
ruby https://github.com/thoughtbot/bourbon
ruby https://github.com/thoughtbot/factory_bot
ruby https://github.com/thoughtbot/paperclip
ruby https://github.com/tmuxinator/tmuxinator
ruby https://github.com/toptal/chewy
ruby https://github.com/typhoeus/typhoeus
ruby https://github.com/varvet/pundit
ruby https://github.com/vcr/vcr
rust https://github.com/actix/actix-web
rust https://github.com/alacritty/alacritty
rust https://github.com/bevyengine/bevy
rust https://github.com/burntsushi/ripgrep
rust https://github.com/bytecodealliance/wasmtime
rust https://github.com/chroma-core/chroma
rust https://github.com/clap-rs/clap
rust https://github.com/cloudflare/pingora
rust https://github.com/crossbeam-rs/crossbeam
rust https://github.com/cube-js/cube
rust https://github.com/dalance/procs
rust https://github.com/dani-garcia/vaultwarden
rust https://github.com/denoland/deno
rust https://github.com/diem/diem
rust https://github.com/diesel-rs/diesel
rust https://github.com/dioxuslabs/dioxus
rust https://github.com/emilk/egui
rust https://github.com/facebook/relay
rust https://github.com/firecracker-microvm/firecracker
rust https://github.com/fuellabs/fuel-core
rust https://github.com/fuellabs/fuels-rs
rust https://github.com/fuellabs/sway
rust https://github.com/gfx-rs/gfx
rust https://github.com/gleam-lang/gleam
rust https://github.com/habitat-sh/habitat
rust https://github.com/higherorderco/bend
rust https://github.com/huggingface/candle
rust https://github.com/hyperium/hyper
rust https://github.com/iced-rs/iced
rust https://github.com/influxdata/influxdb
rust https://github.com/kata-containers/kata-containers
rust https://github.com/kitao/pyxel
rust https://github.com/lemmynet/lemmy
rust https://github.com/leptos-rs/leptos
rust https://github.com/lettre/lettre
rust https://github.com/librespot-org/librespot
rust https://github.com/meilisearch/meilisearch
rust https://github.com/mimblewimble/grin
rust https://github.com/neondatabase/neon
rust https://github.com/nushell/nushell
rust https://github.com/pistondevelopers/piston
rust https://github.com/pola-rs/polars
rust https://github.com/pyros2097/rust-embed
rust https://github.com/qdrant/qdrant
rust https://github.com/rayon-rs/rayon
rust https://github.com/rg3dengine/rg3d
rust https://github.com/ruffle-rs/ruffle
rust https://github.com/rust-analyzer/rust-analyzer
rust https://github.com/rust-lang/cargo
rust https://github.com/rust-lang/mdbook
rust https://github.com/rwf2/rocket
rust https://github.com/seanmonstar/warp
rust https://github.com/serde-rs/serde
rust https://github.com/sergiobenitez/rocket
rust https://github.com/servo/servo
rust https://github.com/sharkdp/bat
rust https://github.com/sharkdp/fd
rust https://github.com/simd-lite/simd-json
rust https://github.com/slint-ui/slint
rust https://github.com/solana-labs/solana
rust https://github.com/starship/starship
rust https://github.com/surrealdb/surrealdb
rust https://github.com/swc-project/swc
rust https://github.com/tauri-apps/tauri
rust https://github.com/tikv/tikv
rust https://github.com/timberio/vector
rust https://github.com/tokio-rs/axum
rust https://github.com/tokio-rs/tokio
rust https://github.com/tree-sitter/tree-sitter
rust https://github.com/typst/typst
rust https://github.com/valeriansaliou/sonic
rust https://github.com/vectordotdev/vector
rust https://github.com/vercel/turborepo
rust https://github.com/wasmerio/wasmer
rust https://github.com/yewstack/yew
scala https://github.com/apache/spark
shell https://github.com/pi-hole/pi-hole
swift https://github.com/alamofire/alamofire
swift https://github.com/ashleymills/reachability.swift
swift https://github.com/daltoniam/starscream
swift https://github.com/devxoul/then
swift https://github.com/flexmonkey/blurable
swift https://github.com/hackiftekhar/iqkeyboardmanager
swift https://github.com/herotransitions/hero
swift https://github.com/hyperoslo/cache
swift https://github.com/johnlui/swift-on-ios
swift https://github.com/krzysztofzablocki/sourcery
swift https://github.com/krzyzanowskim/cryptoswift
swift https://github.com/mac-cain13/r.swift
swift https://github.com/mengto/spring
swift https://github.com/moya/moya
swift https://github.com/onevcat/fengniao
swift https://github.com/onevcat/kingfisher
swift https://github.com/quick/nimble
swift https://github.com/quick/quick
swift https://github.com/ra1028/differencekit
swift https://github.com/reactivex/rxswift
swift https://github.com/realm/realm-cocoa
swift https://github.com/robb/cartography
swift https://github.com/rxswiftcommunity/rxalamofire
swift https://github.com/rxswiftcommunity/rxdatasources
swift https://github.com/scalessec/toast-swift
swift https://github.com/snapkit/masonry
swift https://github.com/snapkit/snapkit
swift https://github.com/swiftgen/swiftgen
swift https://github.com/swiftybeaver/swiftybeaver
swift https://github.com/swiftyjson/swiftyjson
swift https://github.com/tuist/tuist
swift https://github.com/vapor/vapor
typescript https://github.com/akveo/ngx-admin
typescript https://github.com/angular/angular
typescript https://github.com/ant-design/ant-design
typescript https://github.com/ant-design/ant-design-pro
typescript https://github.com/apollographql/apollo-client
typescript https://github.com/aws/aws-cdk
typescript https://github.com/definitelytyped/definitelytyped
typescript https://github.com/facebook/jest