RSS
[>] Some Datacenters Divert Power from Homes. Will It Drive Homeowners to Solar and Batteries?
bot.slashdot
robot(spnet, 1) — All
2026-05-17 06:22:02


An anonymous reader shared this report from Electrek:

A Nevada utility just told 49,000 Lake Tahoe residents that it's redirecting 75% of their electricity supply to data centers, and they have less than a year to find a new power source. It's one of the starkest examples yet of the AI boom's impact on everyday Americans... NV Energy needs the capacity for data centers being built by Google, Apple, and Microsoft around the Tahoe-Reno Industrial Center east of Reno, according to Fortune... Data centers drove half of all US electricity demand growth last year....

That dynamic — small residential customers losing out to massive industrial electricity buyers — is exactly what's driving the broader shift to distributed solar and storage. When the grid becomes unreliable or unaffordable because of data center demand, the homeowners who have solar panels and a battery in the garage are the ones with options.

"The shift is measurable," they argue:
Third-party ownership models (leases and power purchase agreements), which still qualify for the [U.S.] commercial investment tax credit through 2027, are projected to grow 25% in 2026 and capture up to 69% of residential installations, up from roughly 45% in 2025. Homeowners aren't waiting for incentives to come back — they're finding new ways to get solar on their roofs... [A] battery that can store cheap solar energy and deploy it during peak hours is increasingly essential. California utility customers alone are adding roughly 8,000 new home batteries per month — about 100 MW of new storage capacity. Municipal programs are accelerating the trend. Ann Arbor, Michigan, recently became the first US city to directly deploy solar and battery systems on 150 homes through its city-owned utility. Vermont's Green Mountain Power is offering home batteries at little to no upfront cost. These programs signal that utilities themselves recognize the value of distributed energy.

[ Read more of this story ]( https://hardware.slashdot.org/story/26/05/17/0125222/some-datacenters-divert-power-from-homes-will-it-drive-homeowners-to-solar-and-batteries?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] An Entire Wikipedia That's 100% AI Hallucinations
bot.slashdot
robot(spnet, 1) — All
2026-05-17 03:22:01


"Every link leads to an entry that does not exist yet," explains the GitHub page for a Wikipedia-like site called Halupedia. "Until you click it, at which point an LLM pretends it has always existed and writes it for you, in the deadpan register of a 19th-century scholarly press..."

Every article is invented on demand. The footnotes are also lies... The hardest problem with an infinite, on-demand encyclopedia is internal contradiction... When the LLM writes an article, it is required to add a context="..." attribute on every <a> it inserts, summarising the future article it is linking to (e.g. context="19th-century clerk who formalized footnote drift, Pellbrick's mentor")... When that target article is later requested for the first time, the worker loads the accumulated hints and injects them into the system prompt as "PRIOR REFERENCES — these are CANON". The LLM is instructed that the encyclopedia is hallucinated and absurd, but it must not contradict itself.

Fast Company reports that Halupedia was created by software developer BartÅomiej Strama, who confessed in a Reddit comment that the site came about after a drunk night with a friend. In the week since launch, he says Halupedia has amassed more than 150,000 users."

Beyond indulging in silly alternate histories, what's the point of using Halupedia? Strama hinted at one larger purpose in a reply to a donor on his Buy Me a Coffee page: "Your contribution towards polluting LLM training data will surely benefit society!" he wrote.

The site is licensed as free software under the GPL-3.0 license.

Thanks to long-time Slashdot reader schwit1 for sharing the news.

[ Read more of this story ]( https://slashdot.org/story/26/05/16/0732218/an-entire-wikipedia-thats-100-ai-hallucinations?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Я сделал альтернативу Cursor за выходные: она ничего не пишет за программиста и приносит 1,29 млн рублей в месяц
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-17 02:35:04


Опубликовано: Sat, 16 May 2026 21:40:03 GMT
Канал: Все статьи подряд / Системное программирование / Хабр

Это пародия... на многоеСтатья‑интервью написана на основе разговора с Артёмом, основателем проекта Stopilot — редактора кода, который помогает разработчику не писать код, пока тот не понял задачу.Большинство историй про AI‑инструменты выглядят одинаково: человек открывает Cursor, за выходные собирает SaaS, выкладывает скриншот MRR и дальше объясняет, что главное — не думать, а быстро валидировать гипотезы. Рынок не ждёт, окно возможностей закрывается, конкуренты уже деплоят.Артём пошёл в другую сторону. Он заметил, что после Cursor у многих команд появилась новая проблема: код пишется быстрее, чем его успевают понимать. За выходные он собрал альтернативу Cursor, которая на любой промпт отвечает: «Сначала сформулируйте задачу человеческими словами». Через 8 месяцев Stopilot вышел на 1,29 млн рублей в месяц.Он сам расскажет, как это было. Почитаем]]>

https://habr.com/ru/articles/1036002/

[>] How I Added an LLM-Based Grammar Checking + TeX Math Import To LibreOffice
bot.slashdot
robot(spnet, 1) — All
2026-05-17 02:22:01


Former Microsoft programmer Keith Curtis "wrote and self-published After the Software Wars to explain the caliber of free and open source software," according to his entry on Wikipedia, "and why he believes Linux is technically superior to any proprietary OS."

He's also KeithCu (long-time Slashdot reader #925,649), and has written a blog post on "How I added an LLM-based grammar checking + TeX math import to LibreOffice."

:

At Microsoft, I spent five years working on the text components RichEdit and Quill, and came to understand the "physics" of word processing: the file formats, data structures, and algorithms that provided fast access to text and properties, independent of the length of the file. Selecting one million characters to make them bold took about the same time as changing one character, because of the clever data structures (piece tables) and algorithms in these engines...

When I decided to add a real-time AI grammar checker to [LibreOffice plugin] WriterAgent, I knew what I was getting into, but I underestimated the trickery of LibreOffice's UNO.

His site shares the surprises he encountered, one by one. (Starting with "the office suite throws a bunch of initialization variables at your constructor. If your Python __init__ method doesn't handle them, the code fails to map the call, the stack misaligns, and the program dies.") There's sentence casing issues, duplicate words, and foreign-language syntax — all culminating in new features for "a LibreOffice extension (Python + UNO) that adds generative AI editing to Writer, Calc, and Draw..."
"If you want to try it out, the repo is here... Let's make LibreOffice and the free desktop AI-native!"

[ Read more of this story ]( https://news.slashdot.org/story/26/05/16/2047205/how-i-added-an-llm-based-grammar-checking--tex-math-import-to-libreoffice?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] The Apple-OpenAI Alliance is Fraying, Setting Up a Possible Legal Fight
bot.slashdot
robot(spnet, 1) — All
2026-05-17 01:22:02


Bloomberg reports that Apple's two-year-old partnership with OpenAI "has become strained, according to people familiar with the matter."

Bloomberg describes OpenAI as "failing to see the expected benefits from the deal and now preparing possible legal action."

OpenAI lawyers are actively working with an outside legal firm on a range of options that could be formally executed in the near future, said the people, who asked not to be identified because the deliberations are private. That could include sending the iPhone maker a notice alleging breach of contract without necessarily filing a full lawsuit at the outset, according to the people... OpenAI believed that the companies' partnership, which wove ChatGPT into Apple software, would coax more users into subscribing to the chatbot. It also expected deeper integration across more Apple apps and prime placement within the Siri assistant. Instead, Apple's use of OpenAI technology across its operating systems remains limited, and features can be hard to find...

Apple has had its own concerns about OpenAI, including whether the company does enough to protect user privacy. And a recent push [by OpenAI] to make devices — an effort overseen by former Apple executives — has rankled the iPhone maker.

Any legal move by OpenAI likely wouldn't come until after the conclusion of the Musk trial, according to the people. No final decisions have been made, and OpenAI still hopes to resolve its issues with Apple outside of court.

The article points out that OpenAI "initially believed the deal could generate billions of dollars per year in subscriptions — something that hasn't come close to happening." An OpenAI executive argues to Bloomberg that from a product perspective Apple hasn't done everything they could, "and worse, they haven't even made an honest effort."

[ Read more of this story ]( https://apple.slashdot.org/story/26/05/16/186200/the-apple-openai-alliance-is-fraying-setting-up-a-possible-legal-fight?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Выпуск системы тестирования памяти Memtest86+ 8.10
lor.opennet
robot(spnet, 1) — All
2026-05-17 00:44:02


Доступен выпуск программы для тестирования оперативной памяти Memtest86+ 8.10. Программа не привязана к операционным системам и может запускаться напрямую из прошивки BIOS/UEFI или из загрузчика для проведения полной проверки оперативной памяти. В случае выявления проблем построенная в Memtest86+ карта сбойных участков памяти может использоваться в ядре Linux для исключения проблемных областей при помощи опции memmap. Код проекта распространяется под лицензией GPLv2.

https://www.opennet.ru/opennews/art.shtml?num=65463

[>] На соревновании Pwn2Own в Берлине продемонстрированы взломы RHEL, Windows 11 и AI-агентов
lor.opennet
robot(spnet, 1) — All
2026-05-17 00:44:02


Подведены итоги трёх дней соревнований Pwn2Own Berlin 2026, на которых были продемонстрированы успешные атаки с использованием 47 ранее неизвестных уязвимостей (0-day) в операционных системах, браузерах, AI-системах и платформах виртуализации. При проведении атак использовались самые свежие программы и операционные системы со всеми доступными обновлениями и в конфигурации по умолчанию.

https://www.opennet.ru/opennews/art.shtml?num=65464

[>] California Law Limits 'Recyling' Logo in New Attack on Plastic Waste
bot.slashdot
robot(spnet, 1) — All
2026-05-17 00:22:01


"Most of the plastic waste in California is about to lose the recycling symbol," writes the Washington Post's "climate coach."

The "chasing arrows" symbol, created in 1970 by a college student inspired by the burgeoning environmental movement, has been stamped indiscriminately on plastic bottles, clamshell takeout containers, chip bags and more for decades. The majority of the items emblazoned with the mark have been virtually impossible to recycle for most people. California lawmakers say they want to end the charade: Under what's known as the Truth in Recycling law, plastics cannot use the symbol if they aren't collected by curbside programs serving 60% of Californians and sorted by facilities serving 60% of the state's recycling programs (with some additional requirements). If the law goes into effect as scheduled on October 4, more than half of the types of plastic packaging and products sold in the state can no longer carry the chasing arrows logo. That will affect plastic films, foam, PVC and mixed plastics...

Food and packaging groups have sued the state of California, calling the law a form of censorship whose vague restrictions violate the First Amendment and due process rights.... Advocates of the law counter that corporations deliberately misled the public by turning the recycling symbol into a marketing device that masks the fact that only a small fraction of plastic packaging is ultimately recycled... The mark was originally intended to informwaste processors what polymers a plastic item was made from. But the public reasonably assumed anything stamped with the symbol was recyclable. Millions of tons of worthless plastic trash have since poured into recycling facilities unable to process it....

States are now taking action. Seven have passed laws shifting the cost of recycling onto packaging makers. Oregon and Washington have lifted requirements that plastic containers carry the chasing arrows symbol.

The article notes that
Norway already recovers 97% of beverage bottles, while Slovakia recycles 60% of plastic packaging. "But the U.S. only recovers about a third of its PET and HDPE bottles, and just 13% of plastic packaging, according to U.S. Plastics Pact, an industry-led forum.

"It won't be easy for the U.S. to reach higher levels of recycling: The necessary infrastructure and incentives are chronically underfunded, no federal mandate exists for minimum-recycled-content that would create demand and a mix of mostly unrecyclable hydrocarbons still dominates the waste stream."

[ Read more of this story ]( https://news.slashdot.org/story/26/05/16/0544201/california-law-limits-recyling-logo-in-new-attack-on-plastic-waste?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Новые версии Debian 12.14 и 13.5
lor.opennet
robot(spnet, 1) — All
2026-05-16 23:44:06


Сформировано пятое корректирующее обновление дистрибутива Debian 13, в которое включены накопившиеся обновления пакетов и добавлены исправления в инсталлятор. Выпуск включает 144 обновления с устранением проблем со стабильностью и 103 обновления с устранением уязвимостей. Из изменений в Debian 13.5 можно отметить обновление до свежих стабильных версий пакетов apache2, openssl и systemd. Удалён пакет dav4tbsync, функциональность которого теперь доступна в Thunderbird 140.

https://www.opennet.ru/opennews/art.shtml?num=65462

[>] Anthropic's Mythos Helped Build a Working macOS Exploit in Five Days
bot.slashdot
robot(spnet, 1) — All
2026-05-16 23:22:01


"The vulnerability is simple in practice," writes Tom's Hardware: "run a command as a standard user and gain root (administrator) access to the machine."

And it was Mythos Preview that helped the security researchers at Palo Alto-based Calif bypass a five-year Apple security effort in just five days. The blog 9to5Mac reports:

Last year, Apple introduced Memory Integrity Enforcement (MIE), a hardware-assisted memory safety system designed to make memory corruption exploits much harder to execute... [The researchers note it's built into Apple all models of the iPhone 17 and iPhone Air, and some MacBooks] They explain they have a 55-page technical report on the hack, but they won't release it until Apple ships a fix for the exploit. But they do note in broad terms that Anthropic's Mythos Preview model helped them identify the bugs and assisted them throughout the entire collaborative exploit development process.

"Mythos Preview is powerful: once it has learned how to attack a class of problems, it generalizes to nearly any problem in that class. Mythos discovered the bugs quickly because they belong to known bug classes. But MIE is a new best-in-class mitigation, so autonomously bypassing it can be tricky. This is where human expertise comes in. Part of our motivation was to test what's possible when the best models are paired with experts. Landing a kernel memory corruption exploit against the best protections in a week is noteworthy, and says something strong about this pairing...."

[I]n a time when even small teams, with the help of AI, can make discoveries such as this one, "we're about to learn how the best mitigation technology on Earth holds up during the first AI bugmageddon."

[ Read more of this story ]( https://apple.slashdot.org/story/26/05/16/1643203/anthropics-mythos-helped-build-a-working-macos-exploit-in-five-days?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] The Search for the Next 'James Bond' Actor Has Begun
bot.slashdot
robot(spnet, 1) — All
2026-05-16 22:22:01


Variety reports:

Amazon MGM Studios started auditioning actors for the part of 007 in the past few weeks, Variety has learned... The next James Bond film will be directed by Denis Villeneuve, the filmmaker behind the "Dune" franchise, "Arrival" and "Sicario." Amy Pascal of the "Spider-Man" films and David Heyman of the "Harry Potter" series will produce the picture, which will feature a script from "Peaky Blinders" creator Steven Knight. Tanya Lapointe ("Dune") is executive producing the film.

The BBC notes it's been five full years since the release of the last Bond film No Time To Die, and 15 months "since Amazon MGM Studios took control of the Bond franchise." But they also offer this list of "the current bookmakers' favourites" for who will become the seventh actor to play the gadget-loving super spy in the franchise's 64-year history:

Callum Turner — the 36-year-old actor is the current bookies' frontrunner. He has been in the Fantastic Beasts franchise, was nominated for a Bafta for TV drama The Capture, and starred in Apple TV's Masters of the Air...

Jacob Elordi — the Australian actor, 28, made his name in TV's Euphoria and cult hit film Saltburn, and was nominated for an Oscar this year for playing the monster in Frankenstein. The Rest Is Entertainment host Marina Hyde recently said she'd heard from a number of well-placed sources that he's now "in pole position" to be Bond.

Harris Dickinson — the 29-year-old is playing John Lennon in the forthcoming major Beatles biopics, and has previously appeared in Maleficent, The King's Man, Where the Crawdads Sing and Babygirl, and received a Bafta TV Award nomination for A Murder at the End of the World.

Henry Cavill — the Superman, The Witcher and Mission: Impossible actor is a fan favourite and was widely regarded to have been the runner-up when Craig landed the part. But at 43, is he now too old to start a lengthy stint as 007?

Aaron Taylor-Johnson — the Bafta-nominated 35-year-old, known for films like Kick-Ass, Kraven the Hunter and 28 Years Later, is a perennial contender, and would fit the bill.

Theo James — the suitably suave star, 41, made his name in the Divergent films and has since built his reputation in The Time Traveler's Wife, The White Lotus and The Gentlemen.
...Or producers could well go for one of the many other names who have been touted for the role, or an unexpected choice.

[ Read more of this story ]( https://entertainment.slashdot.org/story/26/05/16/0623208/the-search-for-the-next-james-bond-actor-has-begun?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Fedora's AI Developer Desktop Initiative Blocked by Community Backlash
bot.slashdot
robot(spnet, 1) — All
2026-05-16 21:22:01


The blog It's FOSS has an update on the Fedora AI Developer Desktop Initiative, a proposed platform for AI/machine learning workloads on Fedora. It's now been blocked "after two Fedora Council members retracted their earlier approval votes."

The initiative was proposed by Red Hat engineer Gordon Messmer, aiming to deliver an Atomic Desktop with accelerated AI workload support, covering developer tools, hardware enablement, and building a community around AI on Fedora... At the May 6 council meeting, the members unanimously voted to approve this new initiative. After which a short, lazy consensus window was left open until May 8 to accommodate absent members, after which the decision was to be ratified.
But that last bit never happened, as council member Justin Wheeler (Jflory7) was the first person to change their vote to -1... ["While I strongly support leveraging AI to establish Fedora as a leading platform, completely rearchitecting our kernel strategy is a massive structural shift. It requires explicit alignment with our legal and engineering stakeholders before we commit the project to this path."]

Following that, fellow council member Miro HronÄok (churchyard) put in his -1, saying that he had originally assumed the proposal was purely additive and therefore uncontroversial. But seeing the community's response, he realized that he was mistaken about that. As an elected representative, he felt the need to reflect on this major proposal before signing it off.

Over 180 replies have piled up in the proposal's discussion thread, with many well-known Fedora contributors pushing back on things like kernel policy, proprietary software, and project identity. Hans de Goede from the packaging team called out the proposal's emphasis on CUDA support as going against Fedora's foundational commitment to free software, arguing that open alternatives like AMD's ROCm and Intel's oneAPI should be the focus instead.

[ Read more of this story ]( https://linux.slashdot.org/story/26/05/16/0815220/fedoras-ai-developer-desktop-initiative-blocked-by-community-backlash?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Программа gallery-dl ушла с GitHub на Codeberg из-за DMCA
lor.opennet
robot(spnet, 1) — All
2026-05-16 20:44:03


gallery-dl — программа для автоматического скачивания картинок с сайтов: Reddit, VK, X/Twitter… Вдохновлена youtube-dl (ныне yt-dlp) и тоже написана на Питоне.

Как и yt-dlp, она может использоваться для нарушения авторских прав. В конце марта Fakku LLC — крупный издатель переводных порнографических комиксов, игр и мультфильмов — [ потребовал ]( https://github.com/mikf/gallery-dl/discussions/9304 ) удалить из программы возможность скачивать с 28 пиратских сайтов. И удалить соответствующие модули [ из истории git ]( https://docs.github.com/articles/remove-sensitive-data ) .

В обсуждении пользователи возмущаются, что Fakku тоже начинал как пиратский сайт, а теперь устроил крестовый поход против пиратов. И что некоторые из удаляемых модулей относятся к сайтам, которые уже удалили весь контент Fakku.

Автор программы обратился за советами в EFF и поддержку GitHub, но ответов не получил. В итоге в апреле перенёс [ на Codeberg ]( https://codeberg.org/mikf/gallery-dl ) полную версию программы и [ выполнил ]( https://github.com/mikf/gallery-dl/discussions/9304#discussioncomment-16348953 ) требования в отношении GitHub.

Багтрекеры работают и на GitHub, и на Codeberg, не синхронизируясь.

https://www.linux.org.ru/news/opensource/18294781

[>] Модель угроз и особенности оценки уязвимостей в ядре Linux
lor.opennet
robot(spnet, 1) — All
2026-05-16 20:44:02


Линус Торвальдс принял в состав ядра документ, регламентирующий процесс обработки ошибок, связанных с безопасностью, определяющий модель угроз, поясняющий, какие ошибки в ядре трактуются как уязвимости, и разбирающий действия с ошибками, выявленными при помощи AI. Документ подготовлен Вилли Тарро (Willy Tarreau), автором HAProxy и давним разработчиком ядра Linux, отвечавшим за сопровождение нескольких стабильных веток ядра. В качестве основы использованы договорённости, достигнутые в ходе обсуждения недавно выявленных критических уязвимостей в ядре (1, 2, 3, 4), раскрытых до публикации исправлений и для которых, благодаря AI, удалось сразу создать рабочие эксплоиты.

https://www.opennet.ru/opennews/art.shtml?num=65461

[>] Trump Phones Start Shipping - But Were There Really 600,000 Preorders?
bot.slashdot
robot(spnet, 1) — All
2026-05-16 20:22:02


USA Today reports:

Trump Mobile phones are being shipped this week, the company exclusively confirmed to USA TODAY in an email May 11....
The company's first smartphone — the T1 Phone — was originally scheduled for release in August. However, the golden gadget's release was later delayed to October before being pushed back again to this week. Now, Trump Mobile CEO Pat O'Brien told USA TODAY, pre-ordered phones will start getting sent out to customers this week... O'Brien said the company anticipates all pre-ordered phones to be delivered within the next several weeks... The company's 5G "47 Plan" is available for $47.45 a month, a nod to President Donald Trump's two presidential terms, according to the website... Customers will also have Trump(SM) displayed as the status bar in their network.

The Verge reported the phone was added last week to Google's public list of devices certified for Google Play, "usually one of the final steps before an Android phone is launched."

Trump Mobile may have broken radio silence partly in response to a recent wave of media coverage alleging that buyers had received emails notifying them that their preorders had been canceled, coverage that even made it onto Stephen Colbert's The Late Show... [T]here's seemingly no evidence of the alleged cancellation emails beyond unverified social media claims.

In January The Verge also questioned reports that 600,000 people preordered the Trump phone with a $100 deposit. "I can't find a shred of evidence that this figure is true," calling it "a microcosm of how the modern media landscape and AI chatbots can combine to give falsities the sheen of respectability."

I first saw the figure in, of all places, the Threads feed of California governor Gavin Newsom's press office, which had shared a screenshot of a tweet of a Grok summary making the claim. Trustworthy, right? The Grok post cites "reports from sources like Fortune, NPR, and The Guardian" for the 600,000 preorders, but a quick search of their recent output shows no sign of the number... India's Economic Times and Hindustan Times both reported a more specific figure of 590,000 preorders, referencing an unspecified Associated Press report as the source. [The Associated Press] VP of corporate communications, Lauren Easton, confirmed to me that "AP's original stories never contained such a number...."

Hindustan Times writer Shamik Banerjee called the citation "a typo," and told me that the figure was in fact taken from The Times of India. The Times of India story, which is bylined only to the newspaper's lifestyle desk, is more transparent in its sourcing: a viral post by a meme account... It's been covered by multiple publications, now presented as fact on MSN.com and tech site Phone Arena. And that coverage has helped it to filter into the chatbots and not just Grok — Gemini and ChatGPT were both happy to confirm to me that 600,000 T1 Phones have been ordered so far, the former falsely attributing the number to the Associated Press, and the latter to Phone Arena.

As for how many Trump Phone preorders have actually been placed? No one outside the company knows.

[ Read more of this story ]( https://mobile.slashdot.org/story/26/05/16/0258209/trump-phones-start-shipping---but-were-there-really-600000-preorders?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Why Is the US Job Market So Tough, Especially for Recent College Grads?
bot.slashdot
robot(spnet, 1) — All
2026-05-16 19:22:01


What's going on with the U.S. job market? "The economy is growing. Unemployment is low," notes the Washington Post. "And yet, for millions of workers, finding a job has become harder than at almost any other point in decades," with the hiring rate "well below pre-pandemic levels for more than a year."

Part of the problem? "Of the net 369,000 positions added across the entire economy since the start of 2025, health care alone accounted for nearly 800,000 — meaning every other sector, taken together, shed jobs." By the end of 2025 nearly half of college graduates ages 22 to 27 were working at jobs that didn't require a degree, according to stats from New York's Federal Reserve Bank.

The headline unemployment rate, at 4.2%, looks healthy. But that figure has been buoyed by a shrinking labor force: Fewer people are actively looking for work, which keeps the rate down even as hiring slows...

[Some large tech companies] are trying to recalibrate after their hiring sprees of 2021 and 2022, when many had raised pay, offered flexible schedules and signed people quickly... Higher interest rates have also made expansion more expensive, pushing many firms to invest in technology rather than headcount. Another reason hiring has slowed is uncertainty about AI. Even though the technology has not yet replaced large numbers of workers, it is already shaping how companies think about hiring. "I don't think this is AI displacement," said Ben Zweig, chief executive of Revelio Labs, a workforce data company. "What we're seeing is anticipatory." Instead of rushing to bring on new workers, some firms are waiting to see how the technology evolves and which tasks it will eventually take over.

A 39-year-old web developer tells the Post it took 453 job applications to get a handful of interviews and two offers. And a journalism school graduate said they'd sent hundreds of job applications but most led nowhere, and they're now couch-surfing to save money.

But the problem seems even worse for young people. One 18-year-old told the Post that in a year and a half of job searching, they'd yet to even meet an employer in person.

The unemployment rate for people ages 22 to 27 who recently completed college hit 5.6% in the final months of 2025 — well above the 4.2% rate for all workers, according to national data from the Federal Reserve Bank of New York... At one point last summer, new workforce entrants made up a larger share of the unemployed than at any point since the late 1980s — higher even than during the Great Recession. When hiring slows, the door closes first on those without an existing foothold. For the class of 2026, the timing could hardly be worse.

"It is getting increasingly clear that young people are being more affected by AI than older workers," Zweig said. Companies are not eliminating jobs at scale, but many are slow to hire junior workers. At the same time, older workers are staying in the labor force longer, leaving fewer openings for new arrivals. Even when jobs are available, the bar has shifted. Positions once considered entry level now often require several years of experience, technical expertise and familiarity with AI tools. With fewer openings and more applicants, companies are holding out for candidates who can do the job immediately and need little training... Employers are also looking for a different mix of skills. An analysis of millions of job postings by Indeed found that communication skills now appear in nearly 42% of all listings, while leadership skills feature in nearly a third — capabilities that are harder to prove on a résumé and harder still to demonstrate without an existing professional network. Christine Beck, a career coach who works with early-career job seekers, said employers are asking more of the people they do hire.

[ Read more of this story ]( https://it.slashdot.org/story/26/05/16/0451234/why-is-the-us-job-market-so-tough-especially-for-recent-college-grads?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Робот-поводырь за 1600 $: как ИИ пришел туда, где раньше были только собаки и благотворительность
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-16 17:35:04


Опубликовано: Sat, 16 May 2026 13:05:48 GMT
Канал: Все статьи подряд / Робототехника / Хабр

В сферу помощи людям с ограниченными возможностями венчурный капитал и топ-исследователи никогда не спешили. Слишком маленький рынок, сложный пользователь, долгая окупаемость. Но теперь ИИ-индустрия заходит на эту территорию всерьез — полноценным научным проектом на главной конференции года по искусственному интеллекту.Команда Бингемтонского университета создала робота-поводыря с LLM внутри. В отличие от обычной собаки, он разговаривает с человеком по ходу маршрута: спрашивает, куда нужно, предлагает варианты пути, объясняет, что происходит вокруг. Работу представили в январе 2026 года на конференции AAAI в Сингапуре.Само по себе появление такого робота — еще не сенсация: каждый месяц на конференциях по ИИ показывают десятки прототипов. Интересно вообще другое. Похожие проекты запускают по всему миру независимо друг от друга. Все используют практически одинаковое железо, похожие языковые модели и решают почти одну и ту же задачу.Узнаем, как сфера социальных проектов для людей с ОВЗ становится новой индустрией и свежим плацдармом для инженерных вызовов. Читать далее]]>

https://habr.com/ru/companies/ru_mts/articles/1035652/

[>] Свой P2P-файлообменник с блэкджеком и NAT punching: как пет-проект Z-Folder стал заменой облакам
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-16 16:35:04


Опубликовано: Sat, 16 May 2026 11:39:33 GMT
Канал: Все статьи подряд / Системное программирование / Хабр

В современных реалиях, когда интернет всё чаще напоминает минное поле сблокировками и замедлениями, надежда на зарубежные (да и на некоторыелокальные) сервисы тает с каждым днем. В какой-то момент я пришел к выводу:если хочешь, чтобы инструмент работал стабильно и не зависел от настроенияпровайдеров или геополитики — напиши его сам. Так появился, например, Fury Messenger (о котором я уже писал здесь) — мессенджер дляAndroid, заточенный под нестабильное соединение. Но решив проблему текстовогообщения, я столкнулся со следующей «болью»: обмен файлами и документооборот. Именно на большом обьеме, а не кидая файлики или фоточки через мессенджер. В этой статье расскажу, как я реализовал систему прямой передачи данных междукомпьютерами, почему облака — это иногда лишнее звено, и как мой «велосипед»в итоге уехал в B2B-сегмент. Проблема: Танцы с бубном вокруг VPN Типичный сценарий обмена файлами сегодня выглядит так: 1.  Залить в Telegram (ограничение по размеру, скорость иногда «режут»).2.  Закинуть на Google Drive/Dropbox (нужен VPN, который нужно то включать, то    выключать, чтобы не отвалились другие сервисы).3.  Передать через локальную сеть (сложно настроить права доступа, если люди    сидят в разных сегментах или городах). Мне хотелось простоты: как в старой доброй Windows Shared Folder, но черезинтернет и без необходимости быть системным администратором 80-го уровня.Чтобы можно было просто «расшарить» папку конкретному человеку и передать файлна максимально возможной скорости канала. Читать далее]]>

https://habr.com/ru/articles/1035894/

[>] White Noise v2026.5.7
lor.opennet
robot(spnet, 1) — All
2026-05-16 15:44:04


White Noise — мессенджер для Android и iOS, в котором используется протокол [ Marmot ]( https://github.com/marmot-protocol/marmot ) . В приложении реализованы личные чаты и групповые. Marmot представляет собой обмен сообщениями по протоколу [ MLS (The message layer security) ]( https://www.rfc-editor.org/rfc/rfc9420.html ) через общедоступные сервера NOSTR (сервера, которые хранят json файлы с текстовыми данными) и выдают их по собственному протоколу, а также Blossom-сервера (сервера, хранящие бинарные данные). [ NOSTR (Notes and Other Stuff Transmited by Relays) ]( https://github.com/nostr-protocol/nostr/ )  — технология обмена текстовыми данными через простые сервера-релеи, при которых почти вся логика работы приложений находится в самих приложениях. На базе технологии работает социальная сеть, для создания профиля пользователя не нужна регистрация, используются криптографические ключи. И хотя изначальная идея NOSTR в социальной сети, её инфраструктуру можно использовать для обмена любым текстом, что и делает Marmot, реализующий e2e шифрование сообщений. Внутреннее ядро приложения написано на Rust, графический интерфейс — Flutter.

https://www.linux.org.ru/news/internet/18294546

[>] Релиз Erlang/OTP 29
lor.opennet
robot(spnet, 1) — All
2026-05-16 15:44:02


Состоялся релиз функционального языка программирования Erlang 29, нацеленного на разработку распределённых отказоустойчивых приложений, обеспечивающих параллельную обработку запросов в режиме реального времени. Язык получил распространение в таких областях, как телекоммуникации, банковские системы, электронная коммерция, компьютерная телефония и организация мгновенного обмена сообщениями. Одновременно выпущен релиз OTP 29 (Open Telecom Platform) - сопутствующего набора библиотек и компонентов для разработки распределённых систем на языке Erlang.

https://www.opennet.ru/opennews/art.shtml?num=65455

[>] Linux Kernel Outlines What Qualifies As A Security Bug, Responsible AI Use
bot.slashdot
robot(spnet, 1) — All
2026-05-16 15:22:02


The Linux 7.1 kernel has added new documentation clarifying what qualifies as a security bug and how AI-assisted vulnerability reports should be handled. Phoronix reports: Stemming from the recent influx of security bugs to the Linux kernel as well as an uptick in bug and security reports from discoveries made in full or in part with AI, additional documentation was warranted. Longtime Linux developer Willy Tarreau took to authoring the additional documentation around kernel bugs. To summarize (since the documentation is a bit too lengthy for a Slashdot story), the AI-assisted vulnerability reports should "be treated as public" because such findings "systematically surface simultaneously across multiple researchers, often on the same day." It adds that reporters should avoid posting a reproducer openly, instead "just mention that one is available" and provide it privately if maintainers request it. The guidance also tells AI-assisted reporters to keep submissions concise and plain-text, focus on verifiable impact rather than speculative consequences, include a thoroughly tested reproducer, and, where possible, propose and test a fix.

As for what qualifies as a security bug, the documentation says the private security list is for "urgent bugs that grant an attacker a capability they are not supposed to have on a correctly configured production system" and are easy to exploit, creating an imminent threat to many users. Reporters are told to consider whether the issue "actually crosses a trust boundary," since many bugs submitted privately are really ordinary defects that belong in the normal public reporting process.

All the new documentation can be read via this commit.

[ Read more of this story ]( https://linux.slashdot.org/story/26/05/16/0332211/linux-kernel-outlines-what-qualifies-as-a-security-bug-responsible-ai-use?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Начало разработки KDE Plasma 6.8. Улучшение удалённой работы с рабочим столом в KDE
lor.opennet
robot(spnet, 1) — All
2026-05-16 14:44:03


Опубликован очередной еженедельный отчёт о разработке KDE, в котором представлена первая порция изменений для ветки KDE Plasma 6.8, релиз которой запланирован на 14 октября. Развитие новой ветки началось после перевода ветки KDE Plasma 6.7 на стадию бета-тестирования и заморозки связанной с ней кодовой базы от внесения функциональных изменений (допускается только приём исправлений). Релиз KDE Plasma 6.7 намечен на 16 июня.

https://www.opennet.ru/opennews/art.shtml?num=65460

[>] 3D Movie Maker портирован на Linux
lor.opennet
robot(spnet, 1) — All
2026-05-16 12:44:03


Разработчики проекта 3DMMEx добились запуска классического Microsoft 3D Movie Maker в Linux без Wine и виртуальной машины. О проделанной работе рассказал Бен Стоун, автор исходного порта 3DMMEx. По его словам, проект достиг важного рубежа: программу теперь можно собрать и запустить в Linux, что делает 3DMMEx первым известным ответвлением 3D Movie Maker, работающим за пределами Windows. Публикация о переносе датирована 9 мая 2026 года.

Microsoft 3D Movie Maker — детская программа 1995 года для создания простых трёхмерных мультфильмов: пользователь выбирал сцены, расставлял персонажей и объекты, задавал им действия, добавлял реплики, звук и музыку. Долгое время проект оставался закрытым историческим артефактом эпохи Windows 95, но в мае 2022 года Microsoft открыла исходный код 3D Movie Maker под лицензией MIT. Официальный репозиторий Microsoft [ доступен на GitHub ]( https://github.com/microsoft/Microsoft-3D-Movie-Maker ) ; в описании прямо указано, что это исходный код оригинального проекта 1995 года, опубликованный как открытое ПО по лицензии MIT.

( [ читать дальше... ]( https://www.linux.org.ru/news/opensource/18294456#cut ) )

[>] «Дешевая» желтая ретро-консоль: как собрать почти полноценную игровую приставку своими руками
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-16 12:35:02


Опубликовано: Sat, 16 May 2026 08:05:04 GMT
Канал: Все статьи подряд / DIY или Сделай сам / Хабр

Возможно, вы слышали про дешёвый жёлтый дисплей, он же CYD (Cheap Yellow Display). Если нет, то это плата с ESP32, с дисплеем, жёлтая и, сюрприз, дешёвая. У платы достаточно активное сообщество, хотя готовых проектов не так уж много. Но на Instructables мне встретился один, который использует эту плату для создания ретро-консоли. При этом она получилась приятной на вид и рекомендуется самим сайтом (то есть имеет метку featured). Поэтому я сразу захотел собрать её.В данной статье расскажу о процессе создания этой консоли полностью в домашних условиях, который не обошёлся без небольшой и, как оказалось, простой головоломки. Покажу, как она работает, и расскажу, сколько действительно она стоит. Если вы размышляли, что бы такое собрать самому, то, возможно, вам будет интересно почитать про данный проект. Читать далее]]>

https://habr.com/ru/companies/timeweb/articles/1028122/

[>] Wine 11.9
lor.opennet
robot(spnet, 1) — All
2026-05-16 11:44:03


Состоялся выпуск Wine 11.9, очередной экспериментальной версии свободной реализации Win32 API, позволяющей запускать Windows-приложения в Linux, BSD и macOS без полноценной виртуальной машины. Релиз опубликован 15 мая 2026 года и продолжает двухнедельный цикл разработки ветки 11.x, которая в дальнейшем ляжет в основу Wine 12.0.

В Wine 11.9 основное внимание уделено низкоуровневым изменениям в работе потоков, улучшениям для ARM64, развитию поддержки Wayland и дальнейшему повышению совместимости с приложениями, использующими VBScript. Кроме того, разработчики закрыли 24 отчёта об ошибках, затрагивающих как прикладные программы, так и игры.

( [ читать дальше... ]( https://www.linux.org.ru/news/opensource/18294380#cut ) )

[>] Релиз Альт Виртуализация 11.1
lor.opennet
robot(spnet, 1) — All
2026-05-16 11:44:03


Состоялся минорный релиз операционной системы «Альт Виртуализация» 11.1. Сборка подготовлена на x86_64 и AArch64 на базе ядра 6.12.74.

Скачать образ

• [ ftp.altlinux.org ]( http://ftp.altlinux.org/pub/distributions/ALTLinux/p11/images/virtualization/ )

• [ download.basealt.ru ]( https://download.basealt.ru/pub/distributions/ALTLinux/p11/images/virtualization/ )

• [ mirror.yandex.ru ]( https://mirror.yandex.ru/altlinux/p11/images/virtualization/ )

В новом образе



Glibc 2.38, набор компиляторов GCC 13, systemd 257, OpenSSL 3.3.3.



Расширены возможности SDN-сетей: добавлена возможность построения сетей Fabrics с использованием протоколов маршрутизации OpenFabric и OSPF. Внедрение этой технологии позволяет строить динамические отказоустойчивые сети.



Добавлен механизм HA Affinity Rules, с помощью которого можно задать правила размещения виртуальных машин: привязка к узлам (Node affinity) или к виртуальной машине/контейнеру (Resource affinity). Новый способ управления размещением ресурсов в кластере заменяет прежние HA-группы.



Реализована поддержка снимков состояния в виде цепочек томов (volume chains) на thick LVM без использования thin provisioning. Теперь каждый снимок после первого хранит только изменения с предыдущего состояния, а не полную копию.



Добавлена поддержка работы с контейнерами из открытых реестров согласно стандарту OCI. Теперь LXC-контейнеры можно разворачивать напрямую из импортированных OCI-образов.



Добавлена возможность получения IP-адресов для контейнеров без собственного сетевого стека. DHCP-запросы обрабатываются хостом - это избавляет от необходимости запускать внутри контейнера DHCP-клиент или настраивать статические адреса вручную.



Встроенный мобильный веб-интерфейс полностью переписан на Rust. Обеспечивает быстрый доступ с мобильных устройств и выполняет основные задачи администрирования: управление состоянием гостевых систем, просмотр задач и статуса хранилищ.

И другие изменения.

[ Техническая информация ]( https://www.altlinux.org/Альт_Виртуализация_11 )

Подробнее читайте на ресурсах сообщества:

• [ altlinux-announce-ru@ ]( https://lists.altlinux.org/pipermail/altlinux-announce-ru/2026/000068.html )

• [ community@ ]( https://lists.altlinux.org/pipermail/community/2026-May/689476.html )

[ Анонс «Альт Виртуализация» 11.0 ]( https://lists.altlinux.org/pipermail/altlinux-announce-ru/2025/000058.html )

[ Новость на basealt.ru ]( https://www.basealt.ru/about/news/archive/view/obnovlenie-alt-virtualizacii-111-redakcija-pve-pravila-vysokoi-dostupnosti-uluchshenija-v-setjakh-sdn-format-oci-dlja-konteinerov )

[ Другие дистрибутивы ALT на сайте загрузки ]( http://getalt.ru )

https://www.linux.org.ru/news/russia/18294447

[>] Japan Runs Out of Robot Wolves In Fight Against Bears
bot.slashdot
robot(spnet, 1) — All
2026-05-16 11:22:01


Japan's worsening bear problem has created a shortage of handmade "Monster Wolf" robots, which are $4,000 solar-powered scarecrow-like devices with glowing eyes, sensors, and blaring sounds designed to frighten the animals away. "We make them by hand. We cannot make them fast enough now. We are asking our customers to wait two to three months," company president Yuji Ohta recently told the AFP. Popular Science reports: First released in 2016 by the manufacturer Ohta, Monster Wolf was originally designed to ward off the agricultural foes like boars, deer, and the island nation's Asian black bear (Ursus thibetanus) and brown bear (Ursus arctos) populations. The creative solution quickly went viral for its red LED eyes and menacing fangs -- as well as its admittedly odd, furry pipe frame.

Starting at around $4,000, each bespoke Monster Wolf is now equipped with battery power, solar panels, and detection sensors. Its speakers are programmed with over 50 audio clips including human voices and sirens audible over half a mile away. These aren't assembly line products, however. Each Monster Wolf is custom made, and Ohta simply can't keep up with the current demand.

[...] Ohta told the AFP that amid the ongoing crisis, there has been "growing recognition" that Monster Wolf is "effective in dealing with bears." The main customer base remains farmers, but orders are also coming from golf courses and rural workers. Upgraded versions will soon include wheels to actually chase animals and patrol preset routes. There are also plans to release a handheld version for outdoor enthusiasts and schoolchildren. Until Ohta catches up with its orders, residents and visitors are encouraged to review the Japanese government's own bear safety tips.

[ Read more of this story ]( https://hardware.slashdot.org/story/26/05/16/0322208/japan-runs-out-of-robot-wolves-in-fight-against-bears?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] STATS 2026-05-15
spnet.stats
root(spnet, 1) — All
2026-05-16 11:11:01


TOP20 VISITORS:

[1] Amazon point=0 web=639 up=9.6MB (20%)
[2] PetalBot point=4 web=1238 up=6.0MB (13%) <--- PetalBot
[3] ClaudeBot point=0 web=175 up=4.2MB (9%)
[4] 5.9.120.x point=1 web=91 up=4.0MB (8%) <--- 5.9.120.x
[5] 37.252.14.x point=144 web=0 up=2.4MB (5%) <--- ake (6/hr)
[6] TikTok point=0 web=137 up=2.0MB (4%)
[7] 216.244.66.x point=1 web=64 up=1.9MB (4%) <--- 216.244.66.x
[8] 104.250.53.x point=0 web=236 up=1.6MB (3%)
[9] Google point=0 web=305 up=1.3MB (2%)
[10] 95.217.109.x point=0 web=16 up=1.3MB (2%)
[11] 217.114.158.x point=25 web=0 up=1.1MB (2%) <--- fox (1/hr)
[12] 51.83.237.x point=0 web=8 up=0.8MB (1%)
[13] 135.181.213.x point=0 web=9 up=0.8MB (1%)
[14] 51.75.119.x point=0 web=9 up=0.7MB (1%)
[15] 79.137.64.x point=0 web=9 up=0.7MB (1%)
[16] 81.167.26.x point=0 web=7 up=0.7MB (1%)
[17] 194.247.173.x point=0 web=7 up=0.6MB (1%)
[18] Facebook point=0 web=33 up=0.5MB (1%)
[19] 62.84.185.x point=0 web=7 up=0.5MB (1%)
[20] DataForSeoBot point=0 web=10 up=0.3MB (<1%)

TOTAL TRAFFIC: 45MB

[>] Новые версии Wine 11.9 и Wine-staging 11.9
lor.opennet
robot(spnet, 1) — All
2026-05-16 09:44:03


Опубликован экспериментальный выпуск открытой реализации Win32 API - Wine 11.9. С момента выпуска 11.8 было закрыто 24 отчёта об ошибках и внесено 197 изменений.

https://www.opennet.ru/opennews/art.shtml?num=65459

[>] Wood Burning Is Reintroducing Lead Pollution Into the Air, Scientists Find
bot.slashdot
robot(spnet, 1) — All
2026-05-16 08:22:02


An anonymous reader quotes a report from The Guardian: Wood heating is reintroducing lead into the air of local communities and homes, a systematic investigation by academics has found. Overwhelming evidence of lead's neurotoxicity meant the metal was banned as an additive in petrol more than 25 years ago. The research by academics from the University of Massachusetts Amherst began by analysing samples of particle pollution from five suburban and rural towns in the north-east US. They looked for tiny particles of potassium that are given off when wood is burned and also particles containing lead. Samples from seven winters revealed associations between potassium and lead. When there were more wood burning particles in a daily sample, there was more lead in the air, with clear straight-line relationships in four of the five towns.

The project was extended to 22 other towns across the US. The relationships between lead and potassium varied from place to place, being strongest in the Rocky Mountains. By factoring in the effects of temperature, moderate to strong associations in their analysis strengthened the conclusion that the extra lead came from wood burning. The lead concentrations were less than the US legal limits, but any exposure to the metal is harmful. [...] Although less than legal limits, lead particles are routinely measured in UK cities in winter when people are also burning wood. This is normally attributed to waste wood covered with old lead paint, but the Umass Amherst study suggests the metal is coming from the wood itself. This means that any wood burning could increase exposure in neighborhoods and at home. Tricia Henegan, a PhD student at Umass Amherst and the first author on the research, said: "The most logical answer [to the question of how lead ends up in wood] is that it comes from uptake in the soil, probably riding along with the nutrients and water that trees need. Once in the tree, it deposits in the tree's tissues and remains until that tree is burned." Other research has found that it can then become part of the smoke.

"The use of wood as an energy source is a relic of the past, one that should not be relived if given a choice. Although wood fuel use can feel nostalgic, it does have negative consequences on air quality, and therefore public health."

[ Read more of this story ]( https://news.slashdot.org/story/26/05/15/2256225/wood-burning-is-reintroducing-lead-pollution-into-the-air-scientists-find?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Kioxia and Dell Cram Nearly 10PB Into a Single 2U Server
bot.slashdot
robot(spnet, 1) — All
2026-05-16 03:22:01


BrianFagioli writes: Kioxia and Dell Technologies say they have built a 2U server configuration capable of scaling to 9.8PB of flash storage, which is the sort of density that would have sounded impossible just a few years ago. The setup combines a Dell PowerEdge R7725xd Server with 40 Kioxia LC9 Series 245.76TB NVMe SSDs and AMD EPYC processors. According to Kioxia, matching the same capacity with more common 30.72TB SSDs would require seven additional servers and another 280 drives.

The companies are pitching the hardware squarely at AI and hyperscale workloads, where storage is rapidly becoming a bottleneck alongside compute. Kioxia claims the denser configuration can dramatically reduce power consumption and rack space requirements while remaining air cooled. The announcement also highlights how quickly enterprise storage capacities are escalating as organizations race to support larger AI models, massive datasets, and increasingly demanding data pipelines.

[ Read more of this story ]( https://hardware.slashdot.org/story/26/05/15/1935230/kioxia-and-dell-cram-nearly-10pb-into-a-single-2u-server?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Детектор WiFi излучения
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-16 02:35:01


Опубликовано: Fri, 15 May 2026 22:02:28 GMT
Канал: Все статьи подряд / DIY или Сделай сам / Хабр

Мне приходится периодически кататься на велике. В какой-то момент я решил, что просто кататься - это слишком скучно. Захотелось не просто ездить, но и как-то исследовать окружающий мир. Я попробовал исследовать окрестности своего квартала на наличие источников WiFi излучения. Читать далее]]>

https://habr.com/ru/articles/921148/

[>] AMD Is Bringing Improved FSR 4 Upscaling To Its Older GPUs
bot.slashdot
robot(spnet, 1) — All
2026-05-16 02:22:01


AMD says FSR 4.1 will finally bring its newer hardware-accelerated upscaling technology to older Radeon GPUs. "The rollout will begin in July with RDNA3- and 3.5-based GPUs, which include the Radeon RX 7000 series, as well as integrated GPUs like the Radeon 890M and Radeon 8060S," reports Ars Technica. "In 'early 2027,' support will also be extended to the RDNA2 architecture, which includes the Radeon RX 6000 series, integrated GPUs like the Radeon 680M, and the Steam Deck's GPU. This would also open the door to supporting FSR 4 on the PlayStation 5 and Xbox Series X and S, all of which also use RDNA2-based GPUs." From the report: [AMD Computing and Graphics SVP Jack Huynh's] short video presentation didn't get into performance comparisons, but did mention that AMD had to work to get FSR 4's superior hardware-backed upscaling working on its older graphics architectures. RDNA4 includes AI accelerators that support the FP8 data format in the hardware, and porting FSR 4 to older GPUs meant getting it running on the integer-based INT8 hardware in the RDNA3 and RDNA2-based GPUs.

This may mean that FSR 4.1 running on an RDNA3 or RDNA2-based GPU may come with a larger performance hit relative to RDNA4 cards, or that image quality may differ slightly. Modders have already worked to get FSR4 working on INT8-supporting GPUs, and the older GPUs reportedly see a 10 to 20 percent performance hit relative to FSR 3.1 running on the same hardware. AMD's official implementation may or may not improve on these numbers.

[...] Any games that support FSR 4 should be able to support FSR 4.1 running on Radeon 7000-series cards; users will presumably be able to install a driver update in July that enables the new feature. Games that support the older FSR 3.1 can also be forced to use FSR 4 in the Radeon graphics driver.

[ Read more of this story ]( https://hardware.slashdot.org/story/26/05/15/1928250/amd-is-bringing-improved-fsr-4-upscaling-to-its-older-gpus?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Bitwarden Scrubs 'Always Free' and 'Inclusion' Values From Its Website
bot.slashdot
robot(spnet, 1) — All
2026-05-16 01:22:01


Bitwarden appears to be undergoing a quiet shift in leadership and messaging. Its longtime CEO and CFO have stepped down, while the company has removed "Always free" from a prominent password-manager page and replaced "Inclusion" and "Transparency" in its GRIT values with "Innovation" and "Trust." Fast Company reports: In February, longtime CEO Michael Crandell moved to an advisory role, according to LinkedIn, with no announcement from the company. His replacement, Michael Sullivan, former CEO of both Acquia and Insightsoftware, touts his experience with "all facets of mergers and acquisitions" on his own LinkedIn page, including experience working with leading private equity firms. CFO Stephen Morrison also left Bitwarden in April, replaced by former InVision CEO Michael Shenkman. Both Crandell and Morrison joined the company in 2019. Kyle Spearrin, who started Bitwarden as a fun hobby project in 2015, remains the company's CTO.

Meanwhile, Bitwarden has made some subtle tweaks to its website. The page for its personal password manager no longer includes the phrase "Always free." Previously this appeared under the "Pick a plan" section partway down the page, but that section no longer mentions the free plan, though it remains available elsewhere on the page. Bitwarden made this change in mid-April, according to the Internet Archive. Bitwarden has also stopped listing "Inclusion" and "Transparency" as tentpole values on its careers page. The company has long defined its values with the acronym "GRIT," which used to stand for "Gratitude, Responsibility, Inclusion, and Transparency." After May 4, it changed the acronym to stand for "Gratitude, Responsibility, Innovation, and Trust." The phrase "inclusive environment" still appears under a description of Gratitude, while "transparency" is mentioned under the Trust heading. They're just no longer the focus.

[ Read more of this story ]( https://it.slashdot.org/story/26/05/15/1858235/bitwarden-scrubs-always-free-and-inclusion-values-from-its-website?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] The Era of 15GB Free Gmail Storage Is Ending
bot.slashdot
robot(spnet, 1) — All
2026-05-16 01:22:01


Google has confirmed it is testing a 5GB storage limit for some new Gmail accounts, with users able to unlock the standard 15GB by adding a phone number. Android Authority reports: While the company didn't mention which regions are impacted, user reports from yesterday were mostly from African countries. That said, if Google's tests prove successful, this could possibly become the norm for new sign-ups in more regions. The company could be testing ways to discourage users from creating multiple Gmail accounts to access free cloud storage. However, if you already have a Gmail account with 15GB free storage, it shouldn't be impacted by this change.

The language on Google's support page mentions "up to 15GB of storage." However, it's a recent change. An archived version of the support page from February did not use the words "up to." Whether the test has been running since early March or Google updated its language before it ever started the test, it's evident that the company could roll out the change globally as well.

[ Read more of this story ]( https://tech.slashdot.org/story/26/05/15/1843217/the-era-of-15gb-free-gmail-storage-is-ending?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Bill To Block Publishers From Killing Online Games Advances In California
bot.slashdot
robot(spnet, 1) — All
2026-05-15 23:22:02


An anonymous reader quotes a report from Ars Technica: A bill focused on maintaining long-term playable access to online games has passed out of the California Assembly's appropriations committee, setting up a floor vote by the full legislative body. The advancement is a major win for Stop Killing Games' grassroots game preservation movement and comes over the objections of industry lobbyists at the Entertainment Software Association. California's Protect Our Games Act, as currently written, would require digital game publishers who cut off support for an online game to either provide a full refund to players or offer an updated version of the game "that enables its continued use independent of services controlled by the operator." The act would also require publishers to notify players 60 days before the cessation of "services necessary for the ordinary use of the digital game." As currently amended, the act would not apply to completely free games and games offered "solely for the duration of [a] subscription. Any other game offered for sale in California on or after January 1, 2027, would be subject to the law if it passes. [...]

In a formal statement of support for the bill sent to the California legislature, SKG wrote that "there is no other medium in which a product can be marketed and sold to a consumer and then ripped away without notice As live service games rise in popularity for game developers and gamers alike, end-of-life procedures are essential tools to ensure prolonged access to the games consumers pay to enjoy." The Entertainment Software Association, which helps represent the interests of major game publishers, publicly told the California Assembly last month that the bill misrepresents how modern game distribution actually works. "Consumers receive a license to access and use a game, not an unrestricted ownership interest in the underlying work," the ESA wrote. The eventual shutdown of outdated or obsolete games is "a natural feature of modern software," the group added, especially when that software requires online infrastructure maintenance. The ESA also said the bill would impose unreasonable expectations on publishers regarding licensing rights for music or IP rights, which are often negotiated on a time-limited basis. "A legal requirement to keep games playable indefinitely could place publishers in an impossible position -- forcing them to renegotiate licenses indefinitely or alter games in ways that may not be legally or technically feasible," they wrote.

[ Read more of this story ]( https://games.slashdot.org/story/26/05/15/1744253/bill-to-block-publishers-from-killing-online-games-advances-in-california?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Microsoft 3D Movie Maker портирован для Linux
lor.opennet
robot(spnet, 1) — All
2026-05-15 23:44:03


Энтузиаст портировал для работы в Linux приложение 3D Movie Maker, код которого был открыт компанией Microsoft в 2022 году под лицензией MIT. Порт распространяется под именем 3DMMEx и в целом сохраняет классический антураж приложения, добавляя незначительные улучшения, такие как модернизация работы с мышью, новые комбинации клавиш и импорт высококачественного звука. Привязка к API Windows в 3DMMEx заменена на использование библиотеки SDL, а ассемблерные вставки переписаны на языке C++. Добавлена поддержка 64-разрядных архитектур x86_64 и ARM64, а также компиляторов Visual Studio 2022, Clang и GCC.

https://www.opennet.ru/opennews/art.shtml?num=65458

[>] Axera AX650N: архитектура Edge ML SoC под CNN, LLM и VLM
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-15 23:35:04


Опубликовано: Fri, 15 May 2026 18:40:16 GMT
Канал: Все статьи подряд / Робототехника / Хабр

Большинство задач современной робототехники так или иначе завязаны на нейронных сетях: детекция объектов, оценка глубины, локализация, планирование. Всё это ресурсоёмко, и вопрос выбора компактного вычислителя (достаточно часто алгоритмы должны работать локально) встает довольно остро. На практике выбор сводится к трём классам устройств: NVIDIA Jetson, внешний ускоритель (один из самых популярных — Hailo) и китайский (не всегда, конечно, но в современных реалиях обычно китайский) SoC с интегрированным NPU. В этой статье я рассмотрю представителя третьего класса — Axera AX650N, а NVIDIA Jetson будет использоваться для сравнения, так как это единственное массовое edge-решение с универсальными вычислительными ядрами (CUDA).Это первая часть цикла. Здесь я разберу аппаратную архитектуру самого AX650N — CPU, NPU, DSP, ISP, память — и поделюсь результатами первых тестов: YOLO, Depth Anything, SuperPoint и мультимодальный Qwen3. Подробные бенчмарки и сравнения — во второй части.Я тестировал AX650N в рамках готового устройства от Sipeed — Maix4 Hat. Он состоит из двух частей: SoM, на котором расположены SoC и 8 GB RAM (2x4 GB, так как у AX650N два отдельных DDR-контроллера), и baseboard от Sipeed с минимальным количеством интерфейсов. Скромность интерфейсов объясняется просто: baseboard — это HAT для Raspberry Pi 5, подключающийся по PCIe 2.0. В такой конфигурации AX650N работает как внешний ML-ускоритель, аналогично Hailo. В рамках этой и последующих статей я буду использовать Maix4 Hat как самостоятельный микрокомпьютер. Читать далее]]>

https://habr.com/ru/articles/1035776/

[>] MuseScore Studio 4.7
lor.opennet
robot(spnet, 1) — All
2026-05-15 22:44:03


Состоялся выпуск MuseScore Studio 4.7, свободного нотного редактора для Linux, Windows и macOS. В новой версии разработчики сосредоточились на гравировке, гитарной нотации, ускорении повседневной работы и доработке аудиодвижка. Код проекта распространяется под лицензией GPLv3.

( [ читать дальше... ]( https://www.linux.org.ru/news/multimedia/18294092#cut ) )

• [ Загрузить ]( https://musescore.org/en/download )

• [ Руководство ]( https://musescore.org/en/handbook/4 )

• [ GitHub ]( https://github.com/musescore/MuseScore/releases )

[>] Rocky Linux ввёл в строй репозиторий для оперативного устранения уязвимостей
lor.opennet
robot(spnet, 1) — All
2026-05-15 22:44:03


Разработчики дистрибутива Rocky Linux объявили о создании отдельного репозитория для внеплановой публикации срочных обновлений пакетов с устранением уязвимостей, не синхронизированного с репозиториями Red Hat Enterprise Linux. Отмечается, что проект Rocky Linux придерживается принципа максимально близкого соответствия пакетной базе RHEL, при этом возникающие последнее время угрозы безопасности вынуждают сделать исключение.

https://www.opennet.ru/opennews/art.shtml?num=65457

[>] OpenAI Now Wants ChatGPT To Access Your Bank Accounts
bot.slashdot
robot(spnet, 1) — All
2026-05-15 22:22:01


OpenAI is previewing a feature that lets ChatGPT Pro users connect bank and investment accounts through Plaid, allowing the chatbot to analyze spending, subscriptions, balances, portfolios, debt, and major financial decisions. "More than 200 million people are already going to ChatGPT every month with finance questions -- from budgeting to tips on how to cut back on spending," OpenAI said in its announcement. "Now, users can securely connect their financial accounts with Plaid to get the full view of their financial picture in the context of their personal goals, lifestyle, and priorities that they've shared with ChatGPT, powered by OpenAI's advanced reasoning capabilities." The Verge reports: When financial accounts are connected, OpenAI says that ChatGPT users can view a dashboard that details their spending history, including any active subscriptions. Users can also ask it to help with financial decisions like buying a house or signing up for credit cards and flag any changes in spending habits. This financial feature will be initially available to users in the US who subscribe to ChatGPT's $200-per-month Pro tier. "We'll learn and improve from early use before rolling it out to Plus, with the goal of making it available to everyone," says OpenAI.

To assuage concerns, OpenAI promises users "control over their data," including the ability to disconnect their bank accounts from ChatGPT at any time, though the company has up to 30 days to delete your data from its systems. You can also view and delete "financial memories" like goals or financial obligations saved by the chatbot. User control extends to whether your data is fed back into AI models -- users can enable the option to "Improve the model for everyone" to allow financial data in their ChatGPT conversations to be used for training AI, for example. OpenAI also says ChatGPT can't make any changes to your bank accounts or see "full account numbers."

[ Read more of this story ]( https://news.slashdot.org/story/26/05/15/1655242/openai-now-wants-chatgpt-to-access-your-bank-accounts?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] QEMUtiny - уязвимости в QEMU, позволяющие получить доступ к хост-окружению из гостевой системы
lor.opennet
robot(spnet, 1) — All
2026-05-15 21:44:03


Исследователи, которые на днях выявили уязвимость Fragnesia в ядре Linux, опубликовали информацию об уязвимостях в QEMU, позволяющих из гостевой системы получить root-доступ к хост-окружению. Проблеме присвоено кодовое имя QEMUtiny, но CVE-идентификатор пока не назначен. Подготовлен эксплоит, в котором задействованы две уязвимости в коде эмуляции устройства CXL (Compute Express Link).

https://www.opennet.ru/opennews/art.shtml?num=65456

[>] ArXiv to Ban Researchers for a Year if They Submit AI Slop
bot.slashdot
robot(spnet, 1) — All
2026-05-15 21:22:01


ArXiv says it will ban authors for one year if they submit papers containing AI-generated slop, such as hallucinated citations, placeholder text, or chatbot meta-comments left in the manuscript.

"If generative AI tools generate inappropriate language, plagiarized content, biased content, errors, mistakes, incorrect references, or misleading content, and that output is included in scientific works, it is the responsibility of the author(s)," said Thomas Dietterich, chair of the computer science section of ArXiv, on X. "We have recently clarified our penalties for this. If a submission contains incontrovertible evidence that the authors did not check the results of LLM generation, this means we can't trust anything in the paper." 404 Media reports: Examples of incontrovertible evidence, he wrote, include "hallucinated references, meta-comments from the LLM ('here is a 200 word summary; would you like me to make any changes?'; 'the data in this table is illustrative, fill it in with the real numbers from your experiments.'" "The penalty is a 1-year ban from arXiv followed by the requirement that subsequent arXiv submissions must first be accepted at a reputable peer-reviewed venue," Dietterich wrote.

Dietterich told [404 Media] in an email on Friday morning that this is a one-strike rule -- meaning authors caught just once including AI slop in submissions will be banned -- but that decisions will be open to appeal. "I want to emphasize that we only apply this to cases of incontrovertible evidence," he said. "I should also add that our internal process requires first a moderator to document the problem and then for the Section Chair to confirm before imposing the penalty."

[ Read more of this story ]( https://slashdot.org/story/26/05/15/1647250/arxiv-to-ban-researchers-for-a-year-if-they-submit-ai-slop?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Congress Introduces Bill To Permanently Block Chinese Vehicles From US
bot.slashdot
robot(spnet, 1) — All
2026-05-15 20:22:02


Longtime Slashdot reader sinij shares a report from Car and Driver: A group of Michigan lawmakers has introduced a bill in Congress that would effectively place a permanent ban on Chinese connected vehicles from being sold in the United States. While an executive order signed by Joe Biden in early 2025 already imposed heavy restrictions, the new bill would codify and expand on the ban, as first reported by Autoweek and explained in a release by the House of Representatives Select Committee on China.

The bill, titled the Connected Vehicle Security Act, was co-signed by John Moolenaar, a Michigan Republican, and Debbie Dingell, a Michigan Democrat. It joins a companion version of the same Connected Vehicle Security Act introduced last month to the Senate by Sen. Bernie Moreno, an Ohio Republican, and Sen. Elissa Slotkin, a Michigan Democrat. While the wording is similar to that found in former President Biden's January 2025 executive order, the new bill would codify the language into law, as well as determine rules for compliance and enforcement.

Specifically, the new bill would restrict Chinese automakers from selling passenger cars in the United States if those vehicles contain any China-developed connectivity software. Officially, the bill covers the sale of vehicles from states deemed "foreign adversary countries," which include China, Russia, North Korea, and Iran. The proposed legislation arrives as Chinese automakers including Chery, Geely, and BYD (maker of the 2026 BYD Dolphin Surf, shown above), continue to rise in prominence in foreign markets around the world. "Doing the right thing for the wrong reasons," comments sinij. "Connected cars that spy on consumers are not a uniquely Chinese problem and should be addressed for all vehicles."

[ Read more of this story ]( https://tech.slashdot.org/story/26/05/15/0249216/congress-introduces-bill-to-permanently-block-chinese-vehicles-from-us?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Honda Retreats To Hybrids After Failed EV Bet Triggers Record $9 Billion Loss
bot.slashdot
robot(spnet, 1) — All
2026-05-15 19:22:01


An anonymous reader quotes a report from Electrek: Honda is waving the white flag. The Japanese automaker previewed two new hybrids set to launch by 2028 after taking an over $9 billion hit over its failed EV bet, leading to its biggest loss in company history. Honda admitted it was "unable to deliver products that offer value for money better than that of new EV manufacturers, resulting in a decline in competitiveness," after suddenly announcing plans to cancel three new EVs in the US in March, warning restructuring costs could reach 2.5 trillion yen ($15.7 billion).

After posting its first annual loss since it became a publicly traded company in 1957 on Thursday, Honda's CEO Toshihiro Mibe revealed the company's comeback plans. Honda is no longer planning to phase out gas-powered vehicles by 2040. Instead, Honda now aims "to achieve carbon neutrality by 2050," including a mix of EVs, hybrids, carbon-neutral fuels, and carbon-offset tech. Starting next year, Honda plans to begin introducing its next-gen hybrids, underpinned by a new hybrid system and platform. Honda said it aims to improve fuel economy by over 10% in its upcoming hybrids. The new system is expected to help cut costs by over 30% compared to Honda's current hybrid system.

By the end of the decade, Honda plans to launch 15 new hybrid models globally. In North America, its most important market, the company will introduce larger hybrids in the D-segment or above. Honda previewed two of the new hybrids during the business update: the Honda Hybrid Sedan Prototype and the Acura Hybrid SUV Prototype, which the company said will go on sale within the next two years.

[ Read more of this story ]( https://tech.slashdot.org/story/26/05/15/0244239/honda-retreats-to-hybrids-after-failed-ev-bet-triggers-record-9-billion-loss?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Он все уже решил: скоро ИИ-агенты будут делать все покупки за вас
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-15 17:35:07


Опубликовано: Fri, 15 May 2026 13:00:07 GMT
Канал: Все статьи подряд / Робототехника / Хабр

Интернет-продажи начинают перестраиваться вокруг новой фигуры — ИИ-агента в роли покупателя. Это уже не чат-бот поддержки или помощник, который пишет письма. Речь о цифровом посреднике, который получает задачу от человека, ищет товары, сравнивает варианты, проверяет условия, общается с сервисами и берет на себя покупку. Разбираемся, какие функции заберут на себя агенты в индустрии покупок, как к этому подготовились ИИ-компании и платежные системы, останутся ли нужны красивые сайты с каталогами и к чему готовиться бизнесу, чтобы внезапно не остаться без продаж. Читать далее]]>

https://habr.com/ru/companies/ru_mts/articles/1034754/

[>] Умный пылесос Dreame L40s Pro Ultra: полгода спустя. Хорошее и плохое — чего больше?
bot.habr.rss
BotHabr(tgi,2) — All
2026-05-15 16:35:05


Опубликовано: Fri, 15 May 2026 11:55:37 GMT
Канал: Все статьи подряд / Робототехника / Хабр

Несколько месяцев назад я делился первыми впечатлениями от покупки робота. Тогда он только начал осваивать квартиру, строил карту и показывал, на что способен в ежедневной рутине. Все выглядело довольно гладко, особенно после старых моделей от iRobot, где уборка превращалась в постоянную борьбу с проводами и забытой в углах пылью.Сейчас, когда устройство отработало уже солидный срок, я могу посмотреть на него более трезво. Повседневная эксплуатация добавила деталей, которые не видны сразу после распаковки. Аппарат продолжает выполнять свою работу, все неплохо. Но время выявило моменты в эксплуатации, с которыми приходится считаться. Ими сейчас с вами и поделюсь. Поехали!  Читать далее]]>

https://habr.com/ru/companies/ru_mts/articles/1035512/

[>] Americans Would Rather Have a Nuclear Plant In Their Backyard Than a Datacenter
bot.slashdot
robot(spnet, 1) — All
2026-05-15 15:22:01


A new Gallup survey found that 71% of Americans oppose having an AI data center built near them, making the facilities even less popular than nearby nuclear plants, which 53% oppose. The Register reports: When it comes to the reasons for opposing AI campuses, half of all respondents cite the effect on resources, with excess water usage and potential power grid constraints topping the list. Concern about loss of farmland and nature was surprisingly low, with just 7 percent mentioning this, but it is possible the scores are higher in rural areas. Quality-of-life concerns such as increased traffic were put forward by nearly a quarter, while a fifth mentioned higher utility bills.

Many were worried about AI specifically: that it would replace human workers, that they don't trust it, that it is moving too fast, and that the industry needs regulating. Perhaps the latter sentiment is why President Trump appears to have shifted his own position on the need for AI regulations. Conversely, those in favor of datacenters cite economic benefits, with 55 percent mentioning increased job opportunities, and 13 percent saying it is because of increased tax revenues.

[...] This being America in 2026, Gallup looked at how attitudes stack up depending on political affiliation. It found that Democrats, at 56 percent, are much more likely than Republicans to be strongly opposed to a server farm in their vicinity. But 39 percent of Republicans are also strongly opposed, while another 24 percent are somewhat averse to it, and only about a third are in favor. Gallup points out the contradiction: for AI usage to expand in the US, facilities that can handle the necessary computing power will have to be built. But most Americans appear to take a "not in my backyard" attitude to new bit barns, and that attitude has grown in strength.

[ Read more of this story ]( https://news.slashdot.org/story/26/05/15/0217208/americans-would-rather-have-a-nuclear-plant-in-their-backyard-than-a-datacenter?utm_source=atom1.0moreanon&utm_medium=feed ) at Slashdot.

[>] Ad Nihilum 0.4.3
lor.opennet
robot(spnet, 1) — All
2026-05-15 15:44:03


Состоялся релиз Ad Nihilum 0.4.3 — минималистичного сервиса для обмена зашифрованными сообщениями по принципу «прочитал — сжег», ориентированного в первую очередь на self-hosting.

Cервер выступает лишь в роли глухого хранилища. Шифрование и расшифровка происходят исключительно на стороне клиента, в браузере (через AES-GCM).

Особенности

• локальное зашифрование и расшифрование, сервер никогда не видит ключа;

• поддержка дополнительного слоя шифрования паролем, о котором (1) не может узнать сервер, (2) нельзя узнать по передаваемой ссылке;

• проект содержит порядка 2200 строк серверного кода на Си и 600 строк клиентского кода на JS, что упрощает аудит;

• Ad Nihilum зависит только от libmicrohttpd. Для генерации кодов QR поставляется модифицированная версия QRCode.js;

• прилагается инструкция по быстрому поднятию локального сервиса без внешнего IP;

• Ad Nihilum работает и на Android, приложен соответствующий скрипт для сборки в Termux;

• однопоточный и синхронный сервер.

( [ читать дальше... ]( https://www.linux.org.ru/news/opensource/18293734#cut ) )

>>> [ Страница проекта на GitHub ]( https://github.com/x6prl/adnihilum/ )

[>] Пересмотр решения о создании редакции Fedora AI Developer Desktop
lor.opennet
robot(spnet, 1) — All
2026-05-15 15:44:02


Управляющий совет проекта Fedora (Fedora Council) отозвал ранее принятое решение о создании Fedora AI Developer Desktop - официальной редакции дистрибутива для разработчиков, использующих AI-инструменты. Изначально все 6 членов управляющего совета проголосовали за создание проекта, но после ознакомления с критикой, высказанной в ходе обсуждения в сообществе, через несколько дней два участника изменили свои голоса и высказались против. Так как единогласия не достигнуто, утверждение решения отложено. Вопрос планируют решить до проведения конференции Flock 2026, которая пройдёт с 14 по 16 июня.

https://www.opennet.ru/opennews/art.shtml?num=65454