Searching We Love Privacy Club

Twts matching #2.
Sort by: Newest, Oldest, Most Relevant

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

How Larry Ellison Dropped From World’s 2nd-Richest To No. 8 In Just 2 Months
Less than a year ago he was the #1 richest man in the world. 10 weeks ago he was #2. But yesterday Larry Ellison dropped to #8, Forbes reports, falling behind Nvidia CEO Jensen Huang.

Ellison’s net worth is now estimated at just $192.6 billion — after a $104 billion decline:

Shares of Oracle plunged roughly 54% betwe … ⌘ 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:

And just like that Problem 10 is done and correct whoohoo 🥳 It was easy because in Problem 7 I’d already written an iterator to produce infinite primes. So the solution for finding the sum of primes under 2,000,000 is basically (shortened):

  primes := iter.take_while(iter.filter(prime_candidates(), is_prime), fn(p) { p < n })
  print(iter.sum(primes))

And of course the answer is: 142913828922 which took ~21.ss for the Go Vm to compuete.

⤋ 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

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

⤋ 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

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

⤋ 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

Three Supermassive Black Holes Discovered In a Single Galaxy For the First Time
Astronomers using JWST have found three actively feeding supermassive black holes in the distant galaxy J0148-4214, seen as it existed about 1.2 billion years after the Big Bang. Two sit just 620 light-years apart near the galaxy’s center and are expected to merge within a few hundred million years. Phys.org repor … ⌘ 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

Open-Source exFAT Programs 1.4.3 Improves Fsck & Mkfs
Ahead of the Linux 7.2 kernel release expected on Sunday, a new release of the exFAT file-system user-space programs was released overnight… ⌘ Read more

⤋ Read More

The Best Linux 7.2 Features: Cache Aware Scheduling, AMD Zen 6, AMDGPU HDMI 2.1 FRL
With the Linux 7.2 kernel expected to be released on Sunday, 16 August, here is a look at some of the most interesting new features and changes to find with this next kernel version to be used by Ubuntu 26.10 and other upcoming Linux distribution releases… ⌘ Read more

⤋ Read More

Anthropic Could Be Worth $2 Trillion When It Goes Public
An anonymous reader quotes a report from the Financial Times: Anthropic investors expect the AI startup to float at a valuation of $2 trillion or more in October, a dizzying figure that would eclipse SpaceX and make the AI lab’s debut the largest-ever initial public offering. Half a dozen of the company’s backers told the FT that Anthropic’s rapidly rising revenue wou … ⌘ Read more

⤋ 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

Intel XPU Manager 2.1 Released For Monitoring Arc Pro Graphics On Windows/Linux
Intel XPU Manager 2.1 is now available as the latest version of this open-source tool for Linux and Windows systems for the monitoring and management of Arc Pro graphics cards. The Intel XPU Manager helps in keeping an eye on device utilization and other metrics via the xpu-smi command and other components… ⌘ Read more

⤋ Read More

US Hires Over 2,000 Video Gamers As Air Traffic Controllers
The FAA says its push to recruit video gamers as air traffic controllers has helped it hire more than 2,000 trainees, reaching 94% of its hiring goal. Another 2,000-plus candidates are in the pipeline. CBS News reports: U.S. Secretary of Transportation Sean Duffy said in a recent social media post that the federal agency’s recruitment campaign to recruit g … ⌘ Read more

⤋ Read More

Linux 7.2 To Revert Back To The FIFO DRM Scheduler Policy Due To “Fair” Regressions
One of the Direct Rendering Manager changes made for Linux 7.2 was switching to “fair” as the DRM scheduler default in place of the existing FIFO policy. The intent was on making the DRM scheduler policy more fair with this being used by AMDGPU and various other DRM kernel graphics drivers. But due to a last minute regression report, the fair policy is being reverted for Linux 7.2… ⌘ Read more

⤋ Read More

Mold 2.42 Delivering Greater Performance For This High Speed Linker
It’s been quiet since the Mold 2.41 release back in April while today it’s now been succeeded by Mold 2.42 for deliver even greater performance out of this high speed linker… ⌘ 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

Meta’s ‘Open’ Muse Glimmer Model Can Run On a Single Computer
Meta has released Muse Glimmer, a slimmed-down open-weight AI model designed to run locally on a single GPU for agent tasks such as scheduling, file management, coding, and tool use. The release is based on Meta’s closed Muse Spark 1.2 model and appears to be aimed at attracting developers who want capable AI agents without relying entirely on cloud-hosted … ⌘ Read more

⤋ 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

⤋ Read More

AI Reviews Bring ‘New Normal’ to Linux Release Candidates: Lots of Bug Fixes
Linux Torvalds expects Linux 7.2 should be released next weekend “unless something really bad
pops up,” Torvalds said while announcing today’s release candidate.

But there’s something interesting about Linux 7.2-rc7, writes Phoronix. “By the time the Linux kernel typically hits a -rc7 release things have usually settled qui … ⌘ Read more

⤋ Read More

Dell Latitude 7320 2-in-1 Seeing Web Camera Support On Linux After Five Years
Launched back in 2021 was the Dell Latitude 7320 2-in-1 business laptop/tablet powered by the at-the-time impressive Intel 11th Gen Core “Tiger Lake” processors. Remaining elusive until now has been the web cameras actually working on Linux, but patches posted this weekend finally are cracking that mystery at least for the user-facing web cam… ⌘ Read more

⤋ Read More

NASA Figured Out How To Keep Its 48-Year-Old Voyager 2 Probe Running For Yet Another Year
NASA has squeezed at least another year of science out of Voyager 2 by cutting power to nonessential systems and switching to lower-power alternatives. Voyager 1 is expected to receive the same power-saving changes in the coming months. Space.com reports: Voyager 2 and its twin launched in 1977 … ⌘ Read more

⤋ Read More

HWMON Fixes For Linux 7.2-rc7: “Most Of Them Fixing Critical Or High Severity Bugs”
It’s been another busy week in the Linux kernel camp with increased patch activity continuing due to AI/LLM coding agents / bots continuing to uncover different defects in the open-source codebase. The hardware monitoring (HWMON) subsystem saw many fixes this week for issues mostly raised by the Sashiko AI bot with the issues being described as mostly critical or high severity bugs… ⌘ Read more

⤋ Read More

Linux 7.2-rc7 Adding Support For The Most Unique Or Very Funky Gaming Controller
The input subsystem fixes for the week include a number of AI-driven patches to address various information leaks, out-of-bounds accesses, validation fixes, and other coding issues that have turned up recently. Plus some device quirks and also adding support for a rather funky gaming controller to the common XPad Linux driver used by many different gaming controllers… ⌘ Read more

⤋ Read More

Trump Administration To Pay German Firm $1.2 Billion To Halt US Wind Projects
An anonymous reader quotes a report from the BBC: German energy company RWE has said it will abandon its offshore wind projects in the U.S. after reaching a $1.2 billion payout deal with President Donald Trump’s Department of the Interior (DoI). RWE said that it will now reinvest the sum into conventional gas projects, … ⌘ 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

Intel Makes Progress On HDMI 2.1 FRL With Their Linux Driver For Meteor Lake & Newer
Following AMD making progress with HDMI Fixed Rate Link (FRL) and other HDMI 2.1 functionality for their open-source Linux kernel graphics driver, Intel is out today with a big set of 44 patches working on HDMI 2.1 FRL support for their kernel graphics driver with Meteor Lake hardware and newer… ⌘ 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

Linux 7.2-rc7 Addresses A “Nasty” Race Condition Leading To Use-After-Free After 8 Years
The Linux kernel Git activity continues being quite heavy this week on fixes. It’s looking like the Linux 7.2-rc7 kernel release on Sunday will be another big one with the changes continuing to flow in from both developers and AI bots… ⌘ 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

GCC 16.2 Released With More Than 100 Fixes
Following the GCC 16.1 compiler release from the end of April as the first stable version of GCC 16, GCC 16.2 is now available with dozens of bug fixes collected since then for further stabilizing this year’s GNU compiler feature release… ⌘ Read more

⤋ Read More

Linux 7.2-rc7 Restoring Btrfs Fixup Worker Infrastructure To Address Silent Data Loss
Back during the Linux 7.2 merge window the Btrfs file-system dropped its COW fixup mechanism, which was used to detect dirty pages without an ordered extent. This code was removed as it was believed the kernel’s memory management layer had solved the underlying conditions but in reality it ended up leading to silent data loss. That Btrfs fixup worker infrastructure is now restored in time for Linux 7.2-rc7 this weekend and th … ⌘ Read more

⤋ Read More

FCC Kills TV Ownership Cap, Claiming Authority Over Limit Set By Congress
An anonymous reader quotes a report from Ars Technica: The Federal Communications Commission voted 2-1 today to eliminate the National Television Ownership Rule, claiming authority to repeal a limit that was set by Congress over 20 years ago. The rule prohibits any single broadcast station owner from reaching more than 39 percent … ⌘ Read more

⤋ Read More

Mesa 26.2 Released With NVK Mesh Shader Support, Many Other Vulkan Improvements
Mesa 26.2 stable is now available as the newest quarterly feature release for this set of open-source OpenGL and Vulkan drivers typically used on Linux systems… ⌘ 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

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

⤋ Read More

AMD Preps HDMI FRL Fixes, New Knob For Disabling Older AMD GPU DCE Display Support
Overnight AMD engineers sent out their latest round of AMDGPU DC display code updates for their Linux driver. This week’s round of display code updates include some additional fixes for their recently introduced HDMI FRL (Fixed Rate Link) support as part of the work toward their HDMI 2.1 implementation finally coming together for their open-source, upstream Linux driver… ⌘ Read more

⤋ Read More

Watch a SpaceX Rocket Crash Into the Moon
A four-ton SpaceX Falcon 9 upper stage left drifting after a 2025 lunar mission is expected to crash into the Moon at about 5,400 mph, likely striking Einstein Crater. The impact should occur at approximately 2:35 a.m. ET (0635GMT). Reuters reports: Such stages typically fall back into Earth’s atmosphere and burn up or plunge into the ocean after boosting the rocket’s payload to a precise … ⌘ Read more

⤋ Read More