This is gold.. damnit geordi fix the fuckin wifi!
Sad because prodigy was really good.
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
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.
Actually this is wrong cross play is enabled by default and the game will even warn you that you'll have a harder time finding console only gamers to play with.
They're all vicious assholes that get irritated by the most mundane things so I'm gonna expect them to sting me and they have for no reason that I could tell... Also these look like yellow jackets, which are particularly annoying but not as annoying as the 4 species of hornets battling for territory around my old house. I think bumblebees are cute though they will boop you and not try to kill you.
It's not actually possible to return one of these cyber trucks due to rules involving sale after purchase.
It doesn't matter if it is a business entity operating under a government then you can never really know because gag orders. Centralized servers can be blocked. Telegram and Signal apps could have a back door. This is why open stack is important. And not just the code. Also encryption is default for p2p one on one conversations. It's not in channels by default because it can complicate public use.
Yeah I've been trying to figure out why republicans want to cancel student debt forgiveness so bad as it literally taking money out of the economy. Even worse, that money is already spent. I guess they assume people just hold onto all that extra money, now the government wants it back... Like what the duck. My credits already shot because of this mess.
Especially the lies.
I don't really want to use Amarok, I much prefer the notoriety and active support that strawberry has. I used Amarok for a long time and it died. I would much prefer contributions to strawberry be made. Maybe it can be revised or something. I'm certainly not waiting till end of 2024 for a buggy replacement of something that already works well. By all means contribute anywhere you liked but it seems like a duplication of effort
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.