i_am_not_a_robot

@i_am_not_a_robot@discuss.tchncs.de

This profile is from a federated server and may be incomplete. Browse more on the original instance.

i_am_not_a_robot,

Even for x86 it depends. Often they’re built like Android devices and they have weird hardware that isn’t properly supported by kernel.org Linux. My prematurely end-of-life Chromebook has problems with sound and thermals and longevity when running regular Linux. I replaced it with a laptop that has official Linux support. The build quality to price value is worse, but it’s not hobbled by inconsistent, half-hearted hardware support over an artificially limited lifetime. Even before it was end-of-life, my premium Google Chromebook had to wait to receive software features that were available on newer Chromebooks because the drivers weren’t compatible with new kernel versions.

i_am_not_a_robot,

Obviously the solution is to buy two apple Watches so you can have one for while the other is charging, the same way you watch movies on their VR headset.

i_am_not_a_robot,

You’re better off heating the inside of the house with gas that heating the outside of the house with gas and using the heat pump to transfer that heat into the house. Replacing the gas line with lines for the heat pump would be best.

Certbot is great. Let's Encrypt is great. (lemmy.world)

I’ve been downloading SSL certificates from my domain provider, using cat to join them together to make the fullchain.pem, uploading them to the server, and myself adding a 90 day calendar reminder. Every time I did this I’d think I should find out about this Certbot thing....

i_am_not_a_robot,

Downloading certificates from your domain provider is often a security problem. Only you are supposed to know your private keys.

i_am_not_a_robot,

Are you binding services to specific addresses? Normally if you bind your service to :: it will receive IPv4 connections using ::ffff:x.x.x.x addresses.

i_am_not_a_robot,

Trying IPv6 and failing is normal. Modern software that supports both is supposed to try both, but sometimes people mess it up…

In general, if you write code that connects to another computer over the network, you want to be connecting to a string, not an IP address. If you write something like connect(“lemmy.world”, 443), it should connect over either IPv6 or IPv4. However, if you write something like connect(getHostByName(“lemmy.world”), 443), that usually will return a single IP address and if that address doesn’t work then the connection fails.

The Java documentation says it should just work “if everything has been done appropriately.” docs.oracle.com/javase/8/docs/…/ipv6_guide/

i_am_not_a_robot,

What a non-story. The username, profile picture, posts from profile, and post interactions are all required for displaying the content that the Thread’s user has subscribed to. The IP address is required for connecting to the service to retrieve that content. Facebook doesn’t get any more access to your data than necessary nor do they get any more access to your data than anybody else. This is just fear mongering.

i_am_not_a_robot,

Tax increases are passed on to the people. Tax cuts are passed on to the wealthy. I’m American so I should know.

i_am_not_a_robot,

Did they also revert the change where most hostile NPCs would automatically flag you on agro? A long time ago you could run through towns without being flagged, and NPCs could kill themselves by attacking players that had some sort of damage reflection without the player becoming flagged.

i_am_not_a_robot,

First, it’s not possible to use “pure docker” on Windows. Docker is for running additional user mode environments under the same kernel. You can’t run Linux applications under the Windows kernel without WSL1, and WSL1’s Linux implementation does not support the features required for Docker. This is also possible in limited cases with Windows Server, but because of differences in the way Windows works you almost always end up running a second kernel.

WSL2 can be used to run Docker, and in fact that’s how Docker Desktop works since years ago. When you start Docker Desktop it starts a WSL2 distribution under which the containers run. Running Docker from the command line only will not positively change the performance of your containers.

Running other virtualization software, especially VirtualBox, to start a separate Linux VM and running your containers in there is going to be more complicated and give worse performance unless you disable all virtualization-based features of Windows, such as WSL2 and security isolation.

The solution to your memory problem is most likely one of the following:

  1. Don’t disable the pagefile. Windows uses a weird memory model where all virtual memory must be backed by physical memory. Certain software will allocate virtual memory without using it, and Windows will require that the sum of the physical memory size and the page file size be adequate to use all of that virtual memory. Disabling the pagefile or limiting it to small sizes because you “have enough RAM” will cause out of memory errors while you still have plenty of RAM available.
  2. Reduce the amount of memory that Docker is allowed to use to a level that your Windows software can tolerate. You may need to switch Docker Desktop to Hyper-V mode for this option to be available, which isn’t an option if you’re on Windows Home, and this may reduce compatibility.
  3. After stopping your containers, run echo 1 > /proc/sys/vm/compact_memory at a WSL2 prompt or wsl -u root – bash -c ‘echo 1 > /proc/sys/vm/compact_memory’ from a Windows prompt. See Memory Reclaim in the Windows Subsystem for Linux 2 for details about what this does.
i_am_not_a_robot,

World of War Warcraft is also unplayable at noon on Tuesdays. It’s an uncommon enough time that the servers might be down for maintenance. They could do a better job explaining that if that’s the case, but it’s early access.

"Automated Racism": China's Hikvision still sells Uyghur-tracking surveillance cameras, powered by America's Nvidia (ipvm.com)

Despite assurances for years that Hikvision has stopped minority analytics, just 7 months ago local PRC authorities awarded a $6 million contract that explicitly requires Hikvision analytics to identify Uyghurs (维族), powered by NVIDIA hardware, security specialist IPVM says.

i_am_not_a_robot,

It’s a Chinese name for a Chinese company.

i_am_not_a_robot,

I have Comcast now and it’s okay in my area (no data cap scam in my area), but probably only because Verizon is available across the street. I had Verizon before I moved and it was faster but they completely forgot that they needed to implement IPv6.

i_am_not_a_robot,

My ISP gave me an e-mail address and it’s all spam all the time. The server-side spam filter is useless.

Microsoft Teams is now part of the Xbox Game Bar so you can stream gameplay to friends - The Verge (www.theverge.com)

Microsoft has integrated Microsoft Teams with the Xbox Game Bar, allowing users to stream their gameplay in real-time to friends over Teams video calls. Up to 20 people can join a call to watch and chat together while gaming. The viewer can see both the game and overlaid video of friends. However, streaming performance is...

i_am_not_a_robot,

Microsoft has a real branding problem with messaging services. First they had Skype and Skype for Business and now they have Teams and… Teams. They’re completely different products and don’t interoperate. This is almost certainly for the home version of Teams.

It’s not even a good name. Who thinks of their friends and family as teams?

i_am_not_a_robot,

If you’re in an Office you might be using a completely different product with the same name from the same company with a similar logo.

i_am_not_a_robot,

It’s the number one change in the patch notes.

USB-C confirmed for the iPhone 15 in new leaked images - Macworld (www.macworld.com)

We’ve known that the iPhone is switching to USB-C for a while now, but there was always a possibility that Apple would stick with Lightning for one more year. Based on the latest leaked images, however, Apple is all-in on USB-C for the iPhone 15 and iPhone 15 Pro models, with USB-C parts for the iPhone 15, iPhone 15 Plus, and...

i_am_not_a_robot,

It’s not so simple. If my parents stopped buying iPhones, they would need to replace their watches, their TV streaming device, their car chargers, and all their apps. You can’t expect normal people to collectively switch from an ecosystem designed around lock-in.

i_am_not_a_robot,

If it’s reasonably private and a third-party morality police isn’t deciding what you should be allowed to spend your money on, it’d be a big improvement over the US system.

i_am_not_a_robot,

Which is really sad because Safari used to be one of the best browsers over a decade ago now.

i_am_not_a_robot,

Surely the drive motors use far more energy than the computer, and the computer doesn’t need to be fully powered on all the time.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • provamag3
  • InstantRegret
  • mdbf
  • ethstaker
  • magazineikmin
  • GTA5RPClips
  • rosin
  • thenastyranch
  • Youngstown
  • osvaldo12
  • slotface
  • khanakhh
  • kavyap
  • DreamBathrooms
  • JUstTest
  • Durango
  • everett
  • cisconetworking
  • Leos
  • normalnudes
  • cubers
  • modclub
  • ngwrru68w68
  • tacticalgear
  • megavids
  • anitta
  • tester
  • lostlight
  • All magazines