Adam Warski
Adam Warski
From scrypt, see: https://notes.volution.ro/v1/2022/07/notes/1290a79c/#password-hashes
What would it take to create "development previews" for PRs coming into a bootzooka-based project? We already have a helm chart for k8s deployments, and we deploy a sample bootzooka...
Use Scala 3
What would we need to make this happen? One thing is autowire (cc @mbore ), anything else?
Some of the dependencies (the ones that are used as part of transactions) are already written in that style. Maybe it would make sense to write all code parametrised by...
The cats-effect 3 migration caused some problems: * embedding non-DB-related effects into transactions is no longer possible using `ioCode.to[ConnectionIO]`, instead some parts of the code need to be written using...
There was an PR with an update: https://github.com/OpenAPITools/openapi-generator/pull/11260 However, the generated requests use `Nothing` instead of `Any` as the capability parameter, and api keys aren't added to the generated code....
The test passes locally and for all other backends. However, quite consistently (but also not always), the test fails on some of the `asyncHttpClientBackendFs2` backends, that is on one or...
Once https://github.com/akka/akka-http/pull/3901 is merged & released
https://akka.io/blog/news/2021/12/20/akka-2.6.18-released
Given the following derivation: ```scala import SchemaType.* import magnolia1.* import scala.deriving.Mirror sealed trait SchemaType[T] object SchemaType extends Derivation[SchemaType] { case class SString[T]() extends SchemaType[T] case class SOption[T, E](element: SchemaType[E]) extends...