

This is gold… damnit geordi fix the fuckin wifi!
This is gold… damnit geordi fix the fuckin wifi!
Sad because prodigy was really good.
YESSSSS
It’s perfectly fine to host jellyfin online. Use a proxy server to enable TLS and do not use default ports 80/443. Use letsencrypt for free certificates. No need for VPN to access here either. Do not expose any other ports such as SSH on default ports. Lock down your jellyfin server and any other related services behind a VPN service and block access to Internet through other interfaces (except for port forwards on your ISP for jelly). Go high on port ranges since they typically aren’t scanned or blocked. Go dual stack for best results and don’t use your router address for IPv6 more than likely you have your own /64 choose a different address for port forwards. Do not assign this address to your internal servers. Use a reserved unrouted IPv6 range internally and do NAT6. Do not allow any raw IPv6 internet access
This happens on slower USB devices the data is buffered and the write won’t be complete right away. You can use the “sync” command and wait until it completes to make sure it’s done before you unmount the device. These days KDE shouldn’t let you unmount before it’s done though.
Microsoft has policy that prevents it from retaliatory actions against human rights violations. Court should rule Microsoft violated its own policies…
I stopped using gnome after they removed the ability to edit the menu without going through a bunch of hoops. Their idea of removing complexity involved removing choice and customization. KDE has had superior multi monitor support for a long time.
Yeah I’m surprised because my understanding was a lot of businesses were paying so it’s hard to wrap my head around why someone would want to do that now.
It’s still hard to find PCIe 4 stuff lol
Technically all certificates are pinned, especially with public CAs, most OS package the latest CA certs which will all go out of style within 10 years or so. You can see this by loading up any old distro or defunct version of windows.
I’d still be using Ubuntu sometimes if it weren’t for the snaps thing. They only make sense for proprietary software… but snaps still suck. I don’t like packaged software. They contain all kinds of things that can’t be updated. The app store was getting better before all that changed. Now Debian seems better, but I still prefer source based distros like Gentoo because the ingredients come with recipes.
That may be true but vetoing something new and killing ACA are completely different things. Biden wanted to expand on the ACA instead because it would have been able to cover 97% of Americans. So it’s not like Biden was against universal healthcare. On the other hand Republicans are well on their way to kill any hope of universal healthcare and social security. At least with Biden/Harris we would have had one or the other. My mother was saved by Obamacare because she couldn’t get health care with her preexisting conditions.
What are you talking about my dude Trump literally gutted Title X, Medicaid and ACA/Obamacare which is literally closest thing we had to universal healthcare. We need to take some lessons from California there.
Support matrix!! It already has international support, just needs to be a bit better with stickers and qol stuff. I’ve been using it for years. It’s nice to know I don’t have to worry about my privacy at all with chat rooms that can continue on without the original server.
It’s not actually possible to return one of these cyber trucks due to rules involving sale after purchase.
I added whisper and have never looked back. Sometimes it’s not exactly right but it’s usually obvious and funny 🤣
I’ve been really enjoying prodigy and wow season 2 really kicked it up a notch! Loving all the Janeway action. Lots of good Voyager characters too.
There’s no way a judge is gonna allow this. Outrageous. The language is way out of scope.
Nothing phone is such a fucking joke there are 0 replacement parts available. I broke my camera a few weeks after I got my nothing phone 2 and your only option is to ship the phone to the UK. The advertise as consumer friendly but that couldn’t be further from the truth.
Clearly post does not understand kernel booting. Initrd will never go away, you need a way to tell the kernel to start systemd, which is usually part of initramfs. Both can be compiled as part of the kernel image which can be directly booted from EFI. So basically EFI->Kernel->Decompress InitramFS->Run Initrd Boot Script (usually ends by kicking off SystemD). Initramfs is compressed to reduce boot partition usage, load faster into ram (more noticeable on HDD). You want the bare minimum of kernel modules available in initramfs to load storage drivers, filesystem, LVM, LUKS. Everything else should be modules on the root filesystem, unless it needed for boot. You can compile these static into the kernel too. Generally modules are preferable as they can be unloaded/reloaded if there is an issue. Also updating initramfs modules is annoying. I wrote my own initrd scripts and custom initramfs. You can build it all with bash scripts and configure the kernel to include the payload.