Kalin-Rudnicki

Results 16 issues of Kalin-Rudnicki

Precursor : The power of the scala 3 macro system is AMAZING. By far the best metaprogramming experience I have had. That being said, there are a few usability issues...

# Example ```scala final case class AlpacaTradingClient(client: Client) object AlpacaTradingClient { val layer: RLayer[AlpacaTradingEndpoint, AlpacaTradingClient] = for { cfgEnv > Client.layer.default _ Client.layer.default _ >> Client.layer.default.project(AlpacaMarketDataClient(_)) ``` but I thought...

The decoding logic in `ServerSentEvent.binaryCodec` depended on decoding bytes into a `Chunk[String]`, and then using the binary codec. I split this logic out into a separate `ServerSentEvent.rawEventLines` so that this...

The way `ZClientPlatformSpecific` defines its layers, with layers of the same names but different types on different platforms, is a bit unfortunate for a consuming library which is also cross...