Lorenzo Gabriele

Results 101 issues of Lorenzo Gabriele

NGINX Unit supports websockets. We have something already set up for websockets but we still need the actual implementation.

Porting ZIO to Scala Native we observe this linking error in Scala 2 (Scala 3 links fine). I couldn't reproduce without using [izumi-reflect](https://github.com/zio/izumi-reflect). This reproduction fails to link on Scala....

While porting an application to Tapir, I ended up writing an integration between sttp and [retry](https://github.com/softwaremill/retry). Since both libraries are part of softwaremill, it would be nice to have such...

spree-warsaw

Currently, default values in `case class`es are not handled correctly in Scala 3. Example: ```scala object Main { @mainargs.main case class Config(bar: String = "bar") def main(args: Array[String]): Unit =...

Imagine I have an empty configuration like: ``` curl --unix-socket /usr/local/var/run/unit/control.sock localhost/config {} ``` I now want to add an application like: ``` curl -X PUT -d '{ "type": "external",...

Some paginated APIs use cursors to allow users to iterate on their results. The first page returns the data with a cursor which you can use to build the URL...