Results 28 comments of Wojciech Polak

Hi, I really like Horust, and I see there was no progress regarding this issue. About improving error messages, would you accept a PR that introduces `anyhow` and the `Context`...

No problem :) The best part of open source is that I can always fork it, check it and then if you like it - merge :)

Unfortunately it did! I'm writing a simple game for my current employer. We want to embed it on our main site - and this site uses a lot of different...

No, I don't use it. I just noticed that somebody can use it that way.

I attempt to run Emacs on linux subsystem and Omnisharp server natively on Windows. I know I could use Omnisharp server on linux but my project must be on windows...

Hi, I noticed this problem appears only in newest versions of `chrono`: I wrote this test: ```rust #[cfg(test)] mod tests { extern crate chrono_tz; use self::chrono_tz::Europe::Warsaw; #[test] fn test_chrono_add() {...

`2017-10-29T00:00:00CEST` + 1 day = `2017-10-29T23:00:00:00CET`

Hmm so I should probably operate on dates: ```rust #[cfg(test)] mod tests { extern crate chrono_tz; use self::chrono_tz::Europe::Warsaw; #[test] fn test_chrono_add() { // https://github.com/chronotope/chrono/issues/339 use std::ops::Add; use chrono::*; let timezone...

I agree - if titles were Borrowed then I could calculate offset :) I'll fork and check if this is viable.

Hmmm.... We are talking here about loading and parsing a CSV file in proc macro. Which means it would be similar to `comptime` (In Rust: `const fn`. That would definitely...