Ubuntu 26.04 Delivers Great Performance Improvements For AMD Strix Point, Especially For RDNA 3.5 Graphics
As part of my ongoing testing around the upcoming Ubuntu 26.04 release I have been running a lot of benchmarks. After recently showing some nice performance gains for AMD Ryzen AI Max “Strix Halo” with Ubuntu 26.04, several Phoronix readers inquired about any performance uplift from the more modest but still powerful Strix Point laptops like the popular Ryzen AI 9 HX 370 SKU. Here are benchmarks showing the … ⌘ Read more
@movq@www.uninformativ.de it went over my head, sorry. Someone wanted you to vet their instruction files, correct? People writing them should know what they are doing, otherwise they should engage with LLMs like that at all (unless it is a hobby, outside the enterprise).
Nginx 1.30 Released With Multipath TCP, ECH & More
Nginx 1.30 was just released as the newest stable version of this popular web server. Nginx 1.30 incorporates all of the changes from the Nginx 1.29.x mainline branch to provide a lot of new functionality like Multipath TCP (MPTCP)… ⌘ Read more
@itsericwoodward@itsericwoodward.com at least that encouraging in a gentle way. Imagine how do I feel waking up in the middle of the night to take a piss, and within seconds get a message from my watch “It is time to stand up!”. Like, wth?! 😅
jemalloc 5.3.1 Released With Many Improvements After Nearly Four Year Hiatus
Jemalloc 5.3.1 was released today with next month marking four years since the prior release, jemalloc 5.3.0. While the version bump may not seem like much, jemalloc 5.3.1 comes with many performance improvements, new features, and other enhancements… ⌘ Read more
Stacked massage therapist likes happy endings ⌘ Read more
Another AI rant:
One of the “key features” of LLMs is that you can use “natural language”, because that is supposed to be easier than having to learn a programming language. So, when someone says to me, “I automated this process using AI!”, what they mean is: They have written a very, very large Markdown document. In this document, they list what the AI is supposed to do.
In prose.
This is a complete disaster.
Programming and programming languages have one crucial property: They follow a well-defined structure and every word has a well-defined meaning. That is absolutely brilliant, because I can read this and I can follow the program in my head. I can build a mental model. I can debug this, down to the precise instructions that the CPU executes. This all follows well-defined patterns that you can reason about.
But with these Markdown files, I am completely lost. We lose all these important properties! No debugging, no reasoning about program flow, nothing. It’s all gone. It’s a magic black box now, literally randomized, that may or may not do what you wanted, in some order.
People now throw these Markdown files at me … and … am I supposed to read this? Why? It’s completely random and fuzzy.
Sadly, these AI tools are good enough to be able to mostly grasp the authors intentions. Hence people don’t see the harm they cause, because “it works”.
We already have a ton of automations like this at work: Tickets get piped through an LLM and these Markdown files / prompts determine what will happen with the ticket, and maybe they trigger additional actions as well, like account creation or granting permissions. All based on fuzzy natural language – that no two humans will ever properly agree on.
Jesus Christ, we’re now INTENTIONALLY bringing the ambiguity of legal texts and lawyers into programming.
Using natural language is NOT easier than using a programming language. It is HARDER. Have you people never read a legal contract? And that stuff can STILL be debated in a court room.
I can’t begin to comprehend why we, tech folks, push this so hard. What is wrong with you? Or me?
(And, once again, we’re ignoring other factors here. LLMs use a ton of energy and ressources, that we don’t have to spare. It’s expensive as fuck. It doesn’t even run locally on our servers, meaning we give all these credentials and permissions to some US company. It’s insane.)
‘Super Mario Galaxy Movie’ and ‘Project Hail Mary’ Combine for Best Box Office in 7 Years
The Super Mario Galaxy Movie “is officially the year’s highest-grossing film to date with $629 million at the global box office,” reports Variety — and it will likely earn over $1 billion. Project Hail Mary now becomes the year’s second highest-grossing movie, with four-week ticket sales over … ⌘ Read more
Greg Kroah-Hartman Tests New ‘Clanker T1000’ Fuzzing Tool for Linux Patches
The word clanker — a disparaging term for AI and robots — “has made its way into the Linux kernel,” reports the blog It’s FOSS “thanks to Greg Kroah-Hartman, the Linux stable kernel maintainer and the closest thing the project has to a second-in-command.”
He’s been quietly running what looks like an AI-assisted fuzzing tool o … ⌘ Read more
@lyse@lyse.isobeef.org I’m afraid my ability to share photos like you do aren’t quite up to scratch 😅
@lyse@lyse.isobeef.org Clearing legally? You must have an amazingly efficient legal team – there’s like 10 new tools every week. 🤣
The AI RAM Shortage is Also Driving Up SSD Prices
In 2024 the Verge’s consumer tech reporter paid $173 for a WD Black SN850X 2TB SSD. But “now that same SSD costs $649…”
“Like with RAM, demand from the AI industry is swallowing up supply from a limited number of manufacturers, leading to a drastic reduction in the inventory that’s available to consumers” — and skyrocketing prices:
The price on my WD Black drive nearl … ⌘ Read more
@lyse@lyse.isobeef.org AI result ahead, feel free to ignore.
I “asked” the AI at work the same question out of morbid curiousity. It “said” that SQLite converts that integer to floating point internally on overflows and then, when converting back, the x86 instruction cvttsd2si will turn it into 0x8000000000000000, even if the actual floating point value is outside of that range. So, yes, it allegedly actually saturates, as a side effect of the type conversion.
I couldn’t find anything about that automatic conversion in SQLite’s manual, yet, but an experiment looks like it might be true:
sqlite> select typeof(1 << 63);
╭─────────────────╮
│ typeof(1 << 63) │
╞═════════════════╡
│ integer │
╰─────────────────╯
sqlite> select typeof((1 << 63) - 1);
╭──────────────────────╮
│ typeof((1 << 63) ... │
╞══════════════════════╡
│ real │
╰──────────────────────╯
As for cvttsd2si, this source confirms the handling of 0x8000000000000000 on range errors: https://www.felixcloutier.com/x86/cvttsd2si
The following C program also confirms it (run through gdb to see cvttsd2si in action):
<a href="https://we.loveprivacy.club/search?q=%23include">#include</a> <stdint.h>
<a href="https://we.loveprivacy.club/search?q=%23include">#include</a> <stdio.h>
int
main()
{
int64_t i;
double d;
/* -3000 instead of -1, because `double` can’t represent a
* difference of -1 at this scale. */
d = -9223372036854775808.0 - 3000;
i = d;
printf("%lf, 0x%lx, %ld\n", d, i, i);
return 0;
}
(Remark about AI usage: Fine, I got an answer and maybe it’s even correct. But doing this completely ruined it for me. It would have been much more satisfying to figure this out myself. I actually suspected some floating point stuff going on here, but instead of verifying this myself I reached for the unethical tool and denied myself a little bit of fun at the weekend. Won’t do that again.)
CPUID Site Hijacked To Serve Malware Instead of HWMonitor Downloads
Attackers briefly hijacked part of CPUID’s backend and swapped legitimate download links on its site with malware-laced ones. “The issue hit tools like HWMonitor and CPU-Z, with users on Reddit and elsewhere starting to notice something wasn’t right when installers tripped antivirus alerts or showed up under odd names,” reports The Register. F … ⌘ Read more
Lovely pics, mate! Looks like the weather cooperated nicely too! 😍 Take more, share, but, most importantly, continue having fun! 🙏🏻
Thank you, @prologic@twtxt.net, that looks really stunning! Seeing forests reaching beyond the horizon always amazes me. This does not exist around here. I also like those balancing rocks.
Keep ‘em coming. Looking forward to see more. But most importantly, enjoy your trip, mate! :-)
FEX 2604 Released With Better Memory Savings For Running x86_64 Apps/Games On ARM64
Out today is the newest monthly update to FEX for this emulator for running Linux x86/x86_64 binaries on AArch64 (ARM64) Linux systems, including games and the likes of Steam Play with Windows games. This Valve-sponsored project that is quite important for the upcoming Steam Frame has rolled out more performance improvements, memory savings, and other improvements with FEX 2604… ⌘ Read more
@lyse@lyse.isobeef.org Yeah, I really don’t know anymore. 😅
By the way, why do so many of them wear glasses? As a kid, I’ve been told that people with glasses can’t become astronauts. So I gave up my dreams. Now it looks like that was a lie? ☹️
Everything changes, right? I know we sound like curmudgeons, and perhaps AI is the next step. We are living its early infancy, the struggles and dislikes, the errors and flaws, and generations after us will simply benefit from it, and see it as natural as my children see the Internet today (it isn’t natural to me, I was born way before it).
Or maybe AI isn’t the next step. Either way, whether we like it or not, there is truly absolutely nothing (or close to) we can do. Well, complain we can, of course. :-P
Planet Labs Tests AI-Powered Object Detection On Satellite
BrianFagioli writes: Artificial intelligence has now run directly on a satellite in orbit. A spacecraft about 500km above Earth captured an image of an airport and then immediately ran an onboard AI model to detect airplanes in the photo. Instead of acting like a simple camera in space that sends raw data back to Earth for later analysis, the satellite perfo … ⌘ Read more
AMD InterWave ISA Sound Card Driver Seeing New Linux Patches In 2026
For those that like to make remarks about AMD “fine wine” especially when it comes to open-source Linux drivers and/or nostalgic about feature work on really old hardware, to much amusement there are new patches today for the AMD InterWave ISA sound card from the 1990s… ⌘ Read more
AMD ISP4 Driver On Track To Be Merged For Linux 7.2
It looks like with the Linux 7.2 kernel later in the year the AMD ISP4 driver will finally be merged to mainline. This driver is needed for the web camera on the HP ZBook Ultra G1a Strix Halo laptop and other future AMD Ryzen laptops… ⌘ Read more
Teardown of Unreleased LG Rollable Shows Why Rollable Phones Aren’t a Thing
A teardown video of LG’s never-released Rollable phone helps explain why rollable phones never became a real product category: they were likely too expensive, fragile, and complicated to manufacture at scale.
“The complexity of the internals would have made the Rollable extremely expensive to manufacture, and it would have … ⌘ Read more
@lyse@lyse.isobeef.org easy come, easy go. They grow so fast! :-) Also, Azabache allows to be seeing when ready for it, you know, just like Gandalf “*a wizard is never late, nor is he early, he arrives precisely when he means to*”. :-D
@kiwu@twtxt.net meh, wish I could say I had a great day. What is worse, tomorrow is back at work again. There isn’t a single day I think: did we evolved, and when through all those troubles, to end up like this?!
Linux 7.1 To Expose AMD Zen 6’s AVX-512 BMM For Guest VMs
A small but important patch that looks like it will be merged for the upcoming Linux 7.1 kernel is for enumerating AVX-512 BMM support for KVM virtualized guests. AVX-512 BMM is one of the exciting ISA additions with next-gen AMD Zen 6 processors… ⌘ Read more
AWS Engineer Reports PostgreSQL Performance Halved By Linux 7.0, But A Fix May Not Be Easy
An Amazon/AWS engineer raised the alarms on Friday over the current Linux 7.0 development kernel leading to the throughput for the PostgreSQL database server being around half that of prior kernel versions. The culprit halving the PostgreSQL performance is known but a revert looks like it may not happen and currently suggesting that PostgreSQL may need to be adapted… ⌘ Read more
AWS Engineer Reports PostgreSQL Performance Halved By Linux 7.0, But A Fix May Not Be Easy
An Amazon/AWS engineer raised the alarms on Friday over the current Linux 7.0 development kernel leading to the throughput for the PostgreSQL database server being around half that of prior kernel versions. The culprit halving the PostgreSQL performance is known but a revert looks like it may not happen and currently suggesting that PostgreSQL may need to be adapted… ⌘ Read more
Colorado’s New Speed Camera System Makes Waze Nearly Useless
Colorado is rolling out an average-speed camera system that tracks vehicles across multiple points instead of catching them at a single camera, making it much harder for drivers to dodge tickets with apps like Waze and Radarbot. Motor1 reports: The state’s new automated vehicle identification systems (AVIS) use several cameras to calculate your average spe … ⌘ Read more
Thank you, @bender@twtxt.net!
My mate and I took advantage of the public holiday and went on a hike. At first, the 14°C and only slight wind weren’t all that terrible, especially since there were only a few clouds. Later, the sun got covered more and more and also the wind picked up. I was really glad that I brought my jacket along. In the beginning I was contemplating about leaving it at home, but then still wore it and stripped it a few minutes into the trip. It was very windy at the summit, so for our second lunch break wearing it was an absolute must. It was a very beautiful trip and I enjoyed my mate’s company.
Finally, Azabache showed up, too. I didn’t bother videoing with all the wind. Didn’t feel like fixing the audio. Maybe tomorrow.
AMDGPU Driver Ready To Be The Default For Aging Kaveri / Kabini / Mullins APUs
With Linux 6.19 AMD GCN 1.1 and GCN 1.1 dGPUs now default to the AMDGPU driver rather than the legacy Radeon Linux driver. For these Southern Islands and Sea Islands graphics cards it means much better performance, RADV Vulkan support out-of-the-box, and other improved functionality in using this modern AMDGPU kernel graphics driver on Linux. One of the exceptions has been the GCN 1.1 APUs like Kaveri still defaulting to the older R … ⌘ Read more
@lyse@lyse.isobeef.org Indeed. Very unpopular, though. I’ve long given up that fight at work.
In reality, there are too few real incidents. It doesn’t hurt enough. It’s always: “Something could happen!” But we’ve never been hit big time by an attack like this … so I just look like a paranoid idiot.
@movq@www.uninformativ.de with the current regime, everything is, to put it politely, rather odd, and in disarray. They have yesterday’s window, otherwise the next one was on the 12 of April, or something like that. We knew it was going up for a few days, but we are used to that kind of thing, so it is not that super exciting any more. LOL.
Yeah, I saw it in person.
OnlyOffice Suspends Nextcloud Partnership For Forking Its Project Without Approval
darwinmac writes: OnlyOffice has suspended its partnership with Nextcloud after the latter forked its editors into a new project called Euro-Office, according to a report from Neowin. The move comes just days after Nextcloud and partners like IONOS announced the fork as part of a broader push for European digit … ⌘ Read more
SpaceX Starlink Satellite Suffers Mysterious ‘Anomaly’ In Orbit
A Starlink satellite broke apart in orbit after suffering an unexplained “anomaly,” apparently due to an “internal energetic source” rather than a collision. “The incident appears to have created some debris, with fragments likely to fall to Earth over the next few weeks,” reports Scientific American. From the report: The satellite lost communication … ⌘ Read more
I made the classic mistake. I thought I was smarter than this. I could try to scrub this from my repository, but that seems like more trouble than it’s worth, so here it is for your enjoyment: https://fossil.falsifian.org/misc/info/f6fa59e27781ce75f4cbaf700997ffffab41ad9d2e97b4aa3e360400ead3532c
@lyse@lyse.isobeef.org Oops, I guess the new text is a bit obscure. If you follow the link, the text is a bit more explicit, but you still need to know what a lexical scope is. Anyway, this is part of Perl moving very carefully toward being UTF-8 by default while also not breaking code written in the 90s. If you name a recent version like “use v5.42;” then Perl stops letting you use non-ASCII characters unless you also say “use utf8;”. The “lexically” part basically means that strictness continues until the next “}”, or the end of the program. That lets you fix up old code one block at a time, if you aren’t ready to apply the new strictness to a whole file at once.
Gaim 3 Is In Development For Restoring The Original Gaim Instant Messaging App In GTK4
Gaim! Any desktop Linux users from 20+ years ago likely remember the Gaim instant messaging app that was commonly shipped by desktop Linux distributions for interfacing with different instant messaging platforms like AIM, MSN, ICQ, etc. About twenty years ago Gaim was renamed to Pidgin though due to the AOL Instant Messenger trademark. But with the AIM trademark since expired and wanting to take a differing approach from the lates … ⌘ Read more
AI Data Centers Can Warm Surrounding Areas By Up To 9.1C
An anonymous reader quotes a report from New Scientist: Andrea Marinoni at the University of Cambridge, UK, and his colleagues saw that the amount of energy needed to run a data centre had been steadily increasing of late and was likely to “explode” in the coming years, so wanted to quantify the impact. The researchers took satellite measurements of land su … ⌘ Read more
Microsoft Copilot Is Now Injecting Ads Into Pull Requests On GitHub
Microsoft Copilot is reportedly injecting promotional “tips” into GitHub pull requests, with Neowin claiming more than 1.5 million PRs have been affected by messages advertising integrations like Raycast, Slack, Teams, and various IDEs. From the report: According to Melbourne-based software developer Zach Manson, a team member used the AI to fix … ⌘ Read more
Tech CEOs Suddenly Love Blaming AI For Mass Job Cuts
An anonymous reader quotes a report from the BBC: Sweeping job cuts at Big Tech companies have become an annual tradition. How executives explain those decisions, however, has changed. Out are buzzwords like efficiency, over-hiring, and too many management layers. Today, all explanations stem from artificial intelligence (AI). In recent weeks, giants including Google, Amazon, … ⌘ Read more
Open-Source RadeonSI+Rusticl Nearing Formal OpenCL 3.0 Conformance
The open-source RadeonSI Gallium3D driver with Rusticl for modern Rust-based OpenCL is nearing formal OpenCL 3.0 conformance with all necessary OpenCL test cases passing. Making this all the more interesting is that this is the first modern AMD graphics hardware in a decade likely to see formal recognition for OpenCL conformance with AMD having not submitted any of their own OpenCL conformance results since 2015… ⌘ Read more
Parents like me are cheering these Facebook verdicts. But it’s not all good news
If these landmark court decisions against Meta and YouTube result in a dilution of free speech, the so-called victory will be hollow indeed. ⌘ Read more
MacOS 26.4 Adds Warnings For ClickFix Attacks to Its Terminal App
An anonymous Slashdot reader writes: ClickFix attacks are ramping up. These attacks have users copy and paste a string to something that can execute a command line — like the Windows Run dialog, or a shell prompt.
But MacRumors reports that macOS 26.4 Tahoe (updated earlier this week) introduces a new feature to its Terminal app where it will … ⌘ Read more
AV1’s Open, Royalty-Free Promise In Question As Dolby Sues Snapchat Over Codec
An anonymous reader quotes a report from Ars Technica: AOMedia Video 1 (AV1) was invented by a group of technology companies to be an open, royalty-free alternative to other video codecs, like HEVC/H.265. But a lawsuit that Dolby Laboratories Inc. filed this week against Snap Inc. calls all that into question with claims … ⌘ Read more
Mozilla and Mila Team Up On Open Source AI Push
BrianFagioli writes: Mozilla just teamed up with Mila, the Quebec Artificial Intelligence Institute, to push open source AI – and it feels like a direct response to Big Tech tightening its grip on the space. Instead of relying on closed models, the goal here is to build “sovereign AI” that’s more transparent, privacy-focused, and actually under the control of developers and even … ⌘ Read more
Intel Xe Driver In Linux 7.1 Enabling THP For Device Pages As A Big SVM Win
Sent out today was a new batch of “drm-xe-next” material of Intel Xe kernel graphics driver improvements ready for the upcoming Linux 7.1 kernel cycle. Standing out in this pull is enabling Transparent Hugepages (THP) support for drm_pagemap as a big win for those making use of Shared Virtual Memory (SVM) for GPU compute and the like… ⌘ Read more
Reddit Takes On Bots With ‘Human Verification’ Requirements
Reddit is rolling out human-verification checks for accounts that show signs of bot-like behavior, while also labeling approved automated accounts that provide useful services. The social media company stressed that these checks will only happen if something appears “fishy,” and that it is “not conducting sitewide human verification.” TechCrunch reports: To i … ⌘ Read more
This one comes from this years (now scrapped) April 1st DLSS 5 gag, that was originally supposed to use Microsofts AI - in ways similar to the Nvidia technology, which produced interesting, overly detailed results. I wanted to see if I could beat the AI thing at drawing something like that myself and many redraws later, this is my best result.

XMMS Codebase Brought Back To Life By AI With GTK4 + GStreamer/PipeWire Port
Longtime Linux desktop users will likely remember the glorious days of the XMMS music player inspired by Winamp. It’s been about two decades since the last official release but thanks to AI there is now a modern port of the codebase to GTK4 and GStreamer/PipeWire… ⌘ Read more