[-] jlh@lemmy.jlh.name 1 points 2 minutes ago

Yeah, I don't mean that this election was rigged or anything, I just mean that the US presidential election isn't really the combined will of every single American. Other countries have more democratic systems. Even the house races are more democratic.

[-] jlh@lemmy.jlh.name 1 points 8 hours ago

Prophetic because it calls people stupid after an undemocratic election?

[-] jlh@lemmy.jlh.name 18 points 8 hours ago

implying that an election to choose a single representative for 300 million people with a 2-horse race is particularly democratic

[-] jlh@lemmy.jlh.name 15 points 8 hours ago

excuse me, that is Biden with sunglasses lmao

[-] jlh@lemmy.jlh.name 1 points 15 hours ago* (last edited 14 hours ago)

It's not confirmed publicly, but Sweden likely ended their nuclear weapons program in the 60s or 70s after pressure from the US. They finally decommissioned Ågestaverket in 2020, though they kept the facility open until then, presumably as a fallback option. Sweden has uranium deposits, so it would have been possible to build nuclear weapons during the Cold War if needed.

Now with NATO membership, they have instead imported American nuclear weapons to keep on Swedish soil. Not sure what will happen with their Swedish-American SOFA with Trump, it's possible that Sweden will fall back on British and French nukes.

But yeah, I mentioned Ågestaverket, since its an example of a civilian reactor that was used for nuclear weapons, something that Ukraine could potentially do as well if the decision came to proliferate.

[-] jlh@lemmy.jlh.name 22 points 15 hours ago

Russia is our enemy and Musk is committing espionage/treason by discussing American foreign policy with Russian officials, especially as someone with clearance.

[-] jlh@lemmy.jlh.name 15 points 21 hours ago

game mechanics aren't patentable?

[-] jlh@lemmy.jlh.name 17 points 23 hours ago

boys and men / girls and women sounds right to me

[-] jlh@lemmy.jlh.name 2 points 1 day ago

Good detail in that article. With regard to plutonium, Sweden had a plutonium breeding reactor disguised as a civilian power plant called Ågestaverket. I think that Ukraine would be able to use an existing reactor for this, or retrofit it. But yeah, any Ukrainian nuclear program would obviously become a huge target by the Russian military, and potentially other nuclear states. Ideally these installations would be underground like Ågestaverket was. Even more ideal would be military guarantees from NATO.

[-] jlh@lemmy.jlh.name 9 points 1 day ago
[-] jlh@lemmy.jlh.name 30 points 1 day ago* (last edited 1 day ago)

It would take them only a few months. Ukraine is filled with Soviet nuclear technology and Soviet nuclear engineers. They have nuclear reactors. Ukraine is richer than North Korea, and they have their own uranium mines. North Korea spent a couple billion on their nukes, but Ukraine's military budget is $82B a year, so they could easily surpass North Korea.

Geopolitics experts agree that Ukraine could build a nuke if they wanted to. The issue is that the west definitely would not want to see a world where countries threatened by Russia turn to nuclear proliferation.

Here's a video from a Danish military analyst talking about the decisions that have to be made on how to secure Ukraine after the war:

https://youtu.be/aTiunvocl5c

It's important to note, Ukraine is willing to freeze the front line now in return for security guarantees. But If the US or the EU don't step up to end the war soon, Ukrainian nuclear engineers will.

[-] jlh@lemmy.jlh.name 27 points 1 day ago
64
submitted 1 month ago by jlh@lemmy.jlh.name to c/world@lemmy.world

@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

394
submitted 2 months ago by jlh@lemmy.jlh.name to c/technology@lemmy.world
169
submitted 3 months ago by jlh@lemmy.jlh.name to c/technology@lemmy.world

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.'"

14
28

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.

50
submitted 11 months ago* (last edited 11 months ago) by jlh@lemmy.jlh.name to c/programming@programming.dev

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 1 year ago by jlh@lemmy.jlh.name to c/europe@feddit.de

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

joined 1 year ago