Evgeny Veretennikov
Evgeny Veretennikov
Example of using `getOrFailWith`: ```scala ZIO.getOrFailWith(new Exception("some error message"))( List(1, 2, 3, 6, 7).find(_ == 3)) ``` We have to read this code from the end to the beginning. That's...
`KafkaConsumerActor#poll()` method should resume underlying Kafka consumer, if there are partitions ot fetch: https://github.com/akka/reactive-kafka/blob/master/core/src/main/scala/akka/kafka/KafkaConsumerActor.scala#L255 . Though, I faced situation, when it is unable to resume it for a long time...
ZIO has too many methods, and it makes auto-completion... not so useful. I guess, usually, one uses at most several dozens of methods in a project. So, it would be...
Currently, we're able to get enclosing method args with `sourcecode.Args`. Also, in some cases we can get enclosing method name: ```scala def printMethodName()(implicit name: Name) = println(name.value) def myMethod() =...
In order to use scala-kafka-client we have to add cakesolutions repo explicitly: ```scala resolvers += Resolver.bintrayRepo("cakesolutions", "maven") ``` It's so inconvenient. Issues #143 and #146 were created solely due to...
Currently, we can derive `ConfigReader` using `derives ConfigReader`. Could we also support deriving it in Scala 3 using `deriveReader[T]`, like in Scala 2? That would simplify migration to Scala 3....
### ScalaMock Version (e.g. 3.5.0) 5.2.0 ### Scala Version (e.g. 2.12) 2.13.12 ### Runtime (JVM or JS) JVM ### Reproducible Test Case File for scala-cli: ```scala //> using scala 2.13.12...
Is MySQL 8.0 version supported? This client is based on postgresql-async, which wasn't updated since March 2017. So, I guess it's unlikely, that last major release is already supported, at...
### Description of the bug: During April, we encounter such a problem three times (on different machines): any bazel command fails locally for some developer with: ``` % bazel build...
## minimized code ```Scala def (i: Int) f: Unit = () "1".f ``` Compilation output: ```scala value f is not a member of String - did you mean ("1" :...