dmjio
dmjio
Inference fails when using `GeneralizedNewTypeDeriving` w/ `SqlType`. `StandaloneDeriving` is similar. ```haskell newtype TodoId = TodoId { unTodoId :: Int } deriving (Show, Eq, FromJSON, ToJSON, SqlType) ``` ``` Main.hs:62:41-47: error:...
@valderman I saw you added `Generics` to the feature list :) Had some ideas / implementations around type level DDL statements. Suppose we have a type-level representation of a Table...
Inductively defined tuples can have lenses like normal tuples. ```haskell instance Field1 (a :*: b) (a' :*: b) a a' where _1 k ~(a :*: b) = indexed k (0...
When performing a checkpoint, the heap gets very large (eye balling with `ekg`). I think the additional `Bytestring` copying is to blame. Do we need to copy the bytestring? I...
It would probably be best to clean out some of the utilities that were left over from the post-`HaLVM` platform changes when upgrading to GHC `8.x`. This way `HaLVM` will...
Keeping this issue here for now. Under rare circumstances, an `EINVAL` is thrown from the RTS in this location: https://github.com/GaloisInc/halvm-ghc/blob/822191da28533109c89e10317e5aae110611aabd/rts/xen/grants.c#L90 Per @acw, reasons being possibly that - A page that...
So the according to the AWS spec for SQS (2012-11-05) a `SendMessage` request has this form. ``` http://sqs.us-east-1.amazonaws.com/123456789012/testQueue/ ?Action=SendMessage &MessageBody=This+is+a+test+message &MessageAttribute.1.Name=test_attribute_name_1 &MessageAttribute.1.Value.StringValue=test_attribute_value_1 &MessageAttribute.1.Value.DataType=String &MessageAttribute.2.Name=test_attribute_name_2 &MessageAttribute.2.Value.StringValue=test_attribute_value_2 &MessageAttribute.2.Value.DataType=String &Version=2012-11-05 &Expires=2014-05-05T22%3A52%3A43PST &AUTHPARAMS ```...
## 🍜 [miso](https://haskell-miso.org) is an isomorphic [Haskell](https://haskell.org)-based web framework that takes an embedded DSL approach to constructing web applications. Currently being used in production by a number of companies. -...
Hello 👋🏼 thanks for making this library, its great work. In the course of making [Haskell bindings (pg-query)](https://github.com/dmjio/pg-query), I've also created a nix build. ```nix { pkgs ? import {}...