Debian Developers Begin Voting Over LLM Usage Within The Project
Debian developers have been considering a general resolution over LLM usage within the project. After collecting a variety of proposals, voting has now commenced for Debian developers to decide how comfortable they are with AI / Large Language Model contributions in the project or not… ⌘ 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()
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
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
but yes, however you cannot currently add it or delete post via the app as I haven’t really built that feature at the moment you technically can do it, but you do run into some challenges with breaking threads if you’ve already published something and then go back and edit it so we generally advise not to do that too much if you can help it
Google Unveils Pixel 11 Lineup
At its Made by Google 2026 event today, Google unveiled a slew of new devices, headlined by the Pixel 11, Pixel 11 Pro, and Pixel 11 Pro Fold. Here’s a breakdown of the company’s latest smartphones, provided by TechCrunch: Pixel 11: The standard Pixel 11 gets a redesigned camera bar that is thinner than the one on the previous generation. Google says the new camera bar is more than 40% thinner and now uses an … ⌘ Read more
Intel LLM-Scaler Ready With Muse Glimmer Support, Other LLMs & Features
Intel’s LLM-Scaler project that was born out of their Project Battlematrix initiative aims to make it easier to run generative AI on Arc (Pro) B-Series graphics cards with the likes of vLLM, ComfyUI, SGLang, and other popular AI software in this Docker-based pre-configured AI stack. This week new LLM-Scaler releases brought same-day support for new models and other enhancements… ⌘ Read more
Spotify Will Label ‘AI Persona’ Profiles, Exclude Their Music From Recommendations
Spotify will begin labeling AI-generated artist identities with “AI Persona” badges and exclude their music from editorial, algorithmic, and personalized recommendations unless users explicitly follow them. The company says the designation applies to whether an artist profile represents a real person, not … ⌘ Read more
Paramount Considers Leaving California Amid Antitrust Suit
Paramount CEO David Ellison is threatening to begin moving the studio out of California on October 1 if state Attorney General Rob Bonta refuses to enter settlement talks over the proposed Paramount-Warner Bros. Discovery merger. The company would reportedly move its Los Angeles headquarters first and shift most studio jobs out of the state over five years, with … ⌘ Read more
Most of this insane power consumption happens during the models training, so the additional cost of prompting, is minimal. Facebook invented cool ways to exted the environmental damage far beyond the training stage, by dumping the dirty data center water into nearby water sources, but that’s more so a Facebook problem, than a fault of AI.
I would still never waste my own money, paying for any AI subscriptions that my employer doesn’t already pay for, no matter if we use them, or not.
I am also against aggressive scraping and taking everything as training data, disregarding the authors wishes and license. I allow it on my website, mostly as proof that no matter how much they scrape my stuff, the real me remains both a superior webdev and artist.
I am well aware this makes me come across really egotistical, especially after developers far better than me, embraced vibe coding, arguably way too much. To give an example, all attempts to get Microsoft Copilot, that’s embedded into SharePoint, to generate an extension/uBlock filter to make SharePoint revert to the old superior UI failed, but I was able to do that in three lines of code ( https://thecanine.smol.pub/ublock-filters ), in half an hour, despite me never seeing the code of that page before. After a few of these comparisons, it is increasingly hard to see most of these tools, as my replacement.
I am not even going to talk about the people trying to imitate my art style with AI, until they can show me a result where all the squares are the same size, in a grid and actually square.
I am a bit split on this, don’t think there’s any real use for AI in things like art, at absolute most getting a reference to compare with multiple non-AI ones, or possibly some animation in between frames, if it ever gets better at making those. Would not rely on it for any of my personal projects, more than maybe a quick search that would have previously been done on Stack Overflow, but if I work somewhere and they demand it be used similarly to how it is described on this site, considering the current IT job market, I’d probably take the slop bullet, over being unemployed.
Obviously even in that case, I’d only do this to generate code I can understand, improve and review. I’m definitely not advacating people just put their feet up on the table and let some random combination of “AI agents”, vibecode their entire codebase.
Toxic Underground Fires Are Spreading at California Landfills
Three years ago environmental regulators discovered garbage burning deep inside California’s Chiquita Canyon Landfill, reports the Los Angeles Times. [Alternate URL here.] “Few imagined the calamity that would follow.
“Somehow the landfill’s pollution control system introduced oxygen below, causing decades-old waste to rapidly decompose, generating … ⌘ 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
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
How Accurate Are Flock’s AI-Powered License-Reading Cameras?
Futurism reports:
404 Media revealed that a July 10 audit by the Los Angeles Police Department Office of the Inspector General caught the department’s ALPR cameras generating 161 false stolen-vehicle alerts in just two months — each one ending with officers pulling over an innocent driver. Factoring in 337 alerts which “resulted in the recovery of stolen v … ⌘ Read more
AI-Powered Browser Just Generates Every Website From Scratch
XDA Developers reports:
On July 22, a Google DeepMind engineer, Vidy Thatte, shared a snippet of a browser he built that “treats every URL as a prompt and generates a site from scratch” on his X account. Just a few days later, he shared a TestFlight link to let iPhone users try it for themselves. The browser he launched is called Gem, and it’s a browser … ⌘ Read more
Wine 11.15 brings improvements for Wayland, more format conversions in WindowsCodecs
The Wine 11.15 development release is out for the Windows to Linux compatibility layer to help run more applications and games.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/08/wine-11-15-brings-improvements-for-wayland-more-format-conversions-in-windowscod … ⌘ Read more
Suno Says It Will Start Watermarking Songs
Suno says it will begin watermarking and fingerprinting AI-generated songs, tighten download policies to curb mass distribution, and explicitly prohibit deceptive audio and unauthorized voice or likeness cloning. The changes come as the company faces mounting copyright lawsuits, a recent adverse ruling in Germany, and scrutiny over a past data breach that revealed training-data so … ⌘ Read more
AMD Buys AI Chip Startup Taalas That Hardwires AI Models Into Its Silicon
An anonymous reader quotes a report from CNBC: On Thursday, AMD said it’s entered into an agreement to acquire Taalas, a Toronto-based startup that makes chips for inference. Taalas’ accelerators are customized, or hard-wired for a single AI model, rather than being general purpose. In exchange for that loss of flexibility, T … ⌘ Read more
Linux Networking Continues Being Bombarded With AI Patches
While the Linux WiFi/wireless maintainer just announced taking a stand against AI/LLM generated slop patches with a new “three second review” rule, the broader Linux networking subsystem continues to be bombarded with AI-generated patches… ⌘ Read more
Linux Wireless Maintainer Takes Firm Stance Against AI/LLM Generated Slop Patches
In addition to the Linux kernel staging area now rejecting AI/LLM-generated patches except for real security fixes, the Linux wireless networking code is also seeing some shifts around how it will deal with AI/LLM generated patches… ⌘ Read more
Lawmaker Who Wants Data Center Pause Wins Kansas Democratic Primary
Kansas Democrats nominated State Senator Cindy Holscher for governor after she defeated party-backed rival Ethan Corson. “The race became a test of what sort of candidate Democratic voters prefer in what is expected to be a challenging general election race: a more moderate candidate like Mr. Corson with endorsements from party leaders … ⌘ Read more
Additional Old Linux Drivers Face Removal Due To Noise From AI/LLM Coding Agents
There continues to be a lout of cleaning up of the kernel source tree to deal with noise generated by AI / LLM coding agents sending in reports and patches for old drivers that are likely not actively used by anyone on modern upstream kernel builds. Rather than continuing to carry these old drivers around with the uptick in AI/LLM-generated noise, kernel maintainers are finding it better to just retire the old drivers… ⌘ Read more
Apple Limits Bug Bounty Submissions After Flood of AI Slop
Apple has capped the number of open bug-bounty reports researchers can submit after being flooded with low-quality and sometimes entirely fabricated vulnerabilities generated by AI. MacRumors reports: The Financial Times learned of the limit after cybersecurity startup Bynario used ChatGPT to locate more than 50 macOS bugs in three weeks. Bynario found a privi … ⌘ Read more
Trump Begins Selling $100,000 Monthly Subscription Service to Wall Street
Trump Media has officially launched its $100,000-per-month data feed giving trading firms machine-readable access to Truth Social posts milliseconds before the public. According to Fortune, five Wall Street firms have already signed up for the service, which “would generate about $500,000 in monthly revenue, or $6 million annually … ⌘ Read more
Linux’s Staging Area To Now Reject LLM-Generated Patches, Except For Real Security Fixes
While Linux’s second-in-command Greg Kroah-Hartman does use AI / LLMs himself to success in the Linux kernel, given the “onslaught” of kernel patches produced by large language models and the intent on the Linux kernel’s staging area being an area for newcomers to get involved, moving forward he’s now rejecting AI/LLM-generated staging patches. But there is one exception and that is for genuinely valid security fixes… ⌘ Read more
OpenAI’s Astra Solved Decades-Old Math Problems For $2,000
An anonymous reader quotes a report from Forbes: The cost of producing new results on ten longstanding mathematical problems just fell to $2,000, according to OpenAI, which says its Astra model generated machine-checkable proofs for questions that had resisted human progress for decades. OpenAI published the work on August 1 and used it to give its next majo … ⌘ Read more
Microsoft Is Bringing Xbox 360 Games to PC
Microsoft reportedly plans to let developers bring Xbox 360 games to PC and next-generation Xbox devices, with a gradual rollout expected between 2027 and 2028. A separate disc-to-digital program would also give players transferable digital licenses tied to their physical Xbox discs, preserving the ability to resell or trade them. The Verge reports: With 360 games, developers can opt into … ⌘ Read more
GNOME Working To Establish An RFC Process, Battling Sloppy AI-Generated Extensions
GNOME developers were quite busy in closing out the month of July from continued work on establishing a formal Request For Comments (RFC) process for the project to battling the continued flood of AI-generated GNOME Shell extensions… ⌘ Read more
AMD Begins Posting Display Core Next 6 “DCN6” Linux Patches For RDNA5 GPUs
AMD closed out the month of July by posting some new AMDGPU Display Core “DC” patches. Most notable with this weekly patch ritual is several patches beginning to establish the foundation for Display Core Next 6 “DCN6” as their next-generation display IP. The patches tie DCN6 to the AMD GFX13 graphics engine, which is anticipated to be for the next-generation RDNA5 graphics processors… ⌘ Read more
The Major Labels Propose Rules to Keep AI Slop Off the Charts
Major record labels including Universal, Sony, and Warner have proposed excluding AI-generated songs from official charts unless they are “substantially human made,” properly labeled, legally produced, and free from manipulation concerns. The Verge reports: The proposal goes quite a bit further than a labeling proposal put forth by the RIAA, t … ⌘ Read more
New Google Earth AI Tool Could Fuel Misinformation, Experts Say
Google has integrated its Nano Banana 2 image generator into Google Earth, allowing users to place AI-generated events and objects onto real satellite imagery. The company says its AI-generated images contain invisible watermarks detectable through Gemini or Lens, but the BBC found those safeguards and some third-party detection tools can be fooled … ⌘ Read more
New York Sues Kalshi For Running ‘Illegal Gambling Operation’
New York has sued prediction-market platform Kalshi, alleging it operates an “illegal gambling operation” without state authorization. “No matter what they call themselves, prediction markets like Kalshi are gambling platforms, plain and simple,” said New York Attorney General Letitia James in a press release announcing the lawsuit. “By ignoring our laws, … ⌘ Read more
LinkedIn Introduces a ‘Seems Like AI Slop’ Button
An anonymous reader quotes a report from 404 Media: LinkedIn, a social network awash with long AI-generated posts from executives and other corporate workers, has introduced a new button that users can click to flag if a post “seems like AI slop,” according to 404 Media’s own tests. If you have been anywhere near LinkedIn in the past couple of years, you have undoubtedly seen u … ⌘ Read more
Linux 7.3 Will Treat Intel Nova Lake S Graphics As Stable
Ahead of the next-generation Intel Nova Lake processors expected to begin rolling out around the start of 2027, the upcoming Linux 7.3 kernel cycle is going to begin treating Nova Lake S processors with their integrated graphics as stable… ⌘ Read more
GCC Adopts Policy Rejecting Significant AI-Generated Code
GCC has adopted a policy rejecting substantial code contributions generated by or derived from LLMs. “This covers not just code copied directly from tools like ChatGPT, Gemini, or GitHub Copilot, but also any versions of the code later edited or rewritten by a human, provided that the final contribution is still based on material generated by the system,” repo … ⌘ Read more
NextEra, Brookfield to Build $100 Billion Kentucky Data Campus
NextEra and Brookfield plan to invest more than $100 billion to transform a former uranium-enrichment site in Kentucky into a data center campus with a generating plant. “The privately funded effort will include construction of 2 gigawatts of natural gas-fired power at or near the site in Paducah in western Kentucky, and as much as 2.6 gigawatts of … ⌘ Read more
Codeberg Bans Cryptocurrency and LLM-Generated Code Projects
Longtime Slashdot reader AmiMoJo shares a report from Hackaday: Community-led open source project hosting site Codeberg has formally announced that projects whose code is largely or fully machine-generated through LLMs and other ‘AI’ tools will no longer be welcome. This follows on the heels of a similar ban on cryptocurrency-related projects. The … ⌘ Read more
ChatGPT Starts Blocking Direct Requests To Copy an Author’s Style
An anonymous reader quotes a report from Ars Technica: OpenAI’s ChatGPT is now refusing requests to generate text that directly mimics the style of famous authors. When asked to do so, the popular LLM instead offers a response that draws on the “broad qualities” of those authors “while remaining distinct in its own voice,” for example. This morning, A … ⌘ Read more
32 of 35 Students Caught Using Hilariously Wrong AI-Generated Answers for Professor’s Midterm
“32 of my 35 students between two classes failed a portion of their midterm because they all used AI to generate their entire response,” history professor Jason Gibson says in a viral video shared over 10 million times. “And apparently, they didn’t proofread it.”
The instructions included a … ⌘ Read more
Did Virginia Regulators Downplay Data Center Health Concerns?
Politico reports that in the Virginia area alone there’s dozens of data center projects “that altogether need 70 gigawatts of power — equivalent to 70 nuclear plants” — currently seeking connection to their grid. But there’s also concerns about a Virginia data center powered with natural gas and backup diesel generators:
When Virginia’s top environ … ⌘ Read more
Amazon Cracks Down On Use of AI Images By Sellers
CNBC reports:
Amazon is requiring that third-party sellers label any product images or videos that contain “AI-generated people” after New York recently passed a law mandating greater transparency around “synthetic performers” in ads… The policy directs sellers to tag images [and videos or other graphics on listing pages] with specific metadata keywords before they’re uploade … ⌘ Read more
Wine 11.14 brings improvements for DirectSound, BCrypt, FreeBSD
The Wine 11.14 development release is officially out now bringing with it an assortment of new features to improve Windows apps / games on other platforms.
Read the full article on GamingOnLinux. ⌘ Read more
Debian Considering General Resolution Over LLM Usage In The Project
Debian developers are discussing a general resolution whether to permit AI large language model (LLM) usage within the Debian software project… ⌘ Read more
World’s First Wave Power Generator Receives Certification For Regular Use
“The Norwegian certification agency DNV has certified the commercial wave-driven power generator Corpower C4 for regular use,” writes Longtime Slashdot reader Qbertino. “German news site heise.de has a detailed write-up. See a CGI video of the power station and its internals, as well as the company’s website [at their respec … ⌘ Read more
AMD EPYC 9006 Venice Announced & Looks Poised To Be A Grand Slam
While AMD EPYC 9005 “Turin” launched just under two years ago, it has aged remarkably well. It is one of the few CPU generations in my past 22 years of Linux hardware reviews/benchmarking that has still captivated me two years on in finding still typically industry-leading performance across varying workloads, exceptional reliability, and all around a very robust platform. Today though at AMD Advancing AI 2026, Lisa Su formally announced EPYC 9006 “Ve … ⌘ Read more
@movq@www.uninformativ.de Good question. Tarballs are probably not needed, but might be convenient for people who don’t want to or can use a version control system. Not sure if there are non-techies who use your software. Tarballs for branches are overkill, though, I agree.
Looking at this more closely: As for the feeds, how about filenames “tags.atom” and “commits.atom”? Unless, of course, they were already named like that before.
For the tags feed it would be cool to include the actual changelog entries to be more useful if somebody takes this approach to get notified of new versions. But that would mean you have to duplicate the changelog entry into the annotated tag. And then you can’t fix changelog typos in the feed anymore. Alternatively, the feed generation would need to extract the section from the the CHANGES file. That has the benefit of automatically providing changelogs for past versions in the feed.
Beetleball looks hilarious, like Rocket League with bugs that have crazy abilities
Beetleball looks like it could be another good one to have a blast online with friends, or just to have a general laugh with.
Read the full article on [GamingOnLinux](https://www.gamingonlinux.com/2026/07/beetleball-looks-hilarious-like-rocket-league-with-bugs-that-have-cra … ⌘ Read more
twtd instnace or via Github/Gitea or any other publishing backend (doesn't amtter). Please read.
and @david@daiwei.me your rename shipped 🙌 it’s “Generate recovery code” now (you were right — mints a fresh one each press), + it asks before replacing an existing code so you don’t nuke the one you saved 😅
@david@daiwei.me Not sure if you only mean the code segments or in general. In theory, a general darker text color for read messages would probably work. The thing is that regular white on black is quite standard. In Newsboat, new articles are red (I opted for yellow here) and read ones white. I found that useful and kinda copied it for tt.