Daniel Smith

Results 64 issues of Daniel Smith

Sometimes I would rather work with the node tree (and thus `TagSpec`) itself rather than the `Scraper` / `SerialScraper` interface. It would be optimal for my use case if `TagSpec`...

This would be very useful for things like interacting with Servant. I also like the way Aeson uses this for things like polymorphic `.:`, so that could be worth looking...

Without hdevtools you won't get typechecking on save, and hlint is needed for any linting beyond what ghc outputs for type errors / warnings. Syntastic basically just makes those tools...

Getting an error page when I type Wukong into the URL bar is tilting me.

One very useful application of these serialization libraries is to send data between Haskell servers and Haskell/GHCJS browser clients. It would be nice to see how they perform in GHCJS...

Currently it's fairly non-trivial to get something minimal working. Assuming I have ipfs exposed on a local port and/or an `ipfs` executable in my path, it seems reasonable to be...

I am using Servant for interacting with third parties, and it's not uncommon to encounter URIs in the returned content, particularly URIs that refer to routes I have already mapped...

It appears that (at least in Postgresql), summing a list of `int`s gives back a `numeric`. So when you call `sum_` from esqueleto on an `Int` column and use the...

bug
help wanted
needs discussion

I was looking to use `array_position` so that I could query based on a list of keys and return the first/last match in that list, but it seems like all...

I prefer the Haskell model of `null`, where `Just Nothing` and `Just (Just Nothing)` are different values, and where you use `` and `>>=` to operate on the underlying value....