Arif Driessen
Arif Driessen
Hey, so happy to report that we've now started using mprocs, after the scroll wheel update which is great. thank you! Links are clickable which is great, but would it...
**Is your feature request related to a problem? Please describe.** As bytes were being streamed through, I needed a way to feed a copy of the bytes into a hashing...
this code: ```rust mod phase { pub trait Phase { const RUN: &'static str; const FAIL: &'static str; fn to_style(&self, template: &str); } pub struct Updating {} impl Phase for...
Hello, I'm not very familiar with the PDF spec, so perhaps this already has me at a disadvantage. But I can't work out how to get at all the text...
```bash #!/bin/bash function choice(){ echo $1 kill -s SIGTERM $YAD_PID } export -f choice yad --form --text="Choose a browser to launch:" \ --field="Foo":fbtn "bash -c 'choice hello'" \ --field="bar":fbtn "bash...
Hi David, Incredible crate, as you already know! https://docs.rs/serde/1.0.188/serde/trait.Serializer.html#tymethod.serialize_struct Say I have this function: ```rs impl Serialize for Foo { fn serialize(&self, serializer: S) -> Result where S: serde::Serializer, {...
Hey Guillaume, Would it not be possible to make this crate work in docker if you simply map the volumes i.e. in your docker-compose you can map paths from your...
Hello! In my code I have built a wrapper around Moka, such that I can have hooks that occur before any retrieval from cache e.g. ```rust pub fn get(&self, #[allow(unused)]...
Hey thanks for this wonderful little library! I'm trying to add a page number in the footer of every page, but I'm not able to figure out how to do...
I want to be able to use the bacon interface, I like that it shuffles errors to the top. But once my application has been built and is running, my...