• 0 Posts
  • 7 Comments
Joined 3 years ago
cake
Cake day: September 5th, 2023

help-circle
  • nate3d@lemmy.worldtoPrivacy@lemmy.mlPasskeys
    link
    fedilink
    arrow-up
    13
    ·
    17 days ago

    I think your problem is more to do with how shitty google is anymore more than the technology of passkeys. From a cryptography perspective passkeys are much more secure than simple username/password authentication as there’s no effective way to brute force or acquire through tools like key-loggers. Like another commenter said, start looking at self hosting your own services like Vaultwarden or the like and de-Google first and foremost. One other massive benefit with passkeys is the fact that they are cryptographically unique so even if an attacker acquires one, it’s only able to be used to access a single site/account.




  • Okay perfect, just wanted to check.

    Next I’d say check your venv to verify the pandoc binary is indeed there:

    find $VIRTUAL_ENV -name pandoc
    

    If it’s not there, you should be able to install it by entering a python shell from your venv and do:

    import pypandoc
    pypandoc.download_pandoc()
    

    Hopefully that’s able to resolve it for ya. Venv should be at the front of your path so it should prefer bins from there.