-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb3.log
2153 lines (2012 loc) · 186 KB
/
web3.log
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
nohup: ignoring input
2024-11-06 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
scrape() status_code: 200
https://github.com/tw93/Pake
https://github.com/zellij-org/zellij
https://github.com/zed-industries/zed
https://github.com/katanemo/arch
https://github.com/gleam-lang/gleam
https://github.com/rustdesk/rustdesk
https://github.com/typst/typst
https://github.com/surrealdb/surrealdb
https://github.com/emilk/egui
https://github.com/dani-garcia/vaultwarden
https://github.com/dandavison/delta
https://github.com/spaceandtimelabs/sxt-proof-of-sql
https://github.com/RustScan/RustScan
https://github.com/pola-rs/polars
https://github.com/modrinth/code
https://github.com/FuelLabs/sway
https://github.com/kitao/pyxel
https://github.com/huggingface/candle
https://github.com/microsoft/openvmm
https://github.com/nushell/nushell
https://github.com/apache/arrow-rs
https://github.com/helix-editor/helix
https://github.com/paritytech/polkadot-sdk
https://github.com/awslabs/mountpoint-s3
scape ends
ai is reading, the info is:
1. [tw93 / Pake]:🤱🏻 Turn any webpage into a desktop app with Rust. 🤱🏻 利用 Rust 轻松构建轻量级多端桌面应用(https://github.com/tw93/Pake)
2. [zellij-org / zellij]:A terminal workspace with batteries included(https://github.com/zellij-org/zellij)
3. [zed-industries / zed]:Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.(https://github.com/zed-industries/zed)
4. [katanemo / arch]:Arch is an intelligent prompt gateway. Engineered with (fast) LLMs for the secure handling, robust observability, and seamless integration of prompts with APIs - all outside business logic. Built by the core contributors of Envoy proxy, on Envoy.(https://github.com/katanemo/arch)
5. [gleam-lang / gleam]:⭐️ A friendly language for building type-safe, scalable systems!(https://github.com/gleam-lang/gleam)
6. [rustdesk / rustdesk]:An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.(https://github.com/rustdesk/rustdesk)
7. [typst / typst]:A new markup-based typesetting system that is powerful and easy to learn.(https://github.com/typst/typst)
8. [surrealdb / surrealdb]:A scalable, distributed, collaborative, document-graph database, for the realtime web(https://github.com/surrealdb/surrealdb)
9. [emilk / egui]:egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native(https://github.com/emilk/egui)
10. [dani-garcia / vaultwarden]:Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
11. [dandavison / delta]:A syntax-highlighting pager for git, diff, grep, and blame output(https://github.com/dandavison/delta)
12. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | Proof of SQL(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
13. [RustScan / RustScan]:🤖 The Modern Port Scanner 🤖(https://github.com/RustScan/RustScan)
14. [pola-rs / polars]:Dataframes powered by a multithreaded, vectorized query engine, written in Rust(https://github.com/pola-rs/polars)
15. [modrinth / code]:The Modrinth monorepo containing all code which powers Modrinth!(https://github.com/modrinth/code)
16. [FuelLabs / sway]:🌴 Empowering everyone to build reliable and efficient smart contracts.(https://github.com/FuelLabs/sway)
17. [kitao / pyxel]:A retro game engine for Python(https://github.com/kitao/pyxel)
18. [huggingface / candle]:Minimalist ML framework for Rust(https://github.com/huggingface/candle)
19. [microsoft / openvmm]:Home of OpenVMM and OpenHCL.(https://github.com/microsoft/openvmm)
20. [nushell / nushell]:A new type of shell(https://github.com/nushell/nushell)
21. [apache / arrow-rs]:Official Rust implementation of Apache Arrow(https://github.com/apache/arrow-rs)
22. [helix-editor / helix]:A post-modern modal text editor.(https://github.com/helix-editor/helix)
23. [paritytech / polkadot-sdk]:The Parity Polkadot Blockchain SDK(https://github.com/paritytech/polkadot-sdk)
24. [awslabs / mountpoint-s3]:A simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system.(https://github.com/awslabs/mountpoint-s3)
ai ans is:
1. [tw93 / Pake]:🤱🏻 将任何网页转换为桌面应用,Rust轻松构建轻量级多端桌面应用(https://github.com/tw93/Pake)
2. [zellij-org / zellij]:内置电池的终端工作区(https://github.com/zellij-org/zellij)
3. [zed-industries / zed]:思维速度的代码 – Zed 是 Atom 和 Tree-sitter 的创造者推出的高性能、多人代码编辑器。(https://github.com/zed-industries/zed)
4. [katanemo / arch]:Arch 是一个智能提示网关。由 Envoy 代理的核心贡献者构建,在 Envoy 上运行,用于安全处理、强大可观察性和提示与 API 的无缝集成。(https://github.com/katanemo/arch)
5. [gleam-lang / gleam]:⭐️ 一种构建类型安全、可扩展系统的友好语言!(https://github.com/gleam-lang/gleam)
6. [rustdesk / rustdesk]:一个开源的远程桌面应用程序,旨在自托管,是 TeamViewer 的替代品。(https://github.com/rustdesk/rustdesk)
7. [typst / typst]:一种功能强大且易于学习的基于标记的排版系统。(https://github.com/typst/typst)
8. [surrealdb / surrealdb]:一个可扩展的、分布式的、协作的文档图数据库,适用于实时网络。(https://github.com/surrealdb/surrealdb)
9. [emilk / egui]:egui:一个易于使用的即时模式 GUI,在 Rust 上运行,同时支持网页和原生。(https://github.com/emilk/egui)
10. [dani-garcia / vaultwarden]:Rust 编写的非官方 Bitwarden 兼容服务器,以前称为 bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
11. [dandavison / delta]:一个用于 git、diff、grep 和 blame 输出的语法高亮分页器。(https://github.com/dandavison/delta)
12. [spaceandtimelabs / sxt-proof-of-sql]:时空 | SQL 证明(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
13. [RustScan / RustScan]:🤖 现代端口扫描器 🤖(https://github.com/RustScan/RustScan)
14. [pola-rs / polars]:由多线程、向量查询引擎提供支持的数据帧,用 Rust 编写。(https://github.com/pola-rs/polars)
15. [modrinth / code]:Modrinth 的 monorepo,包含所有支持 Modrinth 的代码。(https://github.com/modrinth/code)
16. [FuelLabs / sway]:🌴 帮助每个人构建可靠且高效的智能合约。(https://github.com/FuelLabs/sway)
17. [kitao / pyxel]:Python 的复古游戏引擎。(https://github.com/kitao/pyxel)
18. [huggingface / candle]:Rust 的简约机器学习框架。(https://github.com/huggingface/candle)
19. [microsoft / openvmm]:OpenVMM 和 OpenHCL 的家园。(https://github.com/microsoft/openvmm)
20. [nushell / nushell]:一种新型 shell。(https://github.com/nushell/nushell)
21. [apache / arrow-rs]:Apache Arrow 的官方 Rust 实现。(https://github.com/apache/arrow-rs)
22. [helix-editor / helix]:一个后现代模式文本编辑器。(https://github.com/helix-editor/helix)
23. [paritytech / polkadot-sdk]:Parity Polkadot 区块链 SDK。(https://github.com/paritytech/polkadot-sdk)
24. [awslabs / mountpoint-s3]:将 Amazon S3 存储桶挂载为本地文件系统的简单、高吞吐量文件客户端。(https://github.com/awslabs/mountpoint-s3)
最惊艳的项目:[zed-industries / zed] - Zed 是一款由 Atom 和 Tree-sitter 的创造者推出的高性能、多人代码编辑器,具有思维速度的编码体验。
今天趋势项目的关注领域和特点:主要集中在开源软件、工具和框架的开发,包括编程语言、数据库、编辑器、机器学习框架和游戏引擎等。特点是注重性能、可扩展性和用户友好性,许多项目都采用了 Rust 语言,以实现高效和安全的开发。产品联系: [email protected]
2024-11-07 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/vercel/turborepo
https://github.com/rust-lang/rust
https://github.com/zed-industries/zed
https://github.com/rustdesk/rustdesk
https://github.com/tauri-apps/tauri
https://github.com/ankitects/anki
https://github.com/firecracker-microvm/firecracker
https://github.com/neondatabase/neon
https://github.com/pola-rs/polars
https://github.com/aptos-labs/aptos-core
https://github.com/vectordotdev/vector
https://github.com/neovide/neovide
https://github.com/awslabs/mountpoint-s3
https://github.com/denoland/deno
https://github.com/zellij-org/zellij
https://github.com/shadowsocks/shadowsocks-rust
https://github.com/rust-lang/rustlings
https://github.com/hyperium/tonic
https://github.com/gitbutlerapp/gitbutler
https://github.com/qdrant/qdrant
https://github.com/lancedb/lancedb
https://github.com/web-infra-dev/rspack
scape ends
ai is reading, the info is:
1. [vercel / turborepo]:Build system optimized for JavaScript and TypeScript, written in Rust(https://github.com/vercel/turborepo)
2. [rust-lang / rust]:Empowering everyone to build reliable and efficient software.(https://github.com/rust-lang/rust)
3. [zed-industries / zed]:Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.(https://github.com/zed-industries/zed)
4. [rustdesk / rustdesk]:An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.(https://github.com/rustdesk/rustdesk)
5. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
6. [ankitects / anki]:Anki's shared backend and web components, and the Qt frontend(https://github.com/ankitects/anki)
7. [firecracker-microvm / firecracker]:Secure and fast microVMs for serverless computing.(https://github.com/firecracker-microvm/firecracker)
8. [neondatabase / neon]:Neon: Serverless Postgres. We separated storage and compute to offer autoscaling, code-like database branching, and scale to zero.(https://github.com/neondatabase/neon)
9. [pola-rs / polars]:Dataframes powered by a multithreaded, vectorized query engine, written in Rust(https://github.com/pola-rs/polars)
10. [aptos-labs / aptos-core]:Aptos is a layer 1 blockchain built to support the widespread use of blockchain through better technology and user experience.(https://github.com/aptos-labs/aptos-core)
11. [vectordotdev / vector]:A high-performance observability data pipeline.(https://github.com/vectordotdev/vector)
12. [neovide / neovide]:No Nonsense Neovim Client in Rust(https://github.com/neovide/neovide)
13. [awslabs / mountpoint-s3]:A simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system.(https://github.com/awslabs/mountpoint-s3)
14. [denoland / deno]:A modern runtime for JavaScript and TypeScript.(https://github.com/denoland/deno)
15. [zellij-org / zellij]:A terminal workspace with batteries included(https://github.com/zellij-org/zellij)
16. [shadowsocks / shadowsocks-rust]:A Rust port of shadowsocks(https://github.com/shadowsocks/shadowsocks-rust)
17. [rust-lang / rustlings]:🦀 Small exercises to get you used to reading and writing Rust code!(https://github.com/rust-lang/rustlings)
18. [hyperium / tonic]:A native gRPC client & server implementation with async/await support.(https://github.com/hyperium/tonic)
19. [gitbutlerapp / gitbutler]:The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte(https://github.com/gitbutlerapp/gitbutler)
20. [qdrant / qdrant]:Qdrant - High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/(https://github.com/qdrant/qdrant)
21. [lancedb / lancedb]:Developer-friendly, serverless vector database for AI applications. Easily add long-term memory to your LLM apps!(https://github.com/lancedb/lancedb)
22. [web-infra-dev / rspack]:The fast Rust-based web bundler with webpack-compatible API 🦀️(https://github.com/web-infra-dev/rspack)
ai ans is:
1. [vercel / turborepo]:针对 JavaScript 和 TypeScript 优化的构建系统,由 Rust 编写(https://github.com/vercel/turborepo)
2. [rust-lang / rust]:赋予每个人构建可靠和高效软件的能力。(https://github.com/rust-lang/rust)
3. [zed-industries / zed]:以思想的速度编写代码 – Zed 是由 Atom 和 Tree-sitter 的创作者开发的性能出色、多人协作的代码编辑器。(https://github.com/zed-industries/zed)
4. [rustdesk / rustdesk]:一个开源的远程桌面应用程序,旨在自托管,作为 TeamViewer 的替代品。(https://github.com/rustdesk/rustdesk)
5. [tauri-apps / tauri]:使用 Web 前端构建更小、更快、更安全的桌面和移动应用程序。(https://github.com/tauri-apps/tauri)
6. [ankitects / anki]:Anki 的共享后端和 Web 组件,以及 Qt 前端(https://github.com/ankitects/anki)
7. [firecracker-microvm / firecracker]:用于无服务器计算的安全且快速的微虚拟机。(https://github.com/firecracker-microvm/firecracker)
8. [neondatabase / neon]:Neon:无服务器 Postgres。我们分离了存储和计算,以提供自动扩展、类似于代码的数据库分支和零扩展。(https://github.com/neondatabase/neon)
9. [pola-rs / polars]:由多线程、向量化查询引擎提供支持的数据帧,由 Rust 编写(https://github.com/pola-rs/polars)
10. [aptos-labs / aptos-core]:Aptos 是一个基于 Layer 1 的区块链,旨在通过更好的技术和用户体验来支持区块链的广泛应用。(https://github.com/aptos-labs/aptos-core)
11. [vectordotdev / vector]:高性能的可观察性数据处理管道。(https://github.com/vectordotdev/vector)
12. [neovide / neovide]:Rust 编写的无废话 Neovim 客户端(https://github.com/neovide/neovide)
13. [awslabs / mountpoint-s3]:一个简单、高吞吐量的文件客户端,可以将 Amazon S3 存储桶挂载为本地文件系统。(https://github.com/awslabs/mountpoint-s3)
14. [denoland / deno]:JavaScript 和 TypeScript 的现代运行时。(https://github.com/denoland/deno)
15. [zellij-org / zellij]:包含电池的终端工作空间(https://github.com/zellij-org/zellij)
16. [shadowsocks / shadowsocks-rust]:shadowsocks 的 Rust 版本(https://github.com/shadowsocks/shadowsocks-rust)
17. [rust-lang / rustlings]:🦀 小练习,帮助您习惯阅读和编写 Rust 代码!(https://github.com/rust-lang/rustlings)
18. [hyperium / tonic]:具有异步/等待支持的本地 gRPC 客户端和服务器实现。(https://github.com/hyperium/tonic)
19. [gitbutlerapp / gitbutler]:GitButler 版本控制客户端,由 Git 支持,由 Tauri/Rust/Svelte 驱动(https://github.com/gitbutlerapp/gitbutler)
20. [qdrant / qdrant]:Qdrant - 高性能、大规模向量数据库和向量搜索引擎,用于下一代 AI。同时也在云端可用 https://cloud.qdrant.io/(https://github.com/qdrant/qdrant)
21. [lancedb / lancedb]:为 AI 应用程序提供开发者友好的、无服务器的向量数据库。轻松为您的 LLM 应用程序添加长期记忆!(https://github.com/lancedb/lancedb)
22. [web-infra-dev / rspack]:快速的基于 Rust 的 Web 打包器,具有与 webpack 兼容的 API 🦀️(https://github.com/web-infra-dev/rspack)
惊艳项目安利:[zed-industries / zed] - 以思想的速度编写代码,由 Atom 和 Tree-sitter 的创作者开发的性能出色、多人协作的代码编辑器。
今日趋势项目关注的领域和特点:今天的项目主要集中在性能优化、安全性和用户体验上,涉及了从构建系统到数据库,再到区块链和人工智能应用等多个领域。产品联系: [email protected]
2024-11-08 start the job...
try at 0 to get trends~
when scrape ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
scrape() status_code: 200
https://github.com/pola-rs/polars
https://github.com/rolldown/rolldown
https://github.com/rust-lang/rust
https://github.com/awslabs/mountpoint-s3
https://github.com/rustdesk/rustdesk
https://github.com/casey/just
https://github.com/flxzt/rnote
https://github.com/glzr-io/zebar
https://github.com/GyulyVGC/sniffnet
https://github.com/libp2p/rust-libp2p
https://github.com/dani-garcia/vaultwarden
https://github.com/lancedb/lancedb
https://github.com/vectordotdev/vector
https://github.com/katanemo/arch
https://github.com/tauri-apps/tauri
https://github.com/astral-sh/uv
https://github.com/ClementTsang/bottom
https://github.com/neondatabase/neon
https://github.com/GreptimeTeam/greptimedb
https://github.com/prefix-dev/pixi
https://github.com/delta-io/delta-rs
https://github.com/dandavison/delta
https://github.com/rust-lang/rustlings
scape ends
ai is reading, the info is:
1. [pola-rs / polars]:Dataframes powered by a multithreaded, vectorized query engine, written in Rust(https://github.com/pola-rs/polars)
2. [rolldown / rolldown]:Fast Rust bundler for JavaScript/TypeScript with Rollup-compatible API.(https://github.com/rolldown/rolldown)
3. [rust-lang / rust]:Empowering everyone to build reliable and efficient software.(https://github.com/rust-lang/rust)
4. [awslabs / mountpoint-s3]:A simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system.(https://github.com/awslabs/mountpoint-s3)
5. [rustdesk / rustdesk]:An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.(https://github.com/rustdesk/rustdesk)
6. [casey / just]:🤖 Just a command runner(https://github.com/casey/just)
7. [flxzt / rnote]:Sketch and take handwritten notes.(https://github.com/flxzt/rnote)
8. [glzr-io / zebar]:Zebar is a tool for creating customizable and cross-platform taskbars, desktop widgets, and popups.(https://github.com/glzr-io/zebar)
9. [GyulyVGC / sniffnet]:Comfortably monitor your Internet traffic 🕵️♂️(https://github.com/GyulyVGC/sniffnet)
10. [libp2p / rust-libp2p]:The Rust Implementation of the libp2p networking stack.(https://github.com/libp2p/rust-libp2p)
11. [dani-garcia / vaultwarden]:Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
12. [lancedb / lancedb]:Developer-friendly, serverless vector database for AI applications. Easily add long-term memory to your LLM apps!(https://github.com/lancedb/lancedb)
13. [vectordotdev / vector]:A high-performance observability data pipeline.(https://github.com/vectordotdev/vector)
14. [katanemo / arch]:Arch is an intelligent prompt gateway. Engineered with (fast) LLMs for the secure handling, robust observability, and seamless integration of prompts with APIs - all outside business logic. Built by the core contributors of Envoy proxy, on Envoy.(https://github.com/katanemo/arch)
15. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
16. [astral-sh / uv]:An extremely fast Python package and project manager, written in Rust.(https://github.com/astral-sh/uv)
17. [ClementTsang / bottom]:Yet another cross-platform graphical process/system monitor.(https://github.com/ClementTsang/bottom)
18. [neondatabase / neon]:Neon: Serverless Postgres. We separated storage and compute to offer autoscaling, code-like database branching, and scale to zero.(https://github.com/neondatabase/neon)
19. [GreptimeTeam / greptimedb]:An open-source, cloud-native, unified time series database for metrics, logs and events with SQL/PromQL supported. Available on GreptimeCloud.(https://github.com/GreptimeTeam/greptimedb)
20. [prefix-dev / pixi]:Package management made easy(https://github.com/prefix-dev/pixi)
21. [delta-io / delta-rs]:A native Rust library for Delta Lake, with bindings into Python(https://github.com/delta-io/delta-rs)
22. [dandavison / delta]:A syntax-highlighting pager for git, diff, grep, and blame output(https://github.com/dandavison/delta)
23. [rust-lang / rustlings]:🦀 Small exercises to get you used to reading and writing Rust code!(https://github.com/rust-lang/rustlings)
ai ans is:
1. [pola-rs / polars]:由多线程、向量查询引擎驱动的数据帧,使用Rust编写。(https://github.com/pola-rs/polars)
2. [rolldown / rolldown]:使用Rollup兼容API的快速Rust打包器,适用于JavaScript/TypeScript。(https://github.com/rolldown/rolldown)
3. [rust-lang / rust]:赋予每个人构建可靠和高效软件的能力。(https://github.com/rust-lang/rust)
4. [awslabs / mountpoint-s3]:将Amazon S3存储桶挂载为本地文件系统的高吞吐量文件客户端。(https://github.com/awslabs/mountpoint-s3)
5. [rustdesk / rustdesk]:一个开源的远程桌面应用程序,适用于自托管,是TeamViewer的替代品。(https://github.com/rustdesk/rustdesk)
6. [casey / just]:🤖 Just是一个命令运行器。(https://github.com/casey/just)
7. [flxzt / rnote]:绘制和记录手写笔记。(https://github.com/flxzt/rnote)
8. [glzr-io / zebar]:Zebar是一个用于创建可定制和跨平台的任务栏、桌面小部件和弹出窗口的工具。(https://github.com/glzr-io/zebar)
9. [GyulyVGC / sniffnet]:舒适地监控您的互联网流量 🕵️♂️(https://github.com/GyulyVGC/sniffnet)
10. [libp2p / rust-libp2p]:libp2p网络堆栈的Rust实现。(https://github.com/libp2p/rust-libp2p)
11. [dani-garcia / vaultwarden]:使用Rust编写的非官方Bitwarden兼容服务器,以前称为bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
12. [lancedb / lancedb]:为AI应用程序设计的开发者友好型、无服务器向量数据库。轻松为您的LLM应用程序添加长期记忆!(https://github.com/lancedb/lancedb)
13. [vectordotdev / vector]:高性能的可观察性数据处理管道。(https://github.com/vectordotdev/vector)
14. [katanemo / arch]:Arch是一个智能提示网关。使用(快速)LLM构建,用于安全处理、强大可观察性和与API的无缝集成,所有这些都位于业务逻辑之外。由Envoy代理的核心贡献者构建,基于Envoy。(https://github.com/katanemo/arch)
15. [tauri-apps / tauri]:使用Web前端构建更小、更快、更安全的桌面和移动应用程序。(https://github.com/tauri-apps/tauri)
16. [astral-sh / uv]:一个由Rust编写的非常快的Python包和项目管理器。(https://github.com/astral-sh/uv)
17. [ClementTsang / bottom]:另一个跨平台的图形进程/系统监视器。(https://github.com/ClementTsang/bottom)
18. [neondatabase / neon]:Neon:无服务器PostgreSQL。我们将存储和计算分离,以提供自动扩展、类似代码的数据库分支和零扩展。(https://github.com/neondatabase/neon)
19. [GreptimeTeam / greptimedb]:支持SQL/PromQL的开源、云原生、统一的时间序列数据库,适用于指标、日志和事件。在GreptimeCloud上可用。(https://github.com/GreptimeTeam/greptimedb)
20. [prefix-dev / pixi]:简化包管理的工具。(https://github.com/prefix-dev/pixi)
21. [delta-io / delta-rs]:Delta Lake的本地Rust库,与Python绑定。(https://github.com/delta-io/delta-rs)
22. [dandavison / delta]:用于git、diff、grep和blame输出的语法高亮分页器。(https://github.com/dandavison/delta)
23. [rust-lang / rustlings]:🦀 小练习,让您习惯于阅读和编写Rust代码!(https://github.com/rust-lang/rustlings)
惊艳项目安利:[lancedb / lancedb] - 为AI应用程序设计的开发者友好型、无服务器向量数据库。轻松为您的LLM应用程序添加长期记忆!
今日趋势项目关注的领域和特点:今天的项目涵盖了从数据分析和处理到网络编程和系统监控的广泛领域,特点包括高性能、跨平台和开源社区的支持。产品联系: [email protected]
2024-11-09 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/vectordotdev/vector
https://github.com/rust-lang/mdBook
https://github.com/GyulyVGC/sniffnet
https://github.com/rolldown/rolldown
https://github.com/neondatabase/neon
https://github.com/BoundaryML/baml
https://github.com/libp2p/rust-libp2p
https://github.com/web-infra-dev/rspack
https://github.com/MaterializeInc/materialize
https://github.com/pola-rs/polars
https://github.com/prefix-dev/pixi
https://github.com/apache/opendal
https://github.com/casey/just
https://github.com/paritytech/polkadot-sdk
https://github.com/bottlerocket-os/bottlerocket
https://github.com/martinvonz/jj
https://github.com/dtolnay/thiserror
https://github.com/awslabs/mountpoint-s3
https://github.com/vadimcn/codelldb
https://github.com/rust-lang/miri
https://github.com/juspay/hyperswitch
https://github.com/rust-lang/rust
scape ends
ai is reading, the info is:
1. [vectordotdev / vector]:A high-performance observability data pipeline.(https://github.com/vectordotdev/vector)
2. [rust-lang / mdBook]:Create book from markdown files. Like Gitbook but implemented in Rust(https://github.com/rust-lang/mdBook)
3. [GyulyVGC / sniffnet]:Comfortably monitor your Internet traffic 🕵️♂️(https://github.com/GyulyVGC/sniffnet)
4. [rolldown / rolldown]:Fast Rust bundler for JavaScript/TypeScript with Rollup-compatible API.(https://github.com/rolldown/rolldown)
5. [neondatabase / neon]:Neon: Serverless Postgres. We separated storage and compute to offer autoscaling, code-like database branching, and scale to zero.(https://github.com/neondatabase/neon)
6. [BoundaryML / baml]:BAML is a language that helps you get structured data from LLMs, with the best DX possible. Works with all languages. Check out the promptfiddle.com playground(https://github.com/BoundaryML/baml)
7. [libp2p / rust-libp2p]:The Rust Implementation of the libp2p networking stack.(https://github.com/libp2p/rust-libp2p)
8. [web-infra-dev / rspack]:The fast Rust-based web bundler with webpack-compatible API 🦀️(https://github.com/web-infra-dev/rspack)
9. [MaterializeInc / materialize]:The Cloud Operational Data Store: use SQL to transform, deliver, and act on fast-changing data.(https://github.com/MaterializeInc/materialize)
10. [pola-rs / polars]:Dataframes powered by a multithreaded, vectorized query engine, written in Rust(https://github.com/pola-rs/polars)
11. [prefix-dev / pixi]:Package management made easy(https://github.com/prefix-dev/pixi)
12. [apache / opendal]:Apache OpenDAL: access data freely.(https://github.com/apache/opendal)
13. [casey / just]:🤖 Just a command runner(https://github.com/casey/just)
14. [paritytech / polkadot-sdk]:The Parity Polkadot Blockchain SDK(https://github.com/paritytech/polkadot-sdk)
15. [bottlerocket-os / bottlerocket]:An operating system designed for hosting containers(https://github.com/bottlerocket-os/bottlerocket)
16. [martinvonz / jj]:A Git-compatible VCS that is both simple and powerful(https://github.com/martinvonz/jj)
17. [dtolnay / thiserror]:derive(Error) for struct and enum error types(https://github.com/dtolnay/thiserror)
18. [awslabs / mountpoint-s3]:A simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system.(https://github.com/awslabs/mountpoint-s3)
19. [vadimcn / codelldb]:A native debugger extension for VSCode based on LLDB(https://github.com/vadimcn/codelldb)
20. [rust-lang / miri]:An interpreter for Rust's mid-level intermediate representation(https://github.com/rust-lang/miri)
21. [juspay / hyperswitch]:An open source payments switch written in Rust to make payments fast, reliable and affordable(https://github.com/juspay/hyperswitch)
22. [rust-lang / rust]:Empowering everyone to build reliable and efficient software.(https://github.com/rust-lang/rust)
ai ans is:
1. [vectordotdev / vector]:一个高性能的可观测性数据管道。(https://github.com/vectordotdev/vector)
2. [rust-lang / mdBook]:从 Markdown 文件创建书籍。类似于 Gitbook,但采用 Rust 实现。(https://github.com/rust-lang/mdBook)
3. [GyulyVGC / sniffnet]:舒适地监控您的网络流量 🕵️♂️(https://github.com/GyulyVGC/sniffnet)
4. [rolldown / rolldown]:快速的 Rust 打包器,具有与 Rollup 兼容的 API。(https://github.com/rolldown/rolldown)
5. [neondatabase / neon]:Neon:无服务器 Postgres。我们分离存储和计算,以提供自动扩展、类似代码的数据库分支和零扩展能力。(https://github.com/neondatabase/neon)
6. [BoundaryML / baml]:BAML 是一种帮助您从 LLM 获取结构化数据的语言,提供了最佳的 DX 体验。支持所有语言。查看 promptfiddle.com 游戏场。(https://github.com/BoundaryML/baml)
7. [libp2p / rust-libp2p]:libp2p 网络栈的 Rust 实现。(https://github.com/libp2p/rust-libp2p)
8. [web-infra-dev / rspack]:快速的基于 Rust 的 Web 打包器,具有与 webpack 兼容的 API 🦀️(https://github.com/web-infra-dev/rspack)
9. [MaterializeInc / materialize]:云操作数据存储:使用 SQL 转换、交付和快速变化的数据采取行动。(https://github.com/MaterializeInc/materialize)
10. [pola-rs / polars]:由多线程、向量化查询引擎驱动,用 Rust 编写的 DataFrame。(https://github.com/pola-rs/polars)
11. [prefix-dev / pixi]:简化包管理的工具。(https://github.com/prefix-dev/pixi)
12. [apache / opendal]:Apache OpenDAL:自由访问数据。(https://github.com/apache/opendal)
13. [casey / just]:🤖 Just 是一个命令运行器(https://github.com/casey/just)
14. [paritytech / polkadot-sdk]:Parity Polkadot 区块链 SDK(https://github.com/paritytech/polkadot-sdk)
15. [bottlerocket-os / bottlerocket]:专为容器托管设计的操作系统(https://github.com/bottlerocket-os/bottlerocket)
16. [martinvonz / jj]:一个简单而强大的 Git 兼容版本控制系统(https://github.com/martinvonz/jj)
17. [dtolnay / thiserror]:为结构体和枚举错误类型 derive(Error)(https://github.com/dtolnay/thiserror)
18. [awslabs / mountpoint-s3]:将 Amazon S3 存储桶挂载为本地文件系统的简单、高吞吐量文件客户端。(https://github.com/awslabs/mountpoint-s3)
19. [vadimcn / codelldb]:基于 LLDB 的 VSCode 原生调试器扩展(https://github.com/vadimcn/codelldb)
20. [rust-lang / miri]:Rust 中间表示的解析器(https://github.com/rust-lang/miri)
21. [juspay / hyperswitch]:用 Rust 编写的开源支付交换机,旨在使支付快速、可靠和实惠(https://github.com/juspay/hyperswitch)
22. [rust-lang / rust]:赋予每个人构建可靠和高效软件的能力。(https://github.com/rust-lang/rust)
最惊艳的项目:[vectordotdev / vector] - 一个高性能的可观测性数据管道。
今天的趋势项目关注领域和特点:主要集中在数据管理和处理,网络通信,以及软件开发工具和框架。特点是高性能、跨平台、开源且社区活跃。产品联系: [email protected]
2024-11-10 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/tauri-apps/tauri
https://github.com/vectordotdev/vector
https://github.com/astral-sh/uv
https://github.com/astral-sh/ruff
https://github.com/libp2p/rust-libp2p
https://github.com/apache/opendal
https://github.com/bytecodealliance/wasmtime
https://github.com/rust-lang/rust
https://github.com/raphamorim/rio
https://github.com/juspay/hyperswitch
https://github.com/denoland/deno
https://github.com/casey/just
https://github.com/paritytech/polkadot-sdk
https://github.com/quickwit-oss/tantivy
https://github.com/YaLTeR/niri
https://github.com/sharkdp/hyperfine
https://github.com/gitbutlerapp/gitbutler
https://github.com/hatoo/oha
https://github.com/bheisler/criterion.rs
https://github.com/kata-containers/kata-containers
https://github.com/BoundaryML/baml
https://github.com/bottlerocket-os/bottlerocket
https://github.com/bevyengine/bevy
scape ends
ai is reading, the info is:
1. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
2. [vectordotdev / vector]:A high-performance observability data pipeline.(https://github.com/vectordotdev/vector)
3. [astral-sh / uv]:An extremely fast Python package and project manager, written in Rust.(https://github.com/astral-sh/uv)
4. [astral-sh / ruff]:An extremely fast Python linter and code formatter, written in Rust.(https://github.com/astral-sh/ruff)
5. [libp2p / rust-libp2p]:The Rust Implementation of the libp2p networking stack.(https://github.com/libp2p/rust-libp2p)
6. [apache / opendal]:Apache OpenDAL: access data freely.(https://github.com/apache/opendal)
7. [bytecodealliance / wasmtime]:A fast and secure runtime for WebAssembly(https://github.com/bytecodealliance/wasmtime)
8. [rust-lang / rust]:Empowering everyone to build reliable and efficient software.(https://github.com/rust-lang/rust)
9. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
10. [juspay / hyperswitch]:An open source payments switch written in Rust to make payments fast, reliable and affordable(https://github.com/juspay/hyperswitch)
11. [denoland / deno]:A modern runtime for JavaScript and TypeScript.(https://github.com/denoland/deno)
12. [casey / just]:🤖 Just a command runner(https://github.com/casey/just)
13. [paritytech / polkadot-sdk]:The Parity Polkadot Blockchain SDK(https://github.com/paritytech/polkadot-sdk)
14. [quickwit-oss / tantivy]:Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust(https://github.com/quickwit-oss/tantivy)
15. [YaLTeR / niri]:A scrollable-tiling Wayland compositor.(https://github.com/YaLTeR/niri)
16. [sharkdp / hyperfine]:A command-line benchmarking tool(https://github.com/sharkdp/hyperfine)
17. [gitbutlerapp / gitbutler]:The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte(https://github.com/gitbutlerapp/gitbutler)
18. [hatoo / oha]:Ohayou(おはよう), HTTP load generator, inspired by rakyll/hey with tui animation.(https://github.com/hatoo/oha)
19. [bheisler / criterion.rs]:Statistics-driven benchmarking library for Rust(https://github.com/bheisler/criterion.rs)
20. [kata-containers / kata-containers]:Kata Containers is an open source project and community working to build a standard implementation of lightweight Virtual Machines (VMs) that feel and perform like containers, but provide the workload isolation and security advantages of VMs. https://katacontainers.io/(https://github.com/kata-containers/kata-containers)
21. [BoundaryML / baml]:BAML is a language that helps you get structured data from LLMs, with the best DX possible. Works with all languages. Check out the promptfiddle.com playground(https://github.com/BoundaryML/baml)
22. [bottlerocket-os / bottlerocket]:An operating system designed for hosting containers(https://github.com/bottlerocket-os/bottlerocket)
23. [bevyengine / bevy]:A refreshingly simple data-driven game engine built in Rust(https://github.com/bevyengine/bevy)
ai ans is:
1. [tauri-apps / tauri]:使用Web前端构建更小、更快、更安全的桌面和移动应用程序。(https://github.com/tauri-apps/tauri)
2. [vectordotdev / vector]:高性能的可观察性数据处理管道。(https://github.com/vectordotdev/vector)
3. [astral-sh / uv]:一个极快的Python包和项目管理器,用Rust编写。(https://github.com/astral-sh/uv)
4. [astral-sh / ruff]:一个极快的Python代码检查器和格式化工具,用Rust编写。(https://github.com/astral-sh/ruff)
5. [libp2p / rust-libp2p]:libp2p网络栈的Rust实现。(https://github.com/libp2p/rust-libp2p)
6. [apache / opendal]:Apache OpenDAL:自由访问数据。(https://github.com/apache/opendal)
7. [bytecodealliance / wasmtime]:快速且安全的WebAssembly运行时。(https://github.com/bytecodealliance/wasmtime)
8. [rust-lang / rust]:赋予每个人构建可靠和高效软件的能力。(https://github.com/rust-lang/rust)
9. [raphamorim / rio]:一个专注于在桌面和浏览器中运行的硬件加速GPU终端模拟器。(https://github.com/raphamorim/rio)
10. [juspay / hyperswitch]:一个用Rust编写的开源支付网关,旨在使支付快速、可靠和实惠。(https://github.com/juspay/hyperswitch)
11. [denoland / deno]:JavaScript和TypeScript的现代运行时。(https://github.com/denoland/deno)
12. [casey / just]:🤖 Just是一个命令行执行器。(https://github.com/casey/just)
13. [paritytech / polkadot-sdk]:Parity Polkadot区块链软件开发工具包。(https://github.com/paritytech/polkadot-sdk)
14. [quickwit-oss / tantivy]:Tantivy是一个受Apache Lucene启发的全文搜索引擎库,用Rust编写。(https://github.com/quickwit-oss/tantivy)
15. [YaLTeR / niri]:一个可滚动的tiling Wayland窗口管理器。(https://github.com/YaLTeR/niri)
16. [sharkdp / hyperfine]:一个命令行基准测试工具。(https://github.com/sharkdp/hyperfine)
17. [gitbutlerapp / gitbutler]:GitButler版本控制客户端,由Git支持,由Tauri/Rust/Svelte驱动。(https://github.com/gitbutlerapp/gitbutler)
18. [hatoo / oha]:Ohayou(おはよう),HTTP负载生成器,受rakyll/hey启发,带有tui动画。(https://github.com/hatoo/oha)
19. [bheisler / criterion.rs]:为Rust提供的统计驱动的基准测试库。(https://github.com/bheisler/criterion.rs)
20. [kata-containers / kata-containers]:Kata Containers是一个开源项目,旨在构建一个轻量级虚拟机(VM)的标准实现,其感觉和性能类似于容器,但提供了VM的工作负载隔离和安全优势。(https://katacontainers.io/)
21. [BoundaryML / baml]:BAML是一种语言,可以帮助您从LLM(大型语言模型)中获取结构化数据,并提供最佳的开发体验。与所有语言兼容。查看promptfiddle.com的playground。(https://github.com/BoundaryML/baml)
22. [bottlerocket-os / bottlerocket]:为容器托管设计的操作系统。(https://github.com/bottlerocket-os/bottlerocket)
23. [bevyengine / bevy]:一个简洁的数据驱动游戏引擎,用Rust编写。(https://github.com/bevyengine/bevy)
最惊艳的项目推荐:[bevyengine / bevy]: 一个简洁的数据驱动游戏引擎,用Rust编写,非常适合游戏开发。
今日趋势项目关注的领域和特点:
- 高性能和安全性:许多项目都在追求性能优化和安全性提升,如tauri-apps/tauri、vectordotdev/vector和bytecodealliance/wasmtime。
- 跨平台开发:Rust在跨平台开发中的应用日益广泛,如astral-sh/uv、raphamorim/rio和denoland/deno。
- 数据处理和分析:数据处理和分析领域也有不少Rust项目,如quickwit-oss/tantivy和sharkdp/hyperfine。
- 区块链技术:区块链技术的开发也越来越多地采用Rust,如paritytech/polkadot-sdk。
- 工具和库:Rust生态系统中涌现出大量高质量的工具和库,如astral-sh/ruff、bheisler/criterion.rs和kata-containers/kata-containers。
产品联系: [email protected]
2024-11-11 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/rust-lang/rust
https://github.com/tauri-apps/tauri
https://github.com/rust-lang/book
https://github.com/bevyengine/bevy
https://github.com/mxsm/rocketmq-rust
https://github.com/sharkdp/bat
https://github.com/juspay/hyperswitch
https://github.com/oxc-project/oxc
https://github.com/paradigmxyz/solar
https://github.com/meilisearch/meilisearch
https://github.com/spaceandtimelabs/sxt-proof-of-sql
https://github.com/raphamorim/rio
https://github.com/libp2p/rust-libp2p
https://github.com/tree-sitter/tree-sitter
https://github.com/TabbyML/tabby
https://github.com/tauri-apps/plugins-workspace
https://github.com/slint-ui/slint
https://github.com/solana-labs/solana
https://github.com/dandavison/delta
https://github.com/lencx/ChatGPT
https://github.com/Wilfred/difftastic
scape ends
ai is reading, the info is:
1. [rust-lang / rust]:Empowering everyone to build reliable and efficient software.(https://github.com/rust-lang/rust)
2. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
3. [rust-lang / book]:The Rust Programming Language(https://github.com/rust-lang/book)
4. [bevyengine / bevy]:A refreshingly simple data-driven game engine built in Rust(https://github.com/bevyengine/bevy)
5. [mxsm / rocketmq-rust]:🚀Apache RocketMQ Rust implementation. Faster, safer, and with lower memory usage.(https://github.com/mxsm/rocketmq-rust)
6. [sharkdp / bat]:A cat(1) clone with wings.(https://github.com/sharkdp/bat)
7. [juspay / hyperswitch]:An open source payments switch written in Rust to make payments fast, reliable and affordable(https://github.com/juspay/hyperswitch)
8. [oxc-project / oxc]:⚓ A collection of JavaScript tools written in Rust.(https://github.com/oxc-project/oxc)
9. [paradigmxyz / solar]:Blazingly fast, modular and contributor friendly Solidity compiler, written in Rust(https://github.com/paradigmxyz/solar)
10. [meilisearch / meilisearch]:A lightning-fast search API that fits effortlessly into your apps, websites, and workflow(https://github.com/meilisearch/meilisearch)
11. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | Proof of SQL(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
12. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
13. [libp2p / rust-libp2p]:The Rust Implementation of the libp2p networking stack.(https://github.com/libp2p/rust-libp2p)
14. [tree-sitter / tree-sitter]:An incremental parsing system for programming tools(https://github.com/tree-sitter/tree-sitter)
15. [TabbyML / tabby]:Self-hosted AI coding assistant(https://github.com/TabbyML/tabby)
16. [tauri-apps / plugins-workspace]:All of the official Tauri plugins in one place!(https://github.com/tauri-apps/plugins-workspace)
17. [slint-ui / slint]:Slint is a declarative GUI toolkit to build native user interfaces for Rust, C++, or JavaScript apps.(https://github.com/slint-ui/slint)
18. [solana-labs / solana]:Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.(https://github.com/solana-labs/solana)
19. [dandavison / delta]:A syntax-highlighting pager for git, diff, grep, and blame output(https://github.com/dandavison/delta)
20. [lencx / ChatGPT]:🔮 ChatGPT Desktop Application (Mac, Windows and Linux)(https://github.com/lencx/ChatGPT)
21. [Wilfred / difftastic]:a structural diff that understands syntax 🟥🟩(https://github.com/Wilfred/difftastic)
ai ans is:
1. [rust-lang / rust]:赋予每个人构建可靠和高效软件的能力。(https://github.com/rust-lang/rust)
2. [tauri-apps / tauri]:使用网页前端构建更小、更快、更安全的桌面和移动应用程序。(https://github.com/tauri-apps/tauri)
3. [rust-lang / book]:《Rust编程语言》
4. [bevyengine / bevy]:用Rust编写的清新简单的数据驱动游戏引擎。(https://github.com/bevyengine/bevy)
5. [mxsm / rocketmq-rust]:🚀Apache RocketMQ的Rust实现。更快、更安全,内存使用更低。(https://github.com/mxsm/rocketmq-rust)
6. [sharkdp / bat]:一款拥有翅膀的cat(1)克隆版。(https://github.com/sharkdp/bat)
7. [juspay / hyperswitch]:用Rust编写的开源支付交换机,使支付变得更快、更可靠、更实惠。(https://github.com/juspay/hyperswitch)
8. [oxc-project / oxc]:⚓ 用Rust编写的JavaScript工具集合。(https://github.com/oxc-project/oxc)
9. [paradigmxyz / solar]:一款快速、模块化且对贡献者友好的Solidity编译器,用Rust编写。(https://github.com/paradigmxyz/solar)
10. [meilisearch / meilisearch]:一个闪电般快速的搜索API,无缝融入您的应用程序、网站和工作流程。(https://github.com/meilisearch/meilisearch)
11. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | SQL的证明(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
12. [raphamorim / rio]:一个专注于在桌面和浏览器中运行的硬件加速GPU终端模拟器。(https://github.com/raphamorim/rio)
13. [libp2p / rust-libp2p]:libp2p网络堆栈的Rust实现。(https://github.com/libp2p/rust-libp2p)
14. [tree-sitter / tree-sitter]:一种用于编程工具的增量解析系统。(https://github.com/tree-sitter/tree-sitter)
15. [TabbyML / tabby]:自托管的AI编码助手。(https://github.com/TabbyML/tabby)
16. [tauri-apps / plugins-workspace]:所有官方Tauri插件集中在一个地方!(https://github.com/tauri-apps/plugins-workspace)
17. [slint-ui / slint]:Slint是一个声明式GUI工具包,用于为Rust、C++或JavaScript应用程序构建原生用户界面。(https://github.com/slint-ui/slint)
18. [solana-labs / solana]:适用于快速、安全、可扩展的去中心化应用程序和市场的Web规模区块链。(https://github.com/solana-labs/solana)
19. [dandavison / delta]:一个语法高亮分页器,用于git、diff、grep和blame输出。(https://github.com/dandavison/delta)
20. [lencx / ChatGPT]:🔮 ChatGPT桌面应用程序(Mac、Windows和Linux)(https://github.com/lencx/ChatGPT)
21. [Wilfred / difftastic]:一个理解语法的结构化差异工具 🟥🟩(https://github.com/Wilfred/difftastic)
今日趋势项目关注的领域和特点:Rust语言及其生态持续发展,涵盖游戏引擎、支付系统、数据库搜索、区块链技术等多个领域,特点为高效、安全、跨平台。
产品联系: [email protected]
2024-11-12 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/rust (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7a39381b6840>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 3 failed with error: write() argument must be str, not None
try at 3 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/rust (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7a3938207a40>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 4 failed with error: write() argument must be str, not None
try at 4 to get trends~
scrape() status_code: 200
https://github.com/Snowiiii/Pumpkin
https://github.com/paradigmxyz/solar
https://github.com/juspay/hyperswitch
https://github.com/tauri-apps/tauri
https://github.com/raphamorim/rio
https://github.com/MystenLabs/sui
https://github.com/bevyengine/bevy
https://github.com/YaLTeR/niri
https://github.com/tree-sitter/tree-sitter
https://github.com/typst/typst
https://github.com/dandavison/delta
https://github.com/mediar-ai/screenpipe
https://github.com/TabbyML/tabby
https://github.com/casey/just
https://github.com/rust-lang/mdBook
https://github.com/sxyazi/yazi
https://github.com/spaceandtimelabs/sxt-proof-of-sql
https://github.com/flxzt/rnote
https://github.com/BurntSushi/ripgrep
https://github.com/tokio-rs/axum
scape ends
ai is reading, the info is:
1. [Snowiiii / Pumpkin]:Empowering everyone to host fast and efficient Minecraft servers.(https://github.com/Snowiiii/Pumpkin)
2. [paradigmxyz / solar]:Blazingly fast, modular and contributor friendly Solidity compiler, written in Rust(https://github.com/paradigmxyz/solar)
3. [juspay / hyperswitch]:An open source payments switch written in Rust to make payments fast, reliable and affordable(https://github.com/juspay/hyperswitch)
4. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
5. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
6. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)
7. [bevyengine / bevy]:A refreshingly simple data-driven game engine built in Rust(https://github.com/bevyengine/bevy)
8. [YaLTeR / niri]:A scrollable-tiling Wayland compositor.(https://github.com/YaLTeR/niri)
9. [tree-sitter / tree-sitter]:An incremental parsing system for programming tools(https://github.com/tree-sitter/tree-sitter)
10. [typst / typst]:A new markup-based typesetting system that is powerful and easy to learn.(https://github.com/typst/typst)
11. [dandavison / delta]:A syntax-highlighting pager for git, diff, grep, and blame output(https://github.com/dandavison/delta)
12. [mediar-ai / screenpipe]:rewind.ai x cursor.com = your AI assistant that has all the context. 24/7 screen & voice recording for the age of super intelligence. get your data ready or be left behind(https://github.com/mediar-ai/screenpipe)
13. [TabbyML / tabby]:Self-hosted AI coding assistant(https://github.com/TabbyML/tabby)
14. [casey / just]:🤖 Just a command runner(https://github.com/casey/just)
15. [rust-lang / mdBook]:Create book from markdown files. Like Gitbook but implemented in Rust(https://github.com/rust-lang/mdBook)
16. [sxyazi / yazi]:💥 Blazing fast terminal file manager written in Rust, based on async I/O.(https://github.com/sxyazi/yazi)
17. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | Proof of SQL(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
18. [flxzt / rnote]:Sketch and take handwritten notes.(https://github.com/flxzt/rnote)
19. [BurntSushi / ripgrep]:ripgrep recursively searches directories for a regex pattern while respecting your gitignore(https://github.com/BurntSushi/ripgrep)
20. [tokio-rs / axum]:Ergonomic and modular web framework built with Tokio, Tower, and Hyper(https://github.com/tokio-rs/axum)
ai ans is:
[雪儿 / 南瓜]:让每个人都能快速高效地托管Minecraft服务器。(https://github.com/Snowiiii/Pumpkin)
最惊艳的项目:[MystenLabs / sui]:Sui,一个基于Move编程语言的下一代智能合约平台,具有高吞吐量、低延迟和以资产为中心的编程模型。(https://github.com/MystenLabs/sui)
今日趋势项目关注的领域和特点:涵盖了游戏服务器、区块链、桌面应用、游戏引擎、终端工具、文本处理、AI编程助手等多个领域,特点为高性能、安全性、模块化以及跨平台。产品联系: [email protected]
2024-11-13 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/rust (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7a3938207290>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/dani-garcia/vaultwarden
https://github.com/getzola/zola
https://github.com/typst/typst
https://github.com/rust-lang/mdBook
https://github.com/bevyengine/bevy
https://github.com/spaceandtimelabs/sxt-proof-of-sql
https://github.com/MystenLabs/sui
https://github.com/gfx-rs/wgpu
https://github.com/rerun-io/rerun
https://github.com/greenbone/openvas-scanner
https://github.com/tauri-apps/tauri
https://github.com/apache/datafusion
https://github.com/juspay/hyperswitch
https://github.com/servo/servo
https://github.com/qdrant/qdrant
https://github.com/tokio-rs/axum
https://github.com/astral-sh/uv
https://github.com/raphamorim/rio
https://github.com/Snowiiii/Pumpkin
https://github.com/stalwartlabs/mail-server
https://github.com/YaLTeR/niri
https://github.com/elijah-potter/harper
scape ends
ai is reading, the info is:
1. [dani-garcia / vaultwarden]:Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
2. [getzola / zola]:A fast static site generator in a single binary with everything built-in. https://www.getzola.org(https://github.com/getzola/zola)
3. [typst / typst]:A new markup-based typesetting system that is powerful and easy to learn.(https://github.com/typst/typst)
4. [rust-lang / mdBook]:Create book from markdown files. Like Gitbook but implemented in Rust(https://github.com/rust-lang/mdBook)
5. [bevyengine / bevy]:A refreshingly simple data-driven game engine built in Rust(https://github.com/bevyengine/bevy)
6. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | Proof of SQL(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
7. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)
8. [gfx-rs / wgpu]:A cross-platform, safe, pure-Rust graphics API.(https://github.com/gfx-rs/wgpu)
9. [rerun-io / rerun]:Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.(https://github.com/rerun-io/rerun)
10. [greenbone / openvas-scanner]:This repository contains the scanner component for Greenbone Community Edition.(https://github.com/greenbone/openvas-scanner)
11. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
12. [apache / datafusion]:Apache DataFusion SQL Query Engine(https://github.com/apache/datafusion)
13. [juspay / hyperswitch]:An open source payments switch written in Rust to make payments fast, reliable and affordable(https://github.com/juspay/hyperswitch)
14. [servo / servo]:Servo, the embeddable, independent, memory-safe, modular, parallel web rendering engine(https://github.com/servo/servo)
15. [qdrant / qdrant]:Qdrant - High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/(https://github.com/qdrant/qdrant)
16. [tokio-rs / axum]:Ergonomic and modular web framework built with Tokio, Tower, and Hyper(https://github.com/tokio-rs/axum)
17. [astral-sh / uv]:An extremely fast Python package and project manager, written in Rust.(https://github.com/astral-sh/uv)
18. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
19. [Snowiiii / Pumpkin]:Empowering everyone to host fast and efficient Minecraft servers.(https://github.com/Snowiiii/Pumpkin)
20. [stalwartlabs / mail-server]:Secure & Modern All-in-One Mail Server (IMAP, JMAP, POP3, SMTP)(https://github.com/stalwartlabs/mail-server)
21. [YaLTeR / niri]:A scrollable-tiling Wayland compositor.(https://github.com/YaLTeR/niri)
22. [elijah-potter / harper]:The Grammar Checker for Developers(https://github.com/elijah-potter/harper)
ai ans is:
1. [dani-garcia / vaultwarden]:一个与Bitwarden兼容的非官方服务器,以前称为bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
2. [getzola / zola]:一个内置所有功能的单二进制快速静态网站生成器。https://www.getzola.org(https://github.com/getzola/zola)
3. [typst / typst]:一个功能强大且易于学习的基于标记的排版系统。(https://github.com/typst/typst)
4. [rust-lang / mdBook]:从Markdown文件创建书籍。类似于Gitbook,但由Rust实现(https://github.com/rust-lang/mdBook)
5. [bevyengine / bevy]:一个用Rust构建的清新简单的数据驱动游戏引擎(https://github.com/bevyengine/bevy)
6. [spaceandtimelabs / sxt-proof-of-sql]:空间和时间 | SQL证明(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
7. [MystenLabs / sui]:Sui,一个由Move编程语言提供动力的下一代高性能、低延迟、以资产为中心的智能合约平台(https://github.com/MystenLabs/sui)
8. [gfx-rs / wgpu]:一个跨平台、安全、纯Rust的图形API。(https://github.com/gfx-rs/wgpu)
9. [rerun-io / rerun]:可视化多模态数据流。免费、快速、易于使用,简单集成。用Rust构建。(https://github.com/rerun-io/rerun)
10. [greenbone / openvas-scanner]:此存储库包含Greenbone社区版扫描器组件。(https://github.com/greenbone/openvas-scanner)
11. [tauri-apps / tauri]:使用Web前端构建更小、更快、更安全的桌面和移动应用程序。(https://github.com/tauri-apps/tauri)
12. [apache / datafusion]:Apache DataFusion SQL查询引擎(https://github.com/apache/datafusion)
13. [juspay / hyperswitch]:一个用Rust编写的开源支付交换机,旨在使支付快速、可靠且负担得起(https://github.com/juspay/hyperswitch)
14. [servo / servo]:Servo,一个嵌入式、独立、内存安全的模块化、并行Web渲染引擎(https://github.com/servo/servo)
15. [qdrant / qdrant]:Qdrant - 高性能、大规模向量数据库和向量搜索引擎,适用于下一代AI。云服务也提供支持 https://cloud.qdrant.io/(https://github.com/qdrant/qdrant)
16. [tokio-rs / axum]:一个使用Tokio、Tower和Hyper构建的符合人体工程学且模块化的Web框架(https://github.com/tokio-rs/axum)
17. [astral-sh / uv]:一个极快的Python包和项目管理器,用Rust编写。(https://github.com/astral-sh/uv)
18. [raphamorim / rio]:一个专注于在桌面和浏览器中运行的硬件加速GPU终端模拟器。(https://github.com/raphamorim/rio)
19. [Snowiiii / Pumpkin]:赋予每个人托管快速且高效的Minecraft服务器的能力。(https://github.com/Snowiiii/Pumpkin)
20. [stalwartlabs / mail-server]:安全且现代的全能邮件服务器(IMAP、JMAP、POP3、SMTP)(https://github.com/stalwartlabs/mail-server)
21. [YaLTeR / niri]:一个可滚动的tiling Wayland组合器。(https://github.com/YaLTeR/niri)
22. [elijah-potter / harper]:开发者的语法检查器(https://github.com/elijah-potter/harper)
最惊艳的项目:[dani-garcia / vaultwarden] - 一个与Bitwarden兼容的非官方服务器,以Rust编写,提供强大的密码管理功能。
今天趋势项目关注的领域和特点:今天的趋势项目主要集中在密码管理、静态网站生成、游戏引擎、智能合约平台、图形API、数据可视化、支付解决方案和邮件服务器等方面,展现了Rust在构建安全、高性能和功能丰富的应用程序方面的强大能力。
产品联系: [email protected]
2024-11-14 start the job...
try at 0 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Read timed out. (read timeout=10) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 1 failed with error: write() argument must be str, not None
try at 1 to get trends~
when scrape HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /trending/rust (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7a3938207500>, 'Connection to github.com timed out. (connect timeout=10)')) occurs
scape ends
ai is reading, the info is:
when ai analyze, Error code: 400, with error text {"error":{"code":"1213","message":"未正常接收到prompt参数。"}} occurs...
ai ans is:
None
Attempt 2 failed with error: write() argument must be str, not None
try at 2 to get trends~
scrape() status_code: 200
https://github.com/quickwit-oss/tantivy
https://github.com/dani-garcia/vaultwarden
https://github.com/jdx/mise
https://github.com/rerun-io/rerun
https://github.com/raphamorim/rio
https://github.com/MystenLabs/sui
https://github.com/chroma-core/chroma
https://github.com/getzola/zola
https://github.com/surrealdb/surrealdb
https://github.com/denoland/deno
https://github.com/cloudflare/pingora
https://github.com/rustdesk/rustdesk
https://github.com/spaceandtimelabs/sxt-proof-of-sql
https://github.com/martinvonz/jj
https://github.com/Snowiiii/Pumpkin
https://github.com/tauri-apps/tauri
https://github.com/rust-windowing/winit
https://github.com/tree-sitter/tree-sitter
https://github.com/gfx-rs/wgpu
https://github.com/emilk/egui
https://github.com/lapce/lapce
scape ends
ai is reading, the info is:
1. [quickwit-oss / tantivy]:Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust(https://github.com/quickwit-oss/tantivy)
2. [dani-garcia / vaultwarden]:Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
3. [jdx / mise]:dev tools, env vars, task runner(https://github.com/jdx/mise)
4. [rerun-io / rerun]:Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.(https://github.com/rerun-io/rerun)
5. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
6. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)
7. [chroma-core / chroma]:the AI-native open-source embedding database(https://github.com/chroma-core/chroma)
8. [getzola / zola]:A fast static site generator in a single binary with everything built-in. https://www.getzola.org(https://github.com/getzola/zola)
9. [surrealdb / surrealdb]:A scalable, distributed, collaborative, document-graph database, for the realtime web(https://github.com/surrealdb/surrealdb)
10. [denoland / deno]:A modern runtime for JavaScript and TypeScript.(https://github.com/denoland/deno)
11. [cloudflare / pingora]:A library for building fast, reliable and evolvable network services.(https://github.com/cloudflare/pingora)
12. [rustdesk / rustdesk]:An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.(https://github.com/rustdesk/rustdesk)
13. [spaceandtimelabs / sxt-proof-of-sql]:Space and Time | Proof of SQL(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
14. [martinvonz / jj]:A Git-compatible VCS that is both simple and powerful(https://github.com/martinvonz/jj)
15. [Snowiiii / Pumpkin]:Empowering everyone to host fast and efficient Minecraft servers.(https://github.com/Snowiiii/Pumpkin)
16. [tauri-apps / tauri]:Build smaller, faster, and more secure desktop and mobile applications with a web frontend.(https://github.com/tauri-apps/tauri)
17. [rust-windowing / winit]:Window handling library in pure Rust(https://github.com/rust-windowing/winit)
18. [tree-sitter / tree-sitter]:An incremental parsing system for programming tools(https://github.com/tree-sitter/tree-sitter)
19. [gfx-rs / wgpu]:A cross-platform, safe, pure-Rust graphics API.(https://github.com/gfx-rs/wgpu)
20. [emilk / egui]:egui: an easy-to-use immediate mode GUI in Rust that runs on both web and native(https://github.com/emilk/egui)
21. [lapce / lapce]:Lightning-fast and Powerful Code Editor written in Rust(https://github.com/lapce/lapce)
ai ans is:
【每日Rust项目趋势分析】
1. [quickwit-oss / tantivy]: Tantivy是一个受Apache Lucene启发的全文搜索引擎库,用Rust编写(https://github.com/quickwit-oss/tantivy)
2. [dani-garcia / vaultwarden]:一个非官方的与Bitwarden兼容的服务器,用Rust编写,之前称为bitwarden_rs(https://github.com/dani-garcia/vaultwarden)
3. [jdx / mise]: 开发工具、环境变量、任务运行器(https://github.com/jdx/mise)
4. [rerun-io / rerun]: 可视化多模态数据流。免费、快速、易于使用,简单集成。用Rust构建(https://github.com/rerun-io/rerun)
5. [raphamorim / rio]: 一个专注于在桌面和浏览器中运行的硬件加速GPU终端模拟器(https://github.com/raphamorim/rio)
6. [MystenLabs / sui]: Sui,一个由Move编程语言提供动力的下一代智能合约平台,具有高吞吐量、低延迟和以资产为导向的编程模型(https://github.com/MystenLabs/sui)
7. [chroma-core / chroma]: 人工智能原生开源嵌入数据库(https://github.com/chroma-core/chroma)
8. [getzola / zola]: 一个内置所有功能的快速静态站点生成器(https://www.getzola.org)(https://github.com/getzola/zola)
9. [surrealdb / surrealdb]: 一个可扩展的、分布式的、协作的文档图数据库,用于实时网络(https://github.com/surrealdb/surrealdb)
10. [denoland / deno]: 一个现代的JavaScript和TypeScript运行时(https://github.com/denoland/deno)
11. [cloudflare / pingora]: 用于构建快速、可靠和可扩展网络服务的库(https://github.com/cloudflare/pingora)
12. [rustdesk / rustdesk]: 一个开源的远程桌面应用程序,旨在自托管,作为TeamViewer的替代品(https://github.com/rustdesk/rustdesk)
13. [spaceandtimelabs / sxt-proof-of-sql]: 空间和时间 | SQL证明(https://github.com/spaceandtimelabs/sxt-proof-of-sql)
14. [martinvonz / jj]: 一个既简单又强大的Git兼容版本控制系统(https://github.com/martinvonz/jj)
15. [Snowiiii / Pumpkin]: 帮助每个人快速高效地托管Minecraft服务器(https://github.com/Snowiiii/Pumpkin)
16. [tauri-apps / tauri]: 使用Web前端构建更小、更快、更安全的桌面和移动应用程序(https://github.com/tauri-apps/tauri)
17. [rust-windowing / winit]: 纯Rust的窗口处理库(https://github.com/rust-windowing/winit)
18. [tree-sitter / tree-sitter]: 一个用于编程工具的增量解析系统(https://github.com/tree-sitter/tree-sitter)
19. [gfx-rs / wgpu]: 一个跨平台、安全、纯Rust的图形API(https://github.com/gfx-rs/wgpu)
20. [emilk / egui]: egui:一个易于使用的即时模式GUI,在Rust上运行,既可在Web上运行,也可在本地运行(https://github.com/emilk/egui)
21. [lapce / lapce]: 用Rust编写的闪电快且强大的代码编辑器(https://github.com/lapce/lapce)
【最惊艳项目】
[lapce / lapce]: 用Rust编写的闪电快且强大的代码编辑器
【今日趋势项目关注的领域和特点】
今日的趋势项目主要关注于构建高性能、安全、易于使用的工具和平台,包括全文搜索引擎库、密码管理器、开发工具、多模态数据可视化工具、智能合约平台、图形API、代码编辑器等。这些项目普遍采用Rust语言,体现了Rust在系统编程领域的强大能力和日益增长的应用范围。产品联系: [email protected]
2024-11-15 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/lapce/lapce
https://github.com/denoland/deno
https://github.com/getzola/zola
https://github.com/postgresml/pgcat
https://github.com/chroma-core/chroma
https://github.com/DioxusLabs/dioxus
https://github.com/databendlabs/databend
https://github.com/kitao/pyxel
https://github.com/Snowiiii/Pumpkin
https://github.com/martinvonz/jj
https://github.com/embassy-rs/embassy
https://github.com/MystenLabs/sui
https://github.com/astral-sh/uv
https://github.com/rapiz1/rathole
https://github.com/rust-lang/mdBook
https://github.com/rerun-io/rerun
https://github.com/starship/starship
https://github.com/kata-containers/kata-containers
https://github.com/rustdesk/rustdesk
https://github.com/jdx/mise
https://github.com/tensorzero/tensorzero
https://github.com/sxyazi/yazi
https://github.com/AppFlowy-IO/AppFlowy-Cloud
https://github.com/ArthurBrussee/brush
scape ends
ai is reading, the info is:
1. [lapce / lapce]:Lightning-fast and Powerful Code Editor written in Rust(https://github.com/lapce/lapce)
2. [denoland / deno]:A modern runtime for JavaScript and TypeScript.(https://github.com/denoland/deno)
3. [getzola / zola]:A fast static site generator in a single binary with everything built-in. https://www.getzola.org(https://github.com/getzola/zola)
4. [postgresml / pgcat]:PostgreSQL pooler with sharding, load balancing and failover support.(https://github.com/postgresml/pgcat)
5. [chroma-core / chroma]:the AI-native open-source embedding database(https://github.com/chroma-core/chroma)
6. [DioxusLabs / dioxus]:Fullstack app framework for web, desktop, mobile, and more.(https://github.com/DioxusLabs/dioxus)
7. [databendlabs / databend]:𝗗𝗮𝘁𝗮, 𝗔𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀 & 𝗔𝗜. Modern alternative to Snowflake. Cost-effective and simple for massive-scale analytics. https://databend.com(https://github.com/databendlabs/databend)
8. [kitao / pyxel]:A retro game engine for Python(https://github.com/kitao/pyxel)
9. [Snowiiii / Pumpkin]:Empowering everyone to host fast and efficient Minecraft servers.(https://github.com/Snowiiii/Pumpkin)
10. [martinvonz / jj]:A Git-compatible VCS that is both simple and powerful(https://github.com/martinvonz/jj)
11. [embassy-rs / embassy]:Modern embedded framework, using Rust and async.(https://github.com/embassy-rs/embassy)
12. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)
13. [astral-sh / uv]:An extremely fast Python package and project manager, written in Rust.(https://github.com/astral-sh/uv)
14. [rapiz1 / rathole]:A lightweight and high-performance reverse proxy for NAT traversal, written in Rust. An alternative to frp and ngrok.(https://github.com/rapiz1/rathole)
15. [rust-lang / mdBook]:Create book from markdown files. Like Gitbook but implemented in Rust(https://github.com/rust-lang/mdBook)
16. [rerun-io / rerun]:Visualize streams of multimodal data. Free, fast, easy to use, and simple to integrate. Built in Rust.(https://github.com/rerun-io/rerun)
17. [starship / starship]:☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!(https://github.com/starship/starship)
18. [kata-containers / kata-containers]:Kata Containers is an open source project and community working to build a standard implementation of lightweight Virtual Machines (VMs) that feel and perform like containers, but provide the workload isolation and security advantages of VMs. https://katacontainers.io/(https://github.com/kata-containers/kata-containers)
19. [rustdesk / rustdesk]:An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.(https://github.com/rustdesk/rustdesk)
20. [jdx / mise]:dev tools, env vars, task runner(https://github.com/jdx/mise)
21. [tensorzero / tensorzero]:TensorZero creates a feedback loop for optimizing LLM applications — turning production data into smarter, faster, and cheaper models.(https://github.com/tensorzero/tensorzero)
22. [sxyazi / yazi]:💥 Blazing fast terminal file manager written in Rust, based on async I/O.(https://github.com/sxyazi/yazi)
23. [AppFlowy-IO / AppFlowy-Cloud]:AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.(https://github.com/AppFlowy-IO/AppFlowy-Cloud)
24. [ArthurBrussee / brush]:3D Reconstruction for all(https://github.com/ArthurBrussee/brush)
ai ans is:
1. [lapce / lapce]:用Rust编写的闪电般的强大代码编辑器(https://github.com/lapce/lapce)
2. [denoland / deno]:现代的JavaScript和TypeScript运行时。(https://github.com/denoland/deno)
3. [getzola / zola]:一个内置所有功能的单二进制文件快速静态站点生成器。https://www.getzola.org(https://github.com/getzola/zola)
4. [postgresml / pgcat]:具有分片、负载均衡和故障转移支持的PostgreSQL池器。(https://github.com/postgresml/pgcat)
5. [chroma-core / chroma]:AI原生开源嵌入数据库。(https://github.com/chroma-core/chroma)
6. [DioxusLabs / dioxus]:全栈应用框架,适用于Web、桌面、移动等。(https://github.com/DioxusLabs/dioxus)
7. [databendlabs / databend]:Databend,一个现代的替代Snowflake的解决方案,适用于大规模分析,成本低且简单。https://databend.com(https://github.com/databendlabs/databend)
8. [kitao / pyxel]:Python的复古游戏引擎。(https://github.com/kitao/pyxel)
9. [Snowiiii / Pumpkin]:赋予每个人托管快速高效的Minecraft服务器的能力。(https://github.com/Snowiiii/Pumpkin)
10. [martinvonz / jj]:一个既简单又强大的Git兼容版本控制系统。(https://github.com/martinvonz/jj)
11. [embassy-rs / embassy]:现代嵌入式框架,使用Rust和异步编程。(https://github.com/embassy-rs/embassy)
12. [MystenLabs / sui]:Sui,一个由Move编程语言提供支持的下一代智能合约平台,具有高吞吐量、低延迟和面向资产的编程模型。(https://github.com/MystenLabs/sui)
13. [astral-sh / uv]:一个极快的Python包和项目管理器,由Rust编写。(https://github.com/astral-sh/uv)
14. [rapiz1 / rathole]:一个轻量级且高性能的用于NAT穿越的反向代理,由Rust编写。frp和ngrok的替代品。(https://github.com/rapiz1/rathole)
15. [rust-lang / mdBook]:从Markdown文件创建书籍。类似于Gitbook,但由Rust实现。(https://github.com/rust-lang/mdBook)
16. [rerun-io / rerun]:可视化多模态数据流。免费、快速、易于使用,简单集成。由Rust构建。(https://github.com/rerun-io/rerun)
17. [starship / starship]:☄🌌️ 适用于任何shell的最小、快速且无限可定制的提示符!(https://github.com/starship/starship)
18. [kata-containers / kata-containers]:Kata Containers是一个开源项目,旨在构建一个标准的轻量级虚拟机(VM)实现,其感觉和性能类似于容器,但提供工作负载隔离和虚拟机的安全优势。https://katacontainers.io/(https://github.com/kata-containers/kata-containers)
19. [rustdesk / rustdesk]:一个开源的远程桌面应用程序,旨在自托管,作为TeamViewer的替代品。(https://github.com/rustdesk/rustdesk)
20. [jdx / mise]:开发工具、环境变量、任务运行器。(https://github.com/jdx/mise)
21. [tensorzero / tensorzero]:TensorZero创建用于优化LLM应用的反馈循环——将生产数据转化为更智能、更快、更便宜的模型。(https://github.com/tensorzero/tensorzero)
22. [sxyazi / yazi]:💥 由Rust编写,基于异步I/O的快速终端文件管理器。(https://github.com/sxyazi/yazi)
23. [AppFlowy-IO / AppFlowy-Cloud]:AppFlowy是一个开源的Notion替代品。您负责您自己的数据和定制。由Flutter和Rust构建。(https://github.com/AppFlowy-IO/AppFlowy-Cloud)
24. [ArthurBrussee / brush]:面向所有人的3D重建。(https://github.com/ArthurBrussee/brush)
最惊艳的项目推荐:[lapce / lapce]:用Rust编写的闪电般的强大代码编辑器。
今天趋势项目的关注领域和特点:项目涵盖了从代码编辑器、JavaScript运行时到嵌入式框架、数据库、游戏引擎、智能合约平台等广泛领域,特点包括使用Rust语言的高性能、安全性以及与多种平台和技术的集成。
2024-11-16 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/kata-containers/kata-containers
https://github.com/astral-sh/ruff
https://github.com/katanemo/arch
https://github.com/sxyazi/yazi
https://github.com/qdrant/qdrant
https://github.com/lapce/lapce
https://github.com/solana-labs/solana
https://github.com/tracel-ai/burn
https://github.com/martinvonz/jj
https://github.com/jdx/mise
https://github.com/starship/starship
https://github.com/helix-editor/helix
https://github.com/paritytech/polkadot-sdk
https://github.com/SeaQL/sea-orm
https://github.com/MystenLabs/sui
https://github.com/surrealdb/surrealdb
https://github.com/chroma-core/chroma
https://github.com/containers/bootc
https://github.com/web-infra-dev/rspack
https://github.com/denoland/deno
https://github.com/raphamorim/rio
https://github.com/DioxusLabs/dioxus
https://github.com/ilya-zlobintsev/LACT
https://github.com/quickwit-oss/tantivy
https://github.com/Snowiiii/Pumpkin
scape ends
ai is reading, the info is:
1. [kata-containers / kata-containers]:Kata Containers is an open source project and community working to build a standard implementation of lightweight Virtual Machines (VMs) that feel and perform like containers, but provide the workload isolation and security advantages of VMs. https://katacontainers.io/(https://github.com/kata-containers/kata-containers)
2. [astral-sh / ruff]:An extremely fast Python linter and code formatter, written in Rust.(https://github.com/astral-sh/ruff)
3. [katanemo / arch]:Arch is an intelligent prompt gateway. Engineered with (fast) LLMs for the secure handling, robust observability, and seamless integration of prompts with APIs - all outside business logic. Built by the core contributors of Envoy proxy, on Envoy.(https://github.com/katanemo/arch)
4. [sxyazi / yazi]:💥 Blazing fast terminal file manager written in Rust, based on async I/O.(https://github.com/sxyazi/yazi)
5. [qdrant / qdrant]:Qdrant - High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/(https://github.com/qdrant/qdrant)
6. [lapce / lapce]:Lightning-fast and Powerful Code Editor written in Rust(https://github.com/lapce/lapce)
7. [solana-labs / solana]:Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.(https://github.com/solana-labs/solana)
8. [tracel-ai / burn]:Burn is a new comprehensive dynamic Deep Learning Framework built using Rust with extreme flexibility, compute efficiency and portability as its primary goals.(https://github.com/tracel-ai/burn)
9. [martinvonz / jj]:A Git-compatible VCS that is both simple and powerful(https://github.com/martinvonz/jj)
10. [jdx / mise]:dev tools, env vars, task runner(https://github.com/jdx/mise)
11. [starship / starship]:☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!(https://github.com/starship/starship)
12. [helix-editor / helix]:A post-modern modal text editor.(https://github.com/helix-editor/helix)
13. [paritytech / polkadot-sdk]:The Parity Polkadot Blockchain SDK(https://github.com/paritytech/polkadot-sdk)
14. [SeaQL / sea-orm]:🐚 An async & dynamic ORM for Rust(https://github.com/SeaQL/sea-orm)
15. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)
16. [surrealdb / surrealdb]:A scalable, distributed, collaborative, document-graph database, for the realtime web(https://github.com/surrealdb/surrealdb)
17. [chroma-core / chroma]:the AI-native open-source embedding database(https://github.com/chroma-core/chroma)
18. [containers / bootc]:Boot and upgrade via container images(https://github.com/containers/bootc)
19. [web-infra-dev / rspack]:The fast Rust-based web bundler with webpack-compatible API 🦀️(https://github.com/web-infra-dev/rspack)
20. [denoland / deno]:A modern runtime for JavaScript and TypeScript.(https://github.com/denoland/deno)
21. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
22. [DioxusLabs / dioxus]:Fullstack app framework for web, desktop, mobile, and more.(https://github.com/DioxusLabs/dioxus)
23. [ilya-zlobintsev / LACT]:Linux GPU Configuration Tool(https://github.com/ilya-zlobintsev/LACT)
24. [quickwit-oss / tantivy]:Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust(https://github.com/quickwit-oss/tantivy)
25. [Snowiiii / Pumpkin]:Empowering everyone to host fast and efficient Minecraft servers.(https://github.com/Snowiiii/Pumpkin)
ai ans is:
1. [kata-containers / kata-containers]:Kata Containers是一个开源项目和社区,致力于构建标准轻量级虚拟机(VMs)的实现,它们的感觉和性能就像容器一样,但提供了工作负载隔离和虚拟机的安全优势。https://katacontainers.io/(https://github.com/kata-containers/kata-containers)
2. [astral-sh / ruff]:一个极快的Python代码检查器和代码格式化工具,使用Rust编写。(https://github.com/astral-sh/ruff)
3. [katanemo / arch]:Arch是一个智能提示网关。使用(快速)LLMs进行提示的安全处理、强大可观察性和与API的无缝集成,所有这些都在业务逻辑之外。由Envoy代理的核心贡献者构建,基于Envoy。(https://github.com/katanemo/arch)
4. [sxyazi / yazi]:💥 使用异步I/O编写的闪电般的终端文件管理器,用Rust编写。(https://github.com/sxyazi/yazi)
最惊艳的项目:[katanemo / arch] - Arch是一个使用(快速)LLMs进行提示的安全处理、强大可观察性和与API的无缝集成的智能提示网关。
今天趋势项目关注的领域和特点:今天的趋势项目主要集中在人工智能、Web开发、系统工具和数据库技术等领域,特点是使用Rust语言实现的高性能、可扩展性和安全性。
产品联系: [email protected]
2024-11-17 start the job...
try at 0 to get trends~
scrape() status_code: 200
https://github.com/XAMPPRocky/tokei
https://github.com/SeaQL/sea-orm
https://github.com/zed-industries/zed
https://github.com/martinvonz/jj
https://github.com/vosen/ZLUDA
https://github.com/tracel-ai/burn
https://github.com/YaLTeR/niri
https://github.com/DioxusLabs/dioxus
https://github.com/tensorzero/tensorzero
https://github.com/containers/bootc
https://github.com/astral-sh/ruff
https://github.com/ArthurBrussee/brush
https://github.com/AppFlowy-IO/AppFlowy-Cloud
https://github.com/leptos-rs/leptos
https://github.com/awslabs/mountpoint-s3
https://github.com/lapce/lapce
https://github.com/pola-rs/polars
https://github.com/openobserve/openobserve
https://github.com/raphamorim/rio
https://github.com/MystenLabs/sui
https://github.com/shadowsocks/shadowsocks-rust
https://github.com/rerun-io/rerun
https://github.com/surrealdb/surrealdb
scape ends
ai is reading, the info is:
1. [XAMPPRocky / tokei]:Count your code, quickly.(https://github.com/XAMPPRocky/tokei)
2. [SeaQL / sea-orm]:🐚 An async & dynamic ORM for Rust(https://github.com/SeaQL/sea-orm)
3. [zed-industries / zed]:Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.(https://github.com/zed-industries/zed)
4. [martinvonz / jj]:A Git-compatible VCS that is both simple and powerful(https://github.com/martinvonz/jj)
5. [vosen / ZLUDA]:CUDA on non-NVIDIA GPUs(https://github.com/vosen/ZLUDA)
6. [tracel-ai / burn]:Burn is a new comprehensive dynamic Deep Learning Framework built using Rust with extreme flexibility, compute efficiency and portability as its primary goals.(https://github.com/tracel-ai/burn)
7. [YaLTeR / niri]:A scrollable-tiling Wayland compositor.(https://github.com/YaLTeR/niri)
8. [DioxusLabs / dioxus]:Fullstack app framework for web, desktop, mobile, and more.(https://github.com/DioxusLabs/dioxus)
9. [tensorzero / tensorzero]:TensorZero creates a feedback loop for optimizing LLM applications — turning production data into smarter, faster, and cheaper models.(https://github.com/tensorzero/tensorzero)
10. [containers / bootc]:Boot and upgrade via container images(https://github.com/containers/bootc)
11. [astral-sh / ruff]:An extremely fast Python linter and code formatter, written in Rust.(https://github.com/astral-sh/ruff)
12. [ArthurBrussee / brush]:3D Reconstruction for all(https://github.com/ArthurBrussee/brush)
13. [AppFlowy-IO / AppFlowy-Cloud]:AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.(https://github.com/AppFlowy-IO/AppFlowy-Cloud)
14. [leptos-rs / leptos]:Build fast web applications with Rust.(https://github.com/leptos-rs/leptos)
15. [awslabs / mountpoint-s3]:A simple, high-throughput file client for mounting an Amazon S3 bucket as a local file system.(https://github.com/awslabs/mountpoint-s3)
16. [lapce / lapce]:Lightning-fast and Powerful Code Editor written in Rust(https://github.com/lapce/lapce)
17. [pola-rs / polars]:Dataframes powered by a multithreaded, vectorized query engine, written in Rust(https://github.com/pola-rs/polars)
18. [openobserve / openobserve]:🚀 10x easier, 🚀 140x lower storage cost, 🚀 high performance, 🚀 petabyte scale - Elasticsearch/Splunk/Datadog alternative for 🚀 (logs, metrics, traces, RUM, Error tracking, Session replay).(https://github.com/openobserve/openobserve)
19. [raphamorim / rio]:A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.(https://github.com/raphamorim/rio)
20. [MystenLabs / sui]:Sui, a next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language(https://github.com/MystenLabs/sui)