Searching txt.sour.is

Twts matching #ToS
Sort by: Newest, Oldest, Most Relevant

Erlang Solutions: Erlang Solutions’ Blog round-up
The tech world doesn’t slow down, and neither do we. From the power of big data in healthcare to keeping you up-to-date about fintech compliance, our latest blog posts explore the important topics shaping today’s digital world.

Whether you’re leading a business, building software, or just curious about the future of tech, check out what the Erlang Solutions team has been talking about.

Understanding Big Data in Healthcare

![](https://lh7-qw.goo … ⌘ Read more

⤋ Read More

White House embraces Abrego Garcia fight
Brett Samuels,  Staff writer  -  The Hill

_Stephan: The United States has come to the abyss of dictatorship. In the next three weeks we are going to learn whether Donald Trump must follow the laws as the courts decide or whether Donald Trump now defines the laws. Whether we remain a democracy or become a formal dictatorship. When Hitler took power in 1933, 53 days after coming into power he started opening concentration camps. The first one wa … ⌘ Read more

⤋ Read More
In-reply-to » @andros maybe create a separate, completely distinct feed for DM? That way, clients do not need to do anything, only those wanted to "talk in private" follow themselves, using their very special dm-only.txt feeds. 😂

@bender@twtxt.net @aelaraji@aelaraji.com The client should ignore twts if it’s not compatible or not addressed to me. it’s a simple regex to add! It’s similar to Twt Hash Extension, should they be in another file? They are child messages, not flat twt. Not of course!

⤋ Read More

El Salvador denies senator visit with mistakenly deported man: Van Hollen
Sareen Habeshian,  Staff Writer  -  Axios

_Stephan: The utterly incompetent Homeland Security Secretary Kristi Noem, and her $50,000 Rolex, had no problem getting into the El Salvador concentration camp and posing in front of the inmates. But Democrat Maryland Senator Chris Van Hollen, when he went to El Salvador, was denied any access. Dictator Trump’s deal with Dictator Nayib B … ⌘ Read more

⤋ Read More

Open Your Favorite Chat Right From Your iPhone Lock Screen
In iOS 18.4, Apple added a new Shortcuts action to open a specific conversation in the Messages app. This means it’s now possible to open a chat thread with someone important to you straight from your Lock Screen, for example. Keep reading to learn more.

Image

If you’d like to reduce the time it takes to chat with a frequently conta … ⌘ Read more

⤋ Read More

State tells employees to report on one another for ‘anti-Christian bias’
Robbie Gramer and Nahal Toosi,  Staff Writers  -  Politico

_Stephan: Secretary of State Marco Rubio, a man who throughout his career has made it clear that he is utterly lacking in honorable ethics, in service to Dictator Trump, is now doing something straight out of the Hitler playbook. This is exactly what Hitler did, although few in the media seem to know this. It is just another … ⌘ Read more

⤋ Read More

Via porn, gore and ultra-violence, extremist groups are sinking hooks online into the very young
John Leicester,  Reporter  -  Associated Press

_Stephan: Concurrent with the coup in the United States, something equally dangerous to democracy is going on internationally: the weaponization of the internet by terrorists and fascists. If you have young children who spend hours of their day on the internet, you would be wise to underst … ⌘ Read more

⤋ Read More

Ten Times Scientists Created Astonishing New States of Matter
Most people are well aware of the three main states of matter: solids, liquids, and gases. Some might even know about plasma, a fourth state made of charged particles and found throughout the universe. But how about swirlons? Does the phrase Rydberg polaron mean anything to you? As scientists expand their understanding of the universe, […]

The post [Ten Times Scientists Created Astonishing New States of Matte … ⌘ Read more

⤋ Read More

10 Times Humanity Tried to Redesign the Calendar
For most of us, the Gregorian calendar is simply the way time works. But history is filled with people and cultures who believed they could build something more rational, accurate, or aligned with nature or ideology. Some were utopian dreams, others were bureaucratic rethinks—but all of them tried to challenge what we now take for […]

The post [10 Times Humanity Tried to Redesign the Calendar](https://listverse.com/2025/04/17/10-times … ⌘ Read more

⤋ Read More

Planning for Scotland, second try
My fiancée and I were in Scotland in 2023 on an Interrail trip. But with some bad luck, we got COVID-19 after half of the trip and had to go home and recover. We always said we wanted to finish our trip in one of the next years. ⌘ Read more

⤋ Read More

iPhone 18’s Costly 2nm Process Adoption Could Lead to Price Hikes
Apple’s iPhone 18 models will adopt TSMC’s 2nm manufacturing process for the next-generation A20 chip, which will bring substantial performance and power efficiency improvements to next year’s iPhones, but it may also incur significantly more costs that Apple could pass onto the customer.

Image

The latest corroboration that Apple will use TSMC’s 2nm proce … ⌘ Read more

⤋ Read More

@xuu@txt.sour.is Seems to be fine here?

$ bat https://twtxt.net/twt/yfv5kfq | jq '.text'
"!<dm-echo https://dm-echo.andros.dev/twtxt.txt> U2FsdGVkX1+QmwBNmk9Yu9jvazVRFPS2TGJRGle/BDDzFult6zCtxNhJrV0g+sx0EIKbjL2a9QpCT5C0Z2qWvw=="

⤋ Read More

Even though I really do like the shell, I always use Dolphin to mount my digicam SD card and copy the photos onto my computer. I finally added a context menu item in Dolphin to create a forest stroll directory with the current date in order to save some typing:

Image

The following goes in ~/.local/share/kservices5/ServiceMenus/galmkdir.desktop:

[Desktop Entry]
Type=Service
X-KDE-ServiceTypes=KonqPopupMenu/Plugin,inode/directory
Actions=Waldspaziergang;

[Desktop Action Waldspaziergang]
Name=Heutigen Waldspaziergang anlegen…
Icon=folder-green
Exec=~/src/gelbariab/galmkdir "%f"

In order to update the KDE desktop cache and make this action menu item available in Dolphin, I ran:

kbuildsycoca5

The referenced galmkdir script looks like that:

#!/bin/sh
set -e

current_dir="$1"
if [ -z "$current_dir" ]; then
    echo "Usage: $0 DIRECTORY" >&2
    exit 1
fi

dir="$(kdialog \
    --geometry 350x50 \
    --title "Heutigen Waldspaziergang anlegen" \
    --inputbox "Neues Verzeichnis in „$current_dir“ anlegen:" \
    "waldspaziergang-$(date +%Y-%m-%d)")"
mkdir "$current_dir/$dir"
dolphin "$current_dir/$dir"

This solution is far from perfect, though. Ideally, I’d love to have it in the “Create New” menu instead of the “Actions” menu. But that doesn’t really work. I cannot define a default directory name, not to mention even a dynamic one with the current date. (I would have to update the .desktop file every day or so.) I also failed to create an empty directory. I somehow managed to create a directory with some other templates in it for some reason I do not really understand.

Let’s see how that works out in the next days. If I like it, I might define a few more default directory names.

⤋ Read More

iOS 18.4.1 Update Released with CarPlay Fix & Security Patches
Apple has released iOS 18.4.1 update for iPhone, along with iPadOS 18.4.1 for iPad. The software updates include a few bug fixes and important security patches, making them recommended to update. Additionally, iOS 18.4.1 includes a bug fix for a particular issue with CarPlay not connecting properly in some situations. If you have been experiencing … [Read More](https://osxdaily.com/2025/04/16/ios-18-4-1-up … ⌘ Read more

⤋ Read More

MacOS Sequoia 15.4.1 Update Released with Bug & Security Fixes
Apple has released MacOS Sequoia 15.4.1 as a software update for Mac users running the Sequoia operating system. The update focuses exclusively on security updates and bug fixes, and contains no new features. Separately, Apple also released iOS 18.4.1 for iPhone, iPadOS 18.4.1 for iPad, and updates to tvOS, watchOS, and visionOS, and those updates … [Read More](https://osxdaily.com/2025/04/16/macos-sequoia-15- … ⌘ Read more

⤋ Read More
In-reply-to » We had some nice 22°C today. But after work, it got rather windy and cloudy, temps rapidly dropped so just 14°C. Still a nice stroll to our backyard mountain. https://lyse.isobeef.org/waldspaziergang-2025-04-16/

@bender@twtxt.net Oooofff, I’m panting for breath when just thinking about that! I’ll immediately stop complaining. :-) I already forgot that a jacket over my jumper would have been nice. I’m happy to be cold.

⤋ Read More

[$] What’s new in APT 3.0
Debian’s Advanced Package Tool (APT) is the suite of utilities that handle package
management on Debian and Debian-derived operating systems. APT recently received a
major upgrade to 3.0 just in time for inclusion in Debian 13
(“trixie”), which is planned for release sometime in 2025. The version bump is
warranted; the latest APT has user-interface improvements, switches to [Sequoia](https://sequoia-pgp.org/pr … ⌘ Read more

⤋ Read More

My mother-in-law doesn’t understand why I keep my cat after he was too slow to catch a mouse (he’s 10 years old). She says, “If an animal stops being useful, it’s a waste of money to take care of it” ⌘ Read more

⤋ Read More

The CNCF TOC @ KubeCon + CloudNativeCon Europe 2025
The Technical Oversight Committee (TOC) provides technical leadership to the cloud native community. Strong TOC participation at this year’s KubeCon + CloudNativeCon Europe in London enabled in-person discussions and strategic planning for CNCF project technical priorities… ⌘ Read more

⤋ Read More

[$] Parallel directory operations
Allowing directories to be modified in parallel was the topic of Jeff
Layton’s filesystem-track session at the 2025 Linux Storage, Filesystem,
Memory Management, and BPF Summit (LSFMM+BPF). There are certain use
cases, including for the NFS and Lustre filesystems, as mentioned in a patch set
referenced in the topic\
proposal, where contention in cre … ⌘ Read more

⤋ Read More

[$] Taking BPF programs beyond one-million instructions
The BPF verifier is not magic; it cannot solve the
halting problem. Therefore,
it has to err on the side of assuming that a program will run too long if it
cannot prove that the program will not.
The ultimate check on the size of a BPF program is the
one-million-instruction limit — the verifier will refuse to process more than
one-million instructions, no matter what a BPF program does. Alexei Starovoitov gave
a talk at the 2025 L … ⌘ Read more

⤋ Read More

CISA extends funding to the CVE program (BleepingComputer)
Sergiu Gatlan reports
that the US government has extended funding for the Common
Vulnerabilities and Exposures (CVE) program, following yesterday’s reports that funding
would run out as of April 16.

“The CVE Program is invaluable to cyber community and a priority of
CISA,” the U.S. cybersecurity agency told BleepingCompu … ⌘ Read more

⤋ Read More

[$] Improvements for the contiguous memory allocator
As a system runs, its memory becomes fragmented; it does not take long
before the allocation of large, physically contiguous memory ranges becomes
difficult or impossible. The contiguous memory\
allocator (CMA) is a kernel subsystem that attempts to address this
problem, but it has never worked as well as some would like. Two sessions
in the memory-management track at the 2025 Linux Storage, Filesystem,
Memory-Management, and BPF Summit looked at … ⌘ Read more

⤋ Read More

Patient Safety Network Abruptly Cut by Trump Administration
Jeremy Faust, MD, MS, MA,,   Editor-in-Chief   -  MedPage Today

_Stephan: American healthcare has been devastated by dictator Trump and his servants, and the Republicans in Congress have stood by and watched while they sucked their thumbs. The only chance we have of retaining a democracy in the United States, assuming the 2026 election is not rigged in advance, is to vote all Republicans in the House and t … ⌘ Read more

⤋ Read More

‘The Homegrowns Are Next’: Trump Promises to Send American Citizens to El Salvador in Harrowing Comments to Bukele
Colby Hall,  Founding Editor  -  Mediate

_Stephan: I am surprised the media isn’t saying out loud what is actually going on. American dictator Donald Trump has made a deal with dictator Nayib Bukele of El Salvador to run a concentration camp for which he will pay him $6,000 per person of your tax doll … ⌘ Read more

⤋ Read More

Polling shows growing number of Republicans identify with the MAGA movement
Ben Kamisar,    -  NBC News

Stephan: What you rarely hear anyone talking about is how many Germans supported Hitler for years after they voted him into office. You may find it hard to believe but that is exactly the same thing happening in the United States, Here are the facts.

![](https://www.schwartzreport.net/wp-content/uploads/2025/04/Screenshot-2025-04-15-at-7.17.08  … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me @andros I'm new in the neighborhood and I would like to ask you something :) When a new extension is published in twtxt.dev , is it open for discussion or ready for implementation?

@javivf@adn.org.es Generally speaking if it has been reviewed, discussed and merged, then we accept it as a standard to the set of specs we support. However we might want to document this process and set some guidelines about this to be clear 🤣 We’ve been fairly lax/lose here and I think that’s okay given teh size of our community 👌

⤋ Read More

(#eetsbtq) @javivf@javivf Generally speaking if it has been reviewed, discussed and merged, then we accept it as a standard to the set of sp …
@javivf @adn.org.es Generally speaking if it has been reviewed, discussed and merged, then we accept it as a standard to the set of specs we support. However we might want to document this process and set some guidelines about this to be clear 🤣 We’ve been fairly lax/lose here and I think that’s okay given teh s … ⌘ Read more

⤋ Read More

10 Wonderful TV Shows That Started Strong but Ended Unfinished
Anyone who has competed in track and field at any level knows it’s easy to start out strong. What’s much more difficult is maintaining that initial burst of speed for the entire race and then finishing strong. Some TV shows come out of the gate swinging, with strong casts, clever writing, and highly compelling plotlines. […]

The post [10 Wonderful TV Shows That Started Strong but Ended Unfinished](https://l … ⌘ Read more

⤋ Read More

10 Rare & Interesting Versions of Common Animals
The animal kingdom is never short on variety, with over 1.5 million living animal species in existence today. And yet, our interests tend to focus on a common few—the black bear, the ring-tailed lemur, the gray wolf. But for every common species, there is an equally uncommon and interesting variation that hardly anyone pays attention […]

The post [10 Rare & Interesting Versions of Common Animals](https://listverse.com/2025/04/16/10-rare … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

@prologic@twtxt.net @bender@twtxt.net @eapl.me@eapl.me @andros@twtxt.andros.dev I’m new in the neighborhood and I would like to ask you something :) When a new extension is published in twtxt.dev , is it open for discussion or ready for implementation?

⤋ Read More

Modular Cerebro Clusterboard Supports Raspberry Pi CM4/CM5, Jetson, and Radxa CM5
Cerebro is an upcoming clusterboard platform launching on Kickstarter, designed for AI, edge computing, and embedded development. It supports a range of compute modules including Raspberry Pi CM4 and CM5, NVIDIA Jetson, and Radxa CM5, providing a modular base for scalable systems. The board can host up to four compute nodes and includes an onboard, […] ⌘ Read more

⤋ Read More

iPhone Fold: New Leak Corroborates Camera Setup on Outer Display
Further details have emerged about the camera system on Apple’s upcoming foldable iPhone, informally dubbed the “iPhone Fold.”

Image

Expected to launch next year, Apple’s book-style foldable is rumored to feature a 7.8-inch crease-free internal display and a 5.5-inch external screen. According to industry analyst [Ming-Chi Kuo](https … ⌘ Read more

⤋ Read More

** In reply to: Common Cyborg | Jillian Weise | Granta **
In reply to: Common Cyborg | Jillian Weise | Granta

They like us best with bionic arms and legs. They like us deaf with hearing aids, though they prefer cochlear implants. It would be an affront to ask the hearing to learn sign language. Instead they wish for us to lose our language, abandon our culture and consider ourselves cured. They like exoskeletons, which none of us use. They would never consider cyborg those of us with pace … ⌘ Read more

⤋ Read More

[$] Topics from the virtual filesystem layer
In the first filesystem-track session at the 2025 Linux Storage,
Filesystem, Memory Management, and BPF Summit (LSFMM+BPF), virtual
filesystem (VFS) layer co-maintainer Christian Brauner had a few different
topics he wanted to talk about. Issues on the agenda
included iterating through anonymous mount namespaces, a needed feature
for ID-mapped mounts, the perennial unprivileged mounts topic, potentially
using hazard pointers for file reference counting, and Rust bindings. He
did not expect … ⌘ Read more

⤋ Read More

How to Get SSL Certificate Info in Safari on Mac
The latest versions of Safari for Mac have changed how a person might find SSL certificate information for a particular website, something that is commonly needed in web development, information security, and developmental web work in general. While in prior versions of Safari you could simply click on the little padlock icon next to the … Read More ⌘ Read more

⤋ Read More
In-reply-to » The tiny avatars, as expected (because they showed normal to you too @prologic), do not show under macOS’s Safari, but they do show on iOS’s Safari. It truly is a puzzle.

Hahaha! And now they show tiny! I had to reload the page. So, I see the problem on iOS and macOS Safari too. I have no other browser to test with, I exclusively use Safari.

⤋ Read More

How to Get SSL Certificate Info in Safari on Mac
The latest versions of Safari for Mac have changed how a person might find SSL certificate information for a particular website, something that is commonly needed in web development, information security, and developmental web work in general. While in prior versions of Safari you could simply click on the little padlock icon next to the … Read More ⌘ Read more

⤋ Read More

Docker Desktop for Mac: QEMU Virtualization Option to be Deprecated in 90 Days
We are announcing the upcoming deprecation of QEMU as a virtualization option for Docker Desktop on Apple Silicon Macs. After serving as our legacy virtualization solution during the early transition to Apple Silicon, QEMU will be fully deprecated 90 days from today, on July 14, 2025. This deprecation does not affect QEMU’s role in emulating […] ⌘ Read more

⤋ Read More

When to choose GitHub-Hosted runners or self-hosted runners with GitHub Actions
Comparing GitHub-hosted vs self-hosted runners for your CI/CD workflows? This deep dive explores important factors to consider when making this critical infrastructure decision for your development team.

The post [When to choose GitHub-Hosted runners or self-hosted runners with GitHub Actions](https://github.blog/enterprise-software/ci-cd/when-to-choose-github-ho … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

@eapl.me@eapl.me This is one of my concerns too. The moment you post publicly ciphertext, you open yourself up for future attacks on the ciphertext, which you really want to avoid if you can. If you have a read of the Salty.im Spec you’ll note we went to great lengths to protect the user’s privacy as well as their identity and make it incredibly hard to guess at inboxes. It’s still a WIP, but I’d love to see it progressed even further – I truly feel strongly about a purely decentralised messaging ecosystem 👌

⤋ Read More

(#2zhuzoa) @eapl.me@eapl.me This is one of my concerns too. The moment you post publicly ciphertext, you open yourself up for future attacks on …
@eapl.me @eapl.me This is one of my concerns too. The moment you post publicly ciphertext, you open yourself up for future attacks on the ciphertext, which you really want to avoid if you can. If you have a read of the Salty.im Spec you’ll note we went to great lengths to protect the user’s … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

my main itch with the DMs extensions is that these messages are intended to be private, not public information. That’s why other extensions make sense, but DMs are another kind of feature.
TwiXter, Mastodon, FB and some other services usually hide the DMs in another section, so they are not mixed with the public timeline.

I find the DM topic interesting, I even made an indie experiment for a centralized messaging system here https://github.com/eapl-gemugami/owl.
Although, as I’ve said a few times here, I’m not particularly interested in supporting it on microblogging, as I don’t use it that much. In the rare case I’ve used them, I don’t have to manage public and private keys, and finally none of my acquaintances use encrypted email.
Nothing personal against anyone, and although I like to debate and even fight, it’s not the case here. This proposal is the only one allowing DMs on twtxt, and if the community wants it, I’ll support it, with my personal input, of course.

A good approach I could find with a good compromise between compatibility with current clients and keeping these messages private is ‘hiding’ the DMs in comments. For example:
# 2025-04-13T11:02:12+02:00 !<dm-echo https://dm-echo.andros.dev/twtxt.txt> U2FsdGVkX1+QmwBNmk9Yu9jvazVRFPS2TGJRGle/BDDzFult6zCtxNhJrV0g+sx0EIKbjL2a9QpCT5C0Z2qWvw==

⤋ Read More

European AI
To reduce my dependence on USA-based products, I switched from using the OpenAI API to Scaleway’s Generative API for my blog. Not only is it cheaper, but it’s based on open-source models, hosted in Europe. 🇪🇺 ⌘ Read more

⤋ Read More

Kagent: Bringing Agentic AI to Cloud Native
Solving Cloud Native Operation Challenges with AI Agents Oh no! Your application is unreachable, buried under multiple connection hops—how do you pinpoint the broken link? How do you generate an alert or bug report from Prometheus… ⌘ Read more

⤋ Read More

[$] Automatic tuning for weighted interleaving
It is common, on NUMA systems, to try to allocate all memory on the local
node, since it will be the fastest. That is not the only possible policy,
though; another is weighted interleaving,
which seeks to distribute allocations across memory controllers to maximize
the bandwidth utilization on each. Configuring such policies can be
challenging, though. At the 2025 Linux Storage, Filesystem,
Memory-Management, and BPF Summit, Joshua Hahn ran a session i … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

I think I would encourage anyone in this community is to care less about supporting “legacy clients” and focus more on value-add whilst balancing the burden of client authors – which have very precious little “spare time” 🤣

⤋ Read More

(#2zhuzoa) I think I would encourage anyone in this community is to care less about supporting “legacy clients” and focus more on value-add whil …
I think I would encourage anyone in this community is to care less about supporting “legacy clients” and focus more on value-add whilst balancing the burden of client authors – which have very precious little “spare time” 🤣 ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

I do think integrating things like Salty.im might actually be a good idea. I can also see a future where we integrate other things like todo.txt and calendar.txt. I’d even love to see decentralised forms of “plain text” voting too.

⤋ Read More

(#2zhuzoa) I do think integrating things like Salty.im might actually be a good idea. I can also see a future where we integrate other thing …
I do think integrating things like Salty.im might actually be a good idea. I can also see a future where we integrate other things like todo.txt and calendar.txt. I’d even love to see decentralised forms of “plain text” voting too. ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

@andros@twtxt.andros.dev I don’t see any “fighting” here. This is just good experimentation. Unfortunately there hasn’t really been enough time or effort by other “client authors” yet, me especially as I’ve been super busy with ya’ know my “day job” that pays the bills and refactoring yarnd to use a new and shiny and much better SqliteCache 🤣 – I certainly don’t think your efforts are wasted at all. I would however like @doesnm.p.psf.lt@doesnm.p.psf.lt encourage you to look at the work we’ve done as a community (which was also driven out of the Yarn.social / Twtxt community years back).

⤋ Read More

(#2zhuzoa) @andros@andros I don’t see any “fighting” here. This is just good experimentation. Unfortunately there hasn’t really been e …
@andros @twtxt.andros.dev I don’t see any “fighting” here. This is just good experimentation. Unfortunately there hasn’t really been enough time or effort by other “client authors” yet, me especially as I’ve been super busy with ya’ know my “day job” that pays the bills and refactoring yarnd to use a new and shiny and … ⌘ Read more

⤋ Read More
In-reply-to » @prologic @bender @eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important. I'll be honest, I'm a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic . My suggestion apparently doesn't like to the community. I have no problem with remove it.

@andros@twtxt.andros.dev how often do you send a private message on the Fediverse? How often do you send PGP/SMIME encrypted emails? Are there other tools that are more suitable for the task? If implementing direct/private messages on twtxt scratches an itch (you know, that hobbyist itch we all get from time to time), then don’t give up so easily. Worse comes to worse, and your feed becomes too noisy, people can simply unfollow/mute.

I really don’t care about direct messages here, but I might be on that bottom 1%!

⤋ Read More

‘We’​re Turning Into a Dictatorship’: Trump Tariffs Seen as Ploy to Further Consolidate Power
Jake Johnson,  Senior editor  -  Common Dreams

_Stephan: We became a dictatorship this morning, and democracy ended in the United States. Dictator Trump made it clear he doesn’t give a damn what the Supreme Court says. He’ll do what he likes, including deporting without any legal process anyone he likes, including American-born citizens. He als … ⌘ Read more

⤋ Read More

Trump administration contends it has no duty to return illegally deported man to US
Josh Gerstein and Kyle Cheney,  Staff Writers  -  Politico

_Stephan: The legal system of the United States is collapsing. We are very quickly becoming a country of ethical laws. Dictator Trump has made it clear he is above the law and the courts have no power over him. He is also corrupting major law firms in the country which are bowing down and telling him … ⌘ Read more

⤋ Read More

Law firms pledge almost $1 billion in free work to Trump
Sam Baker,  Staff Writer  -  Axios

Stephan: Here is a list, it is probably longer today but this was the most fact-based one I could find, of the law firsm that have become the legal servants of dictator Trump. The men and women in these firms are week and unethical. Don’t become a client of any of them, and if you are in law school do not go to work for any of them when you pass your law exam.

![](https://www … ⌘ Read more

⤋ Read More

Trump’s EPA Plans to Stop Collecting Greenhouse Gas Emissions Data From Most Polluters
Sharon Lerner,  Environmental Staff Writer  -  ProPublica

_Stephan: Dictator Trump has made it very clear that in thanks for the millions the carbon industries spent to buy his presidency for him, he will do nothing to prepare the United States for the catastrophe of climate change. As a result, millions of Americans are going to have their lives turned … ⌘ Read more

⤋ Read More
In-reply-to » @eapl.me When it is up and running, I promise to add it to the specification. I will also include some corrections. The nature of twtxt does not allow us to selectively hide clients. It's a problem not with DM, but with any extension. @prologic Yes, it is a security hole. All dm-echo messages are readable. I intend it to be a debugging tool. Maybe I can include a warning message. If many of you see that it is a serious problem, I can remove the links. @xuu It's already much better than Mastodon :P . Maybe we can remove the sender and receiver references with an intermediary register.

@prologic@twtxt.net @bender@twtxt.net @eapl.me@eapl.me I think opening another file is a bad idea because it adds complexity to the clients, breaks the single feed and I think keeping legacy clients will be more complex to add new features in the future. A modern approach is important.
I’ll be honest, I’m a bit tired of the fight around the direct message. Perhaps, we can remove it as an extension and use the alternative @prologic@twtxt.net . My suggestion apparently doesn’t like to the community. I have no problem with remove it.

⤋ Read More

10 Contests That Resulted in Famous Works of Art
It seems curious that contests could produce famous works of art. Surely, we might think passion alone, unrelated to money and praise, is the sole source of such superb creations. If so, the ten contests that resulted in the famous masterpieces on this list may change our minds. Related: 10 Fake Paintings and Sculptures That […]

The post [10 Contests That Resulted in Famous Works of Art](https://listverse.com/2025/04/15/10-contests-th … ⌘ Read more

⤋ Read More
In-reply-to » @kate @eldersnake @abucci -- I've already spoken to @xuu on IRC about this, but the new SqliteCache backend I'm working on here, what are your thoughts regarding mgirations from old MemoryCache (which is now gone in the codebase in this branch). Do you care to migrate at all, or just let the pod re-fetch all feeds? 🤔

I don’t think I’d personally be worried about migrating, just re-fetch. Sounds cleaner anyway?
Sorry I’m late to the party!

⤋ Read More

Foldable iPhone’s Under-Screen Camera Likely Won’t Include Face ID
Apple’s rumored foldable iPhone currently in development features an under-screen camera integrated into the folding display, but the module is unlikely to include TrueDepth components that make up Face ID. That’s according to Weibo-based leaker Digital Chat Station who has sources within the Chinese supply chain.

![](https://images.macrumors.com/article-new/2025/03/Foldable- … ⌘ Read more

⤋ Read More

Gmail Showing 1 Unread Message? Here’s How to Find It
If you’re the type of person who likes to maintain Inbox Zero, or who recently went and tidied up their Gmail inbox to get every email marked as read, you may come across a frustrating situation where Gmail shows 1 unread message, and you simply can’t locate that unread email message in Gmail. If you … Read More ⌘ Read more

⤋ Read More

Armbian Introduces Optimized Cloud Images for x86 and aarch64 Deployments
Armbian has expanded its support for cloud infrastructure with a new line of dedicated cloud images designed for generic x86 and aarch64 platforms. These images are tailored for performance, efficiency, and streamlined deployment in virtualized and cloud-native environments. The new Armbian cloud image set aims to meet the growing demand for lightweight and reliable Linux […] ⌘ Read more

⤋ Read More