• 4 Posts
  • 199 Comments
Joined 1 year ago
cake
Cake day: April 27th, 2024

help-circle

















  • I hate the HA implementation of voice assist. It’s either “what you are saying has to be recognized as EXACTLY this string” or it’s “try an LLM lol”.

    Hie the fuck do you influence if your voice recognition model spits out “To-do, ToDo, todo, To-Do, To Do or to do”? Because if you try to add an item to the ToDo list, then this difference matters to HA.

    The answer is: by matching what is recognized against all known entities, and picking (with a threshold) the closest match. But that’s just not possible currently.



  • I’d have imagined something along these lines:

    • USER visits porn site
    • PORN site encrypts random nonce + “is this user 18?” with GOV pubkey
    • PORN forwards that to USER
    • USER forwards that to GOV, together with something authenticating themselves (need to have GOV account)
    • GOV knows user is requesting, but not what for
    • GOV checks: is user 18?, concats answer with random nonce from PORN, hashes that with known algo, signs the entire thing with its private signing key
    • GOV returns that to USER
    • USER forwards that to PORN
    • PORN is able to verify that whoever made the request to visit PORN is verified as older than 18 by singing key holder / GOV, by checking certificate chain, and gets freshness guarantee from random nonce
    • but PORN does not know anything about the user (besides whether they are an adult or not)

    There’s probably glaring issues with this, this is just from the top of my head to solve the problem of “GOV should know nothing”.