Pyry Kontio

Results 93 comments of Pyry Kontio

I already tried for a bit, there were some problems, but they aren't necessarily insurmountable. The problem was that 0.11's State depends on a trait `ChainedError ` of 0.11. I...

Just linking this here: https://www.reddit.com/r/rust/comments/4xryih/hey_rustaceans_got_an_easy_question_ask_here/d6r0j2u/ In this case, "Some environmental variables not set!" would be the primary error, and a `Vec` of the individual errors for every environmental variable being...

Btw. I was bitten by this today again. I keep noticing that I need "combined" errors the most when I'm doing something user-faced. Let's say that there's 5 independent things...

I'd love to see a push towards a solution of this, maybe as a part of the Libz Bliz effort? Or is that more about evaluation?

I'll see if I can manage to have the time to do that during the next week. No hard promises!

I checked the code and it seems that the pixel format is fixed to 3 channels. I guess we need to introduce another Image and Pixel types if we want...

A minimal solution for saving greyscale 8bpp BMPs would be some kind of an `save_channel()` function. What's your stance on the API design?

Is there any workaround currently? I'd like to use this, but unfortunately I'm currently too busy to contribute.

Oops the obvious workaround works. I had an unrelated syntax error because of a typo, which made me think that nesting wouldn't work. {{#if var1}} ... {{ else }}{{#if var2}}...

Some possible ways to resolve this backwards-compatibly: - Have the current behaviour as the default, and have an additional parameter that changes the setting. - Introduce another function that behaves...