Dmitry Pankratov

Results 132 comments of Dmitry Pankratov

> would you be happy to try that library with your environment variable and see if it is broken there too? Tried the example from locale_config with the same issue....

Yes, here it is: ![lcctype](https://user-images.githubusercontent.com/2361919/112206919-c956a500-8c16-11eb-8bdb-551dba553baf.png) I tried it on recent macOS versions 10.15 and 11.0. Depends on this option in the terminal application settings. It is turned on by default....

> Makes sense though I guess, the variable represents the encoding type? Most likely, yes. So shouldn't be used on mac I guess.

Hi, for printer usage reports I think you need to use one of the SNMP crates and read vendor-specific MIB counters: https://github.com/mds5000/rsnmp/ https://github.com/ancwrd1/rust-snmp https://github.com/XAMPPRocky/rasn (only protocol codec, no transport) Some...

Doesn't libappindicator use the same dbus SNI interface internally to show the tray icon? @olback could you give an example where it won't work?

Tokio 1.7 has been released with named pipes support. I guess it can be used now in the `interprocess` crate.

Any update on this issue? I think the most common use case is the connect timeout, the read/write operations are rarely needed to have a fine grained timeout control.

Yeah, I think the timeout property should be used only for initial connect, may be renamed to "connect_timeout". The global timeout for all operations doesn't make sense at all.

For example Jetty HTTP client has 3 options: connect timeout, idle timeout (e.g. no traffic), dns resolution timeout. In addition each Request instance can have a total request/response timeout (that's...

I think the described issue (in the linked article) is more about idle timeout rather than global one for request/response cycle, if there is no data traffic it makes sense...