Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello Let's have a presentation with this slide: ```` # The Code ```cpp use_lambda([&]() { return 42; }); ``` ```` (that's a syntax for lambda in C++) If I do...
Hello I'm not sure this is the right place, or if I should try asking for this in some dependency. I'm using the [svgbob](https://github.com/ivanceras/svgbob) tool to draw diagrams. Currently, I...
Oftentimes, a custom error is an enum with variants, some of which are just wrappers around some foreign errors/causes. The derive machinery allows for marking the field as `#[cause]`, like...
Hello I'm not sure if I'm using the `.context` and `with_context` things as expected, but I'm trying to build detailed context „chains“ (and print all the levels when logging). However,...
Hello I have a possibly unusual use case which I don't think `failure` handles. I'm not sure if it should be handled by failure or if there's a good solution...
Good morning Is there a hard dependency on vscode? I'd like to run the language server in another editor (nvim, in this case), but I haven't found a way how...
Hello The `Error` type doesn't play very nice with the `failure` crate. Would it be possible, once this https://github.com/rust-lang-nursery/error-chain/pull/241 lands and is published, update the version of error chain used?...
Hello I wonder what the motivation behind the `NetworkSize` is. As I understand, the purpose of the `IpNetwork` enum is to generalize handling of both IPv4 and IPv6 networks. If...
Hello I'm not sure this would belong into dipstick itself, so I'm asking what you think about it. With the statsd collector, and likely with other push ones too, if...
Hello I'm building a rust application using internal teamcity CI job. I want the build number to be part of the version of the binary (so eg. `./app --version` knows...