Michal 'vorner' Vaner

Results 259 comments of Michal 'vorner' Vaner

It's most likely related to this, yes. I tried to look through the `cc` repository, but it seems it contains no mention of `rerun-if`, so likely no, they don't have...

> Do you have control over the format? Not really. I already have some files with data. Yes, I'm pretty sure I can make it work and the „tedious“ is...

@danburkert Could I ask you for the opinion? Can you give a very fast skim over the draft linked above? I want to polish the think eventually. But, do you...

You can pass `&mut T` as the buffer and regain the ownership (https://docs.rs/bytes/1.0.1/bytes/trait.Buf.html#impl-Buf-for-%26mut%20T). You can also limit the reader to take only what's necessary (https://docs.rs/bytes/1.0.1/bytes/trait.Buf.html#method.take). Alternatively, you can pass slices...

Well, inter-process communication is usually quite a PITA to make work, so I'd say it's usually possible but not the first choice. I could imagine a lot of application with...

I believe applications should act in a way consistent with the platform they run on. For desktop, that means asking questions as separate modal windows (which you can still drag...

I use `config` as kind of a backend for `spirit`. I read the path(s) to config files, any potential config overrides and such from command line and then feed `config`...

I could imagine a project where one would have most of the configuration inside a config file, but set passwords through environment variables. I think we have some such uses...

> I think you imply that both the config from the file and the passwords end up in the same list. As I prefer to divide config by modules, I...

Hello Your builder approach looks kind of nice on the high level. But there are some things that don't add up for me: If you already want your struct to...