Daniel Olano

Results 36 comments of Daniel Olano

Perhaps worth mentioning that it would be nice for a crypto module to implement the embedded friendly [traits of RustCrypto](https://docs.rs/digest/latest/digest)

About the "arbitrary" distinction, do you mean `` vs ``? if that's the case, it's not arbitrary, it's actually [how it is](https://html.spec.whatwg.org/#valid-custom-element-name), any element in the standard now and in...

Yeah this approach does come with the mentioned drawbacks and that's why I bring it up for consideration. That said I personally don't think is bad to "standardize" and make...

@Demonthos here goes an updated version based on your suggestion. Now I made the macro less magic removing the namespace module weirdness and the tag needs to be specified explicitly.

Perhaps relevant https://blog.torproject.org/arti_100_released the Tor project released Arti v1, their new Rust based Tor implementation.

As someone who finds the project quite neat but a bit clueless about its full potential and advance usage I'll just stick around to watch how tutorials and documentation get...

From `h3-js` we can get inspiration on how to [compile with emscripten](https://github.com/uber/h3-js/blob/master/scripts/update-emscripten.sh#L35), they don't use cmake but rather compile with `emcc` directly. For rayon I see its already an optional...

I'm also interested about this one. I've used a bit libp2p and was wondering how hard it would be to prototype a swarm of peers sending messages to each other....

Just wanted to sneak in to say hi and that is nice Ricker will keep going, the idea behind Ricker is very appealing and seeing people's commitment on moving the...

perhaps some special syntax to capture the raw arguments ``` def foo [..^raw-rest] { command $raw-rest } ```