cyqsimon

Results 113 comments of cyqsimon

> 2. Read the local timezone _right at the very beginning_, before we potentially start any multithreaded runtimes. This is already the case, which is why the feature works but...

I'm working on adding timezone as an option in settings, but saw that there is already the field `local_tz`. Apparently this was added about the same time as this PR...

> We will be changing it at some point, but atm it isn't really used for much other than as part of sync - and all that requires is a...

> All in all, this doesn't give me enough confidence to use this lib given the ratio between noticeable imprecisions and amount of unsafe code :( Yeah. I initially played...

> What did you end up using? This is what I use: https://crates.io/crates/headless_chrome, but my use case is really simple (just taking a screenshot of a webpage), so your mileage...

Ran into this problem today with a vector of options. Confused the heck out of me. Ended up doing this. Not particularly pretty but it works. ```rust let vec_of_options: Vec...

@alerque yeah I'm not familiar with autotools at all, and if properly done I'm sure it'll be better than this. If you want to give it a shot go ahead,...

I was in the middle of refactoring code for [bandwhich](https://github.com/imsnif/bandwhich) when I noticed this funky looking block: ```rust #[cfg(target_os = "windows")] let network_frames = network_interfaces .iter() .filter(|iface| !iface.ips.is_empty()) .map(|iface| (iface,...