C W

Results 141 comments of C W

> This is the same as the stock firmware behaviour. The stock firmware (at least the one I had) could be configured to load a preset on startup that included...

FWIW, I implemented this in a wrapper for captcha solvers in my [WebRequest](https://github.com/fake-name/WebRequest) project. `SocksProxy.py` is a in-process SOCKS5 proxy. `PunchPort.py` handles setting up a local UPnP port forward (if...

I don't know if I'd recommend anyone use the entire project, really, It's kind of terrible internally (nowadays, people should just use `requests`), and it's basically developed specifically for a...

I just hit this issue too. I have 3rd party scripts blocked by default, and the editor both fails to work and has no error feedback. The entire point of...

> When I set the MQTT to external, this is visible in the `profile.json` Yeah, but you can't *start the web interface which lets you set that* without a functional...

Oh, additionally, I *think* that if you attach `vmprof` to a process, fork using `multiprocessing`, and then try to attach `vmprof` to the newly forked process (which is now outside...

I wound up finding https://github.com/benfred/py-spy to be pretty handy, albeit it only works for cpython (I use mostly pypy3 these days). You can attach it to any *running* python process,...

Ok, this is slightly more complex then I'd hoped, because the name resolution happens at runtime, not parse-time (derp). I think it *should* still be possible, at least for a...

@graingert - Why are you commenting on random 1+ year old issues? Also, this is a refactoring tool, something that jedi specifically *doesn't do* (at least yet). How is that...

> I'm not sure how closely this library mirrors the protocol It's base-level is literally a machine-generated wrapper that ingests from the official chromium debug protocol description JSON files. There's...