pjan vandaele
pjan vandaele
Very much looking forward to this feature; rebuilding ghc for every new haskell project when using `nixpkgs-unstable` gets tiring very quickly ;-) `--full-closure` (or even just `--full` for that matter)...
Can you be a bit more specific in what you exactly want to do? It's not completely clear to me
We happily accept upstream PRs that fix issues you guys are running into...
It would be totally awesome if schema evolution came about. It currently is the thing keeping us back from using pickling. @adamdecaf's outlined usecases pretty much sum up the hoped-for...
Running into this as well for Byte Arrays of some length ```shell java.lang.StackOverflowError at hedgehog.core.GenT.$anonfun$mapTree$1(GenT.scala:20) at hedgehog.core.GenT.$anonfun$flatMap$1(GenT.scala:15) at hedgehog.core.GenImplicits2$$anon$2.$anonfun$ap$1(GenT.scala:146) at hedgehog.core.GenImplicits2$$anon$2.$anonfun$ap$1(GenT.scala:145) at hedgehog.core.GenImplicits2$$anon$2.$anonfun$ap$1(GenT.scala:146) at hedgehog.core.GenImplicits2$$anon$2.$anonfun$ap$1(GenT.scala:146) ... ``` Spent some time...
Hi @rcavalcanti, I just discovered your library. I/We've been using `akka-(persistence)` heavily in my dayjob to work with persistent & distributed aggregate entities. Our internal library has evolved over the...
[That](https://github.com/pjan/akka-ddd) project is rather old. It's where we started from 1.5 years ago, but lots of lessons learned in the meantime. Like I mentioned, the resemblance with `fun-cqrs` in a...
I'm in 🇧🇪 early November, but pretty much at the other side of the country. An FP in Scala study group isn't super tempting for me to cross the Brussels...
@idoshamun everything for this is implemented in `akka-d3` and production battle tested. (including readside, as long as you use `cassandra` that is – there's an interface for other backends if...
I believe the project would benefit from something in the style of ``` @typeclass trait Monoid[A] { def empty: A @op("|+|") def combine(x: A, y: A): A def append(x: A,...