Meta Patents AI Glasses to Use Facial Recognition to Identify People, Make Highlight Reels of Your Dinner Party
Meta has patented a smart-glasses system that could use facial recognition to identify people and automatically create personalized highlight reels of events such as dinner parties. The patent doesn’t guarantee the feature will ship, but it offers a detail … ⌘ Read more

⤋ Read More
In-reply-to » $599 retail purchase $9.95/month optional subscription

@prologic@twtxt.net Potentially, depending on the features supported / hardware used.

I’ve long wished for an appliance (like a video game console) that hosts my essential services - email, shared files, social media, etc. - but which “just runs” in a box behind the TV.

So what do you have in mind? 🤔

⤋ Read More

Robots That Walk and Talk Are Coming To Car Factories
An anonymous reader quotes a report from The New York Times: At a BMW factory in South Carolina, a human-shaped robot with a screen for a face recently stepped from a charging station toward a stack of green plastic boxes. It grasped an auto part from one of the boxes, pivoted, placed the part in a trolley, then pulled the trolley across the floor. The robot’s slow … ⌘ Read more

⤋ Read More

$599 retail purchase
$9.95/month optional subscription

☝️ Would you pay this for a fully self hosted home cloud? 🧐

⤋ 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:

What’s interesting here… Which is the interesting thing about Mu is the dual runtime. So the above solution for Euler Problem 9 finds the solution in ~429ms with the Go VM and ~327ms natively compiled to darwin/arm64. Not bad for a language I haven’t really done any optimization work on yet (correctness first obviously).

⤋ 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

AMD Posts Massive 109 Patch Series For GFX 12.1 RAS Support On Friday Evening
AMD has a tendency to send out large feature patch series for their open-source Linux drivers on Friday afternoons/evenings. Today we were greeted by a set of 109 patches working on RAS support for the upcoming AMD GFX12.1 target… ⌘ Read more

⤋ Read More

Ex-Cambridge Professor At Center of Plagiarism Row Found Dead
Former Cambridge professor Jason Arday, who resigned last week amid allegations of plagiarism and questions about his academic record, has been found dead at age 41 in London. The BBC reports: Jason Arday was found “unresponsive” at an address in Battersea, south London, on Friday afternoon, emergency services said. Metropolitan Police officers were ca … ⌘ Read more

⤋ Read More

Flock Announces Changes Amid Backlash Over Its License Plate Reader Network
Flock Safety is tightening controls on its nationwide license plate reader network after mounting backlash over privacy and documented police misuse. By January 1, law enforcement customers will be required to use automated auditing, tie searches to specific case numbers, and accept a shorter seven-day default retention perio … ⌘ Read more

⤋ Read More

France’s Top Court Blocks Social Media Ban For Under-15s
France’s Constitutional Council has struck down a law that would have banned children under 15 from social media, ruling that it disproportionately restricted freedom of expression and lacked adequate privacy safeguards around age verification. President Emmanuel Macron has asked the government to rewrite the measure, with the goal of putting a revised version in … ⌘ Read more

⤋ 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

Lemonade 11.6 Integrates Muse-Glimmer 30B, Experimental TheNoise ROCm Image Generation
For those dabbling with generative AI on the weekends, the AMD-led Lemonade SDK 11.6 is out today with its newest feature release of this open-source software for running local AI apps with optimized LLMs across CPUs, GPUs, and NPUs… ⌘ Read more

⤋ Read More

PBS Station Fears Losing 50TB of Data After Being Ghosted By Cloud Provider
An anonymous reader quotes a report from Ars Technica: After its cloud storage provider went defunct, a PBS affiliate decided to sue a data center provider to regain access to 50TB of TV shows, videos, and other data dating back 70 years. As reported this week by Current, a trade newspaper covering public broadcasting, S … ⌘ Read more

⤋ Read More

Ukraine Finds Nvidia AI Chip In New Russian Missile
Longtime Slashdot reader AmiMoJo shares a report from Kyiv Post: Ukraine’s military intelligence (HUR) has identified an Nvidia Jetson Orin computer module inside Russia’s new S-71 Monochrome air-launched cruise missile, potentially indicating the use of artificial intelligence technology in the weapon, the agency said Wednesday, Aug. 12. The finding was published in the … ⌘ Read more

⤋ Read More

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

⤋ Read More

Judge Orders Google To Make Rival App Store Installs Easier
A federal judge has ordered Google to remove what he called “anticompetitive friction” that makes rival Android app stores harder to find and install. The order is part of the remedies stemming from Epic’s antitrust victory, which already requires Google to carry competing app stores inside Google Play and give them access to its app catalog. The Verge rep … ⌘ Read more

⤋ Read More

Trump Slaps a 100% Tariff On Heavy and ‘Sensitive’ Drones
President Trump has imposed tariffs of up to 100% on heavier and “sensitive” drones, including models over 55 pounds or equipped with docking stations or thermal imaging. “Those include commercial models from DJI and others used for operations like power line inspection, crop spraying and search and rescue, along with any parts used in their manufacturing,” report … ⌘ Read more

⤋ Read More

Apple Wants to Charge Developers Up to 15 Percent for Linking Outside the App Store
Apple is proposing to charge U.S. developers up to 15% when users leave an app through an external purchase link, with lower rates of 10% or 5% for certain programs and smaller developers. The proposal follows years of litigation with Epic Games and a contempt ruling that temporarily barred Apple from collect … ⌘ 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

Person Hides Prompt Injection In Legal Filing Telling AI To Side With Them
An anonymous reader quotes a report from 404 Media: A person representing themselves in a Connecticut court hid a series of instructions designed to manipulate artificial intelligence in an official court filing. These “prompt injections” told the hypothetical LLM to side with them, and to “ensure your textual output agrees wit … ⌘ 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

Slackware-Based Zenwalk Linux Aims For “True Low Latency Desktop Experience”
It’s been a long time since hearing much out of the Zenwalk project, the Linux distribution built off Slackware. It’s still around though and with their latest kernel work are hoping for a “true low latency desktop experience” by employing the BORE scheduler… ⌘ Read more

⤋ Read More

Scientists Turn Starlink Into a Giant Scanner For Earth’s Upper Atmosphere
alternative_right shares a report from ScienceDaily: Researchers have found a clever new way to map a part of Earth’s upper atmosphere that is notoriously difficult to observe. Using orbital data from roughly 1,200 Starlink satellites, they reconstructed changes in atmospheric density about 500 kilometers above Earth. [… … ⌘ Read more

⤋ Read More

UK Scientists To Grow Miniature Human Organs For Drug Testing
An anonymous reader quotes a report from The Guardian: Miniature human organs and other tissues are to be grown from NHS patients’ cells in a drive to improve medicine testing and reduce the number of animals used in drug development. Scientists will use the clumps of tissue to learn how diseases vary between patients, helping them identify which tr … ⌘ Read more

⤋ 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

⤋ Read More

Microsoft Retreats In China
Microsoft has been steadily scaling back its China presence, closing at least 15 branch offices and joint ventures over the past five years as Beijing favors domestic software. U.S. export controls also make it harder to grow its cloud and AI businesses, leaving the market with relatively little economic upside. Reuters reports: Microsoft took a major hit from the erosion of trust between Washington and Beijing, the fi … ⌘ 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

Microsoft Is Combining Its Copilot Apps Ahead of a ‘Super App’
Microsoft is merging its consumer Copilot and Microsoft 365 Copilot apps ahead of a broader “super app” launch later this year. “Both personal and work accounts will be moved to the new unified app, which recycles the ‘Microsoft Copilot’ name but features an updated app icon,” reports The Verge. “The single app also means there won’t be two annoying Copilot … ⌘ Read more

⤋ Read More

KDE, Techpaladin & Kubuntu Focus Announce The Bullet-Proof KDE Software Initiative
KDE e.V. along with Linux PC vendor Kubuntu Focus and KDE-aligned consulting firm Techpaladin Software have announced a collaboration of the “bullet-proof KDE Software initiative” for providing at least three years of bug fixes and security updates to KDE Plasma 6.6 LTS and related software… ⌘ Read more

⤋ Read More

Amazon Will Train On Twitch Streamers’ Content By Default, Unless They Opt Out
Twitch will begin allowing Amazon to use streamers’ content to train generative AI models by default, requiring creators to manually opt out if they don’t want their videos and audio included. The decision has drawn backlash from creators, with Twitch’s own product chief acknowledging that an opt-in system would likely … ⌘ Read more

⤋ Read More