Taylor Fausak
Taylor Fausak
Perhaps [`Tagged`](https://hackage.haskell.org/package/tagged-0.8.6.1/docs/Data-Tagged.html#t:Tagged) could be used as a flexible solution to this problem? ``` hs >>> type Utf8 = Tagged.Tagged "UTF-8" ByteString.ByteString >>> instance Witch.From Text.Text Utf8 where from = Tagged.Tagged...
These changes were released in version 1.1.0.0: https://hackage.haskell.org/package/witch-1.1.0.0
I prefer always using nanoseconds to using scientific notation. ``` easy: 1234 vs 123400000 hard: 1.234e3 vs 1.234e8 ``` I also don't particularly care about significant figures. If there are...
Hopefully @jjbott won't mind me shilling my own project here :) [Rattletrap](https://github.com/tfausak/rattletrap) can do that.
Thanks for the great resource! Is this where I can report bugs on [this post](https://functional.works-hub.com/blog/Functional-Programming-Jargon)? If so: - The titles don't define anchors (like ``), so the links in the...
Oh, a few other things about this: - HLS appears to work anyway, in spite of the problem. - Using `file://...` syntax does not have the same problem, but you...
I think this is a bug with the VSCode extension, not HLS. I made a Gist to reproduce this problem: https://gist.github.com/tfausak/381ccd98ef008ecbe975777f6ea9429b Running HLS works fine, but VSCode shows the error...
Can you do this with callbacks? https://github.com/AaronLasseigne/active_interaction/tree/a7dc3769bb6b771856615db42f96c5d4812bb8ac#callbacks ``` rb set_callback :execute, :before, -> { start = start.beginning_of_day } ``` I haven't written Ruby in a while so the details may...
I posted a minimal example here: https://github.com/haskell/haskell-language-server/issues/3074#issuecomment-1216598600 I just updated it to use newer versions of everything: https://gist.github.com/tfausak/381ccd98ef008ecbe975777f6ea9429b/63015d4dabac80891d895f0f028bc135247228a5 I can still reproduce the problem:  I'm using: - macOS 13.2.1...
I'm weakly :+1: on option 3. I think I would personally always use the `--strict` flag, but it doesn't feel right as the default. For example, I pretty much always...