Tony Day

Results 21 comments of Tony Day

for my use case, I was looking for a representation of something like: ``` data NodeUnpacked = NodeUnpacked { name :: ByteString, attributes :: [(ByteString, ByteString)], contents :: [ContentUnpacked] }...

Nice thread. dataHaskell is awesome but I like github issues as well, for a bit more permanence. There's plenty to keep me interested in endo haskell, and I take the...

One common operator for a range is (...) so `0.25 ... 0.5` but here, with a lot of operators and parsing language it feels a bit verbose. I like the...

Installing postgres first gave me all the build prerequisites mentioned in the readme, so it was fairly painless. The main bug I ran into was installing postgres splatted python somehow,...

The main reason for fundeps was to avoid TypeFamilies. There has, at least historically, been a reluctance to introduce type families to Prelude due to various performance issues that I...

I released 0.11 which goes with (*|) rather than (*.) etc. The dot was confusing some formatters and . is a way overused symbol in haskell. I hope it makes...

I think you're right. I thought about the type synonym: ``` type LowerBoundedLattice a = (Lattice a, BoundedJoinSemiLattice a) ``` But I'm conscious of the exploding mess you get if...

The bug goes away if you copy the functions in Preset into the Example, then reference Main.enterData etc. I couldn't spot why sorry.

I followed this PR in helping to cut haskell-mode and it worked out quite well. It was a great PR and thanks to the OA. See https://github.com/tonyday567/haskell-mode/tree/removals I'm going to...

Ok, so that's haskell-repl done!