-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathREADME.rss
12168 lines (12168 loc) · 827 KB
/
README.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
<channel>
<title>❤️ 每天收集喜欢的开源项目</title>
<description>❤️ 每天收集喜欢的开源项目</description>
<pubDate>Sat, 18 Jan 2025 16:00:00 +0000</pubDate>
<generator>Laminas_Feed_Writer 2 (https://getlaminas.org)</generator>
<link>https://github.com/guanguans/favorite-link</link>
<author>[email protected] (guanguans)</author>
<dc:creator>guanguans</dc:creator>
<atom:link rel="self" type="application/rss+xml" href="https://raw.githubusercontent.com/guanguans/favorite-link/master/README.rss"/>
<item>
<title>HandBrake/HandBrake:HandBrake 是一款适用于 Linux、Mac 和 Windows 的开源视频转码器</title>
<pubDate>Sat, 18 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/HandBrake/HandBrake</link>
<guid>https://github.com/HandBrake/HandBrake</guid>
<content:encoded><![CDATA[<a href="https://github.com/HandBrake/HandBrake" target="_blank">HandBrake/HandBrake:HandBrake 是一款适用于 Linux、Mac 和 Windows 的开源视频转码器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/HandBrake/HandBrake" target="_blank">https://github.com/HandBrake/HandBrake</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>alfg/ffmpeg-commander: 🛠️ FFmpeg 命令生成器 Web UI</title>
<pubDate>Sat, 18 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/alfg/ffmpeg-commander</link>
<guid>https://github.com/alfg/ffmpeg-commander</guid>
<content:encoded><![CDATA[<a href="https://github.com/alfg/ffmpeg-commander" target="_blank">alfg/ffmpeg-commander: 🛠️ FFmpeg 命令生成器 Web UI</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/alfg/ffmpeg-commander" target="_blank">https://github.com/alfg/ffmpeg-commander</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>savannabits/api-keys: 使用 API 密钥验证您的 Laravel API</title>
<pubDate>Sat, 18 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/savannabits/api-keys</link>
<guid>https://github.com/savannabits/api-keys</guid>
<content:encoded><![CDATA[<a href="https://github.com/savannabits/api-keys" target="_blank">savannabits/api-keys: 使用 API 密钥验证您的 Laravel API</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/savannabits/api-keys" target="_blank">https://github.com/savannabits/api-keys</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mainframecomputer/fullmoon-ios: fullmoon 是一款 iOS 应用程序,用于与本地大型语言模型聊天,它针对 Apple silicon 进行了优化,可在 iPhone、iPad 和 Mac 上运行。您的聊天记录会保存在本地,您还可以自定义应用程序的外观。</title>
<pubDate>Fri, 17 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/mainframecomputer/fullmoon-ios</link>
<guid>https://github.com/mainframecomputer/fullmoon-ios</guid>
<content:encoded><![CDATA[<a href="https://github.com/mainframecomputer/fullmoon-ios" target="_blank">mainframecomputer/fullmoon-ios: fullmoon 是一款 iOS 应用程序,用于与本地大型语言模型聊天,它针对 Apple silicon 进行了优化,可在 iPhone、iPad 和 Mac 上运行。您的聊天记录会保存在本地,您还可以自定义应用程序的外观。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mainframecomputer/fullmoon-ios" target="_blank">https://github.com/mainframecomputer/fullmoon-ios</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Naoray/laravel-github-monolog: GitHub 问题的 Laravel 日志频道</title>
<pubDate>Fri, 17 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/Naoray/laravel-github-monolog</link>
<guid>https://github.com/Naoray/laravel-github-monolog</guid>
<content:encoded><![CDATA[<a href="https://github.com/Naoray/laravel-github-monolog" target="_blank">Naoray/laravel-github-monolog: GitHub 问题的 Laravel 日志频道</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Naoray/laravel-github-monolog" target="_blank">https://github.com/Naoray/laravel-github-monolog</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>alexpasmantier/television: 是一款快速且多功能的模糊查找器 TUI。</title>
<pubDate>Fri, 17 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/alexpasmantier/television</link>
<guid>https://github.com/alexpasmantier/television</guid>
<content:encoded><![CDATA[<a href="https://github.com/alexpasmantier/television" target="_blank">alexpasmantier/television: 是一款快速且多功能的模糊查找器 TUI。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/alexpasmantier/television" target="_blank">https://github.com/alexpasmantier/television</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>damms005/devdb-vscode: 零配置 VS Code 数据库扩展,具有辅助开发和调试的功能。</title>
<pubDate>Thu, 16 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/damms005/devdb-vscode</link>
<guid>https://github.com/damms005/devdb-vscode</guid>
<content:encoded><![CDATA[<a href="https://github.com/damms005/devdb-vscode" target="_blank">damms005/devdb-vscode: 零配置 VS Code 数据库扩展,具有辅助开发和调试的功能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/damms005/devdb-vscode" target="_blank">https://github.com/damms005/devdb-vscode</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>byawitz/ggh: 调用您的 SSH 会话 (同时搜索您的 SSH 配置文件)</title>
<pubDate>Thu, 16 Jan 2025 08:00:00 +0000</pubDate>
<link>同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</link>
<guid isPermaLink="false">同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</guid>
<content:encoded><![CDATA[<a href="同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/" target="_blank">byawitz/ggh: 调用您的 SSH 会话 (同时搜索您的 SSH 配置文件)</a>
<h3>相关链接</h3>
<ul>
<li><a href="同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/" target="_blank">同时搜索您的 SSH 配置文件)](https://github.com/byawitz/ggh/</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nimbly/Syndicate: 强大的队列和 pubsub 消息发布者和使用者框架。</title>
<pubDate>Thu, 16 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/nimbly/Syndicate</link>
<guid>https://github.com/nimbly/Syndicate</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly/Syndicate" target="_blank">nimbly/Syndicate: 强大的队列和 pubsub 消息发布者和使用者框架。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly/Syndicate" target="_blank">https://github.com/nimbly/Syndicate</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>https://github.com/nimbly</title>
<pubDate>Thu, 16 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/nimbly</link>
<guid>https://github.com/nimbly</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly" target="_blank">https://github.com/nimbly</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly" target="_blank">https://github.com/nimbly</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nimbly/Carton: 一个简单的 PSR-11 容器实现。</title>
<pubDate>Thu, 16 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/nimbly/Carton</link>
<guid>https://github.com/nimbly/Carton</guid>
<content:encoded><![CDATA[<a href="https://github.com/nimbly/Carton" target="_blank">nimbly/Carton: 一个简单的 PSR-11 容器实现。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nimbly/Carton" target="_blank">https://github.com/nimbly/Carton</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jlorente/php-credit-cards: 一个 PHP 包,用于对借记卡和信用卡执行操作,例如验证品牌、数字和 Luhn 算法和格式。它验证了 Visa、Mastercard、American Express 等流行品牌。</title>
<pubDate>Wed, 15 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/jlorente/php-credit-cards</link>
<guid>https://github.com/jlorente/php-credit-cards</guid>
<content:encoded><![CDATA[<a href="https://github.com/jlorente/php-credit-cards" target="_blank">jlorente/php-credit-cards: 一个 PHP 包,用于对借记卡和信用卡执行操作,例如验证品牌、数字和 Luhn 算法和格式。它验证了 Visa、Mastercard、American Express 等流行品牌。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/jlorente/php-credit-cards" target="_blank">https://github.com/jlorente/php-credit-cards</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>simplesamlphp/assert: webmozart/assert 的包装器,使其在检查方法参数之外有用</title>
<pubDate>Wed, 15 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/simplesamlphp/assert</link>
<guid>https://github.com/simplesamlphp/assert</guid>
<content:encoded><![CDATA[<a href="https://github.com/simplesamlphp/assert" target="_blank">simplesamlphp/assert: webmozart/assert 的包装器,使其在检查方法参数之外有用</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/simplesamlphp/assert" target="_blank">https://github.com/simplesamlphp/assert</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>fschmtt/keycloak-rest-api-client-php: PHP 客户端与 Keycloak 的 Admin REST API 交互。</title>
<pubDate>Tue, 14 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/fschmtt/keycloak-rest-api-client-php</link>
<guid>https://github.com/fschmtt/keycloak-rest-api-client-php</guid>
<content:encoded><![CDATA[<a href="https://github.com/fschmtt/keycloak-rest-api-client-php" target="_blank">fschmtt/keycloak-rest-api-client-php: PHP 客户端与 Keycloak 的 Admin REST API 交互。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/fschmtt/keycloak-rest-api-client-php" target="_blank">https://github.com/fschmtt/keycloak-rest-api-client-php</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Jaennaet/pISSStream: macOS 菜单栏应用程序,可实时显示国际空间站的尿瓶装满情况</title>
<pubDate>Tue, 14 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/Jaennaet/pISSStream</link>
<guid>https://github.com/Jaennaet/pISSStream</guid>
<content:encoded><![CDATA[<a href="https://github.com/Jaennaet/pISSStream" target="_blank">Jaennaet/pISSStream: macOS 菜单栏应用程序,可实时显示国际空间站的尿瓶装满情况</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Jaennaet/pISSStream" target="_blank">https://github.com/Jaennaet/pISSStream</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mariovalney/laravel-keycloak-web-guard: 简单的 Keycloak Guard 到 Laravel Web 路由</title>
<pubDate>Tue, 14 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/mariovalney/laravel-keycloak-web-guard</link>
<guid>https://github.com/mariovalney/laravel-keycloak-web-guard</guid>
<content:encoded><![CDATA[<a href="https://github.com/mariovalney/laravel-keycloak-web-guard" target="_blank">mariovalney/laravel-keycloak-web-guard: 简单的 Keycloak Guard 到 Laravel Web 路由</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mariovalney/laravel-keycloak-web-guard" target="_blank">https://github.com/mariovalney/laravel-keycloak-web-guard</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>CodeWithKyrian/whisper.php: 借助 Whisper.cpp 和 OpenAI,PHP 中的本地语音转文本变得容易</title>
<pubDate>Mon, 13 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/CodeWithKyrian/whisper.php</link>
<guid>https://github.com/CodeWithKyrian/whisper.php</guid>
<content:encoded><![CDATA[<a href="https://github.com/CodeWithKyrian/whisper.php" target="_blank">CodeWithKyrian/whisper.php: 借助 Whisper.cpp 和 OpenAI,PHP 中的本地语音转文本变得容易</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/CodeWithKyrian/whisper.php" target="_blank">https://github.com/CodeWithKyrian/whisper.php</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>luadotsh/lua: 专为现代团队设计的开源、下一代可扩展 URL 缩短器。</title>
<pubDate>Mon, 13 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/luadotsh/lua</link>
<guid>https://github.com/luadotsh/lua</guid>
<content:encoded><![CDATA[<a href="https://github.com/luadotsh/lua" target="_blank">luadotsh/lua: 专为现代团队设计的开源、下一代可扩展 URL 缩短器。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/luadotsh/lua" target="_blank">https://github.com/luadotsh/lua</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>deepseek-php/deepseek-laravel: 用于 Deepseek PHP 客户端的 Laravel 包装器,用于与 laravel 应用程序的无缝 deepseek API 集成。</title>
<pubDate>Mon, 13 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/deepseek-php/deepseek-laravel</link>
<guid>https://github.com/deepseek-php/deepseek-laravel</guid>
<content:encoded><![CDATA[<a href="https://github.com/deepseek-php/deepseek-laravel" target="_blank">deepseek-php/deepseek-laravel: 用于 Deepseek PHP 客户端的 Laravel 包装器,用于与 laravel 应用程序的无缝 deepseek API 集成。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/deepseek-php/deepseek-laravel" target="_blank">https://github.com/deepseek-php/deepseek-laravel</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zackAJ/laravel-debounce: zackAJ/laravel-debounce: 一个 Laravel 包,可为您提供对作业、通知和 Artisan 命令的防抖效果,并提供很好的事件报告。</title>
<pubDate>Sun, 12 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/zackAJ/laravel-debounce</link>
<guid>https://github.com/zackAJ/laravel-debounce</guid>
<content:encoded><![CDATA[<a href="https://github.com/zackAJ/laravel-debounce" target="_blank">zackAJ/laravel-debounce: zackAJ/laravel-debounce: 一个 Laravel 包,可为您提供对作业、通知和 Artisan 命令的防抖效果,并提供很好的事件报告。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zackAJ/laravel-debounce" target="_blank">https://github.com/zackAJ/laravel-debounce</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>waadmawlood/laravel-model-metadata: 一个 Laravel 包,旨在通过 JSON 管理模型元数据,支持多种数据类型</title>
<pubDate>Sun, 12 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/waadmawlood/laravel-model-metadata</link>
<guid>https://github.com/waadmawlood/laravel-model-metadata</guid>
<content:encoded><![CDATA[<a href="https://github.com/waadmawlood/laravel-model-metadata" target="_blank">waadmawlood/laravel-model-metadata: 一个 Laravel 包,旨在通过 JSON 管理模型元数据,支持多种数据类型</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/waadmawlood/laravel-model-metadata" target="_blank">https://github.com/waadmawlood/laravel-model-metadata</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>debugly/ijkplayer: 基于 ijkplayer 的 iOS/macOS/tvOS 视频播放器,使用 FFmpeg 6,支持 Metal、hw accel、HDR、ass 字幕效果...</title>
<pubDate>Sun, 12 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/debugly/ijkplayer</link>
<guid>https://github.com/debugly/ijkplayer</guid>
<content:encoded><![CDATA[<a href="https://github.com/debugly/ijkplayer" target="_blank">debugly/ijkplayer: 基于 ijkplayer 的 iOS/macOS/tvOS 视频播放器,使用 FFmpeg 6,支持 Metal、hw accel、HDR、ass 字幕效果...</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/debugly/ijkplayer" target="_blank">https://github.com/debugly/ijkplayer</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>boyter/cs: 命令行代码 Pelunker 或代码搜索</title>
<pubDate>Sat, 11 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/boyter/cs</link>
<guid>https://github.com/boyter/cs</guid>
<content:encoded><![CDATA[<a href="https://github.com/boyter/cs" target="_blank">boyter/cs: 命令行代码 Pelunker 或代码搜索</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/boyter/cs" target="_blank">https://github.com/boyter/cs</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jaywcjlove/rightmenu-master: 通过右键单击菜单新建文件</title>
<pubDate>Sat, 11 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/jaywcjlove/rightmenu-master</link>
<guid>https://github.com/jaywcjlove/rightmenu-master</guid>
<content:encoded><![CDATA[<a href="https://github.com/jaywcjlove/rightmenu-master" target="_blank">jaywcjlove/rightmenu-master: 通过右键单击菜单新建文件</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/jaywcjlove/rightmenu-master" target="_blank">https://github.com/jaywcjlove/rightmenu-master</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>yafoo/pushme: PushMe,一个简单轻量的 Android 消息通知客户端!</title>
<pubDate>Sat, 11 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/yafoo/pushme</link>
<guid>https://github.com/yafoo/pushme</guid>
<content:encoded><![CDATA[<a href="https://github.com/yafoo/pushme" target="_blank">yafoo/pushme: PushMe,一个简单轻量的 Android 消息通知客户端!</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/yafoo/pushme" target="_blank">https://github.com/yafoo/pushme</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nuta/operating-system-in-1000-lines: 用 1000 行编写操作系统。</title>
<pubDate>Wed, 08 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/nuta/operating-system-in-1000-lines</link>
<guid>https://github.com/nuta/operating-system-in-1000-lines</guid>
<content:encoded><![CDATA[<a href="https://github.com/nuta/operating-system-in-1000-lines" target="_blank">nuta/operating-system-in-1000-lines: 用 1000 行编写操作系统。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nuta/operating-system-in-1000-lines" target="_blank">https://github.com/nuta/operating-system-in-1000-lines</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>patricktalmadge/bootstrapper: Laravel Twitter Bootstrap 捆绑包</title>
<pubDate>Tue, 07 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/patricktalmadge/bootstrapper</link>
<guid>https://github.com/patricktalmadge/bootstrapper</guid>
<content:encoded><![CDATA[<a href="https://github.com/patricktalmadge/bootstrapper" target="_blank">patricktalmadge/bootstrapper: Laravel Twitter Bootstrap 捆绑包</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/patricktalmadge/bootstrapper" target="_blank">https://github.com/patricktalmadge/bootstrapper</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>kalynasolutions/laravel-tus: Laravel 软件包,用于处理具有 tus 协议和本机 Uppy.js 支持的断点文件上传,而无需额外的 tus 服务器。</title>
<pubDate>Tue, 07 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/kalynasolutions/laravel-tus</link>
<guid>https://github.com/kalynasolutions/laravel-tus</guid>
<content:encoded><![CDATA[<a href="https://github.com/kalynasolutions/laravel-tus" target="_blank">kalynasolutions/laravel-tus: Laravel 软件包,用于处理具有 tus 协议和本机 Uppy.js 支持的断点文件上传,而无需额外的 tus 服务器。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/kalynasolutions/laravel-tus" target="_blank">https://github.com/kalynasolutions/laravel-tus</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>robsontenorio/laravel-keycloak-guard: 🔑 Laravel 的简单 Keycloak Guard</title>
<pubDate>Tue, 07 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/robsontenorio/laravel-keycloak-guard</link>
<guid>https://github.com/robsontenorio/laravel-keycloak-guard</guid>
<content:encoded><![CDATA[<a href="https://github.com/robsontenorio/laravel-keycloak-guard" target="_blank">robsontenorio/laravel-keycloak-guard: 🔑 Laravel 的简单 Keycloak Guard</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/robsontenorio/laravel-keycloak-guard" target="_blank">https://github.com/robsontenorio/laravel-keycloak-guard</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nassiry/flash-messages: 一个轻量级的 PHP 库,用于处理带有会话存储和渲染的 flash 消息。</title>
<pubDate>Sat, 04 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/nassiry/flash-messages</link>
<guid>https://github.com/nassiry/flash-messages</guid>
<content:encoded><![CDATA[<a href="https://github.com/nassiry/flash-messages" target="_blank">nassiry/flash-messages: 一个轻量级的 PHP 库,用于处理带有会话存储和渲染的 flash 消息。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nassiry/flash-messages" target="_blank">https://github.com/nassiry/flash-messages</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>sethvargo/go-limiter: 一个用于 Go with HTTP 中间件的超音速限速包。</title>
<pubDate>Sat, 04 Jan 2025 08:00:00 +0000</pubDate>
<link>https://github.com/sethvargo/go-limiter</link>
<guid>https://github.com/sethvargo/go-limiter</guid>
<content:encoded><![CDATA[<a href="https://github.com/sethvargo/go-limiter" target="_blank">sethvargo/go-limiter: 一个用于 Go with HTTP 中间件的超音速限速包。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/sethvargo/go-limiter" target="_blank">https://github.com/sethvargo/go-limiter</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>cornernote/yii2-softdelete: Yii2 的软删除行为</title>
<pubDate>Sat, 04 Jan 2025 00:00:00 +0000</pubDate>
<link>https://github.com/cornernote/yii2-softdelete</link>
<guid>https://github.com/cornernote/yii2-softdelete</guid>
<content:encoded><![CDATA[<a href="https://github.com/cornernote/yii2-softdelete" target="_blank">cornernote/yii2-softdelete: Yii2 的软删除行为</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cornernote/yii2-softdelete" target="_blank">https://github.com/cornernote/yii2-softdelete</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>ghostwriter/phormat: PHP 代码格式化程序。</title>
<pubDate>Fri, 03 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/ghostwriter/phormat</link>
<guid>https://github.com/ghostwriter/phormat</guid>
<content:encoded><![CDATA[<a href="https://github.com/ghostwriter/phormat" target="_blank">ghostwriter/phormat: PHP 代码格式化程序。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/ghostwriter/phormat" target="_blank">https://github.com/ghostwriter/phormat</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>ghostwriter/syntax: PHP 的词法分析库 (Tokenizer、Lexer、Parser、Generator) 关闭</title>
<pubDate>Fri, 03 Jan 2025 08:00:00 +0000</pubDate>
<link>Tokenizer、Lexer、Parser、Generator) 关闭](https://github.com/ghostwriter/syntax</link>
<guid isPermaLink="false">Tokenizer、Lexer、Parser、Generator) 关闭](https://github.com/ghostwriter/syntax</guid>
<content:encoded><![CDATA[<a href="Tokenizer、Lexer、Parser、Generator) 关闭](https://github.com/ghostwriter/syntax" target="_blank">ghostwriter/syntax: PHP 的词法分析库 (Tokenizer、Lexer、Parser、Generator) 关闭</a>
<h3>相关链接</h3>
<ul>
<li><a href="Tokenizer、Lexer、Parser、Generator) 关闭](https://github.com/ghostwriter/syntax" target="_blank">Tokenizer、Lexer、Parser、Generator) 关闭](https://github.com/ghostwriter/syntax</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>dcblogdev/laravel-microsoft-graph: 适用于 Microsoft Graph API 的 Laravel 包 (Microsoft365)</title>
<pubDate>Fri, 03 Jan 2025 00:00:00 +0000</pubDate>
<link>Microsoft365)](https://github.com/dcblogdev/laravel-microsoft-graph</link>
<guid isPermaLink="false">Microsoft365)](https://github.com/dcblogdev/laravel-microsoft-graph</guid>
<content:encoded><![CDATA[<a href="Microsoft365)](https://github.com/dcblogdev/laravel-microsoft-graph" target="_blank">dcblogdev/laravel-microsoft-graph: 适用于 Microsoft Graph API 的 Laravel 包 (Microsoft365)</a>
<h3>相关链接</h3>
<ul>
<li><a href="Microsoft365)](https://github.com/dcblogdev/laravel-microsoft-graph" target="_blank">Microsoft365)](https://github.com/dcblogdev/laravel-microsoft-graph</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>knotsphp/publicip: 使用 PHP 获取公共 IP 地址的快速可靠方法</title>
<pubDate>Thu, 02 Jan 2025 16:00:00 +0000</pubDate>
<link>https://github.com/knotsphp/publicip</link>
<guid>https://github.com/knotsphp/publicip</guid>
<content:encoded><![CDATA[<a href="https://github.com/knotsphp/publicip" target="_blank">knotsphp/publicip: 使用 PHP 获取公共 IP 地址的快速可靠方法</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/knotsphp/publicip" target="_blank">https://github.com/knotsphp/publicip</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>ghostty-org/ghostty: 👻 Ghostty 是一款快速、功能丰富且跨平台的终端仿真器,它使用平台原生 UI 和 GPU 加速。</title>
<pubDate>Sun, 29 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/ghostty-org/ghostty</link>
<guid>https://github.com/ghostty-org/ghostty</guid>
<content:encoded><![CDATA[<a href="https://github.com/ghostty-org/ghostty" target="_blank">ghostty-org/ghostty: 👻 Ghostty 是一款快速、功能丰富且跨平台的终端仿真器,它使用平台原生 UI 和 GPU 加速。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/ghostty-org/ghostty" target="_blank">https://github.com/ghostty-org/ghostty</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>lihaoyun6/Topit: 在 Mac 上将你的任何窗口强制置顶</title>
<pubDate>Sun, 29 Dec 2024 08:00:00 +0000</pubDate>
<link>https://github.com/lihaoyun6/Topit</link>
<guid>https://github.com/lihaoyun6/Topit</guid>
<content:encoded><![CDATA[<a href="https://github.com/lihaoyun6/Topit" target="_blank">lihaoyun6/Topit: 在 Mac 上将你的任何窗口强制置顶</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/lihaoyun6/Topit" target="_blank">https://github.com/lihaoyun6/Topit</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>peckphp/peck: Peck 是一个功能强大的 CLI 工具,旨在识别代码库中的措辞或拼写错误。</title>
<pubDate>Tue, 24 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/peckphp/peck</link>
<guid>https://github.com/peckphp/peck</guid>
<content:encoded><![CDATA[<a href="https://github.com/peckphp/peck" target="_blank">peckphp/peck: Peck 是一个功能强大的 CLI 工具,旨在识别代码库中的措辞或拼写错误。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/peckphp/peck" target="_blank">https://github.com/peckphp/peck</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>tweakphp/tweakphp: 轻松调整 PHP 代码</title>
<pubDate>Tue, 24 Dec 2024 08:00:00 +0000</pubDate>
<link>https://github.com/tweakphp/tweakphp</link>
<guid>https://github.com/tweakphp/tweakphp</guid>
<content:encoded><![CDATA[<a href="https://github.com/tweakphp/tweakphp" target="_blank">tweakphp/tweakphp: 轻松调整 PHP 代码</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/tweakphp/tweakphp" target="_blank">https://github.com/tweakphp/tweakphp</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>niladam/uri: 解析和操作 URI</title>
<pubDate>Sun, 22 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/niladam/uri</link>
<guid>https://github.com/niladam/uri</guid>
<content:encoded><![CDATA[<a href="https://github.com/niladam/uri" target="_blank">niladam/uri: 解析和操作 URI</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/niladam/uri" target="_blank">https://github.com/niladam/uri</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>openthc/pos: 零售业软件解决方案 - POS、CRM、交付、订购</title>
<pubDate>Thu, 19 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/openthc/pos</link>
<guid>https://github.com/openthc/pos</guid>
<content:encoded><![CDATA[<a href="https://github.com/openthc/pos" target="_blank">openthc/pos: 零售业软件解决方案 - POS、CRM、交付、订购</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/openthc/pos" target="_blank">https://github.com/openthc/pos</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>abdulwahid880/School-Management-system-in-laravel-: 对于那些对自己的学校管理系统感到好奇的人来说,这是最好的解决方案,在这里您可以参加考勤管理考试,管理教师,学生和费用等等,继续根据您的需要进行更改,祝您好运</title>
<pubDate>Mon, 09 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/abdulwahid880/School-Management-system-in-laravel-</link>
<guid>https://github.com/abdulwahid880/School-Management-system-in-laravel-</guid>
<content:encoded><![CDATA[<a href="https://github.com/abdulwahid880/School-Management-system-in-laravel-" target="_blank">abdulwahid880/School-Management-system-in-laravel-: 对于那些对自己的学校管理系统感到好奇的人来说,这是最好的解决方案,在这里您可以参加考勤管理考试,管理教师,学生和费用等等,继续根据您的需要进行更改,祝您好运</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/abdulwahid880/School-Management-system-in-laravel-" target="_blank">https://github.com/abdulwahid880/School-Management-system-in-laravel-</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>cmatosbc/daedalus: 数组、对象和数据结构针对现代 PHP 程序员进行了改进、增强和修改。</title>
<pubDate>Sun, 08 Dec 2024 16:00:00 +0000</pubDate>
<link>https://github.com/cmatosbc/daedalus</link>
<guid>https://github.com/cmatosbc/daedalus</guid>
<content:encoded><![CDATA[<a href="https://github.com/cmatosbc/daedalus" target="_blank">cmatosbc/daedalus: 数组、对象和数据结构针对现代 PHP 程序员进行了改进、增强和修改。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cmatosbc/daedalus" target="_blank">https://github.com/cmatosbc/daedalus</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>yassinebenaid/godump: 轻松转储任何 GO 变量</title>
<pubDate>Sun, 08 Dec 2024 08:00:00 +0000</pubDate>
<link>https://github.com/yassinebenaid/godump</link>
<guid>https://github.com/yassinebenaid/godump</guid>
<content:encoded><![CDATA[<a href="https://github.com/yassinebenaid/godump" target="_blank">yassinebenaid/godump: 轻松转储任何 GO 变量</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/yassinebenaid/godump" target="_blank">https://github.com/yassinebenaid/godump</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Celve/Peninsula: 适用于 macOS 的 Dynamic Peninsula,专注于窗口切换、通知和文件存储。</title>
<pubDate>Sun, 08 Dec 2024 00:00:00 +0000</pubDate>
<link>https://github.com/Celve/Peninsula</link>
<guid>https://github.com/Celve/Peninsula</guid>
<content:encoded><![CDATA[<a href="https://github.com/Celve/Peninsula" target="_blank">Celve/Peninsula: 适用于 macOS 的 Dynamic Peninsula,专注于窗口切换、通知和文件存储。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Celve/Peninsula" target="_blank">https://github.com/Celve/Peninsula</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>jxhczhl/JsRpc: 远程调用 (rpc) 浏览器方法,免去抠代码补环境</title>
<pubDate>Thu, 05 Dec 2024 16:00:00 +0000</pubDate>
<link>rpc) 浏览器方法,免去抠代码补环境](https://github.com/jxhczhl/JsRpc</link>
<guid isPermaLink="false">rpc) 浏览器方法,免去抠代码补环境](https://github.com/jxhczhl/JsRpc</guid>
<content:encoded><![CDATA[<a href="rpc) 浏览器方法,免去抠代码补环境](https://github.com/jxhczhl/JsRpc" target="_blank">jxhczhl/JsRpc: 远程调用 (rpc) 浏览器方法,免去抠代码补环境</a>
<h3>相关链接</h3>
<ul>
<li><a href="rpc) 浏览器方法,免去抠代码补环境](https://github.com/jxhczhl/JsRpc" target="_blank">rpc) 浏览器方法,免去抠代码补环境](https://github.com/jxhczhl/JsRpc</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>clickbar/laravel-magellan: 适用于 Laravel 的现代 PostGIS 工具箱</title>
<pubDate>Thu, 05 Dec 2024 08:00:00 +0000</pubDate>
<link>https://github.com/clickbar/laravel-magellan</link>
<guid>https://github.com/clickbar/laravel-magellan</guid>
<content:encoded><![CDATA[<a href="https://github.com/clickbar/laravel-magellan" target="_blank">clickbar/laravel-magellan: 适用于 Laravel 的现代 PostGIS 工具箱</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/clickbar/laravel-magellan" target="_blank">https://github.com/clickbar/laravel-magellan</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>vormkracht10/laravel-mails: 在您的 Laravel 应用程序中收集有关已发送邮件的所有信息</title>
<pubDate>Thu, 05 Dec 2024 00:00:00 +0000</pubDate>
<link>https://github.com/vormkracht10/laravel-mails</link>
<guid>https://github.com/vormkracht10/laravel-mails</guid>
<content:encoded><![CDATA[<a href="https://github.com/vormkracht10/laravel-mails" target="_blank">vormkracht10/laravel-mails: 在您的 Laravel 应用程序中收集有关已发送邮件的所有信息</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/vormkracht10/laravel-mails" target="_blank">https://github.com/vormkracht10/laravel-mails</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>pdphilip/laravel-elasticsearch: Laravel 的 Eloquent ORM 的 Elasticsearch 实现</title>
<pubDate>Thu, 28 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/pdphilip/laravel-elasticsearch</link>
<guid>https://github.com/pdphilip/laravel-elasticsearch</guid>
<content:encoded><![CDATA[<a href="https://github.com/pdphilip/laravel-elasticsearch" target="_blank">pdphilip/laravel-elasticsearch: Laravel 的 Eloquent ORM 的 Elasticsearch 实现</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/pdphilip/laravel-elasticsearch" target="_blank">https://github.com/pdphilip/laravel-elasticsearch</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>OussamaMater/Laravel-Tips: 每日 Laravel 和 PHP 提示。</title>
<pubDate>Wed, 27 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/OussamaMater/Laravel-Tips</link>
<guid>https://github.com/OussamaMater/Laravel-Tips</guid>
<content:encoded><![CDATA[<a href="https://github.com/OussamaMater/Laravel-Tips" target="_blank">OussamaMater/Laravel-Tips: 每日 Laravel 和 PHP 提示。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/OussamaMater/Laravel-Tips" target="_blank">https://github.com/OussamaMater/Laravel-Tips</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>mahmoudmohamedramadan/custom-fresh: 一个 Laravel 包,用于指定在刷新数据库时不想删除的表。</title>
<pubDate>Wed, 27 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/mahmoudmohamedramadan/custom-fresh</link>
<guid>https://github.com/mahmoudmohamedramadan/custom-fresh</guid>
<content:encoded><![CDATA[<a href="https://github.com/mahmoudmohamedramadan/custom-fresh" target="_blank">mahmoudmohamedramadan/custom-fresh: 一个 Laravel 包,用于指定在刷新数据库时不想删除的表。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mahmoudmohamedramadan/custom-fresh" target="_blank">https://github.com/mahmoudmohamedramadan/custom-fresh</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>EcoPasteHub/EcoPaste: 🎉 跨平台的剪贴板管理工具</title>
<pubDate>Tue, 26 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/EcoPasteHub/EcoPaste</link>
<guid>https://github.com/EcoPasteHub/EcoPaste</guid>
<content:encoded><![CDATA[<a href="https://github.com/EcoPasteHub/EcoPaste" target="_blank">EcoPasteHub/EcoPaste: 🎉 跨平台的剪贴板管理工具</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/EcoPasteHub/EcoPaste" target="_blank">https://github.com/EcoPasteHub/EcoPaste</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>aldeebhasan/la-subscription: LA SUBSCRIPTION 是一个强大的软件包,旨在简化 Laravel 应用程序中基于订阅的服务的实施和管理。它提供了一种灵活的方法来处理各种订阅计划,使其成为 SaaS 应用程序、会员网站和任何需要定期计费的系统的理想选择。</title>
<pubDate>Mon, 25 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/aldeebhasan/la-subscription</link>
<guid>https://github.com/aldeebhasan/la-subscription</guid>
<content:encoded><![CDATA[<a href="https://github.com/aldeebhasan/la-subscription" target="_blank">aldeebhasan/la-subscription: LA SUBSCRIPTION 是一个强大的软件包,旨在简化 Laravel 应用程序中基于订阅的服务的实施和管理。它提供了一种灵活的方法来处理各种订阅计划,使其成为 SaaS 应用程序、会员网站和任何需要定期计费的系统的理想选择。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/aldeebhasan/la-subscription" target="_blank">https://github.com/aldeebhasan/la-subscription</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zyronon/V2Next: V2Next - 最好用的 V 站辅助工具</title>
<pubDate>Mon, 25 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/zyronon/V2Next</link>
<guid>https://github.com/zyronon/V2Next</guid>
<content:encoded><![CDATA[<a href="https://github.com/zyronon/V2Next" target="_blank">zyronon/V2Next: V2Next - 最好用的 V 站辅助工具</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zyronon/V2Next" target="_blank">https://github.com/zyronon/V2Next</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>cyrilbois/jsoning-api: JSONing API 是一款多功能工具,可用于模拟 REST API。它可以轻松模拟和测试 API 行为,提供一个动态环境来制作自定义响应和逻辑。</title>
<pubDate>Sun, 24 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/cyrilbois/jsoning-api</link>
<guid>https://github.com/cyrilbois/jsoning-api</guid>
<content:encoded><![CDATA[<a href="https://github.com/cyrilbois/jsoning-api" target="_blank">cyrilbois/jsoning-api: JSONing API 是一款多功能工具,可用于模拟 REST API。它可以轻松模拟和测试 API 行为,提供一个动态环境来制作自定义响应和逻辑。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cyrilbois/jsoning-api" target="_blank">https://github.com/cyrilbois/jsoning-api</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>yusukebe/gh-markdown-preview: GitHub CLI 扩展,预览 Markdown 看起来像 GitHub。</title>
<pubDate>Sun, 24 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/yusukebe/gh-markdown-preview</link>
<guid>https://github.com/yusukebe/gh-markdown-preview</guid>
<content:encoded><![CDATA[<a href="https://github.com/yusukebe/gh-markdown-preview" target="_blank">yusukebe/gh-markdown-preview: GitHub CLI 扩展,预览 Markdown 看起来像 GitHub。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/yusukebe/gh-markdown-preview" target="_blank">https://github.com/yusukebe/gh-markdown-preview</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Melkeydev/go-blueprint: Go-blueprint 允许用户使用流行的框架快速启动一个 Go 项目</title>
<pubDate>Sun, 24 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/Melkeydev/go-blueprint</link>
<guid>https://github.com/Melkeydev/go-blueprint</guid>
<content:encoded><![CDATA[<a href="https://github.com/Melkeydev/go-blueprint" target="_blank">Melkeydev/go-blueprint: Go-blueprint 允许用户使用流行的框架快速启动一个 Go 项目</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Melkeydev/go-blueprint" target="_blank">https://github.com/Melkeydev/go-blueprint</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>robertogallea/pulse-api: 此包提供与 JSON API 端点完全相同的 Laravel Pulse 信息。</title>
<pubDate>Sat, 23 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/robertogallea/pulse-api</link>
<guid>https://github.com/robertogallea/pulse-api</guid>
<content:encoded><![CDATA[<a href="https://github.com/robertogallea/pulse-api" target="_blank">robertogallea/pulse-api: 此包提供与 JSON API 端点完全相同的 Laravel Pulse 信息。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/robertogallea/pulse-api" target="_blank">https://github.com/robertogallea/pulse-api</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zero-to-prod/data-model: A 提供了一种轻量级、非侵入性的方式来递归地激活类型安全的 PHP 对象。</title>
<pubDate>Sat, 23 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/zero-to-prod/data-model</link>
<guid>https://github.com/zero-to-prod/data-model</guid>
<content:encoded><![CDATA[<a href="https://github.com/zero-to-prod/data-model" target="_blank">zero-to-prod/data-model: A 提供了一种轻量级、非侵入性的方式来递归地激活类型安全的 PHP 对象。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zero-to-prod/data-model" target="_blank">https://github.com/zero-to-prod/data-model</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>FahimAnzamDip/triangle-pos: Triangle POS 是一个带有 POS 系统的开源库存管理。使用 Laravel 10、Bootstrap 4 和 Livewire 3 开发。</title>
<pubDate>Thu, 21 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/FahimAnzamDip/triangle-pos</link>
<guid>https://github.com/FahimAnzamDip/triangle-pos</guid>
<content:encoded><![CDATA[<a href="https://github.com/FahimAnzamDip/triangle-pos" target="_blank">FahimAnzamDip/triangle-pos: Triangle POS 是一个带有 POS 系统的开源库存管理。使用 Laravel 10、Bootstrap 4 和 Livewire 3 开发。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/FahimAnzamDip/triangle-pos" target="_blank">https://github.com/FahimAnzamDip/triangle-pos</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>如果仅在某些文件中启用严格类型,则如何工作?</title>
<pubDate>Thu, 21 Nov 2024 08:00:00 +0000</pubDate>
<link>https://masteringlaravel.io/daily/2024-11-21-how-do-strict-types-work-if-only-enabled-in-some-files</link>
<guid>https://masteringlaravel.io/daily/2024-11-21-how-do-strict-types-work-if-only-enabled-in-some-files</guid>
<content:encoded><![CDATA[<a href="https://masteringlaravel.io/daily/2024-11-21-how-do-strict-types-work-if-only-enabled-in-some-files" target="_blank">如果仅在某些文件中启用严格类型,则如何工作?</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://masteringlaravel.io/daily/2024-11-21-how-do-strict-types-work-if-only-enabled-in-some-files" target="_blank">https://masteringlaravel.io/daily/2024-11-21-how-do-strict-types-work-if-only-enabled-in-some-files</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>ivoronin/TomatoBar: 🍅 世界上最整洁的 macOS 番茄钟菜单栏</title>
<pubDate>Thu, 21 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/ivoronin/TomatoBar</link>
<guid>https://github.com/ivoronin/TomatoBar</guid>
<content:encoded><![CDATA[<a href="https://github.com/ivoronin/TomatoBar" target="_blank">ivoronin/TomatoBar: 🍅 世界上最整洁的 macOS 番茄钟菜单栏</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/ivoronin/TomatoBar" target="_blank">https://github.com/ivoronin/TomatoBar</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>s1ntoneli/Copi: macOS 剪贴板的安全替代品</title>
<pubDate>Wed, 20 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/s1ntoneli/Copi</link>
<guid>https://github.com/s1ntoneli/Copi</guid>
<content:encoded><![CDATA[<a href="https://github.com/s1ntoneli/Copi" target="_blank">s1ntoneli/Copi: macOS 剪贴板的安全替代品</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/s1ntoneli/Copi" target="_blank">https://github.com/s1ntoneli/Copi</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Bearer/bearer: 代码安全扫描工具 (SAST) 用于发现、筛选安全和隐私风险并确定其优先级。</title>
<pubDate>Wed, 20 Nov 2024 16:00:00 +0000</pubDate>
<link>SAST) 用于发现、筛选安全和隐私风险并确定其优先级。](https://github.com/Bearer/bearer</link>
<guid isPermaLink="false">SAST) 用于发现、筛选安全和隐私风险并确定其优先级。](https://github.com/Bearer/bearer</guid>
<content:encoded><![CDATA[<a href="SAST) 用于发现、筛选安全和隐私风险并确定其优先级。](https://github.com/Bearer/bearer" target="_blank">Bearer/bearer: 代码安全扫描工具 (SAST) 用于发现、筛选安全和隐私风险并确定其优先级。</a>
<h3>相关链接</h3>
<ul>
<li><a href="SAST) 用于发现、筛选安全和隐私风险并确定其优先级。](https://github.com/Bearer/bearer" target="_blank">SAST) 用于发现、筛选安全和隐私风险并确定其优先级。](https://github.com/Bearer/bearer</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>antofthy.gitlab.io/info/ascii/Spinners.txt: Spinners</title>
<pubDate>Wed, 20 Nov 2024 08:00:00 +0000</pubDate>
<link>https://antofthy.gitlab.io/info/ascii/Spinners.txt</link>
<guid>https://antofthy.gitlab.io/info/ascii/Spinners.txt</guid>
<content:encoded><![CDATA[<a href="https://antofthy.gitlab.io/info/ascii/Spinners.txt" target="_blank">antofthy.gitlab.io/info/ascii/Spinners.txt: Spinners</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://antofthy.gitlab.io/info/ascii/Spinners.txt" target="_blank">https://antofthy.gitlab.io/info/ascii/Spinners.txt</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>lav45/yii2-activity-logger: 该扩展可帮助您跟踪用户在网站上的活动</title>
<pubDate>Tue, 19 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/lav45/yii2-activity-logger</link>
<guid>https://github.com/lav45/yii2-activity-logger</guid>
<content:encoded><![CDATA[<a href="https://github.com/lav45/yii2-activity-logger" target="_blank">lav45/yii2-activity-logger: 该扩展可帮助您跟踪用户在网站上的活动</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/lav45/yii2-activity-logger" target="_blank">https://github.com/lav45/yii2-activity-logger</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>nhedger/unicon: 🦄 Laravel 的通用图标组件</title>
<pubDate>Tue, 19 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/nhedger/unicon</link>
<guid>https://github.com/nhedger/unicon</guid>
<content:encoded><![CDATA[<a href="https://github.com/nhedger/unicon" target="_blank">nhedger/unicon: 🦄 Laravel 的通用图标组件</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/nhedger/unicon" target="_blank">https://github.com/nhedger/unicon</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>tidwall/match: Go 的简单字符串模式匹配器</title>
<pubDate>Mon, 18 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/tidwall/match</link>
<guid>https://github.com/tidwall/match</guid>
<content:encoded><![CDATA[<a href="https://github.com/tidwall/match" target="_blank">tidwall/match: Go 的简单字符串模式匹配器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/tidwall/match" target="_blank">https://github.com/tidwall/match</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>omaralalwi/lexi-translate:通过 morph、relationships 和 caching 的强大功能简化多语言 Eloquent 模型的翻译管理。</title>
<pubDate>Mon, 18 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/omaralalwi/lexi-translate</link>
<guid>https://github.com/omaralalwi/lexi-translate</guid>
<content:encoded><![CDATA[<a href="https://github.com/omaralalwi/lexi-translate" target="_blank">omaralalwi/lexi-translate:通过 morph、relationships 和 caching 的强大功能简化多语言 Eloquent 模型的翻译管理。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/omaralalwi/lexi-translate" target="_blank">https://github.com/omaralalwi/lexi-translate</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>MxIris-LyricsX-Project/LyricsX: 🎶 适用于 macOS 的终极歌词应用程序。</title>
<pubDate>Mon, 18 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/MxIris-LyricsX-Project/LyricsX</link>
<guid>https://github.com/MxIris-LyricsX-Project/LyricsX</guid>
<content:encoded><![CDATA[<a href="https://github.com/MxIris-LyricsX-Project/LyricsX" target="_blank">MxIris-LyricsX-Project/LyricsX: 🎶 适用于 macOS 的终极歌词应用程序。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/MxIris-LyricsX-Project/LyricsX" target="_blank">https://github.com/MxIris-LyricsX-Project/LyricsX</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zenstruck/memoize: Helper trait 来有效地在内存中缓存昂贵的方法。</title>
<pubDate>Sun, 17 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/zenstruck/memoize</link>
<guid>https://github.com/zenstruck/memoize</guid>
<content:encoded><![CDATA[<a href="https://github.com/zenstruck/memoize" target="_blank">zenstruck/memoize: Helper trait 来有效地在内存中缓存昂贵的方法。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zenstruck/memoize" target="_blank">https://github.com/zenstruck/memoize</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zenstruck/uri: parse_url 面向对象的封装器/操纵器</title>
<pubDate>Sun, 17 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/zenstruck/uri</link>
<guid>https://github.com/zenstruck/uri</guid>
<content:encoded><![CDATA[<a href="https://github.com/zenstruck/uri" target="_blank">zenstruck/uri: parse_url 面向对象的封装器/操纵器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zenstruck/uri" target="_blank">https://github.com/zenstruck/uri</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zenstruck/changelog: 使用提交日志和 Github API 生成漂亮的版本变更日志。</title>
<pubDate>Sun, 17 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/zenstruck/changelog</link>
<guid>https://github.com/zenstruck/changelog</guid>
<content:encoded><![CDATA[<a href="https://github.com/zenstruck/changelog" target="_blank">zenstruck/changelog: 使用提交日志和 Github API 生成漂亮的版本变更日志。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zenstruck/changelog" target="_blank">https://github.com/zenstruck/changelog</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zenstruck/callback: callable 包装器来验证和注入参数。</title>
<pubDate>Sat, 16 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/zenstruck/callback</link>
<guid>https://github.com/zenstruck/callback</guid>
<content:encoded><![CDATA[<a href="https://github.com/zenstruck/callback" target="_blank">zenstruck/callback: callable 包装器来验证和注入参数。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zenstruck/callback" target="_blank">https://github.com/zenstruck/callback</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>
<title>zenstruck/stream: PHP 资源的对象包装器。</title>
<pubDate>Sat, 16 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/zenstruck/stream</link>
<guid>https://github.com/zenstruck/stream</guid>
<content:encoded><![CDATA[<a href="https://github.com/zenstruck/stream" target="_blank">zenstruck/stream: PHP 资源的对象包装器。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/zenstruck/stream" target="_blank">https://github.com/zenstruck/stream</a></li>
<li><a href="https://github.com/guanguans/favorite-link" target="_blank">https://github.com/guanguans/favorite-link</a></li>
</ul>]]></content:encoded>
<slash:comments>0</slash:comments>
</item>
<item>