-
Notifications
You must be signed in to change notification settings - Fork 1
/
ratatui.txt
4696 lines (4696 loc) · 97.6 KB
/
ratatui.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0237h/learn-rust
06chaynes/tfc-toolset
097115/tuisky-forked
0b-s3rv3r/nosignal
0b-s3rv3r/tui-pattern-highlighter
0x-dudu/ter-epub
0x152a/three-body-game
0x4ndy/pomidor
0x5844/mirage
0x69pi/apexlegends_kvm
0xBradock/alfred
0xFAC0/arp-watch-tui
0xHumban/emergency-withdraw
0xJepsen/intuition
0xKoda/diffrs
0xNathanW/bitter
0xPlaygrounds/awesome-rig
0xPlaygrounds/rig-rustbuddy-example
0xPolygonMiden/compiler
0xalpharush/fuzzing-101-solutions
0xcacti/term-chat
0xddom/libafl-playground
0xfalafel/hextazy
0xgleb/interchain
0xhappyboy/blockchain-terminal
0xhappyboy/scoutnet
0xhappyboy/tui-hex-matrix
0xi4o/zilean
0xicl33n/obsidian
0xphen/wyre
0xriazaka/blockwise
0xricksanchez/AFL_Runner
0xurb/reth-exex-plugin
0xurb/reth-exex-template
112buddyd/stew
1337isnot1337/discord-bot
1337isnot1337/roulette
13r0ck/barck
149segolte/carton
16arpi/meteo-tui
17999824wyj/exam-grading
17999824wyj/test-post
1906353110/exam-grading
1906353110/newgrading
197hh/exam-grading
1oglop1/regzamples
1xstj/tangle-hyperbridge-relayer-blueprint
2000Slash/loki_ui
20jasper/password-generator
22002440/Arborescence_-fichiers
26huitailang/git-stat
2lambda123/gping
2lambda123/vector
39555/kobuleti
3QNRpDwD/Quantum-Cryptography
3Xpl0it3r/ksre
3rickDJ/rust-things
452755/sanwuqingnian
4lineclear/flc-tui-widgets
4nZwar3/chess
4nuit/Writeup
4o3F/jp-novel-tts
4t145/rahjong
4t145/rubik
514-labs/moose
550W-HOST/ttydash
56quarters/mtop
6arare/ciphered
6arare/vita-rs
7ijme/copy-cards
7sDream/fontfor
7sDream/tui-markup
8xFF/whep-benchmark
996666925/exam-grading
9LLPPLL6/exam-grading
9elt/youtube-cli
A-SunsetMkt-Forks/atuin
A-SunsetMkt-Forks/nushell
A-SunsetMkt-Forks/proxyfor
A-SunsetMkt-Forks/veloren
AAFC-Cloud/Cloud-Terrastodon
AAspCodes/sr-rs
AFLplusplus/LibAFL
ALaggyDev/nc8-mainframe
AMTSupport/tools
ANasserkh/idm-clone
AOSC-Dev/oma
ARigler/todos_tui
AaronC81/delta-null
AbdoulMa/copycolors
Abebe123000/tui_template
AbhayFernandes/rmus
AcrossingG/52Hz
AdamCarrera/ebay-api-test
AdamL-Microsoft/onefuzz
AdamWier/budget-tracker
Adi-df/foucault
Aditeya/tgs
AdnoC/igp_pattern_printer
AdrienLeGuillou/swf_monitor
Adry940/Reth
Advait-04/rustimer
Aeskull/chat_app
AfaanBilal/sorting-visualizer
AgustinBadi/Quest
AidoP/bluemetal
Airor4/chash-client
Aityz/nytg-cli
Ajalsr/rust-todo-list
AkkuRam/chess
Al3x-G/rustlings
AlMrvn/arxivlens
AlParisi/rsultimaclone
AlejandroPenacho/obsidian-jira
AlejandroPenacho/pdc-manager
AleoNet/snarkOS
AlephAlpha/factoriosrc
Alex-Gilbert/actuire
Alex-Programs/netcheck
AlexScriba/local_paperclips
AlexTDWilkinson/Nail
AlexanderARodin/vimo-game
AlexanderMaxRanabel/ganymede
AlexanderReaper7/reapers-wf
Alexis-Lapierre/reat
Alextibtab/todo-wip
Alfex4936/SC1-Multi-Launcher
Alfrheim/kforward
AliSajid/BrainFoamKit
AliSajid/dilemma-tactix
Allyedge/fead
AlpinYukseloglu/orderbook
Amar1729/trakt-tv-updater
Amjad50/plastic
AmmarAbouZor/tui-journal
Amosel/delete_node_modules
AmourAmer/pizeon
Anaethelion/estop
AnarchistHoneybun/Muk
AnarchistHoneybun/RPS_rust
AnarchistHoneybun/cl_2048
AnarchistHoneybun/turtle
Anastasis575/devnotes
Ancient77/gitui
AndPuQing/exam-grading
Andeskjerf/server-tui
Andrew211vibe/exam-grading-demo
AndrielFR/andinum-pod
Andyson007/chess-tui
AngKS/Rusty-MNIST-Classification
Angr1st/wuerfel
AnishxBadri/Logme
AnnsAnns/morganite
AnodeDev/ByteWorks
AnodeDev/oxide
AnonymousMorris/TodoListManager
AnthonyMichaelTDM/mecomp
AnthonySirois/get-up
Anti-Raid/squeezenet-blip-burn
Antlion931/Semestr5
AntonEriksson978/rust_makemore
AntonZelenin/mess-term-client
Antzed/uni-public
Apfelfrosch/fm
Apfelfrosch/ted
Apsurt/rust-by-projects
ArchetypalTech/MeatMapEditor
ArchetypalTech/PrayMachine
ArcticXWolf/synacor-challenge
ArielHorwitz/mockingparrot
ArkhamCookie/ratatui-learning
ArnavK-09/rust_cli_for_npx
Arpan3323/system_observer
ArthurBrussee/brush
Arties-Templates/tui-rs-template
ArtiomTr/os
AsherJingkongChen/Gausplat
AsherJingkongChen/burn-model-linear
AsherJingkongChen/simple-nerf-rust
Ashfmate/runimanga
Asice-Cloud/tz-rust
AsriFox/rat-editor
Astroboyjj/BunniesGame-Rust
AsyncEgg/basic_player
AureliaDolo/tracli
AustinHellerRepo/bytecon
Avarel/bvr
AwaisIsane/Paint-GitHub-Contribution-Graph
Ax-47/akhsakovs_arcade
Ax-47/notion_at_home
Axect/Burn_tutorial
Axel1400/PracticaEmbedded
Ay-can/booky
Ayanrocks/callbreak
Ayanrocks/json-editor
AzHicham/burn-example
Azoghal/wicketick
AzraelSec/idasen-tui
B83C/t5577-rs
BBaoVanC/wltools
BGluth/scraper_gg
BIGZ221/JustAnotherSnakeGame
BNKIBrai/Veloren
Baakel/tsool_rev
Banou26/riffle
Baseng0815/bahn-status
Basillica/csv-grep
Batdan007/ULTIMATEBATCOMPUTERXv2
Bats6789/MazeViewerTUI
BauerBank/kosmonaut
Beastwick18/nyaa
Beastwick18/tinbox
Beinsezii/ompl
BenFradet/trs
BenHals/LocationInspectorTUI
BenKrocke/Chat-CLI
BenLeadbetter/shellaga
BenMcConville/Distributed-System-Access
BenMcConville/IceCube_System
BennetLe/SMAPI-Instance-Manager
BenteVE/type_trainer
Bergschrat1/beancount-tui
Beriholic/wd
Berrysoft/tunet-rust
BerserkerMother/notes
BielStela/plou
BigBuildBench/a-kenji_tui-term
BigBuildBench/ckaznable_poketex
BigBuildBench/gulbanana_gg
BigBuildBench/jacek-kurlit_pik
BigBuildBench/lusingander_stu
BigBuildBench/russellbanks_Komac
BigBuildBench/sarub0b0_kubetui
BigBuildBench/sile_erldash
BigBuildBench/wfxr_rlt
BigBuildBench/wllfaria_hac
BigglesworthCat/cloud-storage-utilizer
BillGoldenWater/playground
Billbante/aleodeploy
BimoT/pangran
BipulLamsal/onlinekhabar-tui
Biscgit/docker_rash
Biscgit/rustword_manager
BismuthCloud/cli
BiswajitThakur/host-rs
Bitwardenoff/bitwarden-russh
BlKlShip/apexsky
Blourvim/LicessCliRust
Bogay/normal_game_jam_2024
Boltzmachine/DanLu
BolvicBolvicovic/rime
BoolPurist/ratatui_todo_app
BppleMan/parallely
BradenEverson/wunos
Brayan-724/hot-reload-rs
BreakingLead/blockworld
BrendanNolan/weather_dashboard
Brian-Catcow-B/tui-dungeon-raid
Bristol-Cyber-Security-Group/testbed-os
Brod8362/phasmoterm
BrowserSync/bslive
BruceChen7/case-study
Brudihawo/wd
Bryntet/analyzing-vpn-traffic
Builditluc/wiki-tui
Byron/crates-io-cli
Byron/dua-cli
Byron/prodash
Byron/tui-crates
Byte-OS/tools-kbuilder
C0D3-M4513R/nixpkgs
CETerry/Rust-txt-Adventure
CHATALOT1/orvin
CMoser965/CLI-Street
CaffeeLake/nixpkgs
CaffeeLake/rustic
CaioWing/pytui
CalebStephen18/Nuriel
CalvoM/rs-practice
CameronBarnes/apocalypse_library_downloader
CameronBarnes/survivor_library_script
CameronBarnes/termsweeper
CameronBarnes/valve_log_viewer
Cantido/casino
CarbonFlora/sli
CarlosCRG19/cube
Catfish1210/rustySocket
CeNiEi/hexagon
Celsuss/xrandr-tui
ChangedNameTo/DoIt-rs
ChangqingW/SeqSizzle
Charl-AI/lazyslurm
CharlieKarafotias/tdt
Chaxware/tui
CheetahCyberBoi/issloc
Chepelash/subscriprion_app
Chewingiz/Rust-server-project
Chicken-skin/burn-mnist
Chicken-skin/burn-trial
ChimeWu/learndl
Chinmay1743/tui-panic-sample
Chipskein/stfm
Chleba/netscanner
Chleba/tui-slides
ChosunOne/burn_template
Chris44442/leetcode
ChrisMcD1/strands
ChrisTitusTech/linutil
Cldfire/mc-server-wrapper
ClementNerma/Trasher
ClementNerma/quickfuzz
ClementTsang/bottom
ClementTsang/console
Clo91eaf/hemu
Clownvin/Flashr
CmPons/KAITe
CmrCrabs/lava-lamp
Code-Militia/jirust
CodeEditorLand/Turbo
CodedMasonry/how_far
CodedMasonry/polycasting.rs
CodeyBoi/cherss
Codisthenix/journalr
CohleRustW/TcmTui
Colepng/streaming-rs
ComlineProject/comline
ComlineProject/package-manager
ComputationalBiomechanicsLab/osimperf-monitor
ComradeJustin/schoolproj
Consensys/corset
Contribution-Tracking/nixpkgs
CookbookDev/Foundry_build
Coops0/wordle-tui
CorbanR/nixpkgs-1
CornWorld/learning-infiniTensor-exam
CorneliusCornbread/Volnita
CosasDePuma/Landfill
Cosmo-Coleus/Cosmo
CptClarenceOveur/AdGuardian-Term
CrashAndSideburns/lawa-binutils
Creative0708/piatui
Crescent617/chat-bar
Cretezy/lazyjj
CrimsonDart/chess
Crowds21/rsy-scribe
CynicalMrJones/logbook
CynicalMrJones/mobile_logbook
Cypressxyx/lazycurl
Cyril-Cf/rusty_adventures
D0bhareach/rust-ratatui-example
D0liphin/Testnice
DAC098/RFS
DJ0301/foundry-personal
DMLhope/hecto-demo
DZappala/json-editor
DZappala/pomo
DZappala/ratatui-counter
Dagunov/tool-exiftool
Dah-phd/idiom
DanBlackwell/DGFuzz
DanBlackwell/PrescientFuzz
DanEscher98/Freelancing
DanNixon/satori
DanOlson/TTrYs
Dangornushi/Leather
Dangornushi/lsl
Daniel-Boll/rat-at-4at
Daniel-Boll/ratatui.ts
Daniel-Boll/scylla-sh
DanielHQuinn/choccy
DanielHe4rt/poorly-made-autocompleter
DanielHe4rt/twitch-sentinel-rs
DaniloMurer/frust
Danvil/nodo
Dargon789/foundry
Dark-Alex-17/managarr
DarkKronicle/tasksmith
DarkWanderer/vector
Darkiiiiiice/ssh-config-tui
Daru-san/timed-rs
Dauthdaert/chest
DavJCosby/rasp-pi-setup
DavJCosby/sled
DavangeSam/Peer-to-Peer-Chat-System
Davey-Hughes/advent-of-code
Davidos533/crash-reports-recognizer
Ddraigan/diff-tool
DeCarabas/fwd
DeFoxa/Tokio_vs_Actix_Actors
DeadPoetSpoon/redis-tui
Decemberay-DA/rustlings
DefinitelyNotSimon13/project-tui
DeflateAwning/baud-boss
DegenerateCoder/RusTunes
Degra02/nordvpn-tui
DelgadoElias/nttt-erminal-register
DelgadoElias/nvim-rv
DenisGorbachev/fasterface
DenisGorbachev/fasterface-tasks
DenisGorbachev/oneshot
DenysShch/rust-todo-app
DeusProx/git-branch-cleaner
DevinLeamy/Daila
DhrvM/CRYPT
Diegovsky/packgs
DieracDelta/nix-btm
Digiyang/PGPManager
DimiDumo/rambda
DimitrisZx/Ratatui-hello-world
DioxusLabs/blitz
DioxusLabs/dioxus
DioxusLabs/docsite
Dirli-V/LogiNabe
Diskostat/diskostat
Divakar-2508/bz_player
Donotrepeat/rust_game
DonovinNatividad/tui-do-list
DoradoAcero/tui_postman
DouglasAgostinho/freedom
DrCheeseFace/Krabby-gotchi
DrEden33773/emberflix
DrSh4dow/burn-mnist-test
DragonOS-Community/DragonOS
Draichi/burn_hello_world
Drazhar/RustyGains
DreadedHippy/ratatui-project
DreckSallow/melody
DreckSallow/music_shell
DrewRidley/gats
DriedYellowPeach/chat-tui
DriedYellowPeach/rust-playground
Drumato/pelftool
DudeTux42/ykmantui
DylanBulfin/thunars
DynamicApproach/atuin
ECCC-RPE-EPR/e2020-data-viewer
EEika/GTFT
Earthgames/rmusic_tui
Eason0729/Intro-to-Machine-Learning
Echinoidea/loggr
EdJoPaTo/mqttui
EdJoPaTo/ratatui-binary-data-widget
EdJoPaTo/tui-rs-tree-widget
EdenEast/tuxmux
EdenOttleyHodgson/EdenChess
EdenOttleyHodgson/file-manager
Editify/Editify
EdwardJES/immutable-exex
Effnote/rsfchat
Eiafuawn/spotia-tui
ElMoustacho/deeznuts-downloader
ElXreno/nixpkgs
ElectrifyPro/dnd-initiative-tracker
Elekrisk/spiral
ElevenJune/todo-app-rust
EliahKagan/gitoxide
ElinksFr/net-monitor
ElisR/pdb-tui
EltonARodrigues/check_api_status
Elucide/trakiki
EmNudge/inspect-wav
EmmetZ/bilibili-video-dl
EmoPorEmilio/proyecto-viviana-cli
EmperorOrokuSaki/trill
EnzoCasamasso/binary_converter
EnzoCasamasso/customs_widgets_ratatui
EnzoCasamasso/invaders
EnzoCasamasso/ui_ratatui
Epos95/pdf-viewer
EricCrosson/percentage-changed-calculator
ErrorNoInternet/icmpong
ErrorTeaPot/Rust_SSH
Esteban528/estebandev.nix
Esuol/rc_color
Etto48/HexPatch
Eugeny/russh
Evanev7/sokoban
Eveeifyeve/Better-npx
Eveheeero/nickname_generator
EwanFox/immerse
ExaForce/vector
ExtremelyRyan/ByteCrypt
FALLfield/text_editor
FPGSchiba/deployment-manager
FSMaxB/baby-name-tournament
FZDSLR/nixpkg-loong64-test
FabienGadet0/password_manager
Fabucik/tic-of-war
Fabus1184/ramp
FaisalBinAhmed/MVGFahrinfo
FaisalBinAhmed/MeiliFinder
FakeMichau/lma
Falco90/hypertui
Fanteria/todotxt-tui
FedericoBruzzone/tgt
FedorBuggins/journal-cli
FelipMa/snake_game
Felix-Zhenghao/exam-grading
FelixFern/tetrs
FelixNgFender/teto-rs
Feohr/refer
FilipKon13/speedtype
Filo6699/rpg
FinnDore/loglog
FizzyApple12/TankCommander
FlowDeskMarkets/vector
Flowneee/etcd-tui
Fluzko/irm
FormidableLabs/envy-tui
FortiShield/turborepo
FourCredits/editor
Foxicution/chors
FractalDiane/fallout-hacking
FranVeiga/blooey
FrancescoLuzzi/fiumi_emilia_romagna
FranciscoOrtizCastillo/basic_burn_app
FreeFull/runt
FreeMasen/resume-tui
FreeMasen/resume-tui-browser
Friedchicken-42/lazyhex
FrodeBerg/basher
Froloket64/uidb
FulanXisen/nanote
Furiousslave/rustgram
FuzzingLabs/sui-fuzzer
GDSC-IIIT-Kalyani/fictional-waffle
GHAUTHAM2509/cli-rpg-ghautham2
GHaxZ/brb
GIP2000/email-tui
GQAdonis/burn_the_candle
GRBurst/rust-burn-dev
GY-Love/rustlings
GZyannick/vim-rust
GabAlpha/basilk
GabeeeM/pooporen
Gabriel-M-Martins/clib
Gadersd/llama2-burn
Gadersd/stable-diffusion-xl-burn
Gage-Technologies/embedding-server
Galacs/exospot
GalactechsLLC/dg_fast_farmer
GalaxyGamingBoy/taskify
Galus/rust-edu
GaoXiangYa/exam-grading
Gargafield/kingdom-crisis
Gaunah/game_of_life
GeorgeRub/education
Geostartico/webcam_tui
Gerrit15/ponder
GiancarlosIO/ratatui-counter-app
GiancarlosIO/ratatui-json-editor
GiancarlosIO/ratatui-todo-app
GigaDAO/openbook
Girgetto/gitclean
GitDataAI/jzflow
GitoxideLabs/gitoxide
Gnarlsley/ratatui_test1_0
Gnarlsley/ratatui_test1_1
Gnarlsley/weather_util_test_1_1
Gnarus-G/maccel
Gobeyn/crust
Gobeyn/dumpling
GomesGoncalo/gameoflife
GoodBoyNeon/sprofile
Goose97/terminal-guitar-tuner
Gordi42/code-remote
Gordi42/stama
Gottschatten/CweS
GrainCult/graining
GrandAdmiralBee/FCP2SRK-MDB
Granddave/casio-a168wa
Granddave/mos6502
Greatlakescoder/jolt
Green0318/G.Commune
GregShiner/sudoku-but-fast
Gregory-Eales/rusty-chat
Grsaiago/rtui
Gteditor99/fm
Guanran928/nixpkgs
GuiFernandess7/Rust-studies
Guillaume-prog/address-finder
Gummy27/rust_conways_game_of_life
Guocork/learn
H1d3r/Tempest
H2CO3/steelsafe
HAOyang-L/exam-grading-demo
HAUST-SE-ZhiTui/rustlings-test
HUOd/text-generation-inference
Haksell/zappy
Halkcyon/LcMods
Hamblok0/tui-planner
HamzaMateen/RustySIMS
Handfish/confetty_rs
HangBeni/rust_tui
HangBeni/tui_for_learn
HannesFeil/regex-playground
HannesFeil/totui
Happyigr/Blind-typing
HappyySunshine/Rufuf
Harmonyblue/nixpkgs
Harsith27/project50
HasChad/cli-pipes
Hashino/navfs
HawkinDynamics/probe-rs
Hawthorne001/foundry
Hawthorne001/turbo
HectorxH/rust-synth-example
Heislandmine/city-of-night
HellOwhatAs/bili-live
Hemenguelbindi/caching_proxy
Henktorius/mintl
HenryXV/weson
Herjuus/FileX
HerodotusDev/hdp-sp1
HiggRn/podcrab
HoloTheDrunk/puccinia
Horryportier/Watcher
Horryportier/md-to-tui
Houndie/crabtap
Hoverth/syssetup
HuanRluchetti/tui-counter-app
HugoBde/clide
Human9000-bit/nanoGPT-rs
Hyde46/hoard
HyperboreaHQ/hyperbloom
HyperboreaHQ/hyperbox
HyperboreaHQ/hyperchat
IKchen/learning-ratatui
IKchen/ratatui_musicplayer
IRONICBo/LFX-WasmEdge-PreTest-3172
IRONICBo/TOS-Builder
IRSMsoso/audio-preview
IRSMsoso/environment_tui
IRSMsoso/tui-counters
IanTeda/authentication_tui
IanTeda/hello_worlds
IanTeda/personal_ledger_tui
IgorKramar/zk
IgweEmmanuel/Climate-Smart-Farming-Token
IlyaSelivanov/rs-ping
ImSoZRious/sshe
ImaginaryInfinity/squiid-calculator
InDieTasten/mouse-tracking-demo
Incurafy/Tuidle
InfamousVague/RustyPlates
InfectedGriffon/Refunge
InfernalSpark/tmusic
InfiniTensor/InfiniTUI
InfinityCity18/hackchat
Inkvisto/ITracker
Inkvisto/thisel
InnocentZero/calcu-rs
InukVT/k-download
Ioloboss/flashcards
IronWill79/rusty-nesticle
Irvingouj/ruim
Irvingouj/sshfs
IsE333/tetris-tui
IsmailmFahmy/itjustworks
It4innovations/hyperqueue
ItsEthra/gland
Ivans-Labs/Titan-OSINT-Arsenal
J-Bockhofer/rs-ratatui-i649
J-Bockhofer/succeed2ban-tui
J-Bockhofer/termcolors-tui
JL-III/basic-app
JMoogs/termreader
JPDovale/lazyrest
JSH5000/RUST_Monitor
JTan2231/recall
JTan2231/tllm
JYMiracle305/exam_grading
JaMa-95/passman
JackTench/minilaunch
JackThomson2/virtio-playground
Jackhr-arch/clashtui
Jackhr-arch/vtyrec
JackoCoolio/shux
JacksonKjar/wpmrs
JacksonParodi/midomo
JacobALundgren/economy-game
JacobLinCool/rhythm-rs
Jaffrez/Task-Tracker
Jaghov/Glow-rs
Jaister/ToDo
James-Rhodes/nn_logic_gates
JamesPatrickGill/miv
JamesZoft/sokoban_rust
JamesZoft/sokoban_rust_wasm
Javadyakuza/enigmatcher
Javier-Romario/spr
Jaydenong5595/exam-test
Jayleaf/cers
Jayllyz/term-hero
Jcvita/gunship
Jedsek/bad-apple-rust
Jedsek/tui-dashboard
Jedsek/tuimager
Jedsek/wi-editor
Jeklah/fishtank
Jelvani/hddb
JeromeSchmied/cgol-tui-rs
Jeshwin/tiny_projects_2023
JesperAxelsson/termilog
Jess3Jane/mechaknight
JesseCSlater/booktyping
JesseCSlater/scrivenwright
Jesterhearts/piece
Jesterhearts/ratatui-wgpu
JezzyDeves/ratatui-helpers
Jhmoz/exam-grading
Jiawens/MMMMMusic
Jinskiss/exam-grading
Jo6a/multitimer-tui
Joe-Goodsell/flashy
Joe-Goodsell/postal
JohanAOstbye/rcon-tui
JohanChane/clashtui
Johannes990/book_db
Johannes990/ratatui_async_counter
Johannes990/ratatui_counter
Johannes990/ratatui_json_editor
Johannes990/ratatui_test
JohnEdChristensen/chipy8
JolleJ/doctop
JonasKruckenberg/k23
JonathanBHill/spot-lib
JonnyWalker81/query-crafter
JorgeMayoral/ripnode
Jorrrmungandr/chat-server
JosephFerano/kanban-tui
Joshua861/rust
JosueMolinaMorales/rustoku
JotaEmePM/wayqa
Jotalz/apex_dma_kvm_pub
Joxtacy/tuisweeper
Joxtacy/wheel-of-names
JuiceDrinker/cync
Julien-cpsn/ATAC
Julien-cpsn/Environs
JuniMay/encrypted-chat
JustAPenguin9/engine-thing
JustAPenguin9/engine-thing2
JustPretender/arkanoid-tui
JustPretender/discovery-rs
JustinEnlow/edit
Juuxel/Templateer
JuxhinDB/poolparty
Juxhinb7/relaks
JuxtaRYCT/rust-audio-visualiser
KC-OU/Cyber-Toolbox
KC-OU/KC-CYBER-SCRIPT
KCaverly/archer
KMJ-007/lazygh
KMikeeU/handlemyshell
KUCHITAKE/woltui
KULFreeBot/freebot-gatt-control
KUZMINRAPR/todo
Kacper0510/project_cleaner
KacperSkelnik/terminal-text-editor
Kacperacy/RustEdit
KagurazakaNyaa/rai-net-access-battlers-tui
KaiHa/powsup
KaidRommel/RustLearning
KalaCity/exam-grading
KalinIvanov-l/ATAC
KaloyanYosifov/hkb
Kamagyu/denali
KamilM1205/neon
Kamillaova/nixpkgs-termux
KaminariOS/tree-fuzzer
KaranveerB/pacdedep
KarenKonou/wapiti
KarlHeitmann/rails_explorer
Karta775/rtftui
KasarLabs/deoxys-tui
KatKmiotek/readme-tui
Kaucrow/simple-projects
Kazik24/hashsummer
Kazooki123/LunarDB
KeeganMyers/ri
KekmaTime/IronKey
KennethPrice288/sudoku_solver
Keterion/tag_database
KevinAlbrecht/pomodoro
KevinL10/wirecrab
Khalzz/Dedicated-Server
Ki11erRabbit/sevi
Kibadda/dmenu
Kibadda/passmenu
Kibadda/pinentry
Kibadda/powermenu
KilroyWasHere-cs-j/Web-browser
KimWang906/creamhack
KingTimer12/CNN_study
KiraCoding/lyn
Kirikmelet/music_player
Kisbogyi/entropyneur
KittyCAD/modeling-api
KivalM/rowdle
Kl4rry/ferrite
Knight-Ops/kaggle-space-titanic
Kobayashi-takumi/dancing-gopher
Kodylow/learn-burn
Kromzem/rusty-nes
Kryszak/penny
Ktwsz/rustbonsai
Kuly14/reth
KumoCorp/kumomta
Kyagara/crescent
KyleKincer/solvataire
Kyllingene/doctui
L-jasmine/llm-world
L-jasmine/script-llama-tui
LAPKB/PMcore
LDexter/ratatui-tutorials
LILKEK361/TerminalMedia
LMH01/alpha_tui
LanaMirko04/tms
LapisSea/sheepit-client-rs
Larmbs/cellular-automata
LazyDope/mantra
LazyMaple/vector-patch
LearningInfiniTensor/exam-grading
Leenuus/Pomodoro-Timer
LegitCamper/rust-tui-chat
LelouchFR/chess-rs
Lenbot-QC/raplay
LennyHirsch/BitWardenTUI
LeoDog896/game-solver
LeoRiether/tori
LeoniePhiline/showcase-dl
LeopoldBriand/jobs_scheduler
Let-Me-Use-A-Username/RCli
LevitatingBusinessMan/atto
LiamGallagher737/undiscovered_yt
Liberxue/cqf
LightDotSo/LightDotSo
LiliGPT/lili
Lillevang/taskmaster
LingChen23/Exam-Grading
LingmoOS-Testing/lingmo-nix
Lintermute/advent-of-code-rs
Linus-Mussmaecher/rucola
LinusRichter/conman
Liquidwe/rust-examples
Lissy93/AdGuardian-Term
LittleNoob2333/final_test
LittleNoob2333/my_exam
LoafDev/the-nuker
LoafDev/the-nuker-TUI
Localghost385/tetrs
Lolikarbuzik/jbterminal
Lomzem/ratatui-exploration
Loomione/exam-grading
Looperdelooper/exam-grade
Looperdelooper/exam-grading-demo1
LordCasser/IKnow
LordFoom/rashcard
LordFoom/rrss
LordGoatius/tui_chess
Lorenzinco/Mokaccino
LostPieceUniverse/FlashMindForge
LouisAndrew/fsr
LouisMary008/FOUR
LoveDoLove-Forked-Projects/rainfrog
LrsNate/timer-rs
LuanFabricio/tomatoes
LucasPickering/slumber
Lucky4Luuk/beammp_rust_server
Luis-Gutierrez-Pereda/rustty
Lunderberg/stardew_bot
LuukE-cmd/chart_tui
Luxury-Entertainment-CrowdTech/cache-distributed-server-storage
Luxvao/rust
Lydanne/mongobar
Lydanne/rmdev
LyonBerends/snake.rs
M-Komorek/bLog
M1K8/conductor
MCorange99/pc-emu
MKMukeshkannan/pgtor
MMitsuha/commander
MOZGIII/rebootinto
MUsmanZahid/kam
MYRon-TO/you_should_not_pass_client
Macchina-CLI/macchina
Maccraft123/dtemu
Machine391/text-generation-inference
MackoHacko/hms
MajorTom327/solo
Makefolder/tuirc
Malfurionzz/exam-grading
MangoLambda/passman-rs
MangoTzara/rfz
Manikya-Sharma/mini-vim
Manikya-Sharma/todo-cli
MariaSolOs/binocular
MarioHabor/cli_pass_manager_rs
Marlstar/FileExplorerTUI
Martinits/heart7
Marvin-Dziedzina/tipp10w
MarvinTheMoodLifter/horme
Marwan-lord/terminal-json-editor
Mathiskrvl/Burn-Train-web
Mathiskrvl/Rust_trading_project
Maurycy-Krzeminski/sia
MaximilianAzendorf/replicate-condvar-error
MaximilianBernkopf/morpheus
Maxito7/Qbo
Maxuss/verses
McArthur-Alford/vscope
Mclilzee/snippset
Mcsky23/tobi
MediaEnhanced/Swiftlet
Meisterlala/cli-chat
Memnoc/expense-tracker
MenosGrandes/rudu
MentaalAchtergesteld/project-library
MeowKatee/2048-rs
Meph1sto666/horizon
MercuryTechnologies/ghciwatch
Meziu/fierceful-atto
MichaelOwenDyer/Blackjack
MichaelOwenDyer/poker
Micro-ATP/exam-grading
Mikeost/github-profile-explorer
Milind220/Baud
Mimea005/lazy-stacked
MindsHub/cyberorto-cli
Minemobs/learn_japanese
Minigrim0/HomeDisplay
Minigrim0/SCC-VM
Minoru/newsboat-tui-rs
Mintroo/majitimer
MishkaRogachev/raclette_vault
Misza13/draugr
Mitafr/mgwconf
Mitra98t/fex
Mk555/pagerduty-tui
MochiPiyo/burn_matmul
Moeweb647252/systemctui
MohdMohsin97/system-monitoring
Mon4ik/minesweeper.rs
Mon4ik/pubtrust-chat
Mon4ik/tic-tac-toe
MonkeyDEcho/exam-grading
Montessquio/eesh
MoonsilverTV/mydnightsun
MordragT/nuka
MoringLotus/InfiniTensorCamp
Moskas/shinbun
MostroP2P/mostrui
Motiff2/oha
Movebase/futhwe
MrCasCode/log-analyzer-pro
MrDahaniel/tudo
MrDwarf7/ratatui_learning
MrFixThis/krx
Mroik/fitch
Mulander-J/rust-trail
Mulander-J/timeWaster
MultisampledNight/inoe
Muresan73/wave-function
Mvmo/esenix
Mvmo/ischnix
Mvmo/letter
Mvmo/rustic-fuzz
MyGamesM/rust-music-player
MythicalCow/vayu
N-Maas/hivetui
N8BWert/ecs-toy
N8BWert/nengine
N8BWert/td-tui
NEWSLabNTU/ddshark
NEWSLabNTU/pcd-tool
NFTbfs/Rust-template
NIWC-Intern-Team/Blank-NET
NJUPT-SAST/aurora-ui
NQMVD/zeox
Nandinski/tic-tac-toe
Narayanbhat166/blazer
Narfinger/TheoryGrabber
Narfinger/job-data
NateSeymour/pz-server-manager
Natsume-Neko/Tonic
NeViRAIDE/neviraller
NegrilaRares/ScryXPNG
Neptune-Crypto/neptune-core
Neptune-Crypto/neptune-explorer
Nerkled/ratatui-counter-app
NerosOW/text-generation-inference
Nertsal/minbo
Netetra/shuffle-seats
Netflix/bpftop
Ngz91/anya
NiXium-org/nixpkgs-stable
NiXium-org/nixpkgs-unstable
Nichebiche/foundry
NicoOhR/ratatat