Wouter Born

Results 410 comments of Wouter Born

> We risk having to maintain it ourselves if we want to use the latest native libraries with bug fixes, and it is quite large. If it will only be...

> Wouldn’t that mean se have to compile and maintain a copy ourselves? The native libraries are dependencies of [org.usb4java:usb4java](https://repo1.maven.org/maven2/org/usb4java/usb4java/1.3.0/usb4java-1.3.0.pom) which can be excluded: ```xml org.usb4java libusb4java ${libusb4java.version} linux-x86 org.usb4java...

> Compiled and installed again.... and 🎉 it works! You may have run into https://github.com/openhab/openhab-core/issues/3983

> you are looking for someone with Apple Silicon, right? I am still on x86 It only has darwin-x86-64 libraries, so if it does not work for you it certainly...

I was also struggling with memory issues recently due to the 1GB limit on older RPIs. What can also help is to increase the swap file size: https://pimylifeup.com/raspberry-pi-swap-file/ It will...

> As the Groovy maintainer, could you tell us whether this is a user-facing breaking change for Groovy? It has no helper library so users would directly use `PersistenceExtensions`. Any...

> Is renaming the class a breaking API change for them? Or only when methods (signatures) change? Both will be breaking changes.

Maybe you can use `NetUtil` / `NetworkAddressService` instead? It has a `getAllInterfaceAddresses` method. Add-ons should also respect the openHAB "Network Configuration" settings like not using IPv6 if it is disabled....

> I also see this as an opportunity to reduce and improve code that is used in multiple bindings that have about the same functionality. For instance, when i do...

What does `isLinked(channelUID)` return for these dynamic channels in the initialize method? If it's `true` the handler will not receive the `channelLinked` event because the handler is still initializing and...