João Costa

Results 90 comments of João Costa

Any updates on this? The last version is from 12 Jul 2021.

Another reproduction of this problem, kind of similar to the last comment, but without the Regex. I'm not entirely sure how much memory the second example takes, because I'm using...

Ran the previous code with GC logs (with `val nIters = 1000000` to make sure that it would finish). Good logs: ``` Collect Block count: 128 Unavailable: 0 Free: 121...

Just tried running the same problematic commit again. Reproduced with: - Scala 2.13.8, 3.1.1 and 3.1.2 - Scala-native 0.4.4 - Windows 10 64-bit (Build 19044.1706) - Intel i10750H - 16GB...

Would it probably make sense to just publish the kernel for scala native for now? While it migh make sense to wait before porting cats IO, having the typeclasses available...

>So my current proposal is that Cats Effect Native 0.4 ships with a "dummy" runtime. Just to bump my previous point that (if it doesn't make te build matrix too...

Isn't this a problem that can be solved with a software license? Maybe there's already one, but otherwise it should be possible to create one to address such problems. I...

Looks like ADTs encoded using enums also fail. Using the `Color` example in https://docs.scala-lang.org/scala3/reference/enums/adts.html ```scala import upickle.default._ enum Color(val rgb: Int): case Red extends Color(0xFF0000) case Green extends Color(0x00FF00) case...

Out of curiosity, can you share some benchmarks?

I just noticed that this now "works", as in, there is no link error. It mostly times out with the default execution context, but it works with other contexts (such...