Owen Walpole
Owen Walpole
The mine cart simply goes back and forth when not on the proper Y level, rather than digging down.
The documentation should: - Have a [neutral tone](https://en.wikipedia.org/wiki/Wikipedia:NPOV) - Avoid first and second person ("I", "We", "You") Additionally, - Statements requiring citation should be marked as such, or cited where...
I think it would be cool to add the (optional) ability to fetch the latest template at runtime, so that it could be updated without updating the binary.
From crazy-max/docker-rtorrent-rutorrent: > rTorrent stickz is a project maintained by a core collaborator of ruTorrent. https://github.com/stickz/rtorrent > > The rTorrent stickz project focuses on performance and stability of the torrent...
## Describe the bug Afaik SMTPUTF8 allows emojis in email addresses, but `EmailAddress::FromStr` gives `InvalidCharacter`: [`š@š.kz`](https://mailoji.com/) [`Iā¤ļø[email protected]`](https://en.wikipedia.org/wiki/Email_address) ## Minimal Reproducible Examples (MRE) ```rust use email_address::EmailAddress; use std::str::FromStr; fn main() {...
[Each element yielded is guaranteed not to include the splitter substring.](https://docs.rs/bstr/latest/bstr/trait.ByteSlice.html#method.split_str) ```rust use bstr::ByteSlice; fn main() { let my_str = b"Hello "; let mut iter = my_str.split_str(b" "); assert_eq!(iter.next(), Some(b"Hello".as_ref()));...

`pv` has CPU overhead, and was pegging 4 of my cores while syncoid jobs were running.
Like the title says, a `multizip` version of `zip_longest`. Here's how I imagine it working: ```rust Enum AtLeastOneOf { One(i32), Two(i32, i32), Three(i32, i32, i32), Four(i32, i32, i32, i32), N(...),...