João Costa
João Costa
On machines with 128 bit multiplication support, one can implement `Math.multiplyHigh` as a multiplication and a shift. See https://github.com/plokhotnyuk/jsoniter-scala/blob/347faa95ba16d82fb42ed9ba616e1f2ec91d6cf3/jsoniter-scala-core/native/src/main/scala/com/github/plokhotnyuk/jsoniter_scala/core/NativeMath.scala / https://github.com/plokhotnyuk/jsoniter-scala/blob/347faa95ba16d82fb42ed9ba616e1f2ec91d6cf3/jsoniter-scala-core/native/src/main/resources/scala-native/multiply_high.c for an example implementation. As discussed on Discord (https://discord.com/channels/632150470000902164/635668881951686686/1381521684288245854),...
I was examining some SN binaries created with `release-size` with GNU `strings`, and was surprised at the amount of times some strings are repeated, even after `strip`ping the binary. One...
When printing a UTF-8 special character on windows, the output is garbled. The same code works well on JVM, JS and Native on Mac: Code: ```scala println("\u2588") ``` Output: 
URLs like `scm:git:ssh://[email protected]/foo/bar.git` and `scm:git:ssh://github.com/foo/bar.git` seem to match the [spec](https://maven.apache.org/scm/git.html) and [are seen on the wild](https://github.com/search?utf8=%E2%9C%93&q=ScmInfo+language%3AScala+%22scm%3Agit%3Assh%3A%2F%2F%22&type=code). This should help more projects to be indexed by Scaladex.
Windows binary distributions of OpenSSL use `libcrypto.lib` instead of `crypto.lib` (this pattern seems quite common for reasons that I do not understand). This PR updates the code to use the...
The `AppLoop` logic is currently a bit wonky, especially the `*AppLoop` variants, with a `(CanvasSubsystem with AudioPlayerSubsystem)` cake. With Scala 3, I think it should be possible to redefine it...
## Description The ClickHouse Java `Client` provides an `insert` method that takes an `InputStream`. On failure, this method calls `data.reset()` https://github.com/ClickHouse/clickhouse-java/blob/f9f588d9d1b8abd8e7e8ab0eafc84b070377a68d/client-v2/src/main/java/com/clickhouse/client/api/Client.java#L1387-L1390 However, as far as I can tell, the code...