Swoorup Joshi
Swoorup Joshi
Is there a way to pass parameters to `OfJson` or `ToJson` properties? I would like to conditionally switch between different versions of underlying JSON model based on a parameter for...
Current the svelte query generates the following sample api. ```typescript export const getGetDataFeedStreamTradesCachedQueryKey = (params: GetDataFeedStreamTradesCachedParams,) => [`/data-feed/stream/trades-cached`, ...(params ? [params]: [])]; ``` It would be nicer if type for...
I currently use the following helpers in my own code to support these types. records are simply composite type without predefined structure. ```scala import scala.util.matching.Regex import cats.data.State import cats.syntax.all.* import...
We could probably add support for postgres range types, which could be implemented like in the following: https://gist.github.com/Swoorup/8e884972b30353320e7020e0caf3e33b
It would be nice if we could allow other collection such as Vector to be used while inserting the data. https://tpolecat.github.io/skunk/tutorial/Command.html#list-parameters
It appears that resource finalizer is not being called correctly in order. In this simple example, almost all runs I did, the finalizer gets called before the last `.use` statement...
Before 3.2.8 the following used to compile as is: ```scala /** Buffer until `f` returns true * @note * Careful on unbounded memory growth */ extension [F[_]: Applicative, A](src: fs2.Stream[F,...
Using a timed pull to detect idle interval, and restart on exception it appears that exception sometimes escapes the recover block leaking out to IO. I am not sure why...
Does this support inserting historical order book data?