goodboy

Results 452 issues of goodboy

We need a reliable and consistent way to measure both python performance as well as FS performance as a load generator. A few approaches I can think of off-hand include:...

enhancement

Hey @urbenlegend I went ahead and did this since I needed it anyway. This addresses #5. I also have some more commits which update the readme and separate out the...

Hey @urbenlegend, I'm very interested in using this code as part of a remote control tool for shaping traffic between nodes in a cluster. Would you be open to a...

I think this should be pretty straight forward using [`mock`](https://docs.python.org/3/library/unittest.mock.html) to ensure the API and CLI correctly render `tc` commands. If we wanted to get fancy down the road we...

I've noticed that `netimpair` neglects to delete the `ifb0` and `ifb1` interfaces added by `modprobe ifb` (i.e. never unloads the kernel module). I think it would be sensible to detect...

As discovered and discussed in code review of https://github.com/pikers/piker/pull/331 during refactoring we can't currently support re-entrant usage of `tractor.trionics.maybe_open_context()`. This fixes that by using a per-target `id(acm)` lock table to...

Now that #128 is landing we don't really have a dire need for the stdlib's `multiprocessing` especially since it has proven much less reliable then pure `trio` alternatives (which I...

question
testing
windows_related

`trio` [recently added "guest mode"](https://github.com/python-trio/trio/pull/1551/files) a very brilliant solution to integration with foreign event loops and we've used it with great success in `piker` for charting with `Qt`. I'm wondering...

enhancement
question
discussion
experiment

I tried to find something similar to this in the issue set but figured it was worth a new one: This code triggers an odd `RuntimeWarning` at import time: ```python...

bug

Super WIP, but a start at doing 1m long term (slow) chart alongside our classic 1s OHLC in the fast chart. --- TODO: - [x] avoid throttle state condition that...