

That’s fair. Thing I didn’t like about bread makers is you can’t really get a good loaf out of them. It’s good for getting a hunk of bread to put some butter on and that’s great, but not so great for sandwiches. Top doesn’t brown as well
Administrator of thelemmy.club
Nerd, truck driver, and kinda creeped that you’re reading this.
That’s fair. Thing I didn’t like about bread makers is you can’t really get a good loaf out of them. It’s good for getting a hunk of bread to put some butter on and that’s great, but not so great for sandwiches. Top doesn’t brown as well
Get some bread pans and some elbow grease.
A stand mixer would be ideal but it’s really not so bad to knead bread by hand.
Why don’t you just say progressive then seems to sum it up
Please tell me it’s “Flurry” and you didn’t actually name a cat after a McDonald’s item
please
Wait why do people want escape there???
I like the backspace there like Colemak has. I can do Fn-Backspace(capslock) to activate Caps Lock but that’s something I added to my Keyboard separately.
I don’t think I’ve seen aerosol cans of Axe around for a while, are they still a thing? I totally haven’t been looking tho
You can typically replace the battery inside the UPS (and should every few years). Looking at $40-50USD for “official” replacements, less for questionable third party ones.
Because as a headless server it’s likely to sit hidden for a long time. This and the always being plugged in is not good for lithium-ion batteries. If/when it starts ballooning will you notice? It’s a fire risk.
UPSes use typically lead-acid batteries like a car.
Heck yeah. Not always the best for power efficiency though.
Old laptops also a great choice but I really recommend removing the battery first.
Oh hey thanks for reminding me, freed 5GB which should buy me a bit of time on upgrading the server I use for this lemmy instance.
I just have a script that checks my IP every few minutes and changes the DNS record as necessary
It has been since 2019 but before that it was bash.
macOS is UNIX, certified UNIX actually.
But I mean, if someone had the merest impression of macOS and was very familiar with Linux and never bothered to look any further then I’d understand. Maybe they only played around with macOS a little and saw the terminal app had bash and most all the familiar tools as on Linux. It’s not hard to see why they might’ve thought it’s Linux based.
I’m not looking to become a sysadmin
And that’s fine and understandable. But I don’t think that Immich is for you. It’s not consumer-grade software. It’s a piece of Linux server software that requires occasional maintenance and administration. We haven’t seen a breaking update in a while but Immich does occasionally release updates where things will break if you don’t dig in to the config files and reconfigure it.
If you’re self hosting then you could just copy all the files from your server onto an external drive. I have to say that’s not a great backup solution though, and you should learn more about administration of Linux servers so that when things break you can fix them. I wouldn’t rely on it as a safe solution to your photos otherwise.
Are you paying for Immich somewhere? Then you’d have to trust the administrator to back your data up. I had assumed you were self hosting and by managed services I meant like Google Photos, or indeed someone else’s Immich setup.
You should have a backup solution for your server that should cover this, without that you should probably stick with managed photo backup services.
Well yeah you could go on the site and select whatever photos and hit download I suppose.
If anyone’s interested, here’s my Immich backup script. You setup rclone to use an S3 storage service like BackBlaze which is quite cheap. I also use a crypt which means RClone will encrypt and decrypt all files to/from the server. S3 configuration and crypt setup.
Then set this up as a cron job. With the “BACKUP_DIR” option when you delete a photo it will get moved to the “deleted” folder. You can go into your S3 provider’s lifecycle settings and have these get deleted after a number of days. I do 10 days. Or you can skip that and they’ll be gone forever.
#!/bin/bash
SRC_PATH="/path/to/immich/library"
DEST_REMOTE="b2crypt:immich-photos/backup"
BACKUP_DIR="b2crypt:immich-photos/deleted"
RCLONE_OPTIONS="--copy-links --update --delete-during --backup-dir=$BACKUP_DIR --suffix `TZ='America/New_York' date +%Y-%m-%d`.bak --verbose"
rclone sync $SRC_PATH $DEST_REMOTE $RCLONE_OPTIONS
First question is - are you familiar with Linux command line at all? If not get familiar with it first.
Second you’ll need to own or buy a domain and point it to the server’s IP.
Then install either Ubuntu Server or Debian on the server, setup SSH and run this Ansible project - https://github.com/LemmyNet/lemmy-ansible
If that’s not comprehensible to you, I’d really recommend getting more familiar with Linux command line and servers before I’d recommend starting a Lemmy instance.