Andy Czerwonka

Results 21 issues of Andy Czerwonka

When I use Fira Code, they are used so not sure if this is a problem with the font or the tool? Also, it doesn't register as a monospaced font...

See https://github.com/eaplatanios/tensorflow_scala/blame/master/README.md#L26 I'd issue a PR, but not sure where to point it.

https://github.com/wix/accord/releases Shows 0.7.2 as the latest release

I get an error with what looks to be a pedestrian case. ```scala import io.scalaland.chimney.Transformer import io.scalaland.chimney.dsl._ import org.scalatest.funsuite.AnyFunSuite import org.scalatest.matchers.should.Matchers sealed trait A extends Product with Serializable object A...

Given the following `silly` rule, but just to illustrate: ```scala case class Id(id: UUID = UUID.randomUUID()) object Id { implicit val validations: Validator[Id] = Validator[Id] .rule[UUID](_.id, !_.toString.isEmpty, "is required") }...

Here's a `.scalafmt.conf` that I normally use, but happy to adopt whatever the project would prefer. To get IntelliJ to use it, you can set it up as follows: (it'll...

See https://github.com/krzemin/octopus/issues/51 for context. I'm happy to take this on.

It'd be nice if there was a `.scalafmt.conf` included in the project. This would make formatting consistent for PR's. Note: I'll just apply my default for now.

Like many other communities, it would be nice to see a Discord presence to discuss use cases, usage, etc.

I have a use case where I have an optional column, and I want to write a filter that checks for a value when it's present or check for null...