Results 130 comments of Dustin Sallings
trafficstars

Is the restreamer able to compensate for out-of-order events? I've have to reorder eventlog events to make sense of them before, so it's at least possible on a whole stream,...

An alternative would be writing code to process the events internally without having to coordinate processes. e.g.: https://github.com/bgamari/ghc-eventlog-socket and https://github.com/mpickering/eventlog-live A bit of FFI is required to get a handle...

In particular, the ones at the bottom of this readme: https://github.com/8n1/ESP8266-Breakout-Adapter/tree/master/Breakout%20Adapter%20v3 The ones at the toplevel readme do seem fine.

There's a similar issue with passwords. For the purposes of my tests, I've just converted `""` to `Nothing` in both cases to get all the tests passing.

I updated [my haskell MQTT library](/dustin/mqtt-hs) to support MQTT5 and had the same concern initially. I wasn't sure whether to just make a whole new library or whether I could...

I just started hacking something together on this. The codebase is pretty nice, so it's relatively straightforward to add stuff.

I only got about an hour into this last night. I've got a way to go, but it's promising: [lwmqtt.pcap.gz](https://github.com/256dpi/lwmqtt/files/3622742/lwmqtt.pcap.gz)

I spent a bit of time tonight on tests. All of the tests in my client are done via [QuickCheck](http://hackage.haskell.org/package/QuickCheck) which allows me to describe valid input and and then...

I've not had a lot of time to work on this in the past few days, but I do think I've got a few things done quite thoroughly: * connect...

I've mainly got the new parsers for QoS > 0 exchanges to do and we're good. My repo's a little bit of a mess. I'm not sure how much you...