At least for some laptops, you cannot just remove the battery. If the battery is removed, the performance may be throttled. This is true of very old MacBooks.
- 0 Posts
- 25 Comments
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Judge allows release of deposition videos of 2 former DOGE staffersEnglish
7·3 days agoOf course I understand the EO perfectly.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Should we make a law that regulates third parties that handles the information that they receive for any age checks ?English
1·3 days agoWhy 7 days? It should be illegal for them to have the data in the first place, especially in the EU where they have better ways of doing age verification. There are situations where the law says that you need to verify somebody’s identity, and age checking should not be one of them.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Self Hosting for Privacy - Importance of Owning your own Modem/Router?English
2·10 days agoIn the US, most IPSs have remote access to your modem as well, even if you purchased it yourself from a store unaffiliated with your ISP.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•War on Iran may provoke a terrorist attack in US – and that may be the pointEnglish
6·11 days agoIf there was another 9/11, Trump wouldn’t be able to decide whether it was bad because America was attacked or good because he doesn’t like New York City.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Pentagon sends thousands of Marines to Middle EastEnglish
3·13 days agoNot all of the American children will be brown, but they’re probably poor and they will be praised for their bravery so people don’t feel as bad,
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•NEW POLL: Majority of Americans Believe Trump Launched Iran War to Cover Up Epstein ScandalEnglish
153·15 days agoThe Epstein files are the distraction. The United States government, particularly but not exclusively Trump and his appointees, is committing a new crime every week but everyone keeps going back to the probable suspicion that Trump was involved in the sexual abuse of minors years ago. There is no way that Trump will be removed from office because of the Epstein files when the Department of Justice is running an illegal coverup for him. Complaining that the DOJ is withholding files that probably exist about something that Trump probably did is too abstract for anything to happen in Congress. Get them out for the recent crimes that aren’t just probablies first and then talk about the Epstein files when over half of the government isn’t trying to cover them up.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Notes on full disk encryption on a Hetzner cloud VPSEnglish
251·18 days agoEnabling SSH password authentication is unnecessary and not a good idea, especially if your temporary passwords are simple. I haven’t used Hetzner but there is probably a way to upload a file or to paste into the console, or else if you fix your keyboard you could at least type a URL to download the public key from the internet. You may want to look into cloud-init instead of manually installing and configuring your VMs.
LUKS may not make your server meaningfully more secure. Anyone who can snapshot your server while it’s running or modify your unencrypted kernel or initrd files before you next unlock the server will be able to access your files.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Secretive 17-page executive draft handed off to Trump to derail election: WaPo
17·28 days agoThis is only technically true. He’s found a loophole where he makes an obviously illegal order, and that order is in effect for months before it is struck down, and then he can just make a new order like he’s doing right now with tariffs. He keeps getting away with it because the legislative branch is complicit.
What happens if he declares that to prevent voter fraud, voters need to prove eligibility in a way that prevents poor people, or people who have changed names, or people who live in a home owned by somebody else, or nationalized citizens, or people living in selectively restricted voting districts, or people who have a skin tone inaccurately recognized by specifically choosen facial recognition software, or people who are “accidentally” detected to be inactive voters, or people who are just afraid of being disappeared by ICE from voting, and it is enforced long enough to impact the election? Will he finally be thrown out of office before the election? If not, will the people illegally prevented from voting have their votes counted after the order is struck down? Would those people be able to vote before some other illegal order goes into effect or would elections and their results be constantly delayed?
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Using huntarr? Perhaps you shouldn't.English
44·1 month agocurl bash is not as bad as people think. Nobody downloads and reverse engineers binary packages off of these websites before running them with the same permissions.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Tennessee House passes bill allowing private citizens to refuse recognition of same-sex marriagesEnglish
5·1 month agoThis is great for the shareholders.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•How do I access my services from outside?English
4·1 month agoIf you’re running insecure services, you can restrict them to be accessible by vpn. I have a mix of internet accessible and vpn accessible services using the tailscale nginx plugin.
If you want to send all your traffic over a vpn, you will either need to route all your traffic through your own vpn or use some sort of multiplexed vpn. tailscale can do this with mullvad, but it’s not yet possible with headscale.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Trump DOJ attorney held in contempt for refusing to return ICE detainee's paperworkEnglish
5·1 month agoThat’s 182.5k a year. They’d need to be making several times the average US lawyer salary to shrug that off. Most lawyers don’t make that much money post taxes.
i_am_not_a_robot@discuss.tchncs.deto
politics @lemmy.world•Trump pardons 5 former NFL players for crimes ranging from perjury to drug trafficking
3·1 month agoIf you’re suspected of drug trafficking and not a donor, it’s a drone strike. If you’re convicted of drug trafficking and a donor or potential donor, it’s a free pass.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
1·1 month agoKubernetes is much more complicated and powerful than Docker, and Docker Compose is more similar to the way you work directly with Kubernetes than it is to Helm, which adds in a templating system. Basically, from a Docker perspective, Helm allows you to configure your compose file, but not just by substituting variables. Helm can make structural changes such as completely adding or removing sections based on the variables used when loading the chart. The output of Helm is YAML, sort of like a compose file.
Kubernetes has a much more complicated system for describing workloads and their resources than Docker Compose, and it is extensible. For example, if you are running on AWS you can have Kubernetes attach EBS volumes to your pods, or if you’re on bare metal you might use LVM, and it’s not limited to things that Kubernetes natively understands like storage volumes: Cert Manager is a common piece of software that is deployed into Kubernetes that takes care of issuing and renewing TLS certificates for other software in Kubernetes.
I used to run Kubernetes at home with ArgoCD, but I’ve moved on to NixOS instead. NixOS is less powerful because it doesn’t have dynamic workload scheduling, but I don’t actually need dynamic workload scheduling or all the configuration necessary to facilitate dynamic workload scheduling in my house, and Nix is much nicer to work with than Helm’s gotmpl templating. Unless you like this kind of stuff or want to get into Kubernetes, you probably want to avoid it for running a few things on one host.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Element/Matrix Official Docker Install Method?English
31·1 month agoHelm is what is used for real world software deployments. It has its problems but it’s better than Docker Compose.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•Is Home Assistant the recommended default for smart homes?English
18·2 months agoJust be careful with SD cards if you’re using SBCs. Home Assistant does a lot of writing and if your SD card can’t handle repeated writes you may suddenly lose everything. Keep backups to another device and have a replacement SD card ready if extended downtime is going to be a problem for you.
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•How many containers are you all running?English
4·2 months agoI have 1 podman container on NixOS because some obscure software has a packaging problem with ffmpeg and the NixOS maintainers removed it.
docker: command not found
i_am_not_a_robot@discuss.tchncs.deto
Selfhosted@lemmy.world•What's the laziest way to create a website that looks really nice and is maintainable?English
4·2 months agoQuarto and Docusaurus are for documentation. You may be looking for a more general static site generator like 11ty.
No. For most routers, this provides no additional protection to the router. Your router should not be accepting connections from the WAN side that would be blocked by the firewall, but consumer routers almost always initiate connections to the WAN side, indistinguishable from normal client traffic to your firewall, and accept connections from the LAN side, invisible to your firewall. If the firewall blocks all incoming requests, it would create problems for UPNP, effectively giving you CGNAT, even if the firewall does not perform address translation.