Results 731 comments of Alexander Batischev

I believe all paths in Hakyll are relative to the providerDirectory. Try putting your config.yaml into the directory from which you run Hakyll, and see if it helps. Your `compilerTellDependencies`...

The premise of this issue turned out to be wrong; once we started converting the input based on `Content-Type` header, we ran into a problem with feeds that specify the...

Sorry it took me a long while to respond. I like your plan! > If we want to be absolutely sure we don't pass that over Rust FFI or into...

@juntuu took a stab at this in https://github.com/newsboat/newsboat/pull/2264, and suggested a way to make the transition simpler: implicit conversions from `std::string` to `Utf8String` and back. In other words, passing an...

I experienced the same issue on ThinkPad E14. It got resolved when I upgraded Ventoy to 1.0.98. (I don't remember which version I was running previously, but it definitely *wasn't*...

This is the expected behaviour; see https://docs.rs/fuse/0.3.1/fuse/fn.mount.html The FUSE filesystem is mounted as long as the program is running. Also be advised that this crate is not maintained; see https://github.com/cberner/fuser...

You kind of are, but not quite. Your example seem to hint that the path will get converted to UTF-8 and stored as UTF-8, but that's exactly what we need...

Sorry, I dropped the ball on this one! Here goes. In https://github.com/newsboat/newsboat/pull/2561, @bogdasar1985 ported all interfaces and storage to the new `Filepath` class. I added some docs and tests, and...

Great work Dennis! And you're totally right about the define. JFYI I looked through your PRs and fixed a small error where a method that should return a user-visible string...

> I'm not yet sure if we need to provide any escape characters (to allow for special keys , -). Why are they made special in the first place? Is...