Ondra Pelech
Ondra Pelech
builds on top of https://github.com/indoorvivants/scala-native-gtk-bindings/pull/12
plus a few cleanups and regularizations
Use the Buzhash or Rabin splitter in IPFS instead of the `SizeSplitter` by default. A rolling hash based data sensitive splitter has a huge obvious advantage: it creates shift-resistant chunks...
closes https://github.com/cquiroz/scala-java-locales/pull/489 blocked on * https://github.com/cquiroz/sbt-locales/pull/335
The `@silent` annotation, when it's only added with `Provided` as in ``` "com.github.ghik" % "silencer-lib" % silencerVersion % Provided cross CrossVersion.full ``` causes ``` java.lang.NoClassDefFoundError: com/github/ghik/silencer/silent ... Caused by: java.lang.ClassNotFoundException:...
fixes https://github.com/pureconfig/pureconfig/issues/1673
Continuation from https://github.com/pureconfig/pureconfig/issues/1488#issuecomment-2158917879 This still doesn't work as expected (should return Right) ```scala import pureconfig.* import pureconfig.generic.derivation.default.* case class Person(name: String, age: Int = -1) derives ConfigReader println(ConfigSource.string("{ name =...
This is rudimentary support for YAML on JS and Native. We could add much more tests etc., and maybe there are some bugs for edge cases, but this should be...
Will be useful for ZIO. /cc @kyri-petrou * https://github.com/zio/zio/pull/9127 * https://github.com/scala-native/scala-native/issues/3165 I got as far as this, if it helps anyone. https://github.com/codehaus/jsr166-mirror/blob/master/src/main/java/util/concurrent/ConcurrentLinkedDeque.java ```scala /* * Written by Doug Lea and...