[-] [email protected] 26 points 1 day ago

The only mayor candidate capable of standing up to Trump

[-] [email protected] 261 points 5 months ago

Insane that Github blocked their entire development without discussing it with them though. Ban the contributor, not the entire open source project.

[-] [email protected] 154 points 7 months ago

The correct name is concentration camp. it is very important that people understand that this is a concentration camp.

The term "concentration camp" and "internment camp" are used to refer to a variety of systems that greatly differ in their severity, mortality rate, and architecture; their defining characteristic is that inmates are held outside the rule of law.[2] Extermination camps or death camps, whose primary purpose is killing, are also imprecisely referred to as "concentration camps".[3]

https://en.m.wikipedia.org/wiki/Concentration_camp

the new death camps outside of Germany's prewar borders could be kept secret from the German civil populace.[40]

https://en.m.wikipedia.org/wiki/Extermination_camp

The fact that this camp is being set up outside the jurisdiction of the rule of law makes it a concentration camp and makes it 100x worse than any other immigration prison

[-] [email protected] 215 points 8 months ago

obligatory technology connections comment

[-] [email protected] 139 points 9 months ago* (last edited 9 months ago)

These are huge upgrades over the old trucks. The proportions are sized to fit the features they need, like fast, ergonomic access to the back, and better visibility than any other car on the road.

Good on them for designing a good vehicle instead of letting some sports car fanatic dictate a concept car idea.

Taking courage in your design will win over the car fanatics in 5 or so years when the next design trend starts, and the reliability and function will mean that these will keep looking good 30 years from now.

[-] [email protected] 243 points 10 months ago* (last edited 10 months ago)

Isn't this espionage/treason? He has security clearance, he should not have contact with foreign government officials or sabotage our allies.

64
submitted 11 months ago by [email protected] to c/[email protected]

@antonioguterres on twitter:

I condemn the broadening of the Middle East conflict with escalation after escalation.

This must stop.

We absolutely need a ceasefire.

7:26 PM · Oct 1, 2024

[-] [email protected] 175 points 11 months ago

Plugging into a random usb port is bad security

[-] [email protected] 142 points 1 year ago

This is worse than you think. Most countries don't criminalize use, only possession. Criminalizing use like Sweden does likely means that even having cannabis in your system is illegal and could lead to fines, criminal record, and jail time. It's insanely backwards.

395
submitted 1 year ago by [email protected] to c/[email protected]
[-] [email protected] 189 points 1 year ago

How about they don't? Open-source Linux, with contributions from gaming companies like valve, will always better for the consumer than a proprietary OS like Windows, that is designed by committee to show the most ads.

Linux is the new gaming os, Microsoft had too many Windows 8 moments.

[-] [email protected] 180 points 1 year ago

Exactly this. You can claim that their scraping is abusing your servers, but the moment you claim copyright for the content of the site, then you give up your Section 230 rights.

168
submitted 1 year ago by [email protected] to c/[email protected]

https://web.archive.org/web/20240719155854/https://www.wired.com/story/crowdstrike-outage-update-windows/

"CrowdStrike is far from the only security firm to trigger Windows crashes with a driver update. Updates to Kaspersky and even Windows’ own built-in antivirus software Windows Defender have caused similar Blue Screen of Death crashes in years past."

"'People may now demand changes in this operating model,' says Jake Williams, vice president of research and development at the cybersecurity consultancy Hunter Strategy. 'For better or worse, CrowdStrike has just shown why pushing updates without IT intervention is unsustainable.'"

[-] [email protected] 212 points 1 year ago* (last edited 1 year ago)

This is less of a "iPhones are more secure" thing and more "Google play is banned in China" thing.

Apple willingly extinguishes freedom of speech to protect app store profits:

https://www.theverge.com/2023/10/3/23901205/apple-app-store-government-license-china

https://edition.cnn.com/2024/04/19/tech/china-apple-whatspp-threads-removal-hnk-intl/index.html

[-] [email protected] 148 points 2 years ago

This is really frustrating. This is the only thing holding Linux gaming back for me, as someone who games with a AMD GPU and an OLED TV. On Windows 4k120 works fine, but on Linux I can only get 4k60. I've been trying to use an adapter, but it crashes a lot.

AMD seemed to be really trying to bring this feature to Linux, too. Really tragic that they were trying to support us, and some anti-open source goons shot them down.

14
submitted 2 years ago by [email protected] to c/[email protected]
28
submitted 2 years ago by [email protected] to c/[email protected]

Seems like a really serious vulnerability, any container attack or malicious image could take over a container host if there's no hardening on the containers.

52
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]

I wanted to share an observation I've seen on the way the latest computer systems work. I swear this isn't an AI hype train post 😅

I'm seeing more and more computer systems these days use usage data or internal metrics to be able to automatically adapt how they run, and I get the feeling that this is a sort of new computing paradigm that has been enabled by the increased modularity of modern computer systems.

First off, I would classify us being in a sort of "second-generation" of computing. The first computers in the 80s and 90s were fairly basic, user programs were often written in C/Assembly, and often ran directly in ring 0 of CPUs. Leading up to the year 2000, there were a lot of advancements and technology adoption in creating more modular computers. Stuff like microkernels, MMUs, higher-level languages with memory management runtimes, and the rise of modular programming in languages like Java and Python. This allowed computer systems to become much more advanced, as the new abstractions available allowed computer programs to reuse code and be a lot more ambitious. We are well into this era now, with VMs and Docker containers taking over computer infrastructure, and modern programming depending on software packages, like you see with NPM and Cargo.

So we're still in this "modularity" era of computing, where you can reuse code and even have microservices sharing data with each other, but often the amount of data individual computer systems have access to is relatively limited.

More recently, I think we're seeing the beginning of "data-driven" computing, which uses observability and control loops to run better and self-manage.

I see a lot of recent examples of this:

  • Service orchestrators like Linux-systemd and Kubernetes that monitor the status and performance of services they own, and use that data for self-healing and to optimize how and where those services run.
  • Centralized data collection systems for microservices, which often include automated alerts and control loops. You see a lot of new systems like this, including Splunk, OpenTelemetry, and Pyroscope, as well as internal data collection systems in all of the big cloud vendors. These systems are all trying to centralize as much data as possible about how services run, not just including logs and metrics, but also more low-level data like execution-traces and CPU/RAM profiling data.
  • Hardware metrics in a lot of modern hardware. Before 2010, you were lucky if your hardware reported clock speeds and temperature for hardware components. Nowadays, it seems like hardware components are overflowing with data. Every CPU core now not only reports temperature, but also power usage. You see similar things on GPUs too, and tools like nvitop are critical for modern GPGPU operations. Nowadays, even individual RAM DIMMs report temperature data. The most impressive thing is that now CPUs even use their own internal metrics, like temperature, silicon quality, and power usage, in order to run more efficiently, like you see with AMD's CPPC system.
  • Of source, I said this wasn't an AI hype post, but I think the use of neural networks to enhance user interfaces is definitely a part of this. The way that social media uses neural networks to change what is shown to the user, the upcoming "AI search" in Windows, and the way that all this usage data is fed back into neural networks makes me think that even user-facing computer systems will start to adapt to changing conditions using data science.

I have been kind of thinking about this "trend" for a while, but this announcement that ACPI is now adding hardware health telemetry inspired me to finally write up a bit of a description of this idea.

What do people think? Have other people seen the trend for self-adapting systems like this? Is this an oversimplification on computer engineering?

223
submitted 2 years ago by [email protected] to c/[email protected]

Awful to see our personal privacy and social lives being ransomed like this. €10 seems like a price gouge for a social media site, and I'm even seeing a price tag of 150SEK (~€15) In Sweden.

view more: next ›

jlh

0 post score
0 comment score
joined 2 years ago