Nvidia Bets On OpenClaw, But Adds a Security Layer Via NemoClaw
During today’s Nvidia GTC keynote, the company introduced NemoClaw, a security-focused stack designed to make the autonomous AI agent platform OpenClaw safer. ZDNet explains how it works: NemoClaw installs Nvidia’s OpenShell, a new open-source runtime that keeps agents safer to use by enforcing an organization’s policy-based guardrails. OpenShell ke … ⌘ Read more
Imagination’s Open-Source PowerVR Vulkan Driver Now Plays Nicely With Zink OpenGL
The past several years Imagination Tech has been investing in an upstream and open-source DRM kernel graphics driver as well as a PowerVR Vulkan driver in Mesa. Their Mesa focus has exclusively been on the PowerVR Vulkan driver with the plans all along to use the Zink generic OpenGL-on-Vulkan implementation. With next quarter’s Mesa 26.1 release, that goal is being realized with Zink now working nicely atop the PowerVR Vulkan driver … ⌘ Read more
Intel Graphics Driver Preps For UHBR DP Tunnels With Linux 7.1
A round of Intel graphics driver updates were sent today to DRM-Next in staging ahead of April’s Linux 7.1 merge window. The changes in this pull aren’t too particularly exciting with a lot of code refactoring and other work, but there are preparations made for supporting UHBR DP tunnels… ⌘ Read more
@lyse@lyse.isobeef.org That would have been the noble thing to do. It’s more work for me, though. I blocked that idiot and moved on with my life. 🫤
Lenovo Legion Go HID Drivers Queued Ahead Of Linux 7.1
The work by Derek Clark on enhancing the Lenovo Legion Go gaming handheld support for Linux continues panning out nicely. The latest driver effort, the creation of the Lenovo Legion Go and Go S Series HID Drivers to help with controller configuration, is set to be introduced in Linux 7.1… ⌘ Read more
Ask Slashdot: What’s the Best All-Purpose RISC-V System on a Chip Family?
Slashdot reader SysEngineer does embedded/IoT work, but “I want to pick a single system-on-a-chip architecture family and commit to it across multiple product lines — sensor nodes up through edge gateways… I’ve been on one platform for years and want to know what embedded engineers are actually running in production before I comm … ⌘ Read more
How One Company Finally Exposed North Korea’s Massive Remote Workers Scam
NBC News investigates North Korea’s “wide-ranging effort to place remote workers at U.S. companies in order to funnel money back to its coffers and, in some cases, steal sensitive information.”
And working with the FBI, one corporate security/investigations company decided to knowingly hire one of North Korea’s remote workers — th … ⌘ 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.
Lego’s ‘biggest innovation ever’: Here’s what you need to know
How does Smart Play work? What are the new sets like? And is adding tech to Lego even a good idea? ⌘ Read more
@rdlmda@rdlmda.me I am reasonably happy with jenny. If I find time for a twtxt project, I would like to make a web page that works as follows: you point it to your own twtxt feed (as a URL parameter), and then it shows you all the feeds referenced by your “# follow =” lines. So, if I put this up, anyone could use it to view their own feed, with no login required. (Probably a difficult project. For example, I’d want to make sure the backend couldn’t be tricked into helping ddos a web server by trying to fetch lots of “feeds” from it. Anyway, I have too many other projects.)
KDE Plasma 6.6.3 Fixing Direct Scan-Out When Using Fractional Scaling
KDE developers continue being very busy working on Plasma 6.7 feature development as well as continuing to drive new fixes and refinements to the current Plasma 6.6 stable series… ⌘ Read more
ChatGPT, Other Chatbots Approved For Official Use In the Senate
An anonymous reader quotes a report from the New York Times: A top Senate administrator on Monday gave aides the green light to use three artificial intelligence chatbots for official work, a reflection of how widespread the use of the products has become in workplaces around the globe. The chief information officer for the Senate sergeant-at-arms, w … ⌘ Read more
@movq@www.uninformativ.de This is how my SSH proxy setup works.
@kiwu@twtxt.net after you upload, make sure the audio file looks like this:

And it will work.
Authenticated to git.mills.io ([199.247.16.95]:2222) using "publickey". ssh-add ... had no effect (even after ssh-add -D).
@movq@www.uninformativ.de I don’t think it is anything you are doing wrong. I think it is on @prologic@twtxt.net side. I am getting the exact same result, but I never cloned that repository. Maybe it worked fine at certain point, when @lyse@lyse.isobeef.org cloned it, but I doubt brand new users can get through.
@movq@www.uninformativ.de @bender@twtxt.net You need a running SSH agent in order to make it through the deep layers of the Mills infrastructure: After ssh-add, git pull always works for me.
And contrary to what the UI shows, the username git always has to be replaced with your own one.
https://www.youtube.com/watch?v=T4Upf_B9RLQ
“A proud tradition, but it is hard work. Enter… The Internet!”
Anyone else having trouble pulling from git.mills.io? 🤔
$ g clone ssh://git@git.mills.io:2222/yarnsocial/twtxt.dev.git
Cloning into 'twtxt.dev'...
git@git.mills.io: Permission denied (publickey).
fatal: Could not read from remote repository.
The key verification function on https://git.mills.io/user/settings/keys says I’m using the correct key.
This also looks good:
$ GIT_SSH_COMMAND="ssh -v" g clone ssh://git@git.mills.io:2222/yarnsocial/twtxt.dev.git
...
debug1: Authentications that can continue: publickey
debug1: Offering public key: /home/user/.ssh/keys/key-millsio ED25519 SHA256:nVNT... explicit
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
git@git.mills.io: Permission denied (publickey).
fatal: Could not read from remote repository.
Does it work for you, @lyse@lyse.isobeef.org @prologic@twtxt.net?
Strait of Hormuz Closure Triggers Work From Home, 4-Day Weeks In Asia
Asian governments are implementing emergency measures like four-day workweeks and work-from-home mandates to cope with a fuel shortage triggered by the Iran conflict and the closure of the Strait of Hormuz. “Asia is particularly dependent on oil exports from the Middle East; Japan and South Korea respectively source 90% and 70% of their … ⌘ Read more
Does that work?
@bender@twtxt.net Oops, missed this. I haven’t done any client work since my brief experiment modifying jenny a while back.
Swiss E-Voting Pilot Can’t Count 2,048 Ballots After USB Keys Fail To Decrypt Them
A Swiss e-voting pilot was suspended after officials couldn’t decrypt 2,048 ballots because the USB keys needed to unlock them failed. “Three USB sticks were used, all with the correct code, but none of them worked,” spokesperson Marco Greiner told the Swiss Broadcasting Corporation’s Swissinfo service. The canton … ⌘ Read more
Now that Winter has come to an end, I’m realizing that the default amber color scheme of my widget toolkit might be problemaic.

Readability isn’t great when the sun is blasting through the windows. 🥴
I should probably make this full themeable by the user …
(Haven’t worked on this code in a month, sadly.)
Last year, I made a huge mistake. I repeated on here, what multiple sourcea at Google told me, and what is to this day, written on their blog about Android.
I failed to take into consideration, that people who work at Google, often just lie, or present things intentionally vaguely, so they do not have to follow through with their promises.
I would like to apologize to everyone, who took my previous posts here, as assurance software not explicitly approved by Google, will continue working on Android, past this year (or even just a couple months from now) and that everything has been resolved, as things are now in fact even worse, than they were before. To follow the current state of “Open Android”, please check: https://keepandroidopen.org/
@rdlmda@rdlmda.me I never saw the point of a registry to be honest, as it defeated the point of what I believed to be a truly decentralised non-social social ecosystem. What can and does work however is a search engine and crawler. I used to run one, but I took it down, mostly because it got expensive to operate, at least the implementation I built… Maybe one day i’ll try again with a SQLite backend.
MSI PRO B850-P WiFi: A Special AMD Ryzen AM5 Motherboard For Linux / Open-Source Enthusiasts
The MSI PRO B850-P WIFI motherboard is a unique AMD Ryzen AM5 motherboard for Linux/open-source enthusiasts that is competitively priced at just $179 USD. It’s interesting not because of the doings of MSI but rather 3mdeb with this being the desktop motherboard they are working on porting AMD openSIL and Coreboot to for allowing an open-source firmware stack. ⌘ Read more
@arne@uplegger.eu I’m finding that hubs like https://twtxt.net, as a yarn “pod” that indexes a lot of users, works great as a place to find interesting conversations and people to follow.
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!
Fedora 44 Beta Released With Better KDE Experience, Many Upgrades
The Fedora 44 Beta release is out today on schedule in working toward the official Fedora 44 release around mid-April… ⌘ Read more
@rdlmda@rdlmda.me I mean, if you’re talking about a “Follow me” button you can put on your site somewhere and it somehow magically™ works, yeah we haven’t figured out a good way to do this honestly.
Replies aren’t actually broken, I just… need to add myself to the follow list?! That’s quite counter-intuitive and (IIRC) not mentioned in the docs. But… It seems to be working now, which is nice (I still don’t know how webmentions and webfinger works, so can’t speak about this so far)
yarnd (what runs here at twtxt.net) actually does this automatically by default. I think it’s just an implementation detail to be honest. There’s nothing about this in the specs over at https://twtxt.dev
Alright. I have a minimal working instance of a twtxt feed. Now, what’s the first thing we do? Exactly, FOLLOW EVERYONE!
Replies aren’t actually broken, I just… need to add myself to the follow list?! That’s quite counter-intuitive and (IIRC) not mentioned in the docs. But… It seems to be working now, which is nice (I still don’t know how webmentions and webfinger works, so can’t speak about this so far)
YAY! IT WORKS! (…kinda? Mentions and replies seem broken.)
@movq@www.uninformativ.de Luckily, I’ve never encountered any bugs in Vim with my type of work and features I use.
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
OpenAI’s Head of Robotics Resigns, Says Pentagon Deal Was ‘Rushed Without the Guardrails Defined’
In a tweet that’s been viewed 1.3 million times in the last six hours, OpenAI’s head of robotics announced their resignation. They said they “care deeply about the Robotics team and the work we built together,” so this “wasn’t an easy call,” but offered this reason for resigning:
… ⌘ Read more
3mdeb Making Progress On AMD Ryzen AM5 Motherboard Port With Coreboot + openSIL
In addition to the 3mdeb firmware consulting firm porting Coreboot with AMD openSIL to an EPYC 9005 “Turin” Gigabyte motherboard, their developers have also been working on a similar Coreboot + openSIL port to an AM5 Ryzen consumer motherboard… ⌘ Read more
Mozilla Is Working On a Big Firefox Redesign
darwinmac writes: Mozilla is working on a huge redesign for its Firefox browser, codenamed “Nova,” which will bring pastel gradients, a refreshed new tab page, floating “island” UI elements, and more. “From the mockups, it appears Mozilla took some inspiration from Googles Material You (or at least, the dynamic color extraction part of it) because the browser color accent appears influ … ⌘ Read more
@prologic@twtxt.net LOL. Best test ever: if it doesn’t work out, walk a few steps to complete comfort. Win-win!
IBM Scientists Unveil First-Ever ‘Half-Mobius’ Molecule
BrianFagioli shares a report from NERDS.xyz: An international team of scientists has done something chemistry has never seen before. IBM, working alongside researchers from the University of Manchester, Oxford University, ETH Zurich, EPFL, and the University of Regensburg, has created and characterized a molecule whose electrons travel through its structure in a … ⌘ Read more
Wayland 1.25 RC1 Released With Improved Documentation, Minor Changes
Simon Ser announced the release today of Wayland 1.25 RC1 (Wayland v1.24.91) in working toward this next stable release… ⌘ 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
Redox OS Gets Vulkan & Node.js Working On This Rust-Based Open-Source OS
There were some fairly exciting improvements made by the Redox OS developers over the course of February. They have the Vulkan API working on Redox OS for the first time along with more COSMIC desktop software and even Node.js… ⌘ Read more
Solar In Poor Countries Is Creating a Huge Lead Hazard
schwit1 shares a report from Slow Boring: A new report (PDF) from the Center for Global Development documents that most of [the decentralized solar/battery systems used in poor countries in sub-Saharan Africa] use lead-acid batteries, like Americans use in cars. Lead-acid batteries work for a while and then need to be recycled. If they’re recycled safely, that … ⌘ Read more
Humble Games’ Former Bosses Buy the Studio’s Back Catalog
Former Humble Games executives have reacquired the publisher’s catalog of more than 50 indie titles from Ziff Davis and relaunched their company as Balor Games. “For the developers we have worked with over the years, this moment is a reunion,” Balor Games CEO Alan Patmore wrote in a statement. “[It has] the same leadership and the same commitment to thoughtfu … ⌘ Read more
Our work is never over
Linux Mint Ready With Its Wayland-Compatible Cinnamon Screensaver
Linux Mint developers recently outlined their work on developing a new Wayland-compatible screensaver for use with their Cinnamon desktop environment. Linux Mint developers announced today that their new screensaver solution is ready for use… ⌘ Read more
systemd 260-rc2 Released With More Changes
Last week marked the release of systemd 260-rc1 with a new “mstack” feature, a new “FANCY_NAME” field for os-release, dropping System V service script support, and other changes. Out today is systemd 260-rc2 release with more changes in further working its way toward a stable release for empowering 2026 Linux distributions… ⌘ Read more
‘Game of Thrones’ Movie In the Works
Warner Bros. is developing a feature film set in the world of Game of Thrones with writer Beau Willimon of Andor and House of Cards. “That’s about all we know right now, and as with everything ‘Thrones’ things could change, but the film is firmly in development,” reports TheWrap. Page Six Hollywood was first to break the news and speculated that the story could revolve around Aegon I, the legen … ⌘ Read more