Daniel P. Brice

Results 26 comments of Daniel P. Brice

I doubt that it's fixable. It's similar to the problem of `show . read`. `show . read` can't compile because `read` gives a polymorphic output while `show` takes a polymorphic...

Cool. I'll look into path and path-io and see if i can clean this up.

How's this? List Git repositories: ```haskell {-# LANGUAGE QuasiQuotes #-} module ListRepos (listRepos, paths) where import Control.Monad (filterM, join) import Data.Foldable (traverse_) import Path (Path, Abs, Rel, Dir, reldir, ())...

Addresses issue: https://github.com/typeclasses/haskell-phrasebook/issues/22

> Lately I'm feeling like the Phrasebook should just immediately introduce optics from the start. If that is a road you want to go down, I'd recommend taking a hard...

Either way you want to get your lenses, records with optics up front is--I think--the right way to go. Using optics to modify a deeply-nested field is a way in...

I'll add a PR with my do-re-mi example and mention this issue.

Re: https://github.com/typeclasses/haskell-phrasebook/issues/15, too.

> you could simply have the database store a list of people who have vouched for every single user @ysangkok I am very confused by your description, and I can't...