Sjoerd Visscher
Sjoerd Visscher
If I have a file `c.scala` in package `a.b` then code coverage only seems to work if its path relative to the `BUILD` file ends with `/a/b/`. So it works...
According to https://arxiv.org/abs/1602.03501 "all of the components of our model---including schemas, instances, change-of-schema functors, and queries - fit into a single double categorical structure called a proarrow equipment (a.k.a. framed...
After a bit of refactoring some `freer-simple` related code I ended up with this function: ```haskell mapEffs :: (Union effs ~> Union effs') -> Eff effs ~> Eff effs' mapEffs...
When running this code: `insertOnConflict table (insertValues [tipRow]) anyConflict onConflictUpdateAll` I get a runtime error: ```SQLite3 returned ErrorError while attempting to perform prepare INSERT INTO "tip"("row_id", "row_slot", "row_block_id", "row_block_number") VALUES...
As https://github.com/haskell-beam/beam/issues/370 shows the way to truncate a table is ```haskell delete table (const $ val_ True) ``` And I agree it is good to always require a where, in...
I had a bit of fun turning the whole database into a Monoid: ```haskell data Db f = Db { datumRows :: f (TableEntity DatumRowT) , scriptRows :: f (TableEntity...
The readme links to http://autoform-markdown.meteor.com/
I would love to be able to position tiles on half coordinate points, so that f.e. in a case like [this](https://varkor.github.io/tangle/?c=F5A3A3,F5F5A3,A3CCF5) I can vertically center the right arrow.
I'd like to be able to generate functions of type `(a -> b) -> c`. I now have this: ```haskell instance (EnumAll a, Eq a, Function a, Function b) =>...