Nikita Volkov
Nikita Volkov
According to [the benchmarks of "jsonifier"](https://github.com/nikita-volkov/jsonifier#benchmarks), it provides a performance boost in encoding of up to 3x over the current implementation of "aeson". It [has been suggested](https://www.reddit.com/r/haskell/comments/jeni1l/new_json_encoder_that_is_up_to_3x_faster_than/g9hj7vk?utm_source=share&utm_medium=web2x&context=3) by @bergmark to...
This is to ensure that the input evaluation is not involved in the execution of the benchmark. Here is the patch that I'm suggesting: ```diff -nf :: NFData b =>...
В документации говорится, что [приложение должно запускаться на порте, указанном в переменной окружения ENV](https://cloud.yandex.ru/docs/serverless-containers/concepts/runtime#peremennye-okruzheniya). Однако в примере, оно запускается на постоянном порте 8080. Это недочёт в примере или я что-то...
Which for the following type: ```haskell data ApiError = InvalidDataApiError | RejectedApiError Text | UnauthorizedApiError Int Text ``` would generate instances like the following: ```haskell instance LabelOptic "invalidData" A_Prism ApiError...
Here's a code sample showcasing how the formatting works currently: ``` (stringSchema 1 100) ( requiredSchemaField "title" (stringSchema 1 100) ) ``` Here's what I suggest to change it to:...
They point to master instead of specific commit and master has evidently changed.
No message, no file. Nada
Currently compiling the following expression: ```dhall [ { mapKey = "A/B", mapValue = "" } ] ``` results in the following error ``` You tried to translate the following expression...
Resolves https://github.com/dhall-lang/dhall-haskell/issues/2460
Reasons: 1. There is no real need for the comma. People almost never use more than 1 line for specification of 1 dependency. So its role as a separator is...