Mitsutoshi Aoe

Results 76 comments of Mitsutoshi Aoe

I came across the same issue with `UdpPacket::payload()`.

It seems that at least for UdpPacket, I guess [this line](https://docs.rs/pnet_packet/0.22.0/src/pnet_packet/home/cratesfyi/cratesfyi/debug/build/pnet_packet-5e25de1d4dfd4299/out/udp.rs.html#342) should be something like ```diff - &_self.packet[start..] + &_self.packet[start..start+self.get_length()] ``` It's a bit hard to understand how this code...

@basvandijk Yes, the type hackery is related to the quantification of `a`. Without the help of constraints package, we can't write the `Applicative` instance for `Concurrently` because e.g. `pure ::...

Thanks. I'll take a look this weekend. One thing to note is that this package is meant to be library-agnostic wrt streaming IO. Library specific (e.g. conduit) functions should live...

Confirmed that some tests fail with InfluxDB 2.0.4.

@paolino I have no immediate plans to work on it at the moment but I'm happy to answer questions/review code if anyone is interested.

I don't think you can turn `IO` in a negative position to just `MonadIO m`. You'd need monad-control, monad-unlift, or something like that. Also FoldM consumes the responses rather than...

Thanks for your comment. For now I deliberately left out the series name construction part from the library because I thought it was an application specific part. And it seemed...

I don't know how the development is going. You can subscribe https://github.com/influxdb/influxdb/issues/582.

Well, that's a good question. I think the [`jq`](https://stedolan.github.io/jq/) command is somewhat similar in the sense that it parses texts as JSON objects. `jq` has a query language to look...