Dmitrii Kovanikov
Dmitrii Kovanikov
Maybe we should have `admin` page. Let's discuss what can be there. I can think of the following: * Force sync of repository * Force sync of user * Blacklist...
It's highly desired to have datatypes with phantom type variables. Like this one: ```haskell newtype Id a = Id { unId :: Text } ``` But there are problems with...
Elm has standard data types called `Dict` and `Set` for container packages: * https://package.elm-lang.org/packages/elm-lang/core/5.1.1/Dict * https://package.elm-lang.org/packages/elm-lang/core/5.1.1/Set It's probably a good idea to support them too for common Haskell containers.
It would be nice to have the roundrip property tests that will do the following steps for each data type: 1. Generate random value on backend. 2. Encode to JSON...
We can attempt to migrate to a newer API after the following issue in `github-graphql` is implemented: * https://github.com/kowainik/github-graphql/issues/25 Since we will write a lot of custom queries for GitHub,...