Reddit refuge

  • 0 Posts
  • 69 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • Passkeys rely on you holding a private key. The initial design was that a device (like a browser or computer/phone) stored the private key in a TPM-protected manner, but you can also store it in a password manager.

    This is more secure than a password because of the way private/public key encryption works. Your device receives a challenge encrypted with the public key, decrypts with the private key and then responds. The private key is never revealed, so if attackers get the public key they can’t do shit with it.

    Just be sure that your private key is safe (use a strong master password for your PM vault) and your passkey can’t be stolen by hacking of a website.







  • EDIT: oh you said “sploof” so I glanced over it. Seems the term “spoof” (as in to fake) has been telephone’d by stoners over the last 20 years because I’ve never heard “sploof” in my life. Sounds like some Rick & Morty shit.

    Original post: Build a spoof, homie.

    Take a plastic coke bottle, poke holes in the bottom about 1/8” across, in each of the feet

    Stuff that bitch fulla dryer sheets

    Blow your hits through it

    Now it smells like you used fabreeze for bong water but at least it’s not blatant












  • k8s have a steep learning curve comparatively. With Docker you just install the Docker package and it’s off to the races. With k8s you need to know basically how Docker works, know how the layers it adds on top work, and define everything using YAML config files to get things up and running. The networking is complicated (but flexible), the storage isn’t straightforward (it’s designed to work with large-scale solutions like S3 or Ceph, so setting it up even for local “folder” storage requires more moving parts). Even bootstrapping a new installation requires many steps to install all the pieces you need.

    Don’t get me wrong it’s awesome, but if you don’t already know it, it doesn’t have many advantages for small installations over Docker which is very much “run docker-compose on this file you downloaded and the thing you want sets itself up”.

    While there are tools like Helm or Portainer to assist you, you still have to understand it to make it work.