Ashley Yakeley

Results 133 comments of Ashley Yakeley

It seems to me `let` and `do` should behave the same way, for consistency?

+1 on this. The Docker container should not require the root DB server password: I should be able to just hand it an empty database and a user that has...

Hey [I added this feature](https://github.com/mihaimaruseac/hindent/pull/464/files) (automatically reading default extensions from the .cabal file) to hindent, and you could totally just copy the code.

I'd really like to be able to pass `--no-docker` to stack.

I just came across this issue. The problem is that when you do `git push`, git doesn't know where to push your commits to. I think this can be solved...

This is still a redshift issue IMO. Redshift should detect and mitigate (or at least warn about) this condition. As a user, I should never have to edit my `xorg.conf`...

1. It would be somewhat odd for `transformers` to add the new transformer with the same name as the old `ListT` that was removed. 2. I think the definition is...

3. Not sure if this is useful, but I think it can be decomposed: ``` newtype StreamT m a = StreamT (m (a, StreamT m a)) type ChoiceT m =...

For what it's worth, `MSF` can be decomposed (though you'd need a wrapper to make it an `Arrow`): ``` newtype StreamT m a = StreamT (m (a, StreamT m a))...