Lomanic

Results 96 comments of Lomanic

I explained how I fixed this issue in https://github.com/cantino/mcfly/issues/17#issuecomment-479462830 (I had bad characters in my history file, see also https://github.com/cantino/mcfly/issues/17#issuecomment-451357620). I don't use mcfly anymore but I think I still...

psutil still uses `hw.cpufrequency` from what I see (but using the mib mechanism), this is still returning 0 on Apple M1 as per https://github.com/giampaolo/psutil/issues/1892#issuecomment-748491277, so I'm quite confused by the...

Had the same question as it's not explained in [proxybroker examples page](https://proxybroker.readthedocs.io/en/latest/examples.html). This is a simple way by adapting one the examples (maybe not the best as I'm not familiar...

@BitesPotatoBacks commented in https://github.com/giampaolo/psutil/issues/1892#issuecomment-989959636 > This is my first time posting in the psutil repo, but I have been trying to figure out how to pull the current CPU frequency...

Yes I could confirm that running tests on darwin, this was obviously never tested in #775 on this platform as it fails systematically (openbsd is probably not affected byt freebsd...

I'm not exactly sure the results are right with this diff ```diff diff --git a/process/process_darwin.go b/process/process_darwin.go index 1a0ccfb..1f32ac1 100644 --- a/process/process_darwin.go +++ b/process/process_darwin.go @@ -274,8 +274,9 @@ func (p *Process)...

For reference: this comes from #1051 to fix #1049. Not sure how we should handle that on our end. Would a bind mount be OK for your test maybe?

It returns a `common.ErrNotImplementedError` too. Help to implement this on Windows with WMI or (preferably) win32 API very much appreciated 😉

For future reference, it might be doable to use [Open Hardware Monitor](http://openhardwaremonitor.org/) (via [this SO answer](https://stackoverflow.com/a/9564862), by loading its DLL) so we don't rely on the slow and unreliable wmi...