Alexis King
                                            Alexis King
                                        
                                    It depends on what you want your hypothetical `Async` effect to be able to do. If you just want to be able to run some `IO` actions concurrently, there’s no...
This issue touches upon a few different things. Let me try to address them each in turn. --- First, you are correct that `eff` provides ways to “skip” handlers in...
I think one of the main reasons I’m struggling to communicate some of the finer points of this is that they depend on understanding (a) delimited continuations and (b) reduction...
I’ve pushed a commit that links to my implementation branch in the README, but here’s a direct link as well: https://gitlab.haskell.org/lexi.lambda/ghc/-/commits/first-class-continuations
Yes, but that isn’t really due to any particular property of my branch, I don’t think. To my knowledge, GHC doesn’t like it if you try to use any libraries...
Originally I was thinking that if `draw-layer` in `'aligned` mode aligns the coordinates of the layer, and drawing to the layer itself is done in `'aligned` mode, then everything ought...
Hi, @soegaard—I just took a look at this. After some investigation, I suspect that [`pango_context_set_round_glyph_positions`](https://docs.gtk.org/Pango/method.Context.set_round_glyph_positions.html) may be relevant. By default, Pango rounds all glyph positions to pixels, regardless of hinting...
Yep, that's fine—I think I talked to you about this package a long time ago, and you told me that then. I have a stub implementation of the new auth...
I think this package could really use a maintainer, so if you’re interested, feel free. :wink: I tried to update it to work with the Mongo DB 3 SCRAM-SHA-1 auth...
There are several subtleties here: * First of all, we want to efficiently support both `control` and `control0`. * In computations that repeatedly capture and resume the continuation, it’s inefficient...