

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
Microsoft has policy that prevents it from retaliatory actions against human rights violations. Court should rule Microsoft violated its own policies…
We would be a lot better off if Canada were to take over. I’m not sure it would do much for Canada though they don’t want our crazy.
My job has been impacted by Trumpas well. Stock prices falling and tariffs have caused them to do layoff of 2500 people. I fucking hate this so much. I work with many international customers and Trump/Musk has been brought up constantly and in my line of work people typically avoid political discussions but it’s kinda nice to hear our allies don’t actually hate Americans and know what the real problem is.
All this immigrant stuff, all it does is make people hate America and fuels the human trafficking scene. The Republicans have installed a faucet to streamline the capturing and abuse of migrant children. Think about it. If you are smuggling people across the border, people without any other options, when we have such harsh penalties all it does is give cartels more leverage over people. It’s so horrible.
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.
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 feel like the wide and often free availability of narcan and improved quality of safer drugs like weed are making a difference.
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.
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 the main thing is that the ports and addresses can change and it’s nbd. From a firewall perspective, it’s impossible to block them all. Especially when the clients are doing mundane https requests. Even if the server goes down or partial connectivity, the channel can still be used.
It cannot be easily blocked especially if you use your own homeserver every homeserver replicates the channel and it can operate without the original server! That’s why signal and telegram are inherently flawed.
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.