Paul Melnikov
Paul Melnikov
Hi. I vote against removing `const` and turning reference to a pointer. While in case of address, `const` does not improve much, it's still a good practice to `const` stuff...
I've fixed that by changing `ws.send_str...` in `on_master_output` to `asyncio.ensure_future(ws.send_str(terminal.dumps()))`. The more-preferred-now version `asyncio.create_task(ws.send_str(terminal.dumps()))` should also work.
Hi guys! I want to add to this bug. I'm installing PartKeepr on OrangePi (which is not by all means fast) where cache warm up takes 2.5 min (and `max_execution_time`...
Hey, I have the same problem, the program crashes with exit code -11. Have you found a solution?
Hi, I've noticed that same bug as well, my fix is to do a [two-s-complement](https://en.wikipedia.org/wiki/Two%27s_complement) conversion from 32bit unsigned to 32bit signed int with something like: ``` if v &...
Just to make sure: will this proposal make possible such code: hub1.motor1.set_speed(100) sleep(1) hub2.motor2.set_speed(100) i.e. not have a separate `run` method for each hub that needs heavy intercommunication? (the code...
Huh, so you say that is won't work on most modern installations? I've just spent half an hour trying to make it work on ubuntu 18.04 with 5.3 kernel...
> This might just be an issue with how Windows 7 reports the memory usage. What is the "Commit Size" reported as? Sorry, how do I check this? > I'm...
"Commit size" in Task Manager looks like it's the same column called "Private bytes" in Process Explorer on the first screenshot. So it shows the same 8Gb for cpptools-srv when...
Thanks! Let me know if any further information needed, I'll try to gather it on my machine.