Nicolas Camenisch

Results 35 comments of Nicolas Camenisch

I'm experiencing the same issue. And it still hasn't been fixed in version 4.x. Would be great if someone could take a look at this.

> But I'm actually thinking about switching to a completely custom implementation A few years ago I developed such a system myself for my own projects. It definitely is possible...

I was able to figure out what `0xe00002d8` is supposed to mean. It is the value of the [`kIOReturnNotReady`](https://github.com/apple-oss-distributions/xnu/blob/bb611c8fecc755a0d8e56e2fa51513527c5b7a0e/iokit/DriverKit/IOReturn.h#L170) error. I also was able to locate the source of the...

To get even better results I modified the answer by @fginter based on the original Tensorflow `.SetShapeFn` implementation of the [CTCLoss](https://github.com/tensorflow/tensorflow/blob/9590c4c32dd4346ea5c35673336f5912c6072bf2/tensorflow/core/ops/ctc_ops.cc) function. ```c++ #include "tensorflow/core/framework/shape_inference.h" using ::tensorflow::shape_inference::DimensionHandle; using ::tensorflow::shape_inference::InferenceContext; using...

The current debounce algorithm would prefer older target position updates over newer ones. This would lead to HomeKit getting out sync when changing the target position too quickly.

You might want to take a look at this: https://github.com/alexryd/homebridge-shelly/issues/393#issuecomment-1123896077

I think I have had a similar issue with the state in the Home app not reflecting the actual state of the roller shutter. I created a pull request to...

As far as I know: As long as the status of your device is being updated properly in homebridge, then this means that the plugin is working properly. The issue...

I was able to hack together a patch (in `myst_parser/mdit_to_docutils/base.py` that fixes this issue. However, as I'm not too familiar with how docutils works, I'm not entirely sure if this...