Alexander Varga

Results 11 comments of Alexander Varga

Should I not use this tool to run untrusted js on the server then? Are you working on a fix?

Hi, I'm having trouble getting this to work with node. When I use the above code with the appropriate reference to underscore.observable.js, I get an error at line 196: "_.mixin({...

How is this intended to be used? I tried combining the `hashconsing` and `weak_table` doc demos, and the only thing I could get to work is: ```rs let mut table...

Thanks for your response, I kept wanting to do ```rs table.insert(one.elm, 1); ``` but `elm` is private so `HConsed::to_ref` would work. I'll comment on #19 as well.

Building the cli by cloning `tree-sitter` and doing `cargo install --path cli/` fixes it, so it seems like an issue with published cli.

Is this a Mac problem? I'm not very familiar with Unity but I'm just getting a black screen on my Mac. It looks like compute shaders might not work well...

I've selected the scene which gives me the black screen. What OS are you on @inh4les?

If I set the Trail Weight to 100, I can see things. I'm not sure what the cause of the inconsistency is though.

My "fix" isn't quite correct, but I still think it is a concurrency issue caused by multiple threads trying to unatomically increment the same`TrailMap` pixel with: float4 oldTrail = TrailMap[int2(newPos)];...

Two things worth noting: - Executions of `TrailMap[int2(newPos)] = min(1, oldTrail + agent.speciesMask * trailWeight * deltaTime);` in `Update` commute, so we don't have to worry about race conditions there....