Emily

Results 279 comments of Emily

So I've done a bunch of horrible stuff here: . There are three changes: * I added a version of `withConnection` that exposes the `Managed Connection` and therefore I can...

I need rate limiting in https://github.com/wireapp/wire-server so I implemented something (without even trying to compile it, of course): https://gist.github.com/19dd06528d6a7e5b776616328547fe42. I plan to make it work on Monday (ish), but if...

This got worse recently, with every added `foo $` in the pipeline shifting the subsequent expression block by two chars. ```haskell foo = x $ y $ do a b...

Sure. The problem is that I can't choose whether I want `namedWrapper $ doingSomeStuff $ do` to be on one line or two lines. I have to replace `$` with...

No wait, nevermind, that's an unrelated problem.

I can use `unnest` instead of `id`, but this seems risky: ```haskell unnest :: Q MySQL db (QNested s) (table (QExpr MySQL (QNested s))) -> Q MySQL db s (table...

Oh okay, polymorphism saves the day! As long as I'm taking something that is `forall s.`, I'm good. ```haskell let applyLimit :: (forall s. Q MySQL db s (table (QExpr...

I like that adding `-- ORMOLU align "::"` everywhere is painful enough that people will (hopefully!) only use it when necessary. I don't like that this feature has approximately 0%...

I think it's a good idea that will be very hard to implement because we're using GHC's parser and it won't let us get away with missing commas.