

If the rates have been rising, wouldn’t that prove it’s not processed meats like these? It would be something that’s being introduced at a steady rate lately, not something that’s been around for centuries.
If the rates have been rising, wouldn’t that prove it’s not processed meats like these? It would be something that’s being introduced at a steady rate lately, not something that’s been around for centuries.
Refuse? Why do you think processed meat is animal refuse?
Considering humans have been eating processed meats like these for centuries, I think I’ll take my chances.
I’m very proud to be a Californian. I’m utterly embarrassed to be an American.
It’s their machine. It’s a front door.
That’s not a vulnerability. That’s intended and desired behavior. It was really useful in this case too.
I should mention that the WebDAV share is password protected, so only he has access to do that.
Something really fun I found out recently, when my friend lost all access to his system except for a single WebDAV share by accidentally turning off all his remote admin access:
If you write “b” to /proc/sysrq-trigger, it will immediately reboot the system (like holding down the reset button, so inherently a bit dangerous).
He was running Nephele with / mounted as the share, so luckily he just uploaded that file with a single “b” in it, and all his remote admin stuff came back up after the reboot.
This absolutely can happen to stable projects. This has happened with Mastodon many times, and Mastodon has been stable for years.
It also has happened with Nextcloud many times, and again, Nextcloud has been stable for years.
It’s not a stability thing, it’s an automation thing. We as devs can only automate so much. At a certain point, it becomes up to you, as the administrator, to manually change things. Things like infrastructure changes, and database migrations, where the potential downtime if we automate it is something we need to consider.
This is very cool, but also very dangerous. Many projects release versions that need some sort of manual intervention to be updated, and automatically updating to new versions on docker can lead to data loss in those situations.
Here’s a recent example from Immich:
https://github.com/immich-app/immich/releases/tag/v1.133.0
It is my humble opinion that teaching newbies to do automatic updates will cause them to lose data and break things, which will probably sour them from ever self hosting again.
Automatic OS updates are fine, and docker update notifications are fine, but automatic docker updates are just too dangerous.
If only Steve Irwin had this in 2006.
I take it you’ve never even tried Linux before. Both of those things are not things that will hold you back. My mom uses Linux, and she barely knows what “right click” means.
With regard to your Steam games, as long as you don’t play games that use restrictive anticheat, you’ll be fine.
True. I apologize.
Cool, we’re starting to murder our neighbors. How great for us. Super swell.
I have all Reolink cameras and they’re awesome. They have both indoor and outdoor cameras. They’re really expensive compared to other similar cameras, but the software is really good, and there’s no subscription. You don’t even need to log in. Everything is only stored locally, on either SD cards in the camera or a separate “home hub” (or both). They have motion and object detection built into the cameras.
The way I have them set up is every indoor camera is plugged into a smart outlet that disconnects their power through Home Assistant when either me or my wife are home.
The outdoor ones are connected to solar power, so I didn’t even have to run any wires.
I’d highly recommend them.
Social Democracy is not the same as Socialism. But, I wasn’t following the race, maybe he does want the public to own the means of production.
Safe, yeah. Private, no. If you want to verify whether a user is a real person, you need very personally identifiable information. That’s not ever going to be private.
The best you could do, in theory, is have a government service that takes that PII and gives the user a signed cryptographic certificate they can use to verify their identity. Most people would either lose their private key or have it stolen, so even that system would have problems.
The closest to reality you could do right now is use Apple’s FaceID, and that’s anything but private. Pretty safe though. It’s super illegal and quite hard to steal someone’s face.
So, Jellyfin is one of those apps where the Docker documentation is really lacking. I’m gonna give you my docker-compose.yml
file in case it helps:
services:
jellyfin:
image: jellyfin/jellyfin
user: 0:0
restart: 'unless-stopped'
ports:
- '8096:8096'
environment:
#- JELLYFIN_CACHE_DIR=/var/cache/jellyfin
#- JELLYFIN_CONFIG_DIR=/etc/jellyfin
- JELLYFIN_DATA_DIR=/var/lib/jellyfin
- JELLYFIN_LOG_DIR=/var/log/jellyfin
volumes:
- ./config:/config
- ./cache:/cache
- ./data:/var/lib/jellyfin
- ./log:/var/log/jellyfin
- /data/jellyfin:/data/jellyfin
devices:
- /dev/dri
For me /data/
is my RAID array, which is why my jellyfin data directory is there. Everything else goes in the same directory as the compose file. My system has a graphics card that does transcoding (Arc A380), so I have /dev/dri
under devices.
You should learn a lot about Docker Compose, because it will help you tremendously. I use Jellyfin behind an Nginx Proxy Manager reverse proxy. I’d highly recommend it. Here’s my compose file for that:
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
network_mode: "host"
#ports:
# - '80:80'
# - '81:81'
# - '443:443'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
Running in “host” mode is important, instead of just forwarding ports, because it lets you forward things to localhost, like pointing https://media/.[mydomain]/
to http://127.0.0.1:8096/
for Jellyfin.
Anyway, best of luck to you, and I hope that helps!
Use Portainer if you don’t want anything to be portable. There are other issues too. Just use Docker Compose.
Is there a reason you’re not using Docker?
If the problem is nitrites, then the problem is not processed meats, it’s nitrites. Therefore, the headline is wrong. Kinda like the problem with making hats was not making hats, but mercury exposure.