Joshua Chia
Joshua Chia
This is how I have been running chinadns 1.3.2-3 for a few years: `chinadns -p 5353 -s 223.5.5.5,1.2.4.8,127.0.0.1:5300 -c /etc/chinadns_chnroute.txt -d -m` It used to be reasonably effective. Lately, I...
Latest version is dhall-1.34.0. ghc-clippy-plugin requires < 1.34.
``` ghci> import Text.Megaparsec ghci> import Text.Megaparsec.Byte.Lexer ghci> parse (decimal @() @ByteString @_ @Word16) "" "65536" Right 0 ``` Reasonably, a parse error is expected, although from the type constraint...
``` ghci> parse (decimal @() @ByteString @_ @Float) "" "655361200000" Right 6.5536125e11 ghci> (== 655361250000) parse (decimal @() @ByteString @_ @Float) "" "655361200000" Right True ghci> (== 655361200000) parse (decimal...
This gets GHC 9.2.2 together with aeson-2. The taffybar.cabal has been updated to require aeson >= 2.0. I'm not sure how the nix stuff in the stack.yaml works so I...
One of the things blocking taffybar from being built with GHC 9.0 is the dependency on ConfigFile, which in turn depends on MissingH. MissingH's last commit was in Apr 2020....
In the syslog example in the programming guide, the rest of the line not captured for syslog's use is captured in `message` so that the decorated block can use `message`...
Recent versions of packages in this project started using a `?self` implicit parameter in many functions. GHC 9.0.2 has ["simplied subsumption"](https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.0#compiler-changes), which requires eta-expansion in some cases where GHC 8.10.7...
Currently, `base
There is an instance of `ParseField` for `Word16` and I was expecting it to fail for an input of "65536" because it is out-of-range. I was surprised to find out...