Rakshith Ravi

Results 113 comments of Rakshith Ravi

Doesn't seem to be in the previous conversation (apologies if I missed it) - when working with a DevContainer or a remote machine, it's not always easy to get access...

@qmx would you be open to transferring ownership of the crate? Happy to maintain it going forward

Thank you! 😭 I hadn't gotten the time to get around to this yet. Thanks for picking it up. @argha-dot can you help out here as well?

Not sure if this will be a part of upstream leptos but I'm sure such an integration can exist in the ecosystem!

Not sure if this helps, but setting the cookie on a server fn does not update the signal in the client side. This is a problem that I haven't found...

Hi @Matthias247 @clux We faced a similar problem internally and we got around it by doing this. I hope this helps anybody else looking for a similar solution as well:...

Follow up: Looks like `avx2_cpuid::init()` is not const. I'm gonna investigate further and see if it can be made const though

Okay, I have found a way to do this: I've basically removed all references to `cpu_feat_avx2`, and replaced the `self.cpu_feat_avx2.get()` call with `avx2_cpuid::get()`. There is a difference in code path...

> Try running the benchmarks on an AVX2-capable system. How do I do that? > Also: is there some reason you need Argon2 itself to be const that the const...

Ohhh you mean `argon2::Params`. Yeah that works too, but I was just wondering if we can make `Argon2` itself const, to see if we can get any perf optimization out...