āA handbag belonging to the homeland security secretary Kristi Noem containing her passport, department security badge and $3,000 in cash was stolen on Sunday night at a restaurant in Washington, the department confirmed.ā
Beta 3 of iOS 18.5, MacOS Sequoia 15.5, iPadOS 18.5 Released for Testers
In what must be the most exciting thing to happen on a Monday since the prior Monday, Apple has released the third beta version of iOS 18.5, MacOS Sequoia 15.5, and iPadOS 18.5. These new thrilling third beta versions are available to the developer wizards participating in the beta testing programs of Apple system software, ⦠[Read More](https://osxdaily.com/2025/04/21/beta-3-of-ios-18-5-mac ⦠ā Read more
@bender@twtxt.net Thanks! The rain rapidly cooled off the 17°C to just 10°C. I certainly appreciated that. The weather is coming from the west here, so I thought youāve sent it our way. Let me try to return it. :-)
@andros@twtxt.andros.dev nothing stands still, I agree. I think current twtxt has surpassed the initial specification, while still being relatively backwards compliant/compatible but, for how long?
As for new extensions (DM, for example), they should be OK as long as those working on clients can reach an agreement on how to move forward. That has proven, though, to be a pickle in the past.
Todayās stroll was really nice. Just around 11km in total Iād reckon. We had a barbie at a mateās garden where everybody went on a hunt for an easter basket. Oh boy, what a preparation that must have been! Baking the bunnies, dying the eggs, mixing the bear leek butter and so on. Thatās dedication, let me tell you. :-)
It was the first time this year that we had half proper April weather and a thunderstorm in general. It started off with clear sky and lovely sunshine. Right after arvo lunch it started to rain, so we went into the hut. Then, the sun returned.
On the way back with the growling thunder in the distance coming closer and closer we escaped the rain just perfectly. A minute or two after we reached the car, wet stuff started coming down the sky. Not even half a minute after opening the front door, it poured like crazy. Lucky twice today. Thereās beautiful sunshine again by now. It smells absolutely great after the rain. I love it!
@prologic@twtxt.net I wonāt give you the link for the moment because I want to check how well it works! š
@andros@twtxt.andros.dev Haha 𤣠Weāve explored this idea in the past and we decided that itās actually a good idea to have an āappend-onlyā feed for various reasons. Weāve also explored the idea of using Range requests, but opted instead to just archive/rotate our feeds periodically š
There really isnāt much point in having a feed in reverse chronological order, except (maybe?) so a human read view the new twts at the top of the file?! š¤£
@prologic@twtxt.net ācuratedā channels (you can see the guide to see the topics it covers), without the ability to fast forward, nor pause. You know, like live television.
Template strings accepted for Python 3.14
The Python Steering Council
accepted PEP 750
(ā Template Stringsā) on April 10. LWN
covered the discussion around the proposal, including the
substantial revisions to the idea that were needed for it
to be accepted. Template strings (t-strings) are a new kind of string that produces
structured data instead o ⦠ā Read more
@bender@twtxt.net I use it. Itās not the feature I use the most in the fediverse, but I communicate this way with several friends. For example, itās the main way I talk to the original creator of the twtxt-el repository, the way people greet me for the first time or the way they notify me of some bugs in the software I maintain. I can even tell you that itās the main way I talk to some maintainers of the Emacs community. If there are any of you reading my words, speak up!
Why not have the same? There are things I want to say to @prologic@twtxt.net in private, why should I have to send him an email or private IRC? Or an public twt.
Of course, hereās a topic weāve already talked about: what is twtxt for you? For me it will always be a social network, in microblogging format, but an asynchronous way of communicating. And having a tool to control visibility is basic š
I look forward to hearing from you @eapl.me@eapl.me !
[$] Owen Le Blanc: creator of the first Linux distribution
Ask a Linux enthusiast who created the Linux kernel, and odds are they will have
no trouble naming Linus Torvaldsābut many would be stumped if asked what the
first Linux distribution was, and who created it. Some might guess Slackware, or its predecessor, Softlanding Linux\āØSystem (SLS); both were arguably more influential but arrived just a bit
later. The first honest-to-goodness distribut ⦠ā Read more
dm-only.txt feeds. š
After reading you, @eapl.me@eapl.me, Iāll tell you my point of view.
In my opinion, a feed does not have to be equivalent to a timeline. A timeline is a representation of the feed adapted to a user. You may not be interested in seeing other peopleās threads or DMs. But perhaps they are interested in seeing mentions or DMs directed at them. It is important not to fall into the trap. With that clarificationā¦
I insist, this is my point of view, it is not an absolute truth: I donāt think extensions should be respectful of customers who are no longer maintained.
We cannot have a system that is simple, backwards compatible and extensible all at the same time. We have to give up some of the 3 points. I would not like to give up simplicity because it will then make it harder to maintain the customers who do stay. Therefore, I think it is better to give up backwards compatibility and play with new formulas in the extensions. I donāt think itās a good idea to make a hash keep so much load: a hashtag, a thread and also a DM.
si4er3q. See https://twtxt.dev/exts/twt-hash.html, a timezone offset of +00:00 or -00:00 must be replaced by Z.
@movq@www.uninformativ.de @aelaraji@aelaraji.com Yes @david@collantes.us It would be good for me, or new developers, if the documentation were agnostic. And if possible with many example cases. Iām fine-tuning the code as you inform me of bugs, trial and error. Itās a lesson to be learned for the future.
How to take climate action with your code
There are 60,000+ climate-focused projects on GitHub, explore one this Earth Day!
The post How to take climate action with your code appeared first on The GitHub Blog. ā Read more
Deep Dive into the Gateway API Inference Extension
Running AI inference workloads on Kubernetes has some unique characteristics and challenges, and the Gateway API Inference Extension project aims to solve some of those challenges. I recently wrote about these new capabilities in the kgateway⦠ā Read more
Regex Isnāt Hard - Tim Kellogg š this is a pretty good conscience article on regexes, and I agree, regex isnāt that hard⢠ā However I think I can make the TL;DR even shorter š
Regex core subset (portable across languages):
Character sets
⢠a matches āaā
⢠[a-z] any lowercase
⢠[a-zA-Z0-9] alphanumeric
⢠[^ab] any char but a or b
Repetition (applies to the preceding atom)
⢠? zero or one
⢠* zero or more
⢠+ one or more
Groups
⢠(ab)+ matches āabā, āababā, ā¦
⢠Capture for extract/substitute via $1 or \1
Operators
⢠foo|bar = foo or bar
⢠^ start anchor
⢠$ end anchor
Ignore nonāportable shortcuts: \w, ., {n}, *?, lookarounds.
See:
<textarea id="text" name="text" placeholder="Hi! š Don't forget to post a Twt today!" rows="4" maxlength="576" required="true" aria-required="true"></textarea>
So, 576?
Ishizu about to conduct her sacred rituals ā Read more
good morning everyone. before going to bed last night i accidentally password protected the entirety of my biggest site superlove because i botched a refactor of my caddyfile config. lmao
I am up to increase the length of a twtxt, though.
Recall what we had this set to for this pod? š§
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
All these remind me of the āblogā ability once existed in Yarnd. I hate to be the party pooper, but little to non interest from me. LOL. I am up to increase the length of a twtxt, though. It is rather limiting right now.
Just had a freak storm āļø with lots of horizontal rain āļø that took out and tripped our internal RCD (again) š± Took out our Fibre too (servers were fine, good āol UPS). Need to get a UPS for the Fibre box š¦ Haha š¤£
Trump signs executive order ending years of protections in Pacific monument
Sam Mauhay-Moore, Ā Trending News ReporterĀ - Ā SFGate
_Stephan:Ā It is unclear to me whether Despot Trump is simply too stupid to understand the importance of supporting ecosystems, or he knows but just doesnāt care because someone has bribed him to make a decision that will allow them to damage an ecosystem. Or, most probably, it is both.Ā In any case the United States has no ⦠ā Read more
EPA Deletes Pollution Tracking Tools as It Offers Exemptions to Polluters
Mike Ludwig , Ā Staff WriterĀ - Ā truthout
_Stephan:Ā Here is yet another example of Despot Trumpās corruption doing favors for the uber-rich who enrich him so that he permits them to destroy Earthās matrix of life and wellbeing. His corruption is going to have a decades-long impact, and will be a major factor contributing to the civilization-altering catastrophe that happens betwe ⦠ā Read more
Americaās Ten Most Endangered Rivers Announced in New Report
Cristen Hemingway Jaynes, Ā Contributing WriterĀ - Ā EcoWatch
_Stephan:Ā The United States has not paid appropriate and adequate attention to the wellbeing of the nationās ecosystems since President Jimmy Carterās administration, and Despot Trump is doing everything in his power to gut any kind of climate protection in order to serve the uber-rich who bought him his office. And, sadly, American voters donāt ⦠ā Read more
My boy is so happy to see me. Every time I come home from work, Rambo meets me 500 meters from my house. 13 years of love and loyalty š» ā Read more
Get Appleās M3 iPad Air for Up to $70 Off on Amazon
Amazon is kicking off the week with multiple discounts on Appleās M3 iPad Air, offering as much as $70 off these tablets. Prices start at $569.00 for the 128GB Wi-Fi 11-inch M3 iPad Air, down from $599.00.
10 Pop Culture Figures Who Actually Existed
From Darth Vader to Mary Poppins, pop culture icons can excite, enrage, or inspire us. And though most characters tend to be wholly fictional in nature, some famous ones are actually based on real-life people. Hereās our list of 10 pop culture figures who existed IRL. Related: Top 10 Underrated Minor Characters from Pop Culture [ā¦]
The post [10 Pop Culture Figures Who Actually Existed](https://listverse.com/2025/04/21/10-pop-culture-figures-who ⦠ā Read more
@movq@www.uninformativ.de So cool! š Whereās the time lapse video you used to have of this tree? š³ Hmm š§
@movq@www.uninformativ.de Yeah I know 𤣠I found another bug in lextwt š¤¦āāļø This whole DM / bang-mention thingy has thrown a spanner in the works š§ ā Even if I wanted to implement it, Iām not even ready to try at the moment š¢
@prologic@twtxt.net @movq@www.uninformativ.de @bmallred@staystrong.run @ionores@twtxt.net Thank you! Yeah, the yellow meadows look truly awesome.
Watching āHappy People: A Year in the Taigaā in German the evening before, this thing totally looked like a trap to us. So, we decided to sit on another, more rustic bench nearby. :-) Oh neat, it turns out, there is a much longer four part series of the documentary in English on YouTube. Highly recommended! This is part one: https://www.youtube.com/watch?v=fbhPIK-oBvA
Judging by the surroundings, I think this is actually a forest altar or something of that nature. But it looks like they started with the chappelās reinforcement steel and then they ran out of money before completing it or even placing the concrete forms. :-P
Yeah, 78 might be photo of the month. Itās one of my favorites.
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
@kate@yarn.girlonthemoon.xyz (as I was trying to sayā¦), Glad you think soš My goal with Yarn.social has always been to provide the best (best that I can anyway) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
Holy hell?! When I post this:
@<kate https://yarn.girlonthemoon.xyz/user/kat/twtxt.txt> Glad you think so! š My goal with Yarn.social has always been to provide the best (_best that I can anyway!_) truly decentralised (_slow_) social experience that uses the Twtxt format under the hood š
Something is swallowing it.
**(#tdyfazq) Holy hell?! When I post this:
@<kate https://yarn.girlonthemoon.xyz/user/kat/twtxt.txt> Glad you think so! š My goal with Yar ...**
Holy hell?! When I post this:
@kate@yarn.girlonthemoon.xyz Glad you think so! š My goal with Yarn.social has always been to provide the best (best that I can anyway!) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
ā`
Something is swallowing it. ā Read moreā`
@kate@yarn.girlonthemoon.xyz Glad you think so! š My goal with Yarn.social has always been to provide the best (best that I can anyway!) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
Glad you think so! š My goal with Yarn.social has always been to provide the best (best that I can anyway!) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
@kate@yarn.girlonthemoon.xyz Glad you think so! š My goal with Yarn.social has always been to provide the best (best that I can anyway!) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
@kate@yarn.girlonthemoon.xyz Glad you think so! š My goal with Yarn.social has always been to provide the best (best that I can anyway!) truly decentralised (slow) social experience that uses the Twtxt format under the hood š
ļø Free TryHackMe Jr Penetration Tester Roadmap with Resources and Labs
A free, TryHackMe-inspired roadmap with resources and labs to kickstart your penetration testing journey.
[Continue read ⦠ā Read more
Lab: Exploiting an API endpoint using documentation
We will solve this lab based on the API documentation exposed to delete Carlosās user.
[Continue reading on InfoSec Write-ups Ā»](https://infosecwriteups.com/lab-exploiting-an-api-endpoint-using-d ⦠ā Read more
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
This expands the usefulness of Twtxt / Yarn.social to:
- Sharing small posts
- Sharing links
- Sharing media
- Having long conversations
- Voting on topics, opinions or decisions
- RSVPing to virtual or physical events
**(#6kkpdda) This expands the usefulness of Twtxt / Yarn.social to:
Sharing small posts
Sharing links
Sharing media
Having long conversat ā¦**
This expands the usefulness of Twtxt / Yarn.social to:Sharing small posts
Sharing links
Sharing media
Having long conversations
Voting on topics, opinions or decisions
RSVPing to virtual or physical events ā Read more
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
The nice thing here is that any Ui/UX rendering for a āgood user experienceā is similar to what yarnd does for Youtube/Spotify/whatever embedding. Plus anyone can participate, even if they donāt really have a client that understand it, itās just text with some āsyntaxā afterall.
(#6kkpdda) The nice thing here is that any Ui/UX rendering for a āgood user experienceā is similar to what yarnd does for Youtube/Spotify/what ā¦
The nice thing here is that any Ui/UX rendering for a āgood user experienceā is similar to what yarnd does for Youtube/Spotify/whatever embedding. Plus anyone can participate, even if they donāt really have a client that understand it, itās just text with some āsyntaxā afterall. ā Read more
yarnd UI/UX experience (for those that use it) and as "client" features (not spec changes). The two ideas are quite simple:
Iād have to write i up in full, but essentially looks a bit like this (contribived examples follow)ā¦
(#6kkpdda) Iād have to write i up in full, but essentially looks a bit like this (contribived examples follow)ā¦
Iād have to write i up in full, but essentially looks a bit like this ( contribived examples follow)⦠ā Read more
š” I had this crazy idea (or is it?) last night while thinking about Twtxt and Yarn.social š
There are two things I think that could be really useful additions to the yarnd UI/UX experience (for those that use it) and as āclientā features (not spec changes). The two ideas are quite simple:
- Voting ā a way to cast, collect a vote on a decision, topic or opinion.
- RSVP ā a way to ārsvpā to a virtual (pr physical) event.
Both would use āplain textā on top of the way we already use Twtxt today and clients would render an appropriate UI/UX.
š” I had this crazy idea (or is it?) last night while thinking about Twtxt and Yarn.social š
There are two things I think that could ā¦
š” I had this crazy idea ( or is it?) last night while thinking about Twtxt and Yarn.social š
There are two things I think that could be really useful additions to the yarnd UI/UX experience ( for those that use it) and as āclientā features ( not spec changes). The two ideas are quite simple:
Voting ā a way to cast, collect a vote on a decision, topic or opinion.
RSVP ā a way to ā ⦠ā Read more
Open Source Initiative Hides Election Details, Others Fear āPolitical Retributionā
Last month, the Open Source Initiative held an election where the votes were tampered with in order to exclude āreformā candidatesā. ā Read more
Realized I could definitely have a silly gameplay montage youtube channel if I wanted to. All of my best video editing has been goofy visual gags⦠I could do itā¦
@bender@twtxt.net I think I could, but I havenāt bothered to do so yet⦠Iāll try that out laterā¦
(#stxbcda) @bender@bender I think I could, but I havenāt bothered to do so yet⦠Iāll try that out laterā¦
@bender @twtxt.net I think I could, but I havenāt bothered to do so yet⦠Iāll try that out later⦠ā Read more
I just wanted to post my boy because I love him ā Read more
irc.mills.io running behind Caddy Layer 4. However I don't terminate TLS at the edge in this case.
@prologic@twtxt.net OH SHIT using this for a protocol like gopher is smart! might have to try that for gemini so i donāt have to keep a port open for that
MaxAgeDays configuration at the pod level, that now some profiles are rather empty. This is only because well, they're a bit "inactive" so to speak š£ļø Not sure what to do about this at the moment... Open to ideas? š”
@sorenpeter@darch.dk I really think you should fix the # url in your feed to be https:// š
(#65ls2sa) @sorenpeter@sorenpeter I really think you should fix the # url in your feed to be https:// š
@sorenpeter @darch.dk I really think you should fix the # url in your feed to be https:// š
ā Read more
allow me to poorly draw your cats ā Read more
MaxAgeDays configuration at the pod level, that now some profiles are rather empty. This is only because well, they're a bit "inactive" so to speak š£ļø Not sure what to do about this at the moment... Open to ideas? š”
yes it used be http:// only and to keep hashes from breaking i added # url = http://... and now we are stock with it due to the curret specs.
good morning friends. i donāt know what iām gonna do today. perhaps work on my patreon and login wall more personal sites behind authelia that i could offer access to via patreon tier
@kingdomcome@yarn.girlonthemoon.xyz itās slang that means to like focus and get shit done i guess. originates from AAVE
[47°09ā²45ā³S, 126°43ā²05ā³W] Transponder still failing ā switching to analog communication
irc.mills.io running behind Caddy Layer 4. However I don't terminate TLS at the edge in this case.
@prologic@twtxt.net want to share the snippet of your Caddyfile for irc.mills.io?
I have a very old inspired with two-ish nodes. Though you have to be on the DN42 network to reach it.
I have a very old inspired with two-ish nodes. Though you have to be on the DN42 network to reach it.
@bender@twtxt.net I noticed that although the Discover view (and your own Timeline) is much improved with a MaxAgeDays configuration at the pod level, that now some profiles are rather empty. This is only because well, theyāre a bit āinactiveā so to speak š£ļø Not sure what to do about this at the moment⦠Open to ideas? š”
**@bender@twtxt.net I noticed that although the Discover view (and your own Timeline) is much improved with a MaxAgeDays configuration at ā¦**
@bender @twtxt.net I noticed that although the Discover view ( and your own Timeline) is much improved with a MaxAgeDays configuration at the pod level, that now some profiles are rather empty. This is only because well, theyāre a bit āinactiveā so to speak š£ļø Not sure what to do about this at the moment⦠Open to ideas? š” ā Read more
@prologic@twtxt.net Hmm, speaking of locally running āAIā stuff: Someone on Mastodon has this in their profile description:
My profile pic is AI modified to prevent deepfakes. I used local Stable Diffusion on my solar powered 7900XTX to average a few selfies.
That sounds like a fun thing to do. Do I have a chance of doing that on my old box from 2013 without a dedicated GPU? š
@bender@twtxt.net According to his @buckket Github profile, I belive so.
(#n2rbwua) @bender@bender According to his @buckket Github profile, I belive so.
@bender @twtxt.net According to his @buckket Github profile, I belive so. ā Read more
There are other tasks LLM(s) are far better suited for, which are also its downsides, and gawd so expensive and unrealistic to run yourself š¤¦āāļø Do you know what one of these NVIDIA H100ās cost? š² Thatās right! 𤣠> $50k USD š± And many of the models out there require 8 of these suckers 𤣠Each one consumes around ~400W of power each (not including the machine that houses them!)
@movq@www.uninformativ.de Yeah I couldnāt agree more. The utility of using it in any way to form ātruthsā or to do anything that require a high degree of āaccuracyā is utterly pointless.
(#pdp7oxq) @movq@movq Yeah I couldnāt agree more. The utility of using it in any way to form ātruthsā or to do anything that requ ā¦
@movq @www.uninformativ.de Yeah I couldnāt agree more. The utility of using it in any way to form ātruthsā or to do anything that require a high degree of āaccuracyā is utterly pointless. ā Read more
Revealing her tiddies for all to see ā Read more
Trumpās War on Measurement Means Losing Data on Drug Use, Maternal Mortality, Climate Change and More
Alec MacGillis, Ā ReportersĀ - Ā ProPublica
_Stephan:Ā Fascist authoritarians like Despot Trump and his minions donāt ever like objectively verifiable databases to be compiled or maintained because the information can be used to prove how inferior their social policies are. If you have been reading my research papers (see SR arch ⦠ā Read more
Chinaās Breakthrough: Thorium Discovery Promises 60,000 Years of Clean Energy
, Ā Ā - Ā Discovery / Alert
_Stephan:Ā This, I think, is a very big deal and, in a planetary sense, good news, although not for the United States. It is going to be a major factor in ending the carbon era that Despot Trump, his unethical servants, and his oligarch funders are working so hard to keep Americans trapped in. I think this is the technology my remote viewers have b ⦠ā Read more
Experts Say Abrupt and āStaggeringā CDC Cuts Will Cost Lives
Rita Rubin, Ā Ā - Ā Journal of the American Medical Association
Stephan:Ā Americaās medical community of physicians and nurses is beginning to recognize how deadly the incompetence and disregard for human life of Despot Trump, his Frankenstein Musk, and the rest of the fascist MAGAts really is.Ā It is going to have a fatal effect on the population of America.
, I donāt find any of this helpful. Itās like someoneās in the room with you and that person is saying random stuff that might or might not be correct. At best, it might spark some new idea in your head and then you follow that idea the traditional way.
Information published on the internet (or anywhere, for that matter) was never guaranteed to be correct. But at least you had a āframe of referenceā: āAh, I read this information about Linux on a blog that usually posts about Windows, so this one single Linux post might not necessarily be correct.ā That is completely lost with LLMs. Itās literally all mushed together. š¤·
AI isnāt a shortcut for thinking. In her guide for skeptics, Hilary Gridley reframes AI as a collaboratorānot a replacement. Use it like spellcheck for your thoughts. Donāt fear itāiterate with it. Insight improves, speed follows. Full post: https://hils.substack.com/p/the-ai-skeptics-guide-to-ai-collaboration
AI isnāt a shortcut for thinking. In her guide for skeptics, Hilary Gridley reframes AI as a collaboratorānot a replacement. Use it like spe ā¦
AI isnāt a shortcut for thinking. In her guide for skeptics, Hilary Gridley reframes AI as a collaboratorānot a replacement. Use it like spellcheck for your thoughts. Donāt fear itāiterate with it. Insight improves, speed follows. Full post: https://hils.substack.com/p/the-ai-skeptics-guide-to-ai-collaboration ā Read more
A mate and I had an amazing but also exhausting hike to the highest of the Three Emperor Mountains yesterday with perfect weather conditions. Sunny 18°C, blue sky with barly a cloud and a little welcoming breeze, just beautiful.
Mt. Stuifen is 757 meters above sea level, has a small shelter and a barbie area and is still the most boring one of the three. Itās also the one farthest away from me. Not sure why it has two summit crosses, but both arenāt at the summit. The third, makeshift one at the real summit was gone by now. Four years ago, somebody had cobbled one together and put it up.
We bought our tucker at a local bakery on our way. This was the first time I tried a Teufelsbrezel (lit. devilās pretzel), a lye pretzel with pepper. Havenāt come across that anywhere else. But I can certainly recommend that, itās yummy.
We were glad when we were finally back home after some 26 or 27km. I wonāt do much today and let my feet rest. Another friend called for a much, much shorter hike tomorrow.
Enjoy the 92 photos: https://lyse.isobeef.org/wanderung-auf-den-stuifen-2025-04-19/
Chaining Bugs Like a Hacker: IDOR to Account Takeover in 10 Minutes
šFree Article Linkā¦
[Continue reading on InfoSec Write-ups Ā»](https://infosecwriteups.com/chaining-bugs-like-a-hacker-idor-to-account-takeover-in-1 ⦠ā Read more
ļø TryHackMe: Agent T Walkthrough
āA sneaky mission to uncover secrets from Agent Tās server.ā
@movq@www.uninformativ.de Haha 𤣠Figures š¤¦āāļø Also no need to be concerned with that here, Iāve personally blocked the ASN(s) of Microsoft, OpenAI, Claude and Google š
(#n2rbwua) @movq@movq Haha 𤣠Figures š¤¦āāļø Also no need to be concerned with that here, Iāve personally blocked the AS ā¦
@movq @www.uninformativ.de Haha 𤣠Figures š¤¦āāļø Also no need to be concerned with that here, Iāve personally blocked the ASN(s) of Microsoft, OpenAI, Claude and Google š ā Read more
10 Most Unique and Remote Vacation Retreats
Many times, when people go away on vacation, one of the goals is to be as far removed from civilization as possible. Seeking out secluded getaways can result in the discovery of some very exotic destinations that often feature resorts geared toward the adventurous tourist and make the most of the unusual locale. From fjord [ā¦]
The post [10 Most Unique and Remote Vacation Retreats](https://listverse.com/2025/04/20/10-most-unique-and-remote-vacat ⦠ā Read more
What does ālock inā mean & why does everyone need to do it?
Lost my buddy of 14 years last week. Wanted to share my favorite photo of him. ā Read more
@prologic@twtxt.net I donāt think so. Heās from Germany, afaik, and that would be a highly unusual name here. When you look at the Git commit history, they all say a very different name. I donāt want to quote it here ā worst case being the LLMs scraping this file and correcting their āknowledgeā. š
I desperately need to sort through my password managers & purge old accounts T_T
restic for that reason and the fact that it's pretty rock solid. I have zero complaints š
I havenāt gotten very far with my experiments, yet. To be honest, Iām still not 100% sure if I want to trust that encryption. š The target server will be completely out of my control ⦠it is a real possibility that the (encrypted) data will leak at some point. Hm.
restic for that reason and the fact that it's pretty rock solid. I have zero complaints š
@prologic@twtxt.net I also thought it was a client-server thingy at first and usually it is, I guess, thereās just this workaround:
If it is not possible to install Borg on the remote host, it is still possible to use the remote host to store a repository by mounting the remote filesystem, for example, using sshfs.
Just adopted this majestic floof. He looks like heās plotting something, but Iām too in love to care. ā Read more
@movq@www.uninformativ.de Itās nice to see shit like this still works 𤣠Even years later š
(#6uo24ta) @movq@movq Itās nice to see shit like this still works 𤣠Even years later š
@movq @www.uninformativ.de Itās nice to see shit like this still works 𤣠Even years later š ā Read more
I do want to improve the feeds.twtxt.net service one day (soonā¢) with features like this. But first Iāll have to prevent spammers from abusing it by introducing IndieAuth as an authentication layer.
(#42wa7wq) I do want to improve the feeds.twtxt.net service one day (soonā¢) with features like this. But first Iāll have to prevent spammers ā¦
I do want to improve the feeds.twtxt.net service one day ( soonā¢) with features like this. But first Iāll have to prevent spammers from abusing it by introducing IndieAuth as an authentication layer. ā Read more
Btw @andros@twtxt.andros.dev ; The automated feed you put together for Hacker News⦠Does it at any point rewrite parts of the feed as it goes along? š¤ Iāve had to unfollow it because Iāve found in practise it makes a twt, then seems to modify that same twt (observed by content manually) at least twice. This ends up becoming effectively an āEditā and essentially duplicate (looking) posts š¢
Btw @andros@andros ; The automated feed you put together for Hacker News⦠Does it at any point rewrite parts of the feed as it goes ā¦
Btw @andros @twtxt.andros.dev ; The automated feed you put together for Hacker News⦠Does it at any point rewrite parts of the feed as it goes along? š¤ Iāve had to unfollow it because Iāve found in practise it makes a twt, then seems to modify that same twt ( observed by content manually) at least twice. This ends up ⦠ā Read more
irc.mills.io running behind Caddy Layer 4. However I don't terminate TLS at the edge in this case.
@prologic@twtxt.net oh yeah i had to build caddy with the L4 plugin to get this support. but i should pop into your server sometime james!!