Kamil Kloch
Kamil Kloch
Sample log line: ``` [2022-08-04 11:50:05,273] INFO [io-compute-0] o.h.b.s.Http1ServerStage$$anon$1:271 - HTTP body not read to completion. Dropping connection. ``` Log entry claims this is `Http1ServerStage` from `http4s-blaze-server`. Actual logging takes...
Now that tapir's endpoint has gained a dedicated authentication/security channel it would be nice to integrate it with the existing backend-specific libraries. I found the following libraries which do the...
### Module Core ### Testcontainers version 1.17.3 ### Using the latest Testcontainers version? Yes ### Host OS Linux ### Host Arch x86 ### Docker version ```shell Client: Docker Engine -...
```scala val uri = uri"192.168.1.1".scheme("http").port(8888) println(uri) http://:8888192.168.1.1 ``` In contrast, ```scala val uri = uri"http://192.168.1.1".port(8888) println(uri) http://192.168.1.1:8888 ```
Coursier `v2.0.0-RC6-24`. ``` > coursier resolve -t com.google.inject:guice:3.0 Result: └─ com.google.inject:guice:3.0 ├─ aopalliance:aopalliance:1.0 └─ javax.inject:javax.inject:1 ``` Direct compile dependency ` org.sonatype.sisu.inject:cglib:2.2.1-v20090111` is missing: https://mvnrepository.com/artifact/com.google.inject/guice/3.0
Currently, hitting gives an invalid list.
Currently IScala notebook highlights python code. It would be nice to have scala syntax highlighting instead :)
Sample log line: ``` [2022-08-04 11:50:05,273] INFO [io-compute-0] o.h.b.s.Http1ServerStage$$anon$1:271 - HTTP body not read to completion. Dropping connection. ``` Log entry claims this is `Http1ServerStage` from `http4s-blaze-server`. Actual logging takes...
Despite ``` DockerComposeContainer(..., pull = true, ...) ``` the latest version of the images is not being pulled. I need to run `docker compose pull` manually.
Scala 2.13.6, circe 0.14.1, scalaz-deriving 3.0.0-M3. The following code fails to compile: ```scala @deriving(Encoder, Decoder) case class AAA(x: Int, d: Double) implicitly[Encoder[AAA]] ```