-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
I implemented an academic paper (join tree) in C# here https://github.com/zvrba/Pfm
It provides the opposite: a mutable CoW data structure that is extremely cheap to "fork" so that all subsequent updates occur only on the new "fork" and are invisible to the old "fork".
-
-
For additional context (I think some was lost on a bug tracker migration), he's the author of https://gitlab.com/akihe/radamsa, a fuzzer implemented in owl, that was quite popular finding vulns in the chrome codebase some time ago...
I just found out there's a rust port: https://github.com/microsoft/rusty-radamsa
-
For additional context (I think some was lost on a bug tracker migration), he's the author of https://gitlab.com/akihe/radamsa, a fuzzer implemented in owl, that was quite popular finding vulns in the chrome codebase some time ago...
I just found out there's a rust port: https://github.com/microsoft/rusty-radamsa
-
Python also detects this situation (at runtime using refcounts) and does in-place mutations where possible https://github.com/python/cpython/blob/a2ee89968299fc4f0da4b...