Searching We Love Privacy Club

Twts matching #3
Sort by: Newest, Oldest, Most Relevant

Intel & AMD Power Management Driver Improvements Ready For Linux 7.3
In advance of the Linux 7.3 merge window opening, Linux power management subsystem maintainer Rafael Wysocki of Intel submitted all the power management, ACPI, and thermal control code. As not too much of a surprise, Intel and AMD driver updates dominate the power management changes for Linux 7.3… ⌘ Read more

⤋ Read More

Linux 7.3 On PowerPC Now Supports In-Kernel Rust, Initial Power12 Enablement Begins
The PowerPC pull request has already been sent in for the now open Linux 7.3 merge window. The headline feature this cycle on the POWER side is Rust kernel support for PowerPC 32-bit PPC32BE big endian and PowerPC 64-bit PPC64LE little endian architectures… ⌘ Read more

⤋ Read More

ARM64 BBML3 Feature Ready With Linux 7.3, NVIDIA Olympus Workarounds
AI/LLM patch craziness hurt ARM64 development for the Linux 7.2 cycle that no real features landed for that kernel version on AArch64. Fortunately, the ARM Linux developers are more prepared now and for Linux 7.3 are introducing some new ARM64 features… ⌘ Read more

⤋ Read More

In #Magic last night, I debuted my new #Dune deck with an underwhelming performance - perhaps unsurprisingly for a desert-focused deck, I faced a real drought, starting the game with only 1 land in hand (even after a mulligan) and not pulling another land until turn 4(!). Because of our house starting mana, I wasn’t totally sunk, but everything I got out was just luck. I did die last thanks to my big wurms (so I guess I was 2nd place?), but still… underwhelming.

For game 2, I wanted to bring the thunder (especially after my pitiful performance last week), so I dusted off my Night of 1000 Squirrels deck (headed by the infamous Chatterfang, Squirrel General). By turn 3, the #squirrel army was forming, and thanks to well-timed casts of Fog and Make a Stand, the squirrels managed to overrun everyone just a few turns later.

Another fun night overall. I won’t be able to play for the next few weeks, so I’m glad this one ended with a win. 😁 #mtg

⤋ Read More

GIMP Making Progress On New Project File Format After Nearly 30 Years With XCF
The GIMP project has published their latest development update to highlight the interesting work that’s ongoing toward GIMP 3.4 and future releases… ⌘ Read more

⤋ Read More

Linux 7.3 binfmt_misc To Allow BPF Programs To Dynamically Choose Execution Environments
The Linux kernel’s binfmt_misc functionality allows non-native/custom files to ne run directly such as for Windows EXE files to be handled by Wine or JAR files to be handled by the Java runtime. For the upcoming Linux 7.3 merge window, the miscellaneous binary formats support is being extended so a binary type can be matched programmatically and the interpreter determined on a per-exec basis. BPF programs can also then be atta … ⌘ Read more

⤋ Read More

How Swarming Jellyfish Overran Three French Nuclear Power Reactors
A “massive influx” of jellyfish forced Electricite de France SA to shut three units at its Gravelines nuclear power plant this week and reduce output at a fourth, reports Bloomberg. Just as summer temperatures surged, 3.2 gigawatts went offline — and the power utility was already facing cuts other nuclear sites as high temperatures reduce … ⌘ Read more

⤋ Read More
In-reply-to » 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:

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()

⤋ Read More

D7VK 2.1 Brings Faster Load Times, More Performance Tweaks
D7VK as the open-source implementation of the Direct3D 7 / 6 / 5/ 3 APIs atop the Vulkan API for Linux/Wine usage is out with another feature update. D7VK continues to mature quite well for further enhancing these older Direct3D API versions that cover the span prior to DXVK’s focus of Direct3D 8 to Direct3D 11 or VKD3D-Proton’s Direct3D 12… ⌘ Read more

⤋ Read More

Features Coming For Linux 7.3 From Optimizing Intel Hybrid CPUs To Old AMD Athlon XPs
With Linux 7.2 expected to see its stable debut Sunday, here is a look at what I have been monitoring as changes expected to be submitted during the Linux 7.3 merge window that will open on Monday… ⌘ Read more

⤋ Read More

Patches Posted For Fixing The Linux DRM Scheduler’s Fair Policy
Ahead of the Linux 7.2 kernel release expected out on Sunday, the Direct Rendering Manager (DRM) subsystem was forced to revert their “fair” scheduler policy default new for this kernel. Due to a last minute user-reported regression, FIFO returns as the default DRM scheduler policy for Linux 7.2. But patches are now available for addressing that regression and thus hopefully for Linux 7.3 there will be the fair scheduler becoming the default… ⌘ Read more

⤋ Read More

Google’s Gemini 3.7 Flash Targets Coding and Agents With a 50% Price Cut
Google has released Gemini 3.7 Flash just three weeks after 3.6 Flash, focusing on better coding, agentic workflows, and enterprise automation while temporarily cutting API prices in half through the end of 2026. VentureBeat reports: For enterprise developers, the more consequential story may be the combination of those intellig … ⌘ Read more

⤋ Read More
In-reply-to » The original twt is unavailable. It may have been edited or deleted, or is from an unknown or muted feed.

@arne@uplegger.eu Also von da oben sieht das meiner Auffassung nach wirklich hübsch aus, da kann man echt nichts sagen. Mir gefällt’s prächtig. Gut, wenn man dieser Brühe dann auf Meereshöhe begegnet, ist das sicherlich ‘ne andere Sache.

⤋ 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

⤋ Read More

MSI Claw Gamepad Driver Set To Be Merged For Linux 7.3
The MSI Claw Gamepad driver is set to be merged for the upcoming Linux 7.3 kernel for enabling RGB lighting and controller configuration support with the mainline kernel… ⌘ Read more

⤋ 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

⤋ Read More

Rsync 3.5 Released As “Extraordinary” Update To Fix 33 Security Issues
Rsync as the widely-used, open-source remote sync software for synchronizing files and directories across networks is out today with a very important update… ⌘ Read more

⤋ Read More
In-reply-to » Solar eclipse: https://movq.de/v/25e6071e0c/

@movq@www.uninformativ.de Hell yeah, this is awesome! Great shots!

When I checked at the beginning, the sun was already way behind the trees. I then decided to wait until the end before leaving the house and melting in direct sunlight at 31°C. At the hill, there were around 15 people in camping chairs and on picnic rugs. Some dragged out their camera gear as well.

My first two photos were through the eclipse glasses. In contrast to others, I didn’t bring my tripod and just used a tree as a crappy makeshift one. With the large zoom it’s impossible to keep it still for one second (what my cam decided to be the exposure time). Leaning the camera against the side of the tree is just not good enough.

https://lyse.isobeef.org/sonnenfinsternis-2026-08-12/

⤋ Read More

Intel ANV Driver Enables Vulkan Video AV1 Encoding For DG2/Alchemist GPUs
Hyunjun Ko of Igalia continues working on Vulkan Video support for Intel graphics hardware on Linux with the ANV driver. Merged now for Mesa 26.3-devel is enabling AV1 video encoding via Vulkan Video on DG2/Alchemist hardware… ⌘ Read more

⤋ Read More

Rusticl Now Supports cl_ext_float_atomics
With the recent release of Mesa 26.2 the Rusticl OpenCL driver now supports OpenCL 3.1 on RadeonSI, LLVMpipe, Zink, Intel Iris, and Apple Asahi. But the work is not over and more improvements to this Rust-based, modern OpenCL driver continue to land… ⌘ Read more

⤋ Read More

Open-Source NVIDIA “Nova” Driver Sees More Functionality For Linux 7.3
Sent to DRM-Next this week was the DRM Rust core and driver changes targeting the upcoming Linux 7.3 merge window. There continues to be a lot of DRM core infrastructure work happening for Rust integration plus two leading Rust DRM drivers of Nova for open-source NVIDIA GPU support as the successor to Nouveau and then Tyr as the in-development Arm Mali driver… ⌘ Read more

⤋ Read More

Five More Lenovo Laptops To Report Fan Sensors With Linux 7.3
In addition to more ASUS motherboards having working sensors with Linux 7.3, this next kernel version will also get several more Lenovo laptop models to be reporting their fan sensor information under Linux… ⌘ Read more

⤋ Read More

Linux 7.3 Bringing A KCFI Optimization To Benefit Older Intel CPUs
Expected to be merged during the upcoming Linux 7.3 merge window is a Kernel Control Flow Integrity (KCFI) improvement intended to benefit older Intel processors… ⌘ Read more

⤋ Read More

Apple M1 Series SoCs To See ~1 Watt Power Savings With Linux 7.3
In addition to Linux 7.3 slated to receive initial Apple M3 Pro / Max / Ultra SoC support, this next version of the Linux kernel is also set to bring some minor power savings for the Apple M1 series that remains the best supported Apple Silicon on Linux… ⌘ Read more

⤋ Read More

Old SGI Drivers Being Removed In Linux 7.3 Over Security Concerns
On top of various other Linux drivers for old hardware being removed due to noise generated by AI/LLM coding agents, there are more examples coming with Linux 7.3 as some old Silicon Graphics (SGI) drivers are being removed from the mainline Linux kernel over security concerns… ⌘ Read more

⤋ Read More

Mesa 26.3 Intel Driver Code Enables Large GRF Mode For Newer GPUs
The Intel graphics compiler code in Mesa 26.3-devel has now enabled the Large GRF mode for Alchemist/DG2 and Battlemage/Xe2 graphics and VRT for Xe3 graphics… ⌘ Read more

⤋ Read More

New Linux Patches Enable ASUS ROG Ryujin III Monitoring Support
For those with an ASUS ROG Ryujin III all-in-one CPU liquid cooling setup catering to gamers, there are now patches pending to enable this AIO liquid cooling setup to work under Linux for monitoring… ⌘ Read more

⤋ Read More

Linux 7.3 To Better Handle Cluster Load Balancing On Intel Hybrid CPUs
A set of patches from Intel are set to be merged for the upcoming Linux 7.3 merge window to enhance the cluster-aware scheduling code so it better handles load balancing on modern Intel Core (Ultra) hybrid CPUs with a mix of P and E/LPE cores… ⌘ Read more

⤋ Read More

SteamOS 3.8.25 Beta has firmware updates for Steam Machine, wider handheld support, Steam Frame Wireless Adapter support
SteamOS 3.8.25 Beta is a bit of a bigger one with a decent list of improvements for Steam Machine, more handhelds and even the Steam Frame Wireless Adapter.

Image

Read the full article on [GamingOnLinux](https:/ … ⌘ Read more

⤋ 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

⤋ Read More

Initial Apple M3 Pro / Max / Ultra Support Being Upstreamed For Linux 7.3
Upstreamed for the Linux 7.2 kernel was the Device Tree (DT) support for booting the mainline Linux kernel on the base Apple M3 SoC. Though it’s not yet useful for end-users with many features remaining to be supported and upstreamed. Now for the upcoming Linux 7.3 kernel, the M3 Pro, Max, and Ultra variants will also have initial support for booting on the mainline kernel… ⌘ Read more

⤋ Read More

TTM Memory Management For Graphics To Be More Aggresive With Linux 7.3
This week a final batch of DRM-Misc-Next feature material was submitted for DRM-Next to queue ahead of the Linux 7.3 merge window opening later in the month. Most notable is the TTM memory management code is now being more agressive when allocating below protection limits. This is an improvement coming thanks to Valve’s open-source Linux graphics team… ⌘ Read more

⤋ 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

⤋ Read More

HyperX Driver Coming For Linux 7.3 Just To Report A Microphone’s Mute Status
A new driver coming for the Linux 7.3 kernel is HID-HyperX. It’s not some new driver to support fancy hardware and some nifty features but rather mundane in nature due to the poor behavior of a high-end HyperX USB gaming microphone… ⌘ Read more

⤋ Read More

AMD Updates HDMI 2.1 VRR & ALLM Patches But Will Miss Out On Linux 7.3
Complementing the HDMI 2.1 Fixed Rate Link (FRL) support that AMD already upstreamed to the Linux kernel, AMD engineers have been further ironing out their HDMI 2.1 implementation for the open-source AMDGPU Linux kernel driver. The latest quest has been getting HDMI 2.1 variable rate refresh (VRR) support upstreamed along with HDMI Auto Low-Latency Mode (ALLM)… ⌘ Read more

⤋ Read More

The Performance Benefits To Upgrading Mesa With Intel Arc B390 On Ubuntu Linux
If you are an early customer of the Framework Laptop 13 Pro or other Intel Core Ultra Series 3 Panther Lake laptop and using Ubuntu 26.04 LTS, there can be real benefit from upgrading your Mesa stack for the newer Iris Gallium3D and ANV Vulkan drivers. In this article are some benchmarks of the Framework Laptop 13 Pro with Core Ultra X9 388H with Arc B390 Xe3 integrated graphics for looking at the performance impact of using Mesa Git on Ubuntu L … ⌘ Read more

⤋ Read More

AMD GFX1171 Support Merged For Mesa 26.3
Earlier this year we began seeing patches for AMD GFX1170 graphics IP labeled as “RDNA 4m” and that was then completed with also adding GFX1171 and GFX1172 as additional targets for the AMDGPU LLVM compiler back-end and AMDGPU kernel driver. Merged today for Mesa 26.3 is now adding the GFX1171 target to Mesa 26.3 for the RADV and RadeonSI drivers… ⌘ Read more

⤋ Read More

SteelSeries’ Latest Arctis Nova 5X & Nova 7 Headsets To Be Supported By Linux 7.3
If you happen to have a gaming headset from the latest SteelSeries Nova 5X or Nova 7 series, the upcoming Linux 7.3 kernel will begin properly supporting those headsets… ⌘ Read more

⤋ Read More

Linux 7.3 To Fix Longstanding Gap In The Native Driver For Original Steam Controller
For those with one of the original Valve Steam Controllers from a decade ago and looking to make use of it with the native HID Linux driver outside of the Steam client or SDL, an important addition is coming with the Linux 7.3 kernel release later in the year… ⌘ Read more

⤋ Read More

USB4STREAM Adding Busy Poll Option For Lower Latency At The Cost Of Increased CPU Cycles
One of the nifty new features of Linux 7.2 is USB4STREAM as an Intel-developed solution for quickly sending data between USB4 connected systems. Now for the upcoming Linux 7.3 cycle, a busy poll mode is being added to provide lower-latency data transfers at the expense of increased CPU activity… ⌘ Read more

⤋ Read More

Linux To Avoid Confusing Processor Firmware With Newer Intel CPUs Sporting DEC
A patch for the Intel P-State CPU frequency scaling Linux driver is pending to avoid confusing the processor firmware on newer platforms like Intel Core Ultra Series 3 “Panther Lake” where Dynamic Efficiency Control (DEC) is supported… ⌘ Read more

⤋ Read More

Linux 7.3 To Fix MSI Claw M-Center Keys For Ryzen Z2 Extreme Powered Handheld
For those with a MSI Claw A8 BZ2EM handheld gaming system, the model powered by the latest AMD Ryzen Z2 Extreme SoC, an important addition is coming to the Linux 7.3 kernel so that the M-Center keys will be properly supported… ⌘ Read more

⤋ Read More

I finally managed to get back out disc golfing today at Vietnam Veterans Park and had a good time despite losing a brand new disc on hole 3 (on its 3rd throw ever, my glow-in-the-dark Lynx disappeared into an overgrown creek-bed and was swallowed by the underbrush). After my buddy lost a disc on hole 4, we were kinda demoralized and both threw for crap the rest of the course, but it was still a nice day to be slingin’ in the sun…

Image

⤋ Read More

Improved GPU Reset Recovery For AMD Kaveri, Hawaii & Other GFX7 GPUs With Linux 7.3
In addition to the AMDGPU feature pull request to DRM-Next last week that landed DRM format modifiers for old AMD GPUs and a variety of other improvements, a secondary set of AMDGPU feature work followed that last week in preparation for the upcoming Linux 7.3 merge window… ⌘ Read more

⤋ Read More