AI Can Clone Open-Source Software In Minutes
ZipNada writes: Two software researchers recently demonstrated how modern AI tools can reproduce entire open-source projects, creating proprietary versions that appear both functional and legally distinct. The partly-satirical demonstration shows how quickly artificial intelligence can blur long-standing boundaries between coding innovation, copyright law, and the open-source principles … ⌘ Read more
The Linux Kernel’s Minimum Rust Version Supported Prepares For Rust 1.85 Baseline
The Rust-For-Linux crew is preparing to raise the minimum supported Rust version for building the Linux kernel and and similarly also bumping the minimum supported version of bindgen, the tool for generating Rust FFI bindings for C code in the kernel… ⌘ Read more
Claude Code’s Source Code Leaks Via npm Source Maps
Grady Martin writes: A security researcher has leaked a complete repository of source code for Anthropic’s flagship command-line tool. The file listing was exposed via a Node Package Manager (npm) mapping, with every target publicly accessible on a Cloudflare R2 storage bucket. $ du -hs .35M .$ find -type f | sed ’s/^.*\.//’ | sort | uniq -c | sort -bVr 1332 ts … ⌘ Read more
Life With AI Causing Human Brain ‘Fry’
fjo3 shares a report from France 24: Too many lines of code to analyze, armies of AI assistants to wrangle, and lengthy prompts to draft are among the laments by hard-core AI adopters. Consultants at Boston Consulting Group (BCG) have dubbed the phenomenon “AI brain fry,” a state of mental exhaustion stemming “from the excessive use or supervision of artificial intelligence tools, pushed beyond our co … ⌘ Read more
SolveSpace 3.2 3D CAD Tool Adds Qt Frontend, Experimental Web Version
SolveSpace 3.2 was released this past week as the newest feature update to this open-source parametric 3D CAD tool for creating 2D/3D parts and other CAD diagrams… ⌘ Read more
Bluesky’s Newest Product: an AI Tool That Gives You Custom Feeds
“What happens when you can describe the social experience you want and have it built for you…?” asks Bluesky? “We’ve just started experimenting, but we’re sharing it now because we want you to build alongside us.”
Called “Attie” — because it’s built with Bluesky’s decentralized publishing framework, AT Protocol (which is open source) — the new a … ⌘ Read more
Linux Maintainer Greg Kroah-Hartman Says AI Tools Now Useful, Finding Real Bugs
Linux kernel maintainer Greg Kroah-Hartman tells The Register that AI-driven code review has “really jumped” for Linux. “There must have been some inflection point somewhere with the tools…”
“Something happened a month ago, and the world switched. Now we have real reports.” It’s not just Linux, he continued. “All … ⌘ Read more
OpenAI Abandons ChatGPT’s Erotic Mode
OpenAI has indefinitely paused plans for an erotic mode in ChatGPT as part of a broader strategy shift away from side projects and toward business and coding tools. TechCrunch reports: The proposed “adult mode,” which CEO Sam Altman first floated in October, had inspired considerable controversy from tech watchdog groups as well as from OpenAI’s own staff. In January, a meeting between company executives … ⌘ Read more
JPMorgan Starts Monitoring Investment Banker Screen Time To Prevent Burnout
JPMorgan is piloting a system that monitors junior investment bankers to avoid burnout (source paywalled; alternative source). “[T]he bank will seek to match up hours claimed by the bankers with digital activity,” reports Bloomberg. “The tool won’t be used for evaluation purposes, but is designed to provide a better estimate of … ⌘ Read more
Just learned this nice little life-hack for disconnecting MC4 Solar connectors 👌 Works really well! And I don’t have to buy a special little MC4 assembly tool 🥳
OpenAI Acquires Developer Tooling Startup Astral
OpenAI announced it’s acquiring developer tooling startup Astral to strengthen its Codex AI coding assistant, which has over 2 million weekly users and has seen a three-fold increase in user growth since the start of the year. CNBC reports: “Through it all, though, our goal remains the same: to make programming more productive. To build tools that radically change what it … ⌘ Read more
CMake 4.3 Released With Package Import/Export Using The Common Package Specification
Version 4.3 of the CMake software development tool / build system was released today. Notable with CMake 4.3 is support for importing and exporting packages described using the Common Package Specification (CPS) for greater interoperability in the ecosystem… ⌘ Read more
@lyse@lyse.isobeef.org A-ha! That means you haven’t spent enough time with these tools! Go on, try it! (If you don’t, we’ll fire you.) I’m sure you’ll like it!

Intel Announces Core Ultra 200HX Plus Along With “Intel Binary Optimization Tool”
Intel today announced their Core Ultra 200HX Plus series mobile processors as their refresh for Arrow Lake HX. The announcement of the Core Ultra 200HX Plus also mentions a new Intel Binary Optimization Tool software package that has the potential of being quite interesting… ⌘ Read more
New ‘Vibe Coded’ AI Translation Tool Splits the Video Game Preservation Community
An anonymous reader quotes a report from Ars Technica: Since Andrej Karpathy coined the term “vibe coding” just over a year ago, we’ve seen a rapid increase in both the capabilities and popularity of using AI models to throw together quick programming projects with less human time and effort than ever before. … ⌘ Read more
Encyclopedia Britannica Sues OpenAI For Copyright, Trademark Infringement
Encyclopedia Britannica has sued OpenAI, alleging its AI models were trained on nearly 100,000 copyrighted articles and sometimes reproduce or misattribute passages to the encyclopedia. The lawsuit also claims trademark infringement and argues tools like ChatGPT divert traffic away from Britannica and Merriam-Webster sites. Engadge … ⌘ Read more
Bcachefs 1.37 Released With Linux 7.0 Support, Erasure Coding Stable & New Sub-Commands
Kent Overstreet today released Bcachefs 1.37 as the newest feature release to this out-of-tree file-system driver and user-space tooling for this next-gen, copy-on-write file-system… ⌘ Read more
sqlparse is also unsuitable for me: https://github.com/andialbrecht/sqlparse/issues/688
I’m supporting incremental SQLite schema changes to just upgrade from an older database version to whatever the current software version supports. In the past, I already noticed that this is quite expensive in unit tests when each test case runs through the entire schema patches and applies them one by one.
To speed up test execution I now decided that I finally go through the troubles of maintaining both a set of incremental patches and a full schema setup in one go. A unit test verifies that both ways end up with the same structure. This gives me a set of SQLs to check the structures:
SELECT type, name, tbl_name, sql
FROM sqlite_schema
ORDER BY type, name, tbl_name
Unfortunately, the resulting CREATE TABLE SQL queries are formatted differently, depending on whether the full schema was set up in one big step or the structure had been modified with ALTER TABLE. Mainly, added columns are not on their own lines but appended in one physical line. That’s why I wanted an SQL formatting tool. Since I didn’t find one that works decently, I’m now doing some simple string manipulation. Joining consecutive whitespace into a single space character, removing spaces before commas and closing parentheses and spaces after opening parentheses. This works surpringly good enough. Of course, if it fails, the “diff” is absolutely horrendous.
Now for the cool part, my test execution dropped from around 5:05 minutes to just 1:32 minutes! I call that a win.
I just stumbled across PRAGMA table_info('tablename') https://sqlite.org/pragma.html#pragma_table_info, PRAGMA foreign_key_list('tablename') and friends. I guess, I have to play with that, now. It’s probably much better to use than the SQL text approach.
New Freenet Network Launches, Along With ‘River’ Group Chat
Wikipedia describes Freenet as “a peer-to-peer platform for censorship-resistant, anonymous communication,” released in the year 2000. “Both Freenet and some of its associated tools were originally designed by Ian Clarke,” Wikipedia adds. (And in 2000 Clarke answered questions from Slashdot’s readers…)
And now Ian Clarke (aka Sanity — Slashdot reader #1,431 … ⌘ Read more
AI’s Productivity Boost? Just 16 Minutes Per Week, Claims Study
“A new study suggests the productivity boost from AI may be far smaller than executives claim,” writes Slashdot reader BrianFagioli:
According to research cited in Foxit’s State of Document Intelligence report, while 89% of executives and 79% of end users say AI tools make them feel more productive, the actual time savings shrink dramatically once peo … ⌘ Read more
debauit Announced As Debian Source Package Auditor
Announced today was debaudit, a new set of tools and services designed to verify the integrity and reproducibility of Debian source packages… ⌘ Read more
Linux 7.0 cpupower Now Handles systemd Service Setting EPP, Intel P-State Turbo Boost
The cpupower tool that lives within the Linux kernel source tree has squeezed in a few improvements today for the ongoing Linux 7.0 development cycle… ⌘ Read more
@rdlmda@rdlmda.me it is called, in Spanish, “the mother”. It is created through a bit (not by much) effort, and kept as a starting point. Just like Asian cuisine has dishes that never cool, always cooking leaving always a base on it.
How do you think a lathe (and just about any tool, etc.) is done? Yup, in part by using a lathe. 😅
EndeavourOS Titan Released With Linux 6.19, Improved GPU Driver Integration
EndeavourOS Titan is out today as the latest ISO refresh for this Arch Linux powered distribution. There is a lot of updates as part of this routine ISO refresh as well as some new tooling and GPU driver integration enhancements… ⌘ Read more
Grammarly Disables Tool Offering Generative-AI Feedback Credited To Real Writers
Grammarly has disabled its Expert Review feature after backlash from writers whose names were used to present AI-generated feedback without their permission. Superhuman (formerly Grammarly) CEO Shishir Mehrotra wrote in a LinkedIn post that the company will disable Expert Review while they “reimagine” the feature: Back … ⌘ Read more
YouTube Expands AI Deepfake Detection To Politicians, Government Officials, and Journalists
YouTube is expanding its AI deepfake detection tools to a pilot group of politicians, government officials, and journalists, allowing them to identify and request removal of unauthorized AI-generated videos impersonating them. TechCrunch reports: The technology itself launched last year to rough … ⌘ Read more
After Outages, Amazon To Make Senior Engineers Sign Off On AI-Assisted Changes
An anonymous reader quotes a report from the Financial Times: Amazon’s ecommerce business has summoned a large group of engineers to a meeting on Tuesday for a “deep dive” into a spate of outages, including incidents tied to the use of AI coding tools. The online retail giant said there had been a “trend of incidents” in rece … ⌘ Read more
Silicon Valley Is Buzzing About This New Idea: AI Compute As Compensation
sziring shares a report from Business Insider: Silicon Valley has long competed for talent with ever-richer pay packages built around salary, bonus, and equity. Now, a fourth line item is creeping into the mix: AI inference. As generative AI tools become embedded in software development, the cost of running the underlying models - … ⌘ Read more
Am I talking to the void?
Despite the driving force behind me being here lying in the curiosity and challenge of “let’s check out this new thing and see what it takes to bring get it working”, I’d like to know if there are other people reading me. Or if it’s just like on my gopher site, where around 96% of the visits are from bots.
I mean, it’s still fun to tinker with tech tools for the mere sake of it, but at times I can’t help but feel like Prometheus and Sisyphus at the same time.
Not that I’d stop. Just like my “self-sufficient” sense of humor (read this with a good hint of self-deprecation and irony), most of my electronic exploratory endeavors end up being more about the process than the result.
Or, in other words: I was so focused on building this vessel that I never stopped to think where I want to go!
FBI Investigates Breach That May Have Hit Its Wiretapping Tools
The FBI is investigating a breach affecting systems tied to wiretapping and surveillance warrant data, after abnormal logs revealed possible unauthorized access to law-enforcement-sensitive information. “The FBI identified and addressed suspicious activities on FBI networks, and we have leveraged all technical capabilities to respond,” a spokesperson … ⌘ Read more
Jack Dorsey’s Block Accused of ‘AI-Washing’ to Excuse Laying Off Nearly Half Its Workforce
When Block cut 4,000 jobs — nearly half its workforce — co-founder Jack Dorsey “pointed to AI as the culprit,” writes Entrepreneur magazine. “Dorsey claimed that AI tools now allow fewer employees to accomplish the same work.”
“But analysts see a different explanation: poor management.”
Block more … ⌘ Read more
@movq@www.uninformativ.de I know it’s crazy right 🤯 these things are just tools. They’re not even remotely intelligent at all. In fact they are actually quite stupid. If you feed it garbage you get garbage out! The only interesting thing is that you get somewhat intelligible garbage out 😂
Iran War Provides a Large-Scale Test For AI-Assisted Warfare
An anonymous reader quotes a report from Bloomberg, written by Katrina Manson: The U.S. strikes on Iran ordered by President Donald Trump mark the arrival on a large scale of a new era of warfare assisted by artificial intelligence. Captain Timothy Hawkins, a Central Command spokesperson, told me last night that the AI tools the U.S. military is using in … ⌘ Read more
AI Startup Sues Ex-CEO Saying He Took 41GB of Email, Lied On Resume
An anonymous reader quotes a report from Ars Technica: Hayden AI, a San Francisco startup that makes spatial analytics tools for cities worldwide, has sued its co-founder and former CEO, alleging that he stole a large quantity of proprietary information in the days leading up to his ouster from the company in September 2024. In a lawsuit file … ⌘ Read more
Pentagon Formally Designates Anthropic a Supply-Chain Risk
The Pentagon has formally designated Anthropic as a “supply chain risk,” ordering federal agencies and defense contractors to stop using its AI tools after the company sought limits on the military’s use of its models. In a written statement, the department said it has “officially informed Anthropic leadership the company and its products are deemed a supply chai … ⌘ Read more
OpenAI Releases New ChatGPT Model For Working In Excel and Google Sheets
OpenAI today released GPT-5.4, an upgraded ChatGPT model designed to be faster, cheaper, and more accurate for workplace tasks. The update also introduces tools that let ChatGPT work directly inside Excel and Google Sheets. Axios reports: GPT-5.4 is designed to be less error-prone, more efficient and better at workplace tasks like draf … ⌘ Read more
Accenture Acquires Ookla, Downdetector As Part of $1.2 Billion Deal
Accenture is acquiring Downdetector parent company Ookla from Ziff Davis in a $1.2 billion deal to bolster its network analytics and visibility tools for telecoms, hyperscalers, and enterprises. “The deal, which will transfer all of Ziff Davis’s Connectivity division to Accenture, includes Ookla’s Speedtest, Ekahau, and RootMetrics,” notes The … ⌘ Read more
AMD Makes rocprof-trace-decoder Open-Source
AMD open-sourced the ROCprof Trace Decoder “rocprof-trace-decoder”, a tool useful for developers targeting the AMD GPU compute stack… ⌘ Read more
What’s Driving the SaaSpocalypse
An anonymous reader quotes a report from TechCrunch: One day not long ago, a founder texted his investor with an update: he was replacing his entire customer service team with Claude Code, an AI tool that can write and deploy software on its own. To Lex Zhao, an investor at One Way Ventures, the message indicated something bigger – the moment when companies like Salesforce stopped being the automatic default. … ⌘ Read more
AerynOS 2026.02 Brings More Wayland Compositor Options, Other Improvements
AerynOS 2026.02 was released for closing out February as the newest alpha release for this Linux distribution formerly known as Serpent OS. In AerynOS 2026.02 are many package updates plus continued work on the tooling and other innovations around this Linux distribution… ⌘ Read more
Perplexity Announces ‘Computer,’ an AI Agent That Assigns Work To Other AI Agent
joshuark shares a report from Ars Technica: Perplexity has introduced “Computer,” a new tool that allows users to assign tasks and see them carried out by a system that coordinates multiple agents running various models. The company claims that Computer, currently available to Perplexity Max subscribers, is “a system that … ⌘ Read more
Metacritic Will Kick Out Media Attempting To Submit AI Generated Reviews
An anonymous reader shares a report: While some see AI as a tool to be used, its specific use and how it is deployed responsibly is being heavily debated online across a wide range of industries. In terms of journalistic content, and in this particular instance, reviews, review aggregator Metacritic has taken a firm stance on con … ⌘ Read more
Firefox 148 Lets You Kill All AI Features in One Click
Mozilla has released Firefox 148 for Windows, macOS and Linux, bringing a new AI Settings section that lets users disable all of the browser’s AI-powered features in one click and then selectively re-enable the ones they actually want, such as the local translation tool that works locally rather than in the cloud.
The update also patches more than 50 security vulner … ⌘ Read more
The Government Just Made it Harder to See What Spy Tech it Buys
An anonymous reader shares a report: It might look like something from the early days of the internet, with its aggressively grey color scheme and rectangles nested inside rectangles, but FPDS.gov is one of the most important resources for keeping tabs on what powerful spying tools U.S. government agencies are buying. It includes everything from pho … ⌘ Read more
b4’s Review TUI With AI Integration Nearing Pre-Alpha Release
The b4 tool used for managing patch workflows to the Linux kernel has been seeing a lot of work recently on b4 review as the text user interface (TUI) to help expedite the patch review process for the Linux kernel. The b4 review TUI has been integrating AI agent code review helpers powered by the likes of Claude Code too for trying to help enhance the efficiency for Linux kernel patch reviews. That b4 review work is quickly approaching a pre-alpha sta … ⌘ Read more
Tech Firms Aren’t Just Encouraging Their Workers To Use AI. They’re Enforcing It.
Tech companies ranging from 300-person startups to giants like Amazon, Google, Meta, Microsoft and Salesforce have moved beyond encouraging employees to use AI tools and are now actively tracking adoption and, in several cases, tying it to performance reviews. Google is factoring AI use into some software engineer re … ⌘ Read more
Systing 1.0 Released For Rust-Based eBPF-Based Tracing Tool Leveraging AI
Josef Bacik, of Btrfs notoriety before leaving Meta and stepping back from kernel development last year, announced the release of Systing 1.0. Systing is a newer eBPF-tracing tool for Linux complete with AI integration… ⌘ Read more
Quantum Algorithm Beats Classical Tools On Complement Sampling Tasks
alternative_right shares a report from Phys.org: A team of researchers working at Quantinuum in the United Kingdom and QuSoft in the Netherlands has now developed a quantum algorithm that solves a specific sampling task – known as complement sampling – dramatically more efficiently than any classical algorithm. Their paper, published i … ⌘ Read more
IBM Shares Crater 13% After Anthropic Says Claude Code Can Tackle COBOL Modernization
IBM shares plunged nearly 13% on Monday after Anthropic published a blog post arguing that its Claude Code tool could automate much of the complex analysis work involved in modernizing COBOL, the decades-old programming language that still underpins an estimated 95% of ATM transactions in the United States and … ⌘ Read more
Is AI Impacting Which Programming Language Projects Use?
“In August 2025, TypeScript surpassed both Python and JavaScript to become the most-used language on GitHub for the first time ever…” writes GitHub’s senior developer advocate.
They point to this as proof that “AI isn’t just speeding up coding. It’s reshaping which languages, frameworks, and tools developers choose in the first place.”
Eighty percent of … ⌘ Read more