Lloyd
Lloyd
There's a PR open (https://github.com/lloydmeta/enumeratum/pull/349) that I've slowly been reviewing over iterations.
Actually just found a workaround; use `monadless` with `scala-async` 🤣 ```scala Welcome to the Ammonite Repl 1.0.5 (Scala 2.12.4 Java 1.8.0_152) If you like Ammonite, please support our development at...
I should mention that using `monitor` from `redis-cli`, I can that see the messages are being `PUBLISH`ed into redis even though the handler gets blocked (at least initially) ``` ......
> Is there any plan or desire to have a [mixed library that can be used in scala 3 and in scala 2](https://docs.scala-lang.org/scala3/guides/migration/tutorial-macro-mixing.html) There's no plan, but it does sound...
> Interesting! I think we would require a github runner for Apple Silicon to create binary, but maybe it's possible to produce it also using [coursier](https://get-coursier.io/docs/cli-bootstrap#graalvm-native-image)? Looks like this is...
I guess it ultimately depends on the team/Org https://docs.github.com/en/actions/using-github-hosted-runners/about-larger-runners/about-larger-runners > Larger runners are only available for organizations and enterprises using the GitHub Team or GitHub Enterprise Cloud plans.
Nope, feel free to put up a PR :)
Right, but the algebra of the `AccountRepository` is hard-coded to use the concrete `Account` model https://github.com/debasishg/frdomain/blob/48664c35b2e583aeacfcacd5d740687afb2ed1de/src/main/scala/frdomain/ch5/domain/repository/AccountRepository.scala#L9 That in turn shows up in the algebra of the `AccountService` through the `Kleisli`...
Just checking what you're asking for by using a concrete example Given ```rust struct S { a: u64, b: bool } let s = Struct { a: 5, b: false};...