Karol Kuczmarski

Results 19 comments of Karol Kuczmarski

I'm not sure if what cargo-contribute does is qualitatively different from any other case of printing text obtained from the internet. I'm not aware, for example, of `curl` doing any...

Okay, correction. The gists are actually **encrypted** (!?), apparently with 256-bit AES, and the decryption seems to be done in JavaScript. Unless someone wants to reimplement [this](https://paste.bananium.fr/js/rawdeflate.js?Alpha%200.19) in Rust, it...

Hey! Thanks for picking this up :) I recommend you start by both looking at the `Basic` type (https://github.com/Xion/gisht/blob/master/src/hosts/common/basic.rs) and at least one existing `Host` that uses the `Basic` abstraction...

With the new `HtmlOnly` abstraction, this one should be pretty easy now.

I worked around the lack of this feature in the following way: - Check if there are any results in `processData` - Add a "fake" result item if so -...

Thanks for the insights! I'll try a prototype and see how it performs.

I actually use both (see `Cargo.toml` in root). What I found, however, that there doesn't seem to be a handy way of executing specific Cargo commands against specific crates. At...

Oh hey, I totally wasn't aware of this switch! That not bad at all. Perhaps better than a hacky shell script :) I'll update the README's but I can't promise...

Clarification: this only happens if you alternate the build of library & server crates. If you _only_ build one or the other in a row, the deps won't be rebuilt...

I'm not sure what causes this, but I'd wager it's because of the slightly different way the unittest runner handles failed assertions (`AssertionError`) and other types of exceptions. The former...