Eli Kasik

Results 19 issues of Eli Kasik

Similar to `fs2.text.utf8Decode`, I would like to auto-detect and decode text in other charsets

feature

### Scenario I want to deploy an application with an `ArangoDeployment` manifest using Helm. In my requirements.yaml are the 3 charts for the operator: arango-deployment.yaml: ``` apiVersion: "database.arangodb.com/v1alpha" kind: "ArangoDeployment"...

Using the `derive` function, I was able to derive instances for zio-json and zio-config on subtypes and newtypes: ```scala object ST extends Subtype[Int] { implicit val desc: zio.config.Descriptor[Type] = derive...

**Describe the bug** 1. It is not clear what `Server.error` is supposed to do. Does it recover from errors, or is it a `.tap` on them? 2. It does not...

enhancement
question

After using Circe, I expected `zip` to behave like `product`: ```scala import zio.json._ case class A(a: Int) object A { implicit val codec: JsonCodec[A] = DeriveJsonCodec.gen } case class B(b:...

Hi I am trying to transfer a DAM path with 4737 assets. However, this is the result I get from Grabbit every time: ```json { "endTime": "2017-01-16T22:48:46+0000", "exitStatus": { "exitCode":...

I am getting a strange error at runtime, which I could not reproduce: ``` java.lang.NoClassDefFoundError: shapeless/ops/hlist$ZipWithKeys$$anon$158 [info] at com.byond.infinity.defs$ProgramResponse$anon$lazy$macro$25$1.inst$macro$1$lzycompute(defs.scala:93) [info] at com.byond.infinity.defs$ProgramResponse$anon$lazy$macro$25$1.inst$macro$1(defs.scala:93) [info] at com.byond.infinity.defs$ProgramResponse$.(defs.scala:93) ``` Here is the line:...

I've had a use case like this: I want to return a `case class Paginated[A](total: Long, results: List[A])`. However, the list can get very big. What I really wanted was...