Rick van Hattem
Rick van Hattem
Right now the collector seems to login/logout continuously. Would it be possible to simply stay logged in so you don't get logs filled with connected/disconnected messages?
The Python class datamodel normally supports the [__set_name__](https://docs.python.org/3/reference/datamodel.html#object.__set_name__) method on a class, allowing you to do: ```python class A: x = C() # Automatically calls: x.__set_name__(A, 'x') ``` This is...
**Is your feature request related to a problem? Please describe.** Currently the map view is a bit too small to fit my entire network, and that's mostly due to inefficient...
**Is your feature request related to a problem? Please describe.** The recently added OTA support works great, but the Z2M support has improved in the mean time meaning it can...
## Details When stumbling upon a 404 it's currently impossible (except by modifying the URL yourself) to get back to the documentation. The 404 page shows a link to the...
A little ipython test: ``` In [1]: import freezegun In [2]: import timeit In [3]: import time In [4]: with freezegun.freeze_time(): ...: print(timeit.default_timer()) ...: time.sleep(1) ...: print(timeit.default_timer()) ...: 2332566.128189347 2332567.128278099...
While the `@elastic/apm-rum` package supports typescript without an issue. The same cannot be said for the `@elastic/apm-rum-vue` unfortunately :(
Using a `dict()` to allow for keyword arguments is the obvious alternative for the new-style keyword arguments. It's a bit odd to say that this sn't supported.
I have a use-case where I need to fetch the entire image, and if the QR code matches I know the rest of the details should be sharp enough for...