generated from golang-templates/seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepository.json
4147 lines (4147 loc) · 124 KB
/
repository.json
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
[
{
"Name": "shadowsocks-manager",
"NameWithOwner": "shadowsocks/shadowsocks-manager",
"Description": "A shadowsocks manager tool for multi user and traffic control",
"Url": "https://github.com/shadowsocks/shadowsocks-manager",
"StargazerCount": 4119,
"ForkCount": 1521,
"UpdatedAt": "2025-04-23T21:15:52Z",
"CreatedAt": "2014-11-14T14:47:01Z",
"PushedAt": "2024-02-24T14:33:24Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"HTML",
"CSS"
]
},
{
"Name": "mytv-android",
"NameWithOwner": "yaoxieyoulei/mytv-android",
"Description": "使用Android原生开发的视频播放软件",
"Url": "https://github.com/yaoxieyoulei/mytv-android",
"StargazerCount": 65,
"ForkCount": 13,
"UpdatedAt": "2025-04-23T05:35:37Z",
"CreatedAt": "2024-04-10T12:35:58Z",
"PushedAt": "2025-04-10T06:50:23Z",
"IsArchived": false,
"Languages": [
"Kotlin",
"HTML"
]
},
{
"Name": "deploy",
"NameWithOwner": "Aurora-Admin-Panel/deploy",
"Description": "一个多服务器端口租用管理面板",
"Url": "https://github.com/Aurora-Admin-Panel/deploy",
"StargazerCount": 1759,
"ForkCount": 479,
"UpdatedAt": "2025-04-23T06:02:49Z",
"CreatedAt": "2020-11-26T00:43:44Z",
"PushedAt": "2025-01-06T16:06:40Z",
"IsArchived": false,
"Languages": [
"Shell"
]
},
{
"Name": "live",
"NameWithOwner": "fanmingming/live",
"Description": "可直连访问的电视/广播图标库与相关工具项目 ✯ 🔕 永久免费 直连访问 完整开源 不断完善的台标 支持IPv4/IPv6双栈访问",
"Url": "https://github.com/fanmingming/live",
"StargazerCount": 25367,
"ForkCount": 3862,
"UpdatedAt": "2025-04-24T00:36:47Z",
"CreatedAt": "2022-11-16T18:03:31Z",
"PushedAt": "2025-04-24T00:36:43Z",
"IsArchived": false,
"Languages": [
"HTML",
"JavaScript"
]
},
{
"Name": "LocalAI",
"NameWithOwner": "mudler/LocalAI",
"Description": "robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-grade hardware. No GPU required. Runs gguf, transformers, diffusers and many more models architectures. Features: Generate Text, Audio, Video, Images, Voice Cloning, Distributed, P2P inference",
"Url": "https://github.com/mudler/LocalAI",
"StargazerCount": 32013,
"ForkCount": 2439,
"UpdatedAt": "2025-04-23T23:42:15Z",
"CreatedAt": "2023-03-18T22:58:02Z",
"PushedAt": "2025-04-23T07:13:49Z",
"IsArchived": false,
"Languages": [
"Earthly",
"Go",
"Dockerfile"
]
},
{
"Name": "opengist",
"NameWithOwner": "thomiceli/opengist",
"Description": "Self-hosted pastebin powered by Git, open-source alternative to Github Gist",
"Url": "https://github.com/thomiceli/opengist",
"StargazerCount": 2240,
"ForkCount": 122,
"UpdatedAt": "2025-04-23T21:10:28Z",
"CreatedAt": "2023-04-10T20:58:35Z",
"PushedAt": "2025-04-16T16:36:21Z",
"IsArchived": false,
"Languages": [
"Dockerfile",
"Makefile",
"Go"
]
},
{
"Name": "anisette-v3-server",
"NameWithOwner": "Dadoum/anisette-v3-server",
"Description": "sidestore's anisette-v3 compatible server",
"Url": "https://github.com/Dadoum/anisette-v3-server",
"StargazerCount": 276,
"ForkCount": 1597,
"UpdatedAt": "2025-04-23T14:34:28Z",
"CreatedAt": "2023-04-30T23:23:34Z",
"PushedAt": "2025-04-13T23:11:34Z",
"IsArchived": false,
"Languages": [
"D",
"Dockerfile"
]
},
{
"Name": "SideStore",
"NameWithOwner": "SideStore/SideStore",
"Description": "SideStore is a fork of AltStore that doesn't require an AltServer",
"Url": "https://github.com/SideStore/SideStore",
"StargazerCount": 3192,
"ForkCount": 225,
"UpdatedAt": "2025-04-23T12:15:26Z",
"CreatedAt": "2022-05-06T20:49:30Z",
"PushedAt": "2025-04-20T01:03:24Z",
"IsArchived": false,
"Languages": [
"Swift",
"Objective-C",
"Shell"
]
},
{
"Name": "wiliwili",
"NameWithOwner": "xfangfang/wiliwili",
"Description": "第三方B站客户端,目前可以运行在PC全平台、PSVita、PS4 、Xbox 和 Nintendo Switch上",
"Url": "https://github.com/xfangfang/wiliwili",
"StargazerCount": 3909,
"ForkCount": 172,
"UpdatedAt": "2025-04-23T12:58:22Z",
"CreatedAt": "2021-01-17T09:27:58Z",
"PushedAt": "2025-04-23T16:24:44Z",
"IsArchived": false,
"Languages": [
"CMake",
"C++",
"Shell"
]
},
{
"Name": "tailwindcss",
"NameWithOwner": "tailwindlabs/tailwindcss",
"Description": "A utility-first CSS framework for rapid UI development",
"Url": "https://github.com/tailwindlabs/tailwindcss",
"StargazerCount": 87329,
"ForkCount": 4496,
"UpdatedAt": "2025-04-24T00:33:14Z",
"CreatedAt": "2017-10-06T14:59:14Z",
"PushedAt": "2025-04-23T22:08:45Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"CSS",
"HTML"
]
},
{
"Name": "LibreTV",
"NameWithOwner": "LibreSpark/LibreTV",
"Description": "一分钟搭建影视站,支持Vercel/Docker等部署方式",
"Url": "https://github.com/LibreSpark/LibreTV",
"StargazerCount": 2171,
"ForkCount": 1699,
"UpdatedAt": "2025-04-23T18:52:19Z",
"CreatedAt": "2025-04-06T10:52:08Z",
"PushedAt": "2025-04-23T16:39:59Z",
"IsArchived": false,
"Languages": [
"CSS",
"HTML",
"JavaScript"
]
},
{
"Name": "Suwayomi-Server",
"NameWithOwner": "Suwayomi/Suwayomi-Server",
"Description": "A rewrite of Tachiyomi for the Desktop",
"Url": "https://github.com/Suwayomi/Suwayomi-Server",
"StargazerCount": 4891,
"ForkCount": 233,
"UpdatedAt": "2025-04-23T21:58:35Z",
"CreatedAt": "2020-12-23T20:31:38Z",
"PushedAt": "2025-04-21T23:04:35Z",
"IsArchived": false,
"Languages": [
"Kotlin",
"Java",
"HTML"
]
},
{
"Name": "extensions",
"NameWithOwner": "keiyoushi/extensions",
"Description": "Extension repository for Mihon and variants",
"Url": "https://github.com/keiyoushi/extensions",
"StargazerCount": 10348,
"ForkCount": 788,
"UpdatedAt": "2025-04-24T00:36:07Z",
"CreatedAt": "2024-01-08T23:17:13Z",
"PushedAt": "2025-04-21T12:13:26Z",
"IsArchived": false,
"Languages": [
"HTML"
]
},
{
"Name": "ofelia",
"NameWithOwner": "mcuadros/ofelia",
"Description": "A docker job scheduler (aka. crontab for docker",
"Url": "https://github.com/mcuadros/ofelia",
"StargazerCount": 3315,
"ForkCount": 190,
"UpdatedAt": "2025-04-23T09:16:06Z",
"CreatedAt": "2015-09-29T09:02:06Z",
"PushedAt": "2025-04-19T19:16:40Z",
"IsArchived": false,
"Languages": [
"Go",
"Makefile",
"Dockerfile"
]
},
{
"Name": "calibre-web",
"NameWithOwner": "janeczku/calibre-web",
"Description": "books: Web app for browsing, reading and downloading eBooks stored in a Calibre database",
"Url": "https://github.com/janeczku/calibre-web",
"StargazerCount": 14420,
"ForkCount": 1522,
"UpdatedAt": "2025-04-23T23:57:53Z",
"CreatedAt": "2015-08-02T19:01:42Z",
"PushedAt": "2025-03-30T13:56:03Z",
"IsArchived": false,
"Languages": [
"Python",
"CSS",
"JavaScript"
]
},
{
"Name": "komga",
"NameWithOwner": "gotson/komga",
"Description": "Media server for comics/mangas/BDs/magazines/eBooks with API, OPDS, Kobo Sync and KOReader Sync support",
"Url": "https://github.com/gotson/komga",
"StargazerCount": 4756,
"ForkCount": 284,
"UpdatedAt": "2025-04-23T12:57:29Z",
"CreatedAt": "2019-08-08T09:48:49Z",
"PushedAt": "2025-04-17T01:26:33Z",
"IsArchived": false,
"Languages": [
"Kotlin",
"JavaScript",
"HTML"
]
},
{
"Name": "onenav",
"NameWithOwner": "helloxz/onenav",
"Description": "使用PHP + SQLite 3开发的书签管理系统,将浏览器书签集中式管理,做到一处部署,随处访问",
"Url": "https://github.com/helloxz/onenav",
"StargazerCount": 2671,
"ForkCount": 482,
"UpdatedAt": "2025-04-23T20:01:23Z",
"CreatedAt": "2020-12-13T07:11:58Z",
"PushedAt": "2025-03-25T11:00:04Z",
"IsArchived": false,
"Languages": [
"PHP",
"HTML",
"Hack"
]
},
{
"Name": "navidrome",
"NameWithOwner": "navidrome/navidrome",
"Description": "Your Personal Streaming Service",
"Url": "https://github.com/navidrome/navidrome",
"StargazerCount": 14206,
"ForkCount": 1041,
"UpdatedAt": "2025-04-23T21:27:18Z",
"CreatedAt": "2016-02-24T23:25:12Z",
"PushedAt": "2025-04-23T10:07:34Z",
"IsArchived": false,
"Languages": [
"Go",
"Shell",
"Makefile"
]
},
{
"Name": "music-tag-web",
"NameWithOwner": "xhongc/music-tag-web",
"Description": "音乐标签编辑器,可编辑本地音乐文件的元数据(Editable local music file metadata",
"Url": "https://github.com/xhongc/music-tag-web",
"StargazerCount": 3712,
"ForkCount": 251,
"UpdatedAt": "2025-04-23T15:12:41Z",
"CreatedAt": "2023-03-11T07:24:17Z",
"PushedAt": "2025-04-18T09:42:05Z",
"IsArchived": false,
"Languages": [
"Python",
"Dockerfile",
"HTML"
]
},
{
"Name": "darktable",
"NameWithOwner": "darktable-org/darktable",
"Description": "darktable is an open source photography workflow application and raw developer",
"Url": "https://github.com/darktable-org/darktable",
"StargazerCount": 10670,
"ForkCount": 1181,
"UpdatedAt": "2025-04-23T21:17:27Z",
"CreatedAt": "2012-03-21T21:53:04Z",
"PushedAt": "2025-04-24T00:44:02Z",
"IsArchived": false,
"Languages": [
"Emacs Lisp",
"CMake",
"Shell"
]
},
{
"Name": "AdobeGenp",
"NameWithOwner": "wangzhenjjcn/AdobeGenp",
"Description": "AdobeGenp Adobe Adobe CC 2019/2020(2021/2022/2023/2024/2025TEST) GenP Universal Patch",
"Url": "https://github.com/wangzhenjjcn/AdobeGenp",
"StargazerCount": 3778,
"ForkCount": 218,
"UpdatedAt": "2025-04-24T01:08:13Z",
"CreatedAt": "2023-10-27T20:53:24Z",
"PushedAt": "2025-04-20T06:28:29Z",
"IsArchived": false,
"Languages": [
"Roff"
]
},
{
"Name": "caddy",
"NameWithOwner": "caddyserver/caddy",
"Description": "Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS",
"Url": "https://github.com/caddyserver/caddy",
"StargazerCount": 63759,
"ForkCount": 4267,
"UpdatedAt": "2025-04-23T23:43:36Z",
"CreatedAt": "2015-01-13T19:45:03Z",
"PushedAt": "2025-04-22T00:32:57Z",
"IsArchived": false,
"Languages": [
"Go",
"Shell",
"HTML"
]
},
{
"Name": "windhawk",
"NameWithOwner": "ramensoftware/windhawk",
"Description": "The customization marketplace for Windows programs: https://windhawk.net",
"Url": "https://github.com/ramensoftware/windhawk",
"StargazerCount": 3445,
"ForkCount": 95,
"UpdatedAt": "2025-04-23T23:51:41Z",
"CreatedAt": "2022-01-15T11:51:37Z",
"PushedAt": "2024-10-02T10:52:44Z",
"IsArchived": false,
"Languages": [
"TypeScript",
"CSS",
"Less"
]
},
{
"Name": "go-licenses",
"NameWithOwner": "google/go-licenses",
"Description": "A lightweight tool to report on the licenses used by a Go package and its dependencies. Highlight! Versioned external URL to licenses can be found at the same time",
"Url": "https://github.com/google/go-licenses",
"StargazerCount": 890,
"ForkCount": 127,
"UpdatedAt": "2025-04-13T12:05:56Z",
"CreatedAt": "2019-11-12T10:37:11Z",
"PushedAt": "2025-04-07T19:22:23Z",
"IsArchived": false,
"Languages": [
"Go",
"Dockerfile",
"Makefile"
]
},
{
"Name": "zap",
"NameWithOwner": "uber-go/zap",
"Description": "Blazing fast, structured, leveled logging in Go",
"Url": "https://github.com/uber-go/zap",
"StargazerCount": 22934,
"ForkCount": 1473,
"UpdatedAt": "2025-04-23T22:15:05Z",
"CreatedAt": "2016-02-18T19:52:56Z",
"PushedAt": "2025-03-24T17:13:34Z",
"IsArchived": false,
"Languages": [
"Makefile",
"Go",
"Shell"
]
},
{
"Name": "fd",
"NameWithOwner": "sharkdp/fd",
"Description": "A simple, fast and user-friendly alternative to 'find",
"Url": "https://github.com/sharkdp/fd",
"StargazerCount": 37626,
"ForkCount": 868,
"UpdatedAt": "2025-04-24T00:56:59Z",
"CreatedAt": "2017-05-09T21:27:10Z",
"PushedAt": "2025-04-02T14:01:41Z",
"IsArchived": false,
"Languages": [
"Rust",
"Shell",
"Makefile"
]
},
{
"Name": "modern-go-application",
"NameWithOwner": "sagikazarmark/modern-go-application",
"Description": "Modern Go Application example",
"Url": "https://github.com/sagikazarmark/modern-go-application",
"StargazerCount": 1902,
"ForkCount": 178,
"UpdatedAt": "2025-04-23T18:28:01Z",
"CreatedAt": "2018-09-14T12:19:02Z",
"PushedAt": "2024-11-01T10:29:52Z",
"IsArchived": false,
"Languages": [
"Dockerfile",
"Makefile",
"Go"
]
},
{
"Name": "zerolog",
"NameWithOwner": "rs/zerolog",
"Description": "Zero Allocation JSON Logger",
"Url": "https://github.com/rs/zerolog",
"StargazerCount": 11286,
"ForkCount": 588,
"UpdatedAt": "2025-04-23T20:07:54Z",
"CreatedAt": "2017-05-12T05:24:39Z",
"PushedAt": "2025-04-18T11:14:43Z",
"IsArchived": false,
"Languages": [
"Go",
"Makefile"
]
},
{
"Name": "gofumpt",
"NameWithOwner": "mvdan/gofumpt",
"Description": "A stricter gofmt",
"Url": "https://github.com/mvdan/gofumpt",
"StargazerCount": 3541,
"ForkCount": 114,
"UpdatedAt": "2025-04-23T19:49:35Z",
"CreatedAt": "2019-03-31T01:17:51Z",
"PushedAt": "2025-04-21T18:43:47Z",
"IsArchived": false,
"Languages": [
"Go"
]
},
{
"Name": "wire",
"NameWithOwner": "google/wire",
"Description": "Compile-time Dependency Injection for Go",
"Url": "https://github.com/google/wire",
"StargazerCount": 13640,
"ForkCount": 637,
"UpdatedAt": "2025-04-23T16:57:18Z",
"CreatedAt": "2018-11-28T17:34:51Z",
"PushedAt": "2024-07-24T00:27:16Z",
"IsArchived": false,
"Languages": [
"Go",
"Shell"
]
},
{
"Name": "svelte",
"NameWithOwner": "sveltejs/svelte",
"Description": "web development for the rest of us",
"Url": "https://github.com/sveltejs/svelte",
"StargazerCount": 82348,
"ForkCount": 4483,
"UpdatedAt": "2025-04-24T01:00:57Z",
"CreatedAt": "2016-11-20T18:13:05Z",
"PushedAt": "2025-04-23T18:15:50Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"TypeScript",
"Svelte"
]
},
{
"Name": "release-please",
"NameWithOwner": "googleapis/release-please",
"Description": "generate release PRs based on the conventionalcommits.org spec",
"Url": "https://github.com/googleapis/release-please",
"StargazerCount": 5386,
"ForkCount": 404,
"UpdatedAt": "2025-04-23T16:02:56Z",
"CreatedAt": "2019-04-25T19:44:03Z",
"PushedAt": "2025-03-11T18:18:32Z",
"IsArchived": false,
"Languages": [
"TypeScript",
"JavaScript",
"Python"
]
},
{
"Name": "orion-visor",
"NameWithOwner": "dromara/orion-visor",
"Description": "一款高颜值、现代化的自动化运维及轻量堡垒机,提供服务器智能运维解决方案。支持资产管理分组、SSH SFTP 终端、文件上传下载、文件在线编辑、命令批量执行、多主机文件分发、cron 表达式配置计划任务,安全保障等。该项目是由 java 实现, 前端使用 vue + arco, 后端使用 springboot, 支持 docker 部署的服务器运维, linux windows 系统运维平台",
"Url": "https://github.com/dromara/orion-visor",
"StargazerCount": 756,
"ForkCount": 116,
"UpdatedAt": "2025-04-23T08:56:31Z",
"CreatedAt": "2023-06-20T08:01:55Z",
"PushedAt": "2025-04-06T13:44:41Z",
"IsArchived": false,
"Languages": [
"Java",
"JavaScript",
"TypeScript"
]
},
{
"Name": "godotenv",
"NameWithOwner": "joho/godotenv",
"Description": "A Go port of Ruby's dotenv library (Loads environment variables from .env files",
"Url": "https://github.com/joho/godotenv",
"StargazerCount": 9095,
"ForkCount": 419,
"UpdatedAt": "2025-04-24T00:33:24Z",
"CreatedAt": "2013-07-30T07:45:19Z",
"PushedAt": "2024-12-16T04:17:10Z",
"IsArchived": false,
"Languages": [
"Go"
]
},
{
"Name": "github-local-actions",
"NameWithOwner": "SanjulaGanepola/github-local-actions",
"Description": "Run your GitHub Actions locally in VS Code",
"Url": "https://github.com/SanjulaGanepola/github-local-actions",
"StargazerCount": 240,
"ForkCount": 10,
"UpdatedAt": "2025-04-24T00:29:17Z",
"CreatedAt": "2024-09-25T00:28:32Z",
"PushedAt": "2025-04-05T21:53:59Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"TypeScript"
]
},
{
"Name": "act",
"NameWithOwner": "nektos/act",
"Description": "Run your GitHub Actions locally",
"Url": "https://github.com/nektos/act",
"StargazerCount": 60108,
"ForkCount": 1528,
"UpdatedAt": "2025-04-23T22:53:42Z",
"CreatedAt": "2019-01-02T19:53:43Z",
"PushedAt": "2025-04-16T23:42:05Z",
"IsArchived": false,
"Languages": [
"Shell",
"Makefile",
"Go"
]
},
{
"Name": "Win11Debloat",
"NameWithOwner": "Raphire/Win11Debloat",
"Description": "A simple, easy to use PowerShell script to remove pre-installed apps from Windows, disable telemetry, remove Bing from Windows search as well as perform various other changes to declutter and improve your Windows experience. This script works for both Windows 10 and Windows 11",
"Url": "https://github.com/Raphire/Win11Debloat",
"StargazerCount": 19011,
"ForkCount": 819,
"UpdatedAt": "2025-04-23T23:21:27Z",
"CreatedAt": "2020-10-27T22:26:59Z",
"PushedAt": "2025-04-19T19:07:46Z",
"IsArchived": false,
"Languages": [
"PowerShell",
"Batchfile"
]
},
{
"Name": "github-issue-templates",
"NameWithOwner": "stevemao/github-issue-templates",
"Description": "A collection of GitHub issue, pull request and security templates",
"Url": "https://github.com/stevemao/github-issue-templates",
"StargazerCount": 4240,
"ForkCount": 5715,
"UpdatedAt": "2025-04-22T12:31:56Z",
"CreatedAt": "2016-03-09T12:16:56Z",
"PushedAt": "2024-03-20T07:11:57Z",
"IsArchived": false,
"Languages": []
},
{
"Name": "gitignore",
"NameWithOwner": "github/gitignore",
"Description": "A collection of useful .gitignore templates",
"Url": "https://github.com/github/gitignore",
"StargazerCount": 165970,
"ForkCount": 83075,
"UpdatedAt": "2025-04-23T23:41:08Z",
"CreatedAt": "2010-11-08T20:17:14Z",
"PushedAt": "2025-04-11T19:53:38Z",
"IsArchived": false,
"Languages": []
},
{
"Name": "commitlint",
"NameWithOwner": "conventional-changelog/commitlint",
"Description": "Lint commit messages",
"Url": "https://github.com/conventional-changelog/commitlint",
"StargazerCount": 17438,
"ForkCount": 933,
"UpdatedAt": "2025-04-23T14:53:47Z",
"CreatedAt": "2016-02-12T08:37:56Z",
"PushedAt": "2025-04-23T16:50:57Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"TypeScript"
]
},
{
"Name": "wails",
"NameWithOwner": "wailsapp/wails",
"Description": "Create beautiful applications using Go",
"Url": "https://github.com/wailsapp/wails",
"StargazerCount": 27926,
"ForkCount": 1354,
"UpdatedAt": "2025-04-24T00:31:56Z",
"CreatedAt": "2018-12-15T23:14:06Z",
"PushedAt": "2025-04-23T22:59:26Z",
"IsArchived": false,
"Languages": [
"Go",
"JavaScript",
"HTML"
]
},
{
"Name": "fyne",
"NameWithOwner": "fyne-io/fyne",
"Description": "Cross platform GUI toolkit in Go inspired by Material Design",
"Url": "https://github.com/fyne-io/fyne",
"StargazerCount": 26283,
"ForkCount": 1431,
"UpdatedAt": "2025-04-23T21:17:16Z",
"CreatedAt": "2018-02-04T22:07:16Z",
"PushedAt": "2025-04-22T19:28:20Z",
"IsArchived": false,
"Languages": [
"Go",
"Objective-C",
"C"
]
},
{
"Name": "qt",
"NameWithOwner": "therecipe/qt",
"Description": "Qt binding for Go (Golang) with support for Windows / macOS / Linux / FreeBSD / Android / iOS / Sailfish OS / Raspberry Pi / AsteroidOS / Ubuntu Touch / JavaScript / WebAssembly",
"Url": "https://github.com/therecipe/qt",
"StargazerCount": 10643,
"ForkCount": 753,
"UpdatedAt": "2025-04-23T02:03:17Z",
"CreatedAt": "2014-11-19T00:03:08Z",
"PushedAt": "2024-03-04T15:58:37Z",
"IsArchived": false,
"Languages": [
"Go",
"C++",
"C"
]
},
{
"Name": "gnet",
"NameWithOwner": "panjf2000/gnet",
"Description": "gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go",
"Url": "https://github.com/panjf2000/gnet",
"StargazerCount": 10427,
"ForkCount": 1060,
"UpdatedAt": "2025-04-23T18:59:32Z",
"CreatedAt": "2019-02-24T03:48:45Z",
"PushedAt": "2025-04-20T13:31:20Z",
"IsArchived": false,
"Languages": [
"Go"
]
},
{
"Name": "WindTerm",
"NameWithOwner": "kingToolbox/WindTerm",
"Description": "A professional cross-platform SSH/Sftp/Shell/Telnet/Tmux/Serial terminal",
"Url": "https://github.com/kingToolbox/WindTerm",
"StargazerCount": 26078,
"ForkCount": 2012,
"UpdatedAt": "2025-04-24T01:09:29Z",
"CreatedAt": "2019-10-09T19:56:09Z",
"PushedAt": "2025-03-11T19:12:09Z",
"IsArchived": false,
"Languages": [
"Shell",
"Makefile",
"C"
]
},
{
"Name": "SerialTest",
"NameWithOwner": "wh201906/SerialTest",
"Description": "Data transceiver(monitor)/realtime plotter/shortcut/file transceiver over serial port/Bluetooth/network on Windows/Linux/Android/macOS | 跨平台串口/蓝牙/网络调试助手,带数据收发/实时绘图/快捷发送/文件收发面板,可在PC和Android设备上使用",
"Url": "https://github.com/wh201906/SerialTest",
"StargazerCount": 1349,
"ForkCount": 242,
"UpdatedAt": "2025-04-23T22:30:30Z",
"CreatedAt": "2020-06-23T11:21:49Z",
"PushedAt": "2024-06-17T11:33:30Z",
"IsArchived": false,
"Languages": [
"QMake",
"C++",
"Java"
]
},
{
"Name": "handsontable",
"NameWithOwner": "handsontable/handsontable",
"Description": "JavaScript Data Grid / Data Table with a Spreadsheet Look \u0026 Feel. Works with React, Angular, and Vue. Supported by the Handsontable team",
"Url": "https://github.com/handsontable/handsontable",
"StargazerCount": 20938,
"ForkCount": 3138,
"UpdatedAt": "2025-04-23T20:16:45Z",
"CreatedAt": "2011-05-23T22:38:58Z",
"PushedAt": "2025-04-23T15:40:27Z",
"IsArchived": false,
"Languages": [
"CSS",
"JavaScript",
"TypeScript"
]
},
{
"Name": "MyIP",
"NameWithOwner": "jason5ng32/MyIP",
"Description": "The best IP Toolbox. Easy to check what's your IPs, IP geolocation, check for DNS leaks, examine WebRTC connections, speed test, ping test, MTR test, check website availability, whois search and more! || 🇨🇳 可能是最好用的IP工具箱。轻松检查你的 IP,IP 地理位置,检查DNS泄漏,检查 WebRTC 连接,速度测试,ping 测试,MTR测试,检查网站可用性,查询 Whois 信息等等",
"Url": "https://github.com/jason5ng32/MyIP",
"StargazerCount": 8147,
"ForkCount": 905,
"UpdatedAt": "2025-04-23T22:04:05Z",
"CreatedAt": "2023-11-22T14:46:07Z",
"PushedAt": "2025-04-09T09:37:05Z",
"IsArchived": false,
"Languages": [
"HTML",
"JavaScript",
"CSS"
]
},
{
"Name": "drawdb",
"NameWithOwner": "drawdb-io/drawdb",
"Description": "Free, simple, and intuitive online database diagram editor and SQL generator",
"Url": "https://github.com/drawdb-io/drawdb",
"StargazerCount": 27857,
"ForkCount": 1959,
"UpdatedAt": "2025-04-24T01:06:53Z",
"CreatedAt": "2023-07-16T17:09:20Z",
"PushedAt": "2025-04-24T00:09:07Z",
"IsArchived": false,
"Languages": [
"HTML",
"JavaScript",
"CSS"
]
},
{
"Name": "Sileo",
"NameWithOwner": "Sileo/Sileo",
"Description": "A modern package manager for iOS 11 and higher",
"Url": "https://github.com/Sileo/Sileo",
"StargazerCount": 1297,
"ForkCount": 165,
"UpdatedAt": "2025-04-20T20:33:10Z",
"CreatedAt": "2019-05-12T10:53:31Z",
"PushedAt": "2025-04-20T00:47:08Z",
"IsArchived": false,
"Languages": [
"Makefile",
"Swift",
"C"
]
},
{
"Name": "Zebra",
"NameWithOwner": "zbrateam/Zebra",
"Description": "A Useful Package Manager for iOS",
"Url": "https://github.com/zbrateam/Zebra",
"StargazerCount": 1214,
"ForkCount": 197,
"UpdatedAt": "2025-04-20T22:27:38Z",
"CreatedAt": "2018-10-26T14:37:19Z",
"PushedAt": "2023-09-10T15:23:26Z",
"IsArchived": false,
"Languages": [
"Objective-C",
"Makefile",
"C"
]
},
{
"Name": "Sandboxie",
"NameWithOwner": "sandboxie-plus/Sandboxie",
"Description": "Sandboxie Plus \u0026 Classic",
"Url": "https://github.com/sandboxie-plus/Sandboxie",
"StargazerCount": 14942,
"ForkCount": 1681,
"UpdatedAt": "2025-04-23T20:19:32Z",
"CreatedAt": "2020-04-09T09:26:37Z",
"PushedAt": "2025-04-23T20:19:28Z",
"IsArchived": false,
"Languages": [
"C++",
"C",
"Assembly"
]
},
{
"Name": "hoppscotch",
"NameWithOwner": "hoppscotch/hoppscotch",
"Description": "Open source API development ecosystem - https://hoppscotch.io (open-source alternative to Postman, Insomnia",
"Url": "https://github.com/hoppscotch/hoppscotch",
"StargazerCount": 71329,
"ForkCount": 4893,
"UpdatedAt": "2025-04-24T00:57:59Z",
"CreatedAt": "2019-08-21T13:15:24Z",
"PushedAt": "2025-04-23T11:11:55Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"Vue",
"Dockerfile"
]
},
{
"Name": "windows",
"NameWithOwner": "dockur/windows",
"Description": "Windows inside a Docker container",
"Url": "https://github.com/dockur/windows",
"StargazerCount": 34341,
"ForkCount": 2460,
"UpdatedAt": "2025-04-24T00:52:12Z",
"CreatedAt": "2024-01-14T13:09:40Z",
"PushedAt": "2025-04-23T11:02:05Z",
"IsArchived": false,
"Languages": [
"Dockerfile",
"Shell"
]
},
{
"Name": "sokit",
"NameWithOwner": "sinpolib/sokit",
"Description": "Sokit is a TCP \u0026 UDP package send / receive / transfer tool",
"Url": "https://github.com/sinpolib/sokit",
"StargazerCount": 1257,
"ForkCount": 363,
"UpdatedAt": "2025-04-21T10:06:28Z",
"CreatedAt": "2015-05-07T09:05:38Z",
"PushedAt": "2022-08-11T07:25:19Z",
"IsArchived": false,
"Languages": [
"QMake",
"C++",
"C"
]
},
{
"Name": "DDG-Chat",
"NameWithOwner": "leafmoes/DDG-Chat",
"Description": "",
"Url": "https://github.com/leafmoes/DDG-Chat",
"StargazerCount": 248,
"ForkCount": 158,
"UpdatedAt": "2025-04-22T07:08:56Z",
"CreatedAt": "2024-10-15T13:55:32Z",
"PushedAt": "2025-03-04T15:42:27Z",
"IsArchived": true,
"Languages": [
"Dockerfile",
"JavaScript"
]
},
{
"Name": "chat2api",
"NameWithOwner": "lanqian528/chat2api",
"Description": "A service that can convert ChatGPT on the web to OpenAI API format",
"Url": "https://github.com/lanqian528/chat2api",
"StargazerCount": 2842,
"ForkCount": 555,
"UpdatedAt": "2025-04-23T08:31:20Z",
"CreatedAt": "2024-04-04T20:22:33Z",
"PushedAt": "2025-04-19T06:51:15Z",
"IsArchived": false,
"Languages": [
"Dockerfile",
"Python",
"HTML"
]
},
{
"Name": "tailscale",
"NameWithOwner": "tailscale/tailscale",
"Description": "The easiest, most secure way to use WireGuard and 2FA",
"Url": "https://github.com/tailscale/tailscale",
"StargazerCount": 22221,
"ForkCount": 1772,
"UpdatedAt": "2025-04-23T22:15:30Z",
"CreatedAt": "2020-01-31T22:00:03Z",
"PushedAt": "2025-04-23T23:48:24Z",
"IsArchived": false,
"Languages": [
"Go",
"Shell",
"Dockerfile"
]
},
{
"Name": "cicada",
"NameWithOwner": "mebtte/cicada",
"Description": "A multi-user music service for self-hosting",
"Url": "https://github.com/mebtte/cicada",
"StargazerCount": 1085,
"ForkCount": 80,
"UpdatedAt": "2025-04-01T06:15:55Z",
"CreatedAt": "2021-06-13T07:05:09Z",
"PushedAt": "2025-03-28T13:10:41Z",
"IsArchived": false,
"Languages": [
"JavaScript",
"TypeScript",
"HTML"
]
},
{
"Name": "supervisord",
"NameWithOwner": "ochinchina/supervisord",
"Description": "a go-lang supervisor implementation",
"Url": "https://github.com/ochinchina/supervisord",
"StargazerCount": 4100,
"ForkCount": 591,
"UpdatedAt": "2025-04-23T02:04:18Z",
"CreatedAt": "2016-09-25T09:10:43Z",
"PushedAt": "2024-07-03T16:23:49Z",
"IsArchived": false,
"Languages": [
"Go",
"Dockerfile",
"HTML"
]
},
{
"Name": "sftpgo",
"NameWithOwner": "drakkan/sftpgo",
"Description": "Full-featured and highly configurable SFTP, HTTP/S, FTP/S and WebDAV server - S3, Google Cloud Storage, Azure Blob",
"Url": "https://github.com/drakkan/sftpgo",
"StargazerCount": 10299,
"ForkCount": 814,
"UpdatedAt": "2025-04-24T00:41:27Z",
"CreatedAt": "2019-07-20T10:18:31Z",