• 1 Post
  • 22 Comments
Joined 8 months ago
cake
Cake day: February 25th, 2024

help-circle







  • There’s a lot to address here as you’re talking about hardware and possibly multiple levels of software.

    Yes, you can do this with raspberry pi or any SBC or mini PC. Even an old desktop PC if space isn’t an issue.

    In terms of photo management software, I really like Photoprism. Immich seems to be popular as well.

    In order to get your photos synced to multiple computers over the internet (a good idea for resilience), you could look at syncthing. Alternatively, you could have one central server and one or two backups in different locations using borg backup or similar. In my experience, backups are easier to manage and make it easier to recover from data loss than replicating the current state of your data in multiple places. You can do both, though.

    It’s a very worthwhile project, but may be pretty difficult unless you are already comfortable with server technology or are enthusiastic about learning.




  • Get a Pixel 7 or newer and put Graphene OS on it. Pixels are excellent phones and have good support for custom ROMs. The Pixel 6 has a lot of weird issues that the others don’t have, so avoid it. Graphene is the best ROM for privacy AND security, and it is also relatively user-friendly.

    Or, if you want an older phone, try a Pixel 3, 4 or 5. They are good phones with an older design style that may appeal to you.

    /e/OS (also known as Murena) is also a good ROM for privacy, and supports a broader range of devices.


  • Roland Emmerich’s movies are more disaster than sci-fi predominantly, but I enjoy them even though they are of very questionable quality, especially 2012.

    I liked Shin Kamen Rider even though the acting leaves something to be desired and the plot is kind of obtuse, plus the CGI is kind of cheesy.

    The American Digimon movie (2000) is kind of a mess in terms of editing and the third part sucks, but I really enjoy the voice acting and the first two parts are solid if a bit rushed. Also the Barenaked Ladies needle drop is iconic.




  • I would very much prefer to use passkeys wherever possible. My password manager of choice Bitwarden also supports them. Unfortunately, Android 13 which I am running does not support setting a default app to handle passkeys. So I cannot access that functionality on my phone yet. I think in a few years I will be authenticating with passkeys for a lot of services. However there will be a lot of services that lag behind in terms of offering passkey authentication.






  • Traefik is powerful and versatile but has a steep learning curve. It also uses code to control its configuration which is a bonus for reliability and documentation as discussed elsewhere ITT. Nginx proxy manager is much simpler and easier to use, may be a good one to get started with, but lacks the advantages of traefik described above. Nginx proxy manager does support SSL cert automation.


  • Another suggestion for you, I highly recommend specifying a version for the docker image you are using for a container, in the compose file. For example, nextcloud:29.0.1. If you just use :latest, it will pull a new version whenever you redeploy which you may not have tested against your setup, and the version upgrade may even be irreversible, as in the case of nextcloud. This will give you a lot more control over your setup. Just don’t forget to update images at reasonable intervals.