-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
README.rss
11648 lines (11648 loc) · 793 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>Sun, 22 Dec 2024 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>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>
<title>RonasIT/laravel-entity-generator: 该生成器用于为新实体创建标准类栈。</title>
<pubDate>Sun, 17 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/RonasIT/laravel-entity-generator</link>
<guid>https://github.com/RonasIT/laravel-entity-generator</guid>
<content:encoded><![CDATA[<a href="https://github.com/RonasIT/laravel-entity-generator" target="_blank">RonasIT/laravel-entity-generator: 该生成器用于为新实体创建标准类栈。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/RonasIT/laravel-entity-generator" target="_blank">https://github.com/RonasIT/laravel-entity-generator</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>silviolleite/laravel-pwa: 这个 Laravel 软件包能将你的项目转化为渐进式 web 应用程序。</title>
<pubDate>Sun, 17 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/silviolleite/laravel-pwa</link>
<guid>https://github.com/silviolleite/laravel-pwa</guid>
<content:encoded><![CDATA[<a href="https://github.com/silviolleite/laravel-pwa" target="_blank">silviolleite/laravel-pwa: 这个 Laravel 软件包能将你的项目转化为渐进式 web 应用程序。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/silviolleite/laravel-pwa" target="_blank">https://github.com/silviolleite/laravel-pwa</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>0xJacky/nginx-ui: Nginx 的另一个 WebUI</title>
<pubDate>Sun, 17 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/0xJacky/nginx-ui</link>
<guid>https://github.com/0xJacky/nginx-ui</guid>
<content:encoded><![CDATA[<a href="https://github.com/0xJacky/nginx-ui" target="_blank">0xJacky/nginx-ui: Nginx 的另一个 WebUI</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/0xJacky/nginx-ui" target="_blank">https://github.com/0xJacky/nginx-ui</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>Nutlope/logocreator: 由 Together AI 上的 Flux 提供支持的免费 + 开放源码软件徽标生成器</title>
<pubDate>Sat, 16 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/Nutlope/logocreator</link>
<guid>https://github.com/Nutlope/logocreator</guid>
<content:encoded><![CDATA[<a href="https://github.com/Nutlope/logocreator" target="_blank">Nutlope/logocreator: 由 Together AI 上的 Flux 提供支持的免费 + 开放源码软件徽标生成器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Nutlope/logocreator" target="_blank">https://github.com/Nutlope/logocreator</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>Laravel 中的流式响应:高效数据交付指南 --- Streaming Responses in Laravel: A Guide to Efficient Data Delivery</title>
<pubDate>Sat, 16 Nov 2024 08:00:00 +0000</pubDate>
<link>https://www.harrisrafto.eu/streaming-responses-in-laravel-a-guide-to-efficient-data-delivery/</link>
<guid>https://www.harrisrafto.eu/streaming-responses-in-laravel-a-guide-to-efficient-data-delivery/</guid>
<content:encoded><![CDATA[<a href="https://www.harrisrafto.eu/streaming-responses-in-laravel-a-guide-to-efficient-data-delivery/" target="_blank">Laravel 中的流式响应:高效数据交付指南 --- Streaming Responses in Laravel: A Guide to Efficient Data Delivery</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://www.harrisrafto.eu/streaming-responses-in-laravel-a-guide-to-efficient-data-delivery/" target="_blank">https://www.harrisrafto.eu/streaming-responses-in-laravel-a-guide-to-efficient-data-delivery/</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>google/go-safeweb: Go 中的默认安全 HTTP 服务器</title>
<pubDate>Thu, 14 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/google/go-safeweb</link>
<guid>https://github.com/google/go-safeweb</guid>
<content:encoded><![CDATA[<a href="https://github.com/google/go-safeweb" target="_blank">google/go-safeweb: Go 中的默认安全 HTTP 服务器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/google/go-safeweb" target="_blank">https://github.com/google/go-safeweb</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>Adyen/adyen-php-api-library: 适用于 PHP 的 Adyen API 库</title>
<pubDate>Wed, 13 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/Adyen/adyen-php-api-library</link>
<guid>https://github.com/Adyen/adyen-php-api-library</guid>
<content:encoded><![CDATA[<a href="https://github.com/Adyen/adyen-php-api-library" target="_blank">Adyen/adyen-php-api-library: 适用于 PHP 的 Adyen API 库</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Adyen/adyen-php-api-library" target="_blank">https://github.com/Adyen/adyen-php-api-library</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>mokhosh/muddle: 隐藏和保护电子邮件免受机器人的侵害。在 PHP 和 Laravel 中混淆电子邮件。</title>
<pubDate>Wed, 13 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/mokhosh/muddle</link>
<guid>https://github.com/mokhosh/muddle</guid>
<content:encoded><![CDATA[<a href="https://github.com/mokhosh/muddle" target="_blank">mokhosh/muddle: 隐藏和保护电子邮件免受机器人的侵害。在 PHP 和 Laravel 中混淆电子邮件。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/mokhosh/muddle" target="_blank">https://github.com/mokhosh/muddle</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>logrotate/logrotate: Logrotate 实用程序旨在简化生成大量日志文件的系统日志文件的管理。Logrotate 允许自动旋转压缩、删除和邮寄日志文件。</title>
<pubDate>Wed, 13 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/logrotate/logrotate</link>
<guid>https://github.com/logrotate/logrotate</guid>
<content:encoded><![CDATA[<a href="https://github.com/logrotate/logrotate" target="_blank">logrotate/logrotate: Logrotate 实用程序旨在简化生成大量日志文件的系统日志文件的管理。Logrotate 允许自动旋转压缩、删除和邮寄日志文件。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/logrotate/logrotate" target="_blank">https://github.com/logrotate/logrotate</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>exo-explore/exo: 在家利用日常设备运行自己的人工智能集群 📱 🖥️⌚</title>
<pubDate>Tue, 12 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/exo-explore/exo</link>
<guid>https://github.com/exo-explore/exo</guid>
<content:encoded><![CDATA[<a href="https://github.com/exo-explore/exo" target="_blank">exo-explore/exo: 在家利用日常设备运行自己的人工智能集群 📱 🖥️⌚</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/exo-explore/exo" target="_blank">https://github.com/exo-explore/exo</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>shailesh-ladumor/laravel-pwa: 使 laravel 网站成为渐进式网络应用程序。</title>
<pubDate>Tue, 12 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/shailesh-ladumor/laravel-pwa</link>
<guid>https://github.com/shailesh-ladumor/laravel-pwa</guid>
<content:encoded><![CDATA[<a href="https://github.com/shailesh-ladumor/laravel-pwa" target="_blank">shailesh-ladumor/laravel-pwa: 使 laravel 网站成为渐进式网络应用程序。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/shailesh-ladumor/laravel-pwa" target="_blank">https://github.com/shailesh-ladumor/laravel-pwa</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>liujuntao123/chines-history-video: 中国历朝代历史视频讲解</title>
<pubDate>Mon, 11 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/liujuntao123/chines-history-video</link>
<guid>https://github.com/liujuntao123/chines-history-video</guid>
<content:encoded><![CDATA[<a href="https://github.com/liujuntao123/chines-history-video" target="_blank">liujuntao123/chines-history-video: 中国历朝代历史视频讲解</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/liujuntao123/chines-history-video" target="_blank">https://github.com/liujuntao123/chines-history-video</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>daytonaio/daytona: 开源开发环境管理器</title>
<pubDate>Mon, 11 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/daytonaio/daytona</link>
<guid>https://github.com/daytonaio/daytona</guid>
<content:encoded><![CDATA[<a href="https://github.com/daytonaio/daytona" target="_blank">daytonaio/daytona: 开源开发环境管理器</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/daytonaio/daytona" target="_blank">https://github.com/daytonaio/daytona</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>cmacrae/spacebar: 适用于 macOS 的最小状态栏。非常适合与 yabai 等平铺式窗口管理器配合使用</title>
<pubDate>Mon, 11 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/cmacrae/spacebar</link>
<guid>https://github.com/cmacrae/spacebar</guid>
<content:encoded><![CDATA[<a href="https://github.com/cmacrae/spacebar" target="_blank">cmacrae/spacebar: 适用于 macOS 的最小状态栏。非常适合与 yabai 等平铺式窗口管理器配合使用</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/cmacrae/spacebar" target="_blank">https://github.com/cmacrae/spacebar</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>Zakarialabib/myStockMaster: 使用 Laravel TALLSTACK 进行一体化库存和 ERP 管理</title>
<pubDate>Sun, 10 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/Zakarialabib/myStockMaster</link>
<guid>https://github.com/Zakarialabib/myStockMaster</guid>
<content:encoded><![CDATA[<a href="https://github.com/Zakarialabib/myStockMaster" target="_blank">Zakarialabib/myStockMaster: 使用 Laravel TALLSTACK 进行一体化库存和 ERP 管理</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Zakarialabib/myStockMaster" target="_blank">https://github.com/Zakarialabib/myStockMaster</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/xHistory: 命令行历史记录管理工具</title>
<pubDate>Sun, 10 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/lihaoyun6/xHistory</link>
<guid>https://github.com/lihaoyun6/xHistory</guid>
<content:encoded><![CDATA[<a href="https://github.com/lihaoyun6/xHistory" target="_blank">lihaoyun6/xHistory: 命令行历史记录管理工具</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/lihaoyun6/xHistory" target="_blank">https://github.com/lihaoyun6/xHistory</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: jaywcjlove/rightmenu-master: 出色的 Finder 右键菜单增强工具,让你的右键菜单更加强大。</title>
<pubDate>Sun, 10 Nov 2024 16: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: jaywcjlove/rightmenu-master: 出色的 Finder 右键菜单增强工具,让你的右键菜单更加强大。</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>jaywcjlove/rightmenu-master: jaywcjlove/rightmenu-master: 出色的 Finder 右键菜单增强工具,让你的右键菜单更加强大。</title>
<pubDate>Sun, 10 Nov 2024 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: jaywcjlove/rightmenu-master: 出色的 Finder 右键菜单增强工具,让你的右键菜单更加强大。</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>Laravel Nightwatch 提供对应用程序性能的无与伦比的洞察,只有针对 Laravel 进行专门优化的系统才能提供智能。</title>
<pubDate>Sun, 10 Nov 2024 00:00:00 +0000</pubDate>
<link>https://nightwatch.laravel.com/</link>
<guid>https://nightwatch.laravel.com/</guid>
<content:encoded><![CDATA[<a href="https://nightwatch.laravel.com/" target="_blank">Laravel Nightwatch 提供对应用程序性能的无与伦比的洞察,只有针对 Laravel 进行专门优化的系统才能提供智能。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://nightwatch.laravel.com/" target="_blank">https://nightwatch.laravel.com/</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>Sat, 09 Nov 2024 16:00:00 +0000</pubDate>
<link>https://use-the-index-luke.com/no-offset</link>
<guid>https://use-the-index-luke.com/no-offset</guid>
<content:encoded><![CDATA[<a href="https://use-the-index-luke.com/no-offset" target="_blank">我们需要工具支持按键组分页</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://use-the-index-luke.com/no-offset" target="_blank">https://use-the-index-luke.com/no-offset</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>laminas/laminas-diagnostics: 用于在 PHP 应用程序中执行诊断测试的组件集</title>
<pubDate>Thu, 07 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/laminas/laminas-diagnostics</link>
<guid>https://github.com/laminas/laminas-diagnostics</guid>
<content:encoded><![CDATA[<a href="https://github.com/laminas/laminas-diagnostics" target="_blank">laminas/laminas-diagnostics: 用于在 PHP 应用程序中执行诊断测试的组件集</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/laminas/laminas-diagnostics" target="_blank">https://github.com/laminas/laminas-diagnostics</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>aarondfrancis/solo: Solo for Laravel 是一个可同时运行多个命令的软件包,有助于本地开发。</title>
<pubDate>Thu, 07 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/aarondfrancis/solo</link>
<guid>https://github.com/aarondfrancis/solo</guid>
<content:encoded><![CDATA[<a href="https://github.com/aarondfrancis/solo" target="_blank">aarondfrancis/solo: Solo for Laravel 是一个可同时运行多个命令的软件包,有助于本地开发。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/aarondfrancis/solo" target="_blank">https://github.com/aarondfrancis/solo</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>MySQL 中的查询优化:优化 Top 查询与慢速查询</title>
<pubDate>Thu, 07 Nov 2024 00:00:00 +0000</pubDate>
<link>https://releem.com/blog/mysql-query-optimization-top-queries-vs-slow-queries</link>
<guid>https://releem.com/blog/mysql-query-optimization-top-queries-vs-slow-queries</guid>
<content:encoded><![CDATA[<a href="https://releem.com/blog/mysql-query-optimization-top-queries-vs-slow-queries" target="_blank">MySQL 中的查询优化:优化 Top 查询与慢速查询</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://releem.com/blog/mysql-query-optimization-top-queries-vs-slow-queries" target="_blank">https://releem.com/blog/mysql-query-optimization-top-queries-vs-slow-queries</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>abbasudo/pulse-users: Pulse Users 为您提供每小时分布式请求图表。</title>
<pubDate>Wed, 06 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/abbasudo/pulse-users</link>
<guid>https://github.com/abbasudo/pulse-users</guid>
<content:encoded><![CDATA[<a href="https://github.com/abbasudo/pulse-users" target="_blank">abbasudo/pulse-users: Pulse Users 为您提供每小时分布式请求图表。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/abbasudo/pulse-users" target="_blank">https://github.com/abbasudo/pulse-users</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>Laravel-Backpack/basset: 无论你的 CSS/JS/etc 资产在哪里,都能轻松使用,而不仅仅是你的公共目录</title>
<pubDate>Wed, 06 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/Laravel-Backpack/basset</link>
<guid>https://github.com/Laravel-Backpack/basset</guid>
<content:encoded><![CDATA[<a href="https://github.com/Laravel-Backpack/basset" target="_blank">Laravel-Backpack/basset: 无论你的 CSS/JS/etc 资产在哪里,都能轻松使用,而不仅仅是你的公共目录</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Laravel-Backpack/basset" target="_blank">https://github.com/Laravel-Backpack/basset</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>q2316367743/es-client: ES 查询客户端,elasticsearch 可视化工具</title>
<pubDate>Wed, 06 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/q2316367743/es-client</link>
<guid>https://github.com/q2316367743/es-client</guid>
<content:encoded><![CDATA[<a href="https://github.com/q2316367743/es-client" target="_blank">q2316367743/es-client: ES 查询客户端,elasticsearch 可视化工具</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/q2316367743/es-client" target="_blank">https://github.com/q2316367743/es-client</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>Abdenasser/neohtop: 基于 Svelte、Rust 和 Tauri 的现代跨平台系统监视器。</title>
<pubDate>Tue, 05 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/Abdenasser/neohtop</link>
<guid>https://github.com/Abdenasser/neohtop</guid>
<content:encoded><![CDATA[<a href="https://github.com/Abdenasser/neohtop" target="_blank">Abdenasser/neohtop: 基于 Svelte、Rust 和 Tauri 的现代跨平台系统监视器。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Abdenasser/neohtop" target="_blank">https://github.com/Abdenasser/neohtop</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>thinhbuzz/laravel-google-captcha: 适用于 Laravel 5、Laravel 6、Laravel 7、Laravel 8、Laravel 9 和 Laravel 10 的谷歌验证码,支持页面上的多重验证码</title>
<pubDate>Tue, 05 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/thinhbuzz/laravel-google-captcha</link>
<guid>https://github.com/thinhbuzz/laravel-google-captcha</guid>
<content:encoded><![CDATA[<a href="https://github.com/thinhbuzz/laravel-google-captcha" target="_blank">thinhbuzz/laravel-google-captcha: 适用于 Laravel 5、Laravel 6、Laravel 7、Laravel 8、Laravel 9 和 Laravel 10 的谷歌验证码,支持页面上的多重验证码</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/thinhbuzz/laravel-google-captcha" target="_blank">https://github.com/thinhbuzz/laravel-google-captcha</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>haiderjabbar/laravelsolr: 与 Apache Solr 无缝集成的 Laravel 软件包,为核心管理提供易用的命令,为 Solr 操作提供流畅的界面。</title>
<pubDate>Tue, 05 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/haiderjabbar/laravelsolr</link>
<guid>https://github.com/haiderjabbar/laravelsolr</guid>
<content:encoded><![CDATA[<a href="https://github.com/haiderjabbar/laravelsolr" target="_blank">haiderjabbar/laravelsolr: 与 Apache Solr 无缝集成的 Laravel 软件包,为核心管理提供易用的命令,为 Solr 操作提供流畅的界面。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/haiderjabbar/laravelsolr" target="_blank">https://github.com/haiderjabbar/laravelsolr</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>huzaifaarain/telescope-guzzle-watcher: Telescope Guzzle Watcher 提供一个自定义监视器,用于拦截通过 guzzlehttp/guzzle php 库发出的 http 请求。</title>
<pubDate>Mon, 04 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/huzaifaarain/telescope-guzzle-watcher</link>
<guid>https://github.com/huzaifaarain/telescope-guzzle-watcher</guid>
<content:encoded><![CDATA[<a href="https://github.com/huzaifaarain/telescope-guzzle-watcher" target="_blank">huzaifaarain/telescope-guzzle-watcher: Telescope Guzzle Watcher 提供一个自定义监视器,用于拦截通过 guzzlehttp/guzzle php 库发出的 http 请求。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/huzaifaarain/telescope-guzzle-watcher" target="_blank">https://github.com/huzaifaarain/telescope-guzzle-watcher</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>marcocesarato/PHP-Antimalware-Scanner: AMWScan (PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。</title>
<pubDate>Mon, 04 Nov 2024 16:00:00 +0000</pubDate>
<link>PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。](https://github.com/marcocesarato/PHP-Antimalware-Scanner</link>
<guid isPermaLink="false">PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。](https://github.com/marcocesarato/PHP-Antimalware-Scanner</guid>
<content:encoded><![CDATA[<a href="PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。](https://github.com/marcocesarato/PHP-Antimalware-Scanner" target="_blank">marcocesarato/PHP-Antimalware-Scanner: AMWScan (PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。</a>
<h3>相关链接</h3>
<ul>
<li><a href="PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。](https://github.com/marcocesarato/PHP-Antimalware-Scanner" target="_blank">PHP Antimalware Scanner) 是一款免费工具,可扫描 php 文件并分析项目,查找其中的恶意代码。](https://github.com/marcocesarato/PHP-Antimalware-Scanner</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>RubyMetric/chsrc: 全平台通用换源工具与框架.</title>
<pubDate>Mon, 04 Nov 2024 08:00:00 +0000</pubDate>
<link>https://github.com/RubyMetric/chsrc</link>
<guid>https://github.com/RubyMetric/chsrc</guid>
<content:encoded><![CDATA[<a href="https://github.com/RubyMetric/chsrc" target="_blank">RubyMetric/chsrc: 全平台通用换源工具与框架.</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/RubyMetric/chsrc" target="_blank">https://github.com/RubyMetric/chsrc</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>voku/portable-ascii: 🔡 便携式 ASCII 库 - 适用于 PHP 的性能优化 (ascii) 字符串函数。</title>
<pubDate>Sun, 03 Nov 2024 16:00:00 +0000</pubDate>
<link>ascii) 字符串函数。](https://github.com/voku/portable-ascii</link>
<guid isPermaLink="false">ascii) 字符串函数。](https://github.com/voku/portable-ascii</guid>
<content:encoded><![CDATA[<a href="ascii) 字符串函数。](https://github.com/voku/portable-ascii" target="_blank">voku/portable-ascii: 🔡 便携式 ASCII 库 - 适用于 PHP 的性能优化 (ascii) 字符串函数。</a>
<h3>相关链接</h3>
<ul>
<li><a href="ascii) 字符串函数。](https://github.com/voku/portable-ascii" target="_blank">ascii) 字符串函数。](https://github.com/voku/portable-ascii</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>通过 SOCKS 代理连接到 git 存储库</title>
<pubDate>Sun, 03 Nov 2024 08:00:00 +0000</pubDate>
<link>https://masteringlaravel.io/daily/2024-11-01-connecting-to-a-git-repo-through-a-socks-proxy</link>
<guid>https://masteringlaravel.io/daily/2024-11-01-connecting-to-a-git-repo-through-a-socks-proxy</guid>
<content:encoded><![CDATA[<a href="https://masteringlaravel.io/daily/2024-11-01-connecting-to-a-git-repo-through-a-socks-proxy" target="_blank">通过 SOCKS 代理连接到 git 存储库</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://masteringlaravel.io/daily/2024-11-01-connecting-to-a-git-repo-through-a-socks-proxy" target="_blank">https://masteringlaravel.io/daily/2024-11-01-connecting-to-a-git-repo-through-a-socks-proxy</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>api-platform/laravel: 将 Laravel 和 Illuminate 组件与 API Platform 框架集成。</title>
<pubDate>Sun, 03 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/api-platform/laravel</link>
<guid>https://github.com/api-platform/laravel</guid>
<content:encoded><![CDATA[<a href="https://github.com/api-platform/laravel" target="_blank">api-platform/laravel: 将 Laravel 和 Illuminate 组件与 API Platform 框架集成。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/api-platform/laravel" target="_blank">https://github.com/api-platform/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>Ucar-Solutions/uri-signer: 用于在 PHP 应用程序中安全签署 PSR-15 URI 的最小软件包。</title>
<pubDate>Sat, 02 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/Ucar-Solutions/uri-signer</link>
<guid>https://github.com/Ucar-Solutions/uri-signer</guid>
<content:encoded><![CDATA[<a href="https://github.com/Ucar-Solutions/uri-signer" target="_blank">Ucar-Solutions/uri-signer: 用于在 PHP 应用程序中安全签署 PSR-15 URI 的最小软件包。</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/Ucar-Solutions/uri-signer" target="_blank">https://github.com/Ucar-Solutions/uri-signer</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>Nejcc/php-datatypes: 该库在 PHP 中引入了一种灵活而严格的方法来处理整数、浮点数和字符串等原始数据类型。它强调类型安全和精度,支持有符号和无符号整数 (Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。</title>
<pubDate>Sat, 02 Nov 2024 08:00:00 +0000</pubDate>
<link>Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。](https://github.com/Nejcc/php-datatypes</link>
<guid isPermaLink="false">Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。](https://github.com/Nejcc/php-datatypes</guid>
<content:encoded><![CDATA[<a href="Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。](https://github.com/Nejcc/php-datatypes" target="_blank">Nejcc/php-datatypes: 该库在 PHP 中引入了一种灵活而严格的方法来处理整数、浮点数和字符串等原始数据类型。它强调类型安全和精度,支持有符号和无符号整数 (Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。</a>
<h3>相关链接</h3>
<ul>
<li><a href="Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。](https://github.com/Nejcc/php-datatypes" target="_blank">Int8、UInt8 等) 以及各种浮点格式 (Float32、Float64 等) 的操作。](https://github.com/Nejcc/php-datatypes</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>beyondcode/php-spx: 简单明了的 PHP 剖析扩展,内置网络用户界面</title>
<pubDate>Sat, 02 Nov 2024 00:00:00 +0000</pubDate>
<link>https://github.com/beyondcode/php-spx</link>
<guid>https://github.com/beyondcode/php-spx</guid>
<content:encoded><![CDATA[<a href="https://github.com/beyondcode/php-spx" target="_blank">beyondcode/php-spx: 简单明了的 PHP 剖析扩展,内置网络用户界面</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/beyondcode/php-spx" target="_blank">https://github.com/beyondcode/php-spx</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>MySQL Parser</title>
<pubDate>Fri, 01 Nov 2024 16:00:00 +0000</pubDate>
<link>https://github.com/WordPress/sqlite-database-integration/blob/1fe180c/wp-content/plugins/sqlite-database-integration/wp-includes/mysql-parser/MySQLParser.php</link>
<guid>https://github.com/WordPress/sqlite-database-integration/blob/1fe180c/wp-content/plugins/sqlite-database-integration/wp-includes/mysql-parser/MySQLParser.php</guid>
<content:encoded><![CDATA[<a href="https://github.com/WordPress/sqlite-database-integration/blob/1fe180c/wp-content/plugins/sqlite-database-integration/wp-includes/mysql-parser/MySQLParser.php" target="_blank">MySQL Parser</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://github.com/WordPress/sqlite-database-integration/blob/1fe180c/wp-content/plugins/sqlite-database-integration/wp-includes/mysql-parser/MySQLParser.php" target="_blank">https://github.com/WordPress/sqlite-database-integration/blob/1fe180c/wp-content/plugins/sqlite-database-integration/wp-includes/mysql-parser/MySQLParser.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>使用 AI 生成 1MB 的 PHP 代码,MySQL 查询解析器的故事</title>
<pubDate>Fri, 01 Nov 2024 08:00:00 +0000</pubDate>
<link>https://adamadam.blog/2024/09/09/generating-a-mysql-parser-with-ai-google-gemini/</link>
<guid>https://adamadam.blog/2024/09/09/generating-a-mysql-parser-with-ai-google-gemini/</guid>
<content:encoded><![CDATA[<a href="https://adamadam.blog/2024/09/09/generating-a-mysql-parser-with-ai-google-gemini/" target="_blank">使用 AI 生成 1MB 的 PHP 代码,MySQL 查询解析器的故事</a>
<h3>相关链接</h3>
<ul>
<li><a href="https://adamadam.blog/2024/09/09/generating-a-mysql-parser-with-ai-google-gemini/" target="_blank">https://adamadam.blog/2024/09/09/generating-a-mysql-parser-with-ai-google-gemini/</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>