Gal

Results 5 comments of Gal

To convert a CompletableFuture to Scala's Future and get rid of the wrapping CompletionException: ``` package mycompany.common.concurrent object Extensions { implicit class UnwrappedCompletableFuture[T](cf: CompletableFuture[T]) { import scala.jdk.FutureConverters._ def toScala: Future[T]...

@amir-daniel it has a PR waiting for several month: https://github.com/eshaham/israeli-bank-scrapers/pull/794

Happens to me to well. What's weird is that when testing with `showBrowser: true`, the login finishes successfully and no 2FA is requested.

I also Encountered the compiler crash. Anyway, here's code that will serial scala 3 enums to json string and back: ``` import play.api.libs.json.Format trait EnumFormat[T] extends Format[T] object EnumFormat: inline...

Happens here as well. Having for example this class: ``` object MetricStatistics{ implicit val format: Format[MetricStatistics] = Json.format[MetricStatistics] } case class MetricStatistics(from: Instant, to: Instant, min: Option[Double], max: Option[Double], average:...