Berkus Decker
Berkus Decker
This is awesome for learning! I wonder if it could be possible to somehow combine this with [rust-patterns](https://github.com/rust-unofficial/patterns) to also show common idiomatic constructs used throughout Rust programs?
I use it in my project and it seems much more capable (e.g. cross-execution on windows, linux and macos) - see [here](https://github.com/metta-systems/vesper/blob/develop/Makefile.toml). Sample github actions runs [here](https://github.com/metta-systems/vesper/actions/runs/381892610). Feel free to...
As displayed in the example code: ``` let handle = system.run(async move { "someval".to_string() }); assert_eq!(block_on(handle), "someval".to_string()); ``` This will not even build because run() returns Result and block_on() expects...
Referring to note in #441 > Probably the most helpful next step would instead be to document the schema. In doing so, we can just document the type of default...
This is an epic, I will try to update it with more RFC-worthy data when I have time. Basically, we need to add support for user-definable themes, and then for...
Can telebot work with more complex commands like `/edit356` where 356 is variable part? In the old telebot version i was able to do this via [custom processing](https://github.com/berkus/AeglBot/blob/rust/src/lib.rs#L163-L171) for [commands](https://github.com/berkus/AeglBot/blob/rust/src/lib.rs#L274-L344).
Similar to plus messenger; make 3 buttons just below the search bar
Show only unread chats when this is enabled; for quick on/off place it somewhere reachable - e.g. a simple checkbox next to the Search bar.
For example, see [here](https://github.com/procxx/tdesktop/pull/25#discussion_r154543743)
Code in many places uses qMin+qMax or even qMin+qMin to clamp values, just use std::clamp. Probably replace qXxx versions with their std counterparts - ? See [here](https://github.com/procxx/tdesktop/pull/25#discussion_r154543905) for reference. Mini...