漓江丽火

Results 17 issues of 漓江丽火

```scala package desu.models import io.circe.{Decoder, Encoder} import io.circe.generic.semiauto.{deriveDecoder, deriveEncoder} import io.circe.syntax.* case class DesuResult[T](isSucceed: Boolean, data: T, message: String) object DesuResult: def data[T](isSucceed: Boolean, data: T, message: String = ""):...

Years ago, I wrote a circe debug tool [ohNoMyCirce](https://github.com/djx314/ohNoMyCirce). Now I rewrite it with shapeless and implicit. No macro dependencies and can use it to debug many type class generic...

As the code show in [gitter](https://gitter.im/adamw/macwire?at=62b5b48aef5ee44882c90be6) ```scala trait DesuConfigModel: val configIO: IO[DesuConfig] = ??? end DesuConfigModel trait AppConfig(config: DesuConfig): end AppConfig trait DoobieDB(config: DesuConfig): private val dsConfigIO = IO(config.mysqlDesuQuillDB.dataSource) val...

enhancement
Scala3

Not found `binding_sjs1_2.12` and Scala.js 1.x now still support Scala2.12. Request help with Scala2.12 support with Scala.js.

dependencies ``` sbt libraryDependencies += "dev.zio" %%% "zio" % "2.0.8" libraryDependencies += "dev.zio" %%% "zio-streams" % "2.0.8" libraryDependencies += "dev.zio" %%% "zio-test" % "2.0.8" libraryDependencies += "dev.zio" %%% "zio-test-sbt" %...

bug
tests

Forked slickless to [scalax/slickless](https://github.com/scalax/slickless) and will only released Scala 2 version for self project compat. 1. Scala 3 will only have a simple ``` scala package object slickless exntends AnyRef...

@adamw Can't reopen https://github.com/softwaremill/macwire/issues/273 and create a new issue since reproduct the problem. I use `macwire` to implement a web-app's `injection` using `cats-effect` with a simple way. And it seems...

https://github.com/UdashFramework/scala-js-jquery/blob/6d8ee18f015a3ebceee5363443b6e58d64f1a4e3/src/main/scala/io/udash/wrappers/jquery/JQueryAjax.scala#L70 https://github.com/UdashFramework/scala-js-jquery/blob/6d8ee18f015a3ebceee5363443b6e58d64f1a4e3/src/main/scala/io/udash/wrappers/jquery/JQueryAjax.scala#L139 https://github.com/UdashFramework/scala-js-jquery/blob/6d8ee18f015a3ebceee5363443b6e58d64f1a4e3/src/main/scala/io/udash/wrappers/jquery/JQueryAjax.scala#L160 In the JQueryAjaxSettings's `apply` method, the `error` parameter don't confirm the model's `def error` fileld's type.