Results 9 comments of webcpu

I tried to measure how long Red REPL quit. `time red` However Red REPL doesn't quit. And I can't reproduce this issue today, in spite of that I did reproduce...

I reproduced it. It just takes much longer time. ``` ➜ ~ time red --== Red 0.6.3 ==-- Type HELP for starting information. >> red 0.12s user 0.02s system 0%...

@DavidFeng @geekyi It happened many times today. My Mac never sleeps, and I am not aware of such program exists so far. Red REPL is the only program quit after...

The stats/info command isn't helpful. It's hard to catch the right timing to do it.

If anyone wants to see Carthage build multiple frameworks concurrently, when possible. Please check it out. https://github.com/unchartedworks/ConcurrentCarthage

``` DispatchQueue.main.async { self.clusterManager.reload(self.mapView) } ```

BottomSheetConfiguration.swift ` var iPadFloatingSheet: Bool = true` This is the bug. The default value of iPadFloatingSheet should be false. You might have to use the modifier `.sheetWidth(.relative(100))` to change the...

I have profiled it and found that function eval/fetchByString/ consumed several gigabytes ram. Parse is a recursive function and very slow, and tail-recruisve optimisation doesn't help in this case. ```...