otto-dev
otto-dev
There is one obstacle for me in this otherwise fantastic library. The type system is misconfigured, which forces me to use hacks such as `.asInstanceOf` to integrate it with my...
It is often the case that the value `A` in `Option.when` cannot be constructed if the predicate is false. Example: ```dart final headOption = Option.when(list.isNotEmpty, list.first); // this throws ```...
Like `catching`, but for `async` function bodies. Usage: ```dart Future doAsyncThings() { return catchAsync(() async { final foo = await asyncAction(); final bar = await asyncAction(); return foo + bar;...
Closes #105. Allows to use `catchAsync` in place of `catching` for asynchronous contexts. Example usage: ```dart Future doAsyncThings() { return catchAsync(() async { final foo = await asyncAction(); final bar...
From the docs > `--symmetric` [...] gpg caches the passphrase used for symmetric encryption so that a decrypt operation may not require that the user needs to enter the passphrase....
What is the minimum Android version required to run this plugin?
This issue is in regard to Akka Streams. **How to reproduce**: - Attach a source to a BroadcastHub, and materialise the hub - Attach consumers to the hub - Start...
## reproduction steps using Scala `2.13.6`, ```scala scala> val f = (a: Unit) => println(s"Received $a") val f: Unit => Unit = $Lambda$2279/411876574@4ee6291f scala> f("foo", "bar", "baz") Received () ```...
There is little purpose to the "Confirm Password" input when the password field is displayed in plain-text. It's too expensive from a UX perspective to force the user to repeat...
Hi, I'm moving a project from `sbt` to `mill` and did not find a way to use the codegen outside of `sbt`. Is it possible to run the fs2-grpc codegen...