Kristian Larsson
Kristian Larsson
I think one of the points of conversation around hashing in rust and other languages is that the default hash function should be fast and people should pick a dos...
Just found gxhash https://github.com/ogxd/gxhash Seems super fast!?
@sydow I too read about gxhash yesterday and ... well, I probably shouldn't have brought it up here. I just found the link while looking for other things but it's...
Zig, Nim, V and Go use Wyhash for hashing so I think Wyhash should be considered. There is a Zig implementation of it that seems fairly fast: https://github.com/ziglang/zig/pull/15969 I never...
The workaround to this is fairly simple... but I think this should just work, right? @nordlander @sydow
So the workaround is to introduce a local variable from the attribute of the object we want to inspect ``` actor main(env): f = Foo("a", "b") a = f.a if...
I've replaced the apt.acton-lang.io git repo with a new one. It's almost identical, like I brought over the config etc but I did start over from scratch for the actual...
0.18.4 and 0.18.5 are released and all available from the apt repo. So things work as they should.
Not sure what to do about tip releases. In terms of retention I'm thinking we'll keep versioned releases forever or at least until some later point when we decide otherwise....
I reckon it's a default exception handler, in the RTS that does the handling. Not something written by the developer (although it would of course be possible for a user...