Igor Novgorodov

Results 83 comments of Igor Novgorodov

@lmarzen I also need this feature and probably will implement it anyway, are PRs for that accepted?

Okey dockey here it goes https://github.com/lmarzen/esp32-weather-epd/pull/155

In my case the display doesn't work either if I connect its power to some random pin (26 by default). If I switch it to 3.3v then all works fine....

A bit sad that this breaking change got into a patch-only `hyper-util` release which broke some of our workflow.

Also probably the documentation here https://docs.rs/reqwest/latest/reqwest/struct.ClientBuilder.html#method.resolve_to_addrs should be updated since it clearly states that the port from the SocketAddr is not used.

Sorry for not being specific. We had some SocketAddrs passed to .resolve_to_addrs() overrides that contained non-zero ports. And since for overrides it uses a custom resolver internally - the calls...

@Nuhvi well that's another story, they come from different workflow and since the docs state that ``` Since the DNS protocol has no notion of ports, if you wish to...

I'm not using RPM OSes sadly anywhere, especially with SELinux enabled :) So PR is welcome if you want to fix that.

I guess it's just normal Linear Search vs Hash Map lookup tradeoff. For small Enums it's faster to just linearly search for a variant using match, since e.g. they fit...