Matt Dziuban

Results 48 issues of Matt Dziuban

This branch adds support for sending multiple URLs to Kraken via a cURL multi handle, which can be significantly faster than making many individual cURL requests. The syntax to make...

## Reproduction steps Scala version: 2.13.8 ```scala trait ByNameImplicit[A, B] object ByNameImplicit { implicit def invert[A, B](implicit ab: => ByNameImplicit[A, B]): ByNameImplicit[B, A] = new ByNameImplicit[B, A] {} } abstract...

byname
implicit
fixed in Scala 3

I'm trying to cross build documentation for a library built against multiple versions of http4s and I'd like to be able to write code for all http4s versions within the...

Thanks for this library! So far I've found it easy to work with and wire up, but I had one request -- is it possible to filter rows based on...

When using a la carte imports, I need to `import cats.syntax.apply._` to be able to call `contramapN`, but I expected to `import cats.syntax.contravariant._`. Here's a scastie to demonstrate: https://scastie.scala-lang.org/mrdziuban/IZmraJ4BRlugdmXfeUWoLg/3

I'm seeing a `MatchError` thrown during compilation when `TPrintImpl` encounters a `PolyType`. The full error is: ``` exception during macro expansion: scala.MatchError: [+A]Playground.Foo[A] (of class scala.reflect.internal.Types$PolyType) at pprint.TPrintLowPri$.typePrintImplRec0(TPrintImpl.scala:151) at pprint.TPrintLowPri$.typePrintImplRec(TPrintImpl.scala:32)...

Building the alpine images on an Apple silicon (M1) Mac currently fails with an "Unsupported arch: aarch64" error, e.g. from [this code](https://github.com/adoptium/containers/blob/130db1e5356f5a86868b70809c8311b0aad0c756/17/jre/alpine/Dockerfile.releases.full#L31-L40). Would it be possible to add support for...

enhancement

This allows the annotation plugin to be used for classes with multiple parameter groups or with implicit parameters. Scala doesn't extend `FunctionN` in these cases resulting in an error like...

Is this intentional? ```java import com.jsoniter.JsonIterator; import com.jsoniter.any.Any; import com.jsoniter.output.JsonStream; import com.jsoniter.spi.Config; import com.jsoniter.spi.JsoniterSpi; public class Main { public static class Foo { public String foo = "bar"; } public...

Hello, thank you for your work on this project! I find it by far the simplest way to manage my web servers. I wondered if it would be possible to...