Mario Pastorelli

Results 56 comments of Mario Pastorelli

I assume you are using Joda, my example will use java.time but you can adapt it. Here what I would do: ````scala import pureconfig.unsafe.convert._ import java.time.ZonedDateTime import java.time.format.DateTimeFormatter.ISO_ZONED_DATE_TIME case class...

Yes, I think so. What is important for me is that both the systems are able to work with generic input making Hawk more interesting. Before encoding I would like...

I would like to add a note to my idea that is interesting also for yours: we don't need to change the input and the output format to achieve a...

I forgot to mention that if we modify the core of Hawk like I said in the first post, then the system can be easily configurable (e.g. by setting UTF8...

1. I don't know if the user wants to define its own encoder but I think it should be allowed. In general it is very difficult to consider all the...

As soon as #79 is done I will work on this, #80 and #56.

I have added a first attempt to resolve this issue with commit 2e5ecb8. The only problem is that, for some reason that I don't understand, the function `setDefaultModuleName` doesn't actually...

Yes, I think we should really support multiple input streams. I also used tools to process multiple streams in the past. A lot of time ago I though about a...

For now it is possible to filter like: ``` bash > seq 4 | hawk -d -a 'L.filter ((&&) (B.pack "1" /=) (B.pack "3" /=))' 2 4 ``` where `B.pack`...

I agree we should finish writing the documentation. I will do a little bit of it this week :).