• 0 Posts
  • 67 Comments
Joined 7 months ago
cake
Cake day: December 14th, 2023

help-circle





  • BakedCatboy@lemmy.mltomemes@lemmy.worldwhich would you choose
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    27 days ago

    My gaming PC is sticking with 10 for the foreseeable future, it’s my only windows machine and that’s because it’s a beatsaber and fusion360 machine and I don’t want to be bothered with fixing something when I want to get a workout session in or need to urgently design a part.

    P.S. if anyone knows how to get fusion working in wine I’m all ears


  • BakedCatboy@lemmy.mltoFunny@sh.itjust.worksIt's so over
    link
    fedilink
    English
    arrow-up
    2
    ·
    30 days ago

    I don’t remember actually but I checked the file metadata and I have the template in my downloads folder next to this which has an exif tag of 2 minutes later with gimp metadata so I’m pretty sure I must have made it, which makes it a bit more impressive since I probably just sent it to friends privately and didn’t post it anywhere it could have been scraped for training.





  • One game I used to play recently started working suddenly in the latest proton major release (I think 9), it wasn’t mentioned in the release notes and it has no community around the game since it was released around windows vista, as well as being pulled from stores for many years (I still have it on steam) so I don’t think anyone intentionally fixed it but probably just a result of some system call being implemented or tweaked to behave closer to correct.

    So yeah, it’s very good to test your broken wine apps every 6 months to a year because slowly anything I ever had issues with in wine is starting to work.



  • I switched from Google photos to immich so I could keep my photos more private (self hosted on my own NAS). I still keep Google photos installed on my phone so I can edit photos (the editor is really nice to use). Every time I open it, it bugs me to resume backing up to Google. This week I found that it had started backing up to Google again although I don’t remember accepting so I had to go and clear out all the uploaded photos again.

    I hate this. Even when I decline to back up it usually then nags me with a second screen asking if I want to do a one time backup. Like, no. I don’t want to send any of my photos to Google.



  • I just discovered how easy ollama and open webui are to set up so I’ve been using llama3 locally too, it was like 20 lines in docker compose, and although I’ve been using gpt3.5 on and off for a long time I’m much more comfortable using models run locally so I’ve been playing with it a lot more. It’s also cool being able to easily switch models at any point during a conversation. I have like 15 models downloaded, mostly 7b and a few 13b models and they all run fast enough on CPU and generate slightly slower than reading speed and only take ~15-30 seconds to start spitting out a response.

    Next I want to set up a vscode plugin so I can use my own locally run codegen models from within vscode.




  • BakedCatboy@lemmy.mltoProton @lemmy.worldIs the future passwordless?
    link
    fedilink
    English
    arrow-up
    32
    arrow-down
    1
    ·
    3 months ago

    Passkeys are like using a private key to log in. There are several ways it’s better:

    • Passwords can be stored improperly by a website leading it to be leaked
      • Passkeys never leave the device so a website being breached can never leak your passkey
      • The website only stores the public portion of the key which is useless to an attacker
      • Passkeys can only be stolen by attacking and breaching the device or password manager that holds it
    • Passwords can and often are reused across multiple sites so a single leaked password can compromise many sites
      • Passkeys are created for each site so an attacker would need to steal each one separately
    • Passwords can be phished by fooling a user into entering the password
      • Passkeys can’t be phished easily since it’s designed not to leave the device - if such an attack was found it could be patched in the browser / password manager. You can’t patch all password forms to stop phishing in the same way

    If you’re familiar with ssh keys, it’s similar to that and why the top security recommendation for new servers is to disable passwords and use keys instead.