Dennis4b

Results 8 comments of Dennis4b

After running into the exact same thing (status led flashes "disappearing" at higher loads) I think I found the problem, there are a couple of things to consider. First a...

After clarification from an esphome developer in de mentioned report: - Deduplication is intentional - While identical consecutive values are not published, pulses do keep being counted in `total_pulses_` -...

I have 2 questions/comments regarding the signals (using Airstream in the context of Laminar): 1) A common usecase for me is: ```scala child emptyNode case true => div(.. /* some...

The random leaking of connections sounds like #1252, it's a small change, would be interesting to see if this fixes this issue too.

If you control the server side too, make sure to send "Connection: close". I found that the client connections do not get cleaned up otherwise, although it took hundreds of...

In my case the firewall tables overflowed.. so `netstat` is a good way to see the connections accumulate. Didn't know about the `Connection: close` client side, that's a good one...

Great that it worked! Thanks for reporting back, I will add this to my own clients too. If the client side is getting some more love, there is a branch...

As a quick example: ``` scala> val enc = new EncoderSpeed() val enc: boopickle.EncoderSpeed = boopickle.EncoderSpeed@d59b6cb scala> enc.writeInt(2100000000) val res37: boopickle.Encoder = boopickle.EncoderSpeed@d59b6cb scala> val bb = enc.asByteBuffer val bb:...