Mendes

Results 30 comments of Mendes

It seems Authy and 2FAS Authenticator also don't support SHA256 and SHA512

I'd like to add that [Aegis](https://github.com/beemdevelopment/Aegis) on Android, also works with SHA256 and SHA512.

Okay, I wanted to change this too, so I did some digging. Turns out the answer is: it's complicated. The goal would be to prove this is okay: ```rs unsafe...

From what I could gather, there are two meanings for "atomic" which creates ambiguity and confusion. Aligned pointer reads and writes are atomic in the sense that no thread will...

I agree though that trying to make it `Send` first might be a good idea. I can try that. One thing that bothers me though is that a user of...

I would like to have this feature too. Can I implement it myself and open a pull request? This issue seems to have become stale

I also have the same issue on linux (specifically arch). My directories look the same as the ones described by @danechambers . ``` ~> mono --version Mono JIT compiler version...

I had this same issue on a raspberry. Adding this fixed it for me. ```ts noble.on('stateChange', (state: string) => { if (state == 'poweredOn') { noble.startScanning([], true); } }); noble.on('scanStop',...

@compiler-errors so I gave your suggestions a try with these modifications to the example trait ```rs #[trait_variant::make(IntFactory: Send)] pub trait LocalIntFactory { const NAME: &'static str; type MyFut i32; async...

@andrewtoth I remove the `move` keyword of what @compiler-errors mentioned, but maybe I'm misunderstood them