Rob W
Rob W
I note there are interop modules for Cats and Scalaz, but no ZIO. Would a PR adding ZIO support be welcome?
I've been working on a language server implementation. The corresponding vscode extension is written in scala.js using ScalablyTyped which has for the most part ( #463 aside) is working brilliantly....
More of an annoyance than anything else. zio has a `LogAnnotation` class as well, in the `zio` package which is generally imported with a wildcard. ```scala import zio.* import zio.logging.*...
Firstly, thanks for a great project! It's taken my cameras from basically useless using the default HA streams to rock solid! I'm trying to combine a modified version of the...
https://scastie.scala-lang.org/kwP6TCmoSPGQ9Ug7D9kbJA works fine with my amazing `SuperString` which appears NPE proof in my limited real life trials
https://scastie.scala-lang.org/5htwvdwbShivvYgwZZgqUg ``` Caused by: os.PathError$AbsolutePathOutsideRoot$: The path created has enough ..s that it would start outside the root directory at os.PathError$AbsolutePathOutsideRoot$.<clinit>(Path.scala:220) at os.Path.$div(Path.scala:462) at os.copy$.apply(FileOps.scala:179) ``` copying to a subpath...
I'm loving all the filesystem handling stuff, particularly `walk`ing the file system, but it all falls down when I hit a zip file (actually a jar in this case, but...
A sketch of what stored procedures (and maybe table valued functions for SQL server?) might look like, essentially mandraulically adapted from `FunctionDef` with an adapted type tag allowing for returning...
`renderRead` in postgres & sql server modules are the main areas this affects at the moment, only because many of the other renderings are missing; something that generalises to all...
According to https://jdbc.postgresql.org/documentation/head/java8-date-time.html, ZonedDateTime, Instant and OffsetTime are not supported by JDBC. Some databases will likely support these types if we bypass the JDBC driver (everything else is platform specific,...