Инструмент, который добавит компоненты для ваших терминальных приложений на Rust.
https://github.com/warpy-ai/rustubble
@rust_code
Please open Telegram to view this post
VIEW IN TELEGRAM
GitHub
GitHub - warpy-ai/rustubble: Beautifull components for your terminal.
Beautifull components for your terminal. Contribute to warpy-ai/rustubble development by creating an account on GitHub.
👍7🥰3🕊2
komorebi — это расширение для Windows 10 и более поздних версий, превращающее диспетчер окон в тайловый оконный менеджер. Программа написана на языке Rust.
Пользователи могут настраивать сочетания клавиш и конфигурационные файлы.
Документация доступна для руководства по установке и настройке.
https://github.com/LGUG2Z/komorebi
@rust_code
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥12👍5❤2😐1
Why does T need to be Send for a Mutex to be Sync
https://github.com/Amanieu/parking_lot/blob/9dace42690f78bcf30f387ba42024bff4e8b6c18/lock_api/src/mutex.rs#L144
https://github.com/Amanieu/parking_lot/blob/9dace42690f78bcf30f387ba42024bff4e8b6c18/lock_api/src/mutex.rs#L144
GitHub
parking_lot/lock_api/src/mutex.rs at 9dace42690f78bcf30f387ba42024bff4e8b6c18 · Amanieu/parking_lot
Compact and efficient synchronization primitives for Rust. Also provides an API for creating custom synchronization primitives. - Amanieu/parking_lot
👍3🤨2🤮1
Performance: Pattern matching vs Dynamic Dispatch
https://github.com/tailcallhq/rust-benchmarks
@rust_code
https://github.com/tailcallhq/rust-benchmarks
@rust_code
GitHub
GitHub - tailcallhq/rust-benchmarks: Comparison between pattern matching and dyanmic dispatch in Rust
Comparison between pattern matching and dyanmic dispatch in Rust - tailcallhq/rust-benchmarks
👍5🕊1
Rust's iterators optimize nicely—and contain a footgun
https://ntietz.com/blog/rusts-iterators-optimize-footgun/
@rust_code
https://ntietz.com/blog/rusts-iterators-optimize-footgun/
@rust_code
❤5🕊2
What Rust Got Wrong on Formal Verification
https://gavinhoward.com/2024/05/what-rust-got-wrong-on-formal-verification/
https://gavinhoward.com/2024/05/what-rust-got-wrong-on-formal-verification/
Gavinhoward
What Rust Got Wrong on Formal Verification | Gavin D. Howard
I don't like Rust. I think it could be simpler. And because the creator of Rust wrote something recently, I thought it was time to lay out my vision.
Neovim + Ratatui = Markdown preview in the terminal! 😍
🦀 md-tui: Markdown renderer built with
@ratatui_rs
https://github.com/henriklovhaug/Preview.nvim
⭐ GitHub: https://github.com/henriklovhaug/md-tui
@rust_code
🦀 md-tui: Markdown renderer built with
@ratatui_rs
https://github.com/henriklovhaug/Preview.nvim
⭐ GitHub: https://github.com/henriklovhaug/md-tui
@rust_code
GitHub
GitHub - henriklovhaug/Preview.nvim: Neovim wrapper around MD-TUI
Neovim wrapper around MD-TUI. Contribute to henriklovhaug/Preview.nvim development by creating an account on GitHub.
👍8❤3🔥2
This media is not supported in your browser
VIEW IN TELEGRAM
git clone https://github.com/sxyazi/yazi.git
cd yazi
cargo build --release
Все операции ввода-вывода в yazi выполняются асинхронно, задачи процессора распределяются между несколькими потоками, что позволяет максимально эффективно использовать доступные ресурсы.
yazi обеспечивает отмену задач и назначение внутреннего приоритета задач.
Имеет встроенную поддержку нескольких протоколов изображений, интегрирован с Überzug++, охватывая практически все терминалы.
@rust_code
Please open Telegram to view this post
VIEW IN TELEGRAM
👍32🔥16❤6
Avoiding Over-Reliance on mpsc channels in Rust
https://blog.digital-horror.com/blog/how-to-avoid-over-reliance-on-mpsc/
@rust_code
https://blog.digital-horror.com/blog/how-to-avoid-over-reliance-on-mpsc/
@rust_code
Juxhin ("Eugene") | Digital Horror
Avoiding Over-Reliance on `mpsc` channels in Rust - Juxhin ("Eugene") | Digital Horror
Thoughts and ideas on how to avoid over relying on `mspc` channels when simpler or more effective patterns can be used.
👍5❤1
https://github.com/Qiskit/rustworkx
@rust_code
Please open Telegram to view this post
VIEW IN TELEGRAM
GitHub
GitHub - Qiskit/rustworkx: A high performance Python graph library implemented in Rust.
A high performance Python graph library implemented in Rust. - Qiskit/rustworkx
🔥9❤🔥8🥰1
GxHash - an extremely fast hardware-accelerated non-cryptographic hashing algorithm (zero dependencies, no_std compatible)
https://github.com/ogxd/gxhash
https://github.com/ogxd/gxhash
GitHub
GitHub - ogxd/gxhash: Unsafely fast hashing algorithm 📈
Unsafely fast hashing algorithm 📈. Contribute to ogxd/gxhash development by creating an account on GitHub.
👍9🔥7❤2
Rust and dynamically-sized thin pointers
https://john-millikin.com/rust-and-dynamically-sized-thin-pointers
https://john-millikin.com/rust-and-dynamically-sized-thin-pointers
John Millikin
Rust and dynamically-sized thin pointers
👍4❤3
Speeding up rustc by being lazy
https://davidlattimore.github.io/posts/2024/06/05/speeding-up-rustc-by-being-lazy.html
@rust_code
https://davidlattimore.github.io/posts/2024/06/05/speeding-up-rustc-by-being-lazy.html
@rust_code
👍4
The Inconceivable Types of Rust: How to Make Self-Borrows Safe
https://blog.polybdenum.com/2024/06/07/the-inconceivable-types-of-rust-how-to-make-self-borrows-safe.html
@rust_code
https://blog.polybdenum.com/2024/06/07/the-inconceivable-types-of-rust-how-to-make-self-borrows-safe.html
@rust_code
Considerations on Codecrafting
The Inconceivable Types of Rust: How to Make Self-Borrows Safe
One of the first things any Rust programmer learns is that you can’t pass an object and a reference to that object around at the same time. It’s impossible to do, even indirectly. This limitation has been the subject of countless questions on Stack Overflow…
❤2👍1🔥1
Cloud Performance on a "Toy" Computer: From Python to Rust
https://progscrape.com/blog/2024-06-06/cloud-performance-on-a-toy-computer-from-python-to-rust
@rust_code
https://progscrape.com/blog/2024-06-06/cloud-performance-on-a-toy-computer-from-python-to-rust
@rust_code
progscrape
progscrape: "progscrape blog" search results
Technology news about "progscrape blog" from Hacker News, Reddit, and other programming sites.
👍2⚡1❤1
⚡️ DEVOPS ЛУЧШИЕ Бесплатные КУРСЫ Ресурсы, Книги для обучения 2024!
https://www.youtube.com/watch?v=IVk6WYgWwMs
@rust_code
https://www.youtube.com/watch?v=IVk6WYgWwMs
@rust_code
❤5🔥2