@movq@www.uninformativ.de https://movq.de/blog/postings/2026-08-05/0/POSTING-en.html Very interesting! I basically never analyze binary files, but this were some great thoughts on that subject. I hope to remember them when I find myself in the situation to look at binaries more closely.
@movq@www.uninformativ.de Regarding https://movq.de/blog/postings/2026-08-16/0/POSTING-en.html, how often do you edit the first commit? A good mate does the same for at least a whole decade, probably more. I never found myself in this situation. Even though I mess with commits on a daily basis. Just never the first one so far. 8-)
KMSCON 10.0.2 Brings asciicast Playback Support, Bug Fixes
KMSCON 10.0.2 debuted today as the latest update to this leading user-space terminal emulator for Linux systems. KMSCON is built around Linux’s KMS/DRM interfaces and the most viable alternative to date for in-kernel VTs… ⌘ Read more
KDE Software Now Has Stable Btrfs Snapshot Integration With KIO-Snapshot 1.0
With today’s release of KIO-Snapshot, KDE software now has stable integration of Btrfs file-system snapshots… ⌘ Read more
PHP 7.4 To PHP 8.6 Benchmarks, PHP 8.6 JIT Performance
A Phoronix Premium supporter recently relayed a request to see some fresh PHP performance benchmarks. So here are some fresh numbers of PHP 7.4 through the latest PHP 8.5 code plus the current Git state of PHP 8.6 ahead of the official PHP 8.6.0 release later in the year. With PHP 8.6 is also a fresh look at the JIT performance enabled too… ⌘ Read more
KTransformers 0.7 Expands AVX-512 Support To Benefit AMD EPYC Servers
KTransformers as the framework for heterogeneous LLM inference and fine-tune optimizations is out today with its v0.7 feature release… ⌘ Read more
RustConn 0.20 Continues Further Polishing This GTK4/libadwaita-Based Connection Manager
RustConn has been in development for a while now as a modern GTK4 connection manager supporting a variety of protocols like SSH, RDP, VNC, Telnet, and more. RustConn 0.20 was released this week as the latest major step forward to this Rust-based connection manager leveraging the GTK4 toolkit and libadwaita… ⌘ Read more
Oh man wow 😮 Problem 9 was quite hard 😱 I had to build two new functions in the Mu stdlib for computing combinations and permutations, but then the combinations of range(1000) for triples such as a + b == c is enormous! So i had to write iterator versions of these to do lazy evaluation. Anyway solution follows:
#!/usr/bin/env mu
// Special Pythagorean Triplet
import "iter"
fn usage() {
print("Usage:", args()[0], "<n>")
}
fn sqr(x) { x * x }
fn main() {
if len(args()) < 2 {
usage()
exit(1)
}
n := must(int(args()[1]))
print("n:", n)
// For a < b < c and a + b + c == n, both a and b are strictly less
// than n/2. Generate only (a,b) combinations and derive c directly. This
// keeps the search lazy and reduces n=1000 from C(999,3) = 165,668,499
// candidate triples to C(499,2) = 124,251 candidate pairs.
pairs := iter.combinations(iter.range(1, n / 2), 2)
triples := iter.map(pairs, fn(xs) {
a := xs[0]
b := xs[1]
return [a, b, n - a - b]
})
// Enforce b < c; a < b is already guaranteed by combinations over an
// increasing range, and a + b + c == n holds by construction.
triples = iter.filter(triples, fn(xs) {
return xs[1] < xs[2]
})
// Euler 9 has one answer for n=1000. find() stops the entire upstream
// iterator chain as soon as the first Pythagorean triple is found.
answer := iter.find(triples, fn(xs) {
return sqr(xs[0]) + sqr(xs[1]) == sqr(xs[2])
})
print(answer)
if answer != nil {
print(answer[0] * answer[1] * answer[2])
}
}
main()
It is such a nice feeling that Mu is such a capable little language 😅 And I decided to write code code in Mu by hand 🤚 haha 🤣 and start solving Project Euler problems, like Problem 8 which works out to be a nice elegant solution in Mu:
#!/usr/bin/env mu
// Largest Product in a Series
import "fp"
import "sys"
fn usage() {
print("Usage: cat |", args()[0], "<n>")
}
fn products(xs) {
return fp.reduce(xs, 1, fn(x, y) {
if y == nil {
return x
}
return x * y
})
}
fn main() {
if len(args()) < 2 {
usage()
exit(1)
}
s := must(sys.read_all(0))
if len(s) == 0 {
usage()
exit(1)
}
n := must(int(args()[1]))
r := fp.max(fp.map(fp.sliding(fp.map(s, int), n), products))
print(r)
}
main()
Omarchy 4.0 Linux Distro Released With Desktop Shell Now Implemented Via Quickshell
Omarchy as the Arch Linux distribution developed by David Heinemeier Hansson “DHH” / Basecamp is out today with Omarchy 4.0 as the distro’s biggest release to date… ⌘ Read more
Linux 7.1, Linux 7.2 Performance On The Intel Xeon 600 Series
With Linux 7.2 expected for its stable release this weekend, today’s testing has some additional testing of the Linux 7.2 Git kernel as well as Linux 7.1 stable compared to Linux 7.0 as used by default on Ubuntu 26.04 LTS. Phoronix testing previously conducted of Linux 7.2 have shown benefits for Intel Arc B390 Xe3 in some configurations, faster poll performance on AMD Ryzen Threadripper and other hardware, and some nice I/O performance gains on AMD EPY … ⌘ Read more
AMD GAIA 0.23 Delivers Ability To Install/Run AI Agents From The Terminal
AMD’s GAIA open-source AI software built atop Lemonade for serving as an AI companion for emails, a Bash coding agent, and other AI agent skills is out with a new version today with more features while also improving security and making other improvements… ⌘ Read more
The Beneficial Performance Gains Running The Framework Laptop Pro 13 / Core Ultra X9 388H With Linux 7.1+
The recently launched Framework Laptop 13 Pro powered by Intel Core Ultra Series 3 “Panther Lake” runs well on Ubuntu 26.04 LTS and other modern Linux distributions. In the case of Ubuntu 26.04 with Linux 7.0, while everything works, if upgrading to Linux 7.1 or the upcoming Linux 7.2 kernel is even better performance. Here are benchmarks of the Framework Laptop 13 Pro with Core Ultra X9 388H across the … ⌘ Read more
Make sure your Flatpak is up to date due to security issues
Version 1.18.1 and 1.19.0 pre-release rolled out for Flatpak, due to some security issues that were found so it’s an essential update for all Linux systems.
Read the full article on GamingOnLinux. ⌘ Read more
Microsoft’s Azure Linux 3.0.20260809 Ships With 233+ CVE Fixes
While Microsoft continues working on Azure Linux 4.0 as its overhauled Linux distribution built atop Fedora, Azure Linux 3.0 remains the current stable production series. Released overnight was Azure Linux 3.0.20260809 and it comes with more than 233 security patches for recent CVEs in the AI era… ⌘ Read more
Open-source re-implementation of The Elder Scrolls: Arena adds major new features like enemy combat AI
OpenTESArena 0.18.0 the open-source re-implementation of The Elder Scrolls: Arena is out now, bringing many gameplay enhancements.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/08/open-source-re-implementa … ⌘ Read more
The Pixel Tag Is Google’s Answer To the AirTag
Google has unveiled the $29 Pixel Tag, its long-awaited AirTag rival that combines UWB with Bluetooth 6.0 Channel Sounding for two forms of precision tracking. It launches November 11. The Verge reports: The Pixel Tag is a slim oblong device available in one grayish color – Fog – that weighs about 12g, or 0.4oz. Like the AirTag, it has no built-in hooks or clips for attaching to o … ⌘ Read more
Linux GPU Configuration And Monitoring Tool (LACT) adds more NVIDIA GPU overclocking options
The Linux GPU Configuration And Monitoring Tool (LACT) is great for making a lot of GPU tweaks simple, with a new release v0.10.0 adding new options.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/08/linux-gpu-configuration-and-monitori … ⌘ Read more
LACT 0.10 Released With New NVIDIA Overclocking Controls, Blackwell Hotspot Sensor
LACT is one of the popular third-party Linux GPU configuration and monitoring utilities that works across NVIDIA, AMD, and Intel graphics. This GUI provides GPU overclocking controls plus a wealth of information reporting, which is especially great considering the lack of any official GUI control panel for AMD Radeon and Intel Arc graphics on Linux. With today’s LACT 0.10 release, there are yet more features in tow… ⌘ Read more
FastFlowLM 1.0 Released Now As Part Of The AMD ROCm Umbrella
FastFlowLM is the open-source software for getting vision, audio, embedding, and MoE large language models up and running on AMD Ryzen AI NPUs. FastFlowLM 1.0 released today and is also now part of the AMD ROCm software umbrella… ⌘ Read more
OptiScaler Client 1.0.6 adds Heroic Games Launcher support, experimental gamepad support, FSR 4.1.1 for older GPUs
OptiScaler Client is a modern, high-performance desktop utility designed to simplify the installation, management, and update of the OptiScaler mod.
Read the full article on [GamingOnLinux](https://www.gamingonl … ⌘ Read more
Meta Publishes Muse Glimmer As 30B Open Agentic Model
The Meta Superintelligence Labs announced this morning they have released Muse Glimmer as their next large language model featuring 30 billion parameters for always-on local agent workflows. Muse Glimmer features open-source model weights under an Apache 2.0 license… ⌘ Read more
ProtonPlus v0.6.0 adds support for Faugus Launcher, improved controller navigation and more
ProtonPlus v0.6.0 is out improving this fantastic manager for all the different community builds of Proton, with new advanced features and general improvements.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/08/protonplus-v0-6-0-ad … ⌘ Read more
Went 0-for-3 tonight, first time in a while. I was doing well both of the first two games, but the 3rd game… Well, the less said the better.
For next week, I guess it’s time for the return of Chatterfang and another Night of 1000 Squirrels.
Just remember, they brought it on themselves…
Polychromatic 0.9.8 Released With Razer Blade 16 2023 Support
For those looking to manage the RGB lighting and other features of their Razer devices on Linux, Polychromatic 0.9.8 is now available for that UI front-end that interacts with the OpenRazer kernel drivers for providing a decent albeit unofficial Linux configuration experience… ⌘ Read more
Linux 7.3 To Support Logitech HID++ 2.0 Reprogrammable Button Support
For those with newer, high-end Logitech input devices, coming with Linux 7.3 is support for the re-programmable button support of the HID++ 2.0 protocol… ⌘ Read more
PoCL 7.2-RC1 Brings Official OpenCL 3.0 Conformance On RISC-V & x86_64 CPUs
The release candidate of PoCL 7.2 is now available for testing of this Portable Computing Language implementation of OpenCL that allows for CPU-based execution or via alternative LLVM back-ends allows for OpenCL on Level Zero, NVIDIA GPUs, and even remote devices/hardware… ⌘ Read more
IceWM 4.1 Window Manager Brings Bug Fixes
As the first new release since IceWM 4.0 released back on New Year’s Day for this X11 window manager, IceWM 4.1 is now available… ⌘ Read more
Mesa 26.2.0 released with lots of improvements for Linux / SteamOS graphics drivers
Mesa 26.2.0 is quite a bumper release bringing a lot of new features across many open source Linux / SteamOS drivers.
Read the full article on GamingOnLinux. ⌘ Read more
Rust Coreutils 0.10 Released With More Security Hardening, Increased GNU Compatibility
Rust Coreutils 0.10 is out today from the uutils project for this alternative to GNU Coreutils. Rust Coreutils 0.10 development focused on additional security hardening plus also increasing the GNU test suite compatibility and robustness… ⌘ Read more
Cloudflare Announces Open-Source Cloudflare OS As AI ‘Operating System’
Cloudflare has open-sourced Cloudflare OS, an Apache 2.0-licensed platform that lets organizations build AI agents, apps, and workflows using curated company data and tools within isolated, governed environments. Despite the name, it is not a traditional operating system but a framework for securely managing organizational AI workloads … ⌘ Read more
dwproton-11.0-10 released with a fix for Honkai: Star Rail
If you want to play various Anime games on Linux like Honkai: Star Rail, dwproton is likely the best one to use with many tweaks to make them playable.
Read the full article on GamingOnLinux. ⌘ Read more
Wild Linker 0.10 Released With GDB Index Support, Mitigation For Btrfs Performance
Wild 0.10 released overnight as this very fast linker for Linux that is written in the Rust programming language and focused on iterative development… ⌘ Read more
FFmpeg 9.0 Released With More Vulkan Acceleration, Animated WebP & More AMD AMF
FFmpeg 9.0 is now available as the latest feature release for this widely used, open-source multimedia library… ⌘ Read more
zlib-rs 0.6.7 Released With LoongArch LSX Optimizations, Use-After-Free Fix
zlib-rs 0.6.7 is out today as the newest version of this “safer zlib” implementation making use of the Rust programming language and aiming to deliver performance on-par with zlib-ng… ⌘ Read more
Ubuntu Touch Making Progress Toward Ubuntu 26.04, Vulkan & App Updates
Following last week’s release of Ubuntu Touch 24.04-2.0 for this community-maintained, mobile flavor of Ubuntu Linux, more details are now available on their upcoming development efforts and eventual transition to an Ubuntu 26.04 base… ⌘ Read more
Box64 v0.4.4 Released With New Box64-Configurator App
Box64 0.4.4 released today as the newest version of this open-source user-space Linux x86_64 emulator for running binaries on 64-bit ARM, RISC-V, and LoongArch systems… ⌘ Read more
NetBSD 11.0 Released With RISC-V Support, Enhanced Linux System Call Compatibility
NetBSD 11.0 officially shipped today as the nineteenth major release of this popular BSD operating system… ⌘ Read more
Servo 0.4 Browser Engine Gets More Websites Rendering Correctly
Servo 0.4 was just released for closing out the month of July. This month the Servo browser engine with its servoshell demo browser began rendering more real-world websites correctly… ⌘ Read more
Skate 3 Recomp 2.0 brings native rendering to the PC port of the Xbox classic Skate 3
Skate 3 Recomp 2.0 brings the classic Xbox 360 version of Skate 3 to modern platforms, and now with a modern renderer using Vulkan (or Direct3D on Windows).
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/07/skate-3-recomp-2-0-brings-native … ⌘ Read more
Ubuntu Touch 24.04-2.0 Released With Support For Notches & Rounded Corners
Following last month’s beta release, Ubuntu Touch 24.04-2.0 is now available as the latest feature release for this Ubuntu 24.04 LTS derived mobile operating system for select smartphones and tablets… ⌘ Read more
I am sooooooooooooooooooooooooooooooooooooooooooooooooOOOOOOOOOOOOOOoooooooooooooooo tired of “fast-moving” software. ruff changed a ton of stuff and now all my code bases “need fixing”. Blah.
And SemVer is worth nothing if your 4 year old program with over 16’000 commits is still at “version 0.x”. Blah!
Everything is horrible.
Valve puts up a Proton 11.0-2 Release Candidate for testing
Valve have put up a Release Candidate to test the upcoming Proton 11.0-2 update, to fix up more issues found with Windows games on SteamOS / Linux.
Read the full article on GamingOnLinux. ⌘ Read more
Yet Another Zombie Survivors 1.0 release announced for August
On August 20th, the excellent Yet Another Zombie Survivors 1.0 finally launches - we have a new trailer and new details of what to expect from it.
Read the full article on GamingOnLinux. ⌘ Read more
Lemonade 11.5 Local AI Server Released With Completed Lemonade Router
Just one week after releasing Lemonade 11.0, the Lemonade 11.5 local AI server was released today for this open-source AMD backed project during their AMD Advancing AI event… ⌘ Read more
AMD EPYC Turin With PCIe 5.0 Storage Shows Off Nice Gains On Linux 7.2
Earlier this week was an exciting look at Intel Xe3 graphics performance gains on Linux 7.2 with Intel Core Ultra Series 3 “Panther Lake” hardware. On the other side of the table, with AMD hardware on this forthcoming kernel an area to be excited about are some I/O improvements at least for 5th Gen EPYC with speedy PCIe Gen5 NVMe SSD storage. ⌘ Read more
Faugus Launcher 2.0 rolls out with a new UI and many other enhancements
The idea of Faugus Launcher is to provide a reasonably simple game manager for Linux, as an alternative to Lutris and Heroic.
Read the full article on GamingOnLinux. ⌘ Read more
Oh good 😅
2026/07/19 02:55:52 sync-reaper: observe-only pass — 1152 namespaces, 6 anchored, 1094 undatable, 0 idle candidate(s), 0 reaped
Does this seem right to you so far @david@daiwei.me ? 🤔
2026/07/18 02:55:52 sync-reaper: observe-only pass — 1145 namespaces, 3 anchored, 1089 undatable, 0 idle candidate(s), 0 reaped
So far only 3 users of the Twtxt App have achieved their device settings with a recovery key? 🔑
D7VK 2.0 released with more performance fixes for retro Direct3D games on Linux
Love your classic retro games? D7VK 2.0 is out now to bring more performance improvements for running retro Direct3D games on Linux.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/07/d7vk-2-0-released-with-more-performance-fixes-for-retro-direct3d-ga … ⌘ Read more