Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RE
redxef @scribe.disroot.org
Posts 0
Comments 13
What OS is best for a beginner to degoogle?
  • Honestly, alpine is a great distro, but not really something I would recommend for a beginner. There is less documentation and troubleshooting guides out there tailored to this distro than for example debian or ubuntu.

    I would either recommend using Debian or a derivative of that if they want to get their toes wet. Alternatively a complete solution with GUI tools for if they just want to start using their own stuff now.

  • What do you guys do about usernames / passwords for your local services?
  • Everything uses OIDC or LDAP if OIDC is not supported. If both are not supported, then it's http basic auth handled by the proxy server, with the auth request directed to the OIDC server again. Results in universal login for all services.

  • Password length requirement
  • It's more about when a database gets leaked. They then don't even have to put in the effort of trying to match hashes to passwords. And that's what hashing a password protects against, when done correctly.

  • Why is Google takeout so bitchy?
  • Honestly I thought you were going to bitch about them separating your metadata from the photos and you then having to remerge them with a special tool to get them to work with any other program.

  • Linux Distro for Running on a Macbook for Work
  • I have a 2017 macbook pro and settled for arch with a lot of customizations. One of them is a bootloader program to unlock the integrated gpu in addtion to the dedicated one. Because apple doesn't want you to use the more power efficient gpu when not running macOS. Honestly, it's a pita to run antthing but macOS.

  • Are you reusing one postgres instance for all services?
  • In theorey lots of people recommend having everything in a single docker-compose file for easier transfer and separation, though I have so much running, that it's grouped by purpose. One of those is data storage. So I have a single server with all the databases (as far as compatibility goes). I would like to some day have a highly available postgres cluster with automatic failover and failback. But that needs a lot of testing and I'm no postgres admin, so also a lot of time to research how to do it properly.