@kat@yarn.girlonthemoon.xyz It’s more like a cache, it stores things like “timestamp of the most recent twt we’ve seen per feed” or “last modification date” (to be used with HTTP’s if-modified-since header). You can nuke these files at any time, it might just result in more traffic (e.g., always getting a full response instead of just “HTTP 304 nope, didn’t change”).
@quark@ferengi.one Yes, I often write a couple of twts, don’t publish them, then sometimes notice a mistake and want to edit it. You’re right, as soon as stuff is published, threads are going to break/fork by edits.
@kat@yarn.girlonthemoon.xyz i did this in september but it took me this long to do the write up part lmfao
Secret tricks to get hidden information in Bug Bounty
This article gives you a best and hidden tricks to find secret or hidden information from GitHub. we can call hidden approach on GitHub.
[Continue reading on InfoSec Write-ups »](https:/ … ⌘ Read more
️ Blind XSS Attack in Production: My Favorite Exploit with a Delayed Surprise
Free Article Link
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/%EF%B8%8F-bli … ⌘ Read more
@doesnm.p.psf.lt@doesnm.p.psf.lt It was always intended to have both Yarn.social and Salty.im integrate together. Yes. This includes having a set of specifications that anyone can write clients to.
(#mymzn2a) @doesnm.p.psf.lt@doesnm.p.psf.lt It was always intended to have both Yarn.social and Salty.im integrate together. Yes. This includes …
@doesnm.p.psf.lt @doesnm.p.psf.lt It was always intended to have both Yarn.social and Salty.im integrate together. Yes. This includes having a set of specifications that anyone can write clients to. ⌘ 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
“Sysmon Unleashed: Tracking and Tackling Malicious Activity on Windows”
Introduction
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/sysmon-unleashed-tracking-and-tackling-malicious-act … ⌘ Read more
**Click, Recon, Jackpot! ️♂️ How a Subdomain Led Me to an S3 Treasure Trove **
Free Link🎈
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/click-recon-jackpo … ⌘ Read more
⚡️Oops, They Logged It! Turning LFI into Remote Shell Like a Pro ⚔️
Free Link🎈
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/%EF%B8%8Foops-they-logged-it-turning-l … ⌘ Read more
Mastering the Linux Terminal: 10 Essential Network Commands You Need to Know
Hello, my digital adventurers!
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/mastering-the-l … ⌘ Read more
** Uncovering Hidden APIs: How One Forgotten Endpoint Made Me $500**
🚀Free Article Link
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/uncovering-hidden-apis-how-one-forgotten-endpoint-made-me-500-424e6388c … ⌘ Read more
How to Spot a Phishing Email in 5 Seconds (Real Examples)
And What to Do When Your Smart Home and a Stalker’s AirTag Team Up Against You
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/how-to-spot-a-phishing-email-in-5-second … ⌘ Read more
$10,000 worth GitHub Access Tokens | Secret Search Operators
Secret but basic GitHub dorks & search operators that can lead to $10k bounty worth Acess Tokens.
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/10- … ⌘ Read more
A Complete Guide to Securing Secrets in AWS Lambda
Learn how to securely manage secrets in AWS Lambda using environment variables, KMS encryption, Secrets Manager, and more.
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/a-c … ⌘ Read more
Think You’re Safe? Here’s How Hackers Actually Break Into Your Accounts in 2025
How secure are you really when even two-factor authentication isn’t enough anymore?
[Continue reading on InfoSec Write-ups … ⌘ Read more
One Random Recon, One Real Bounty: The Paytm Story
From countless dead ends to a single Swagger UI payload — the unexpected breakthrough that changed my bug hunting journey forever.
[Continue reading on InfoSec Write-ups »](https://infosecwriteups.com/ghost-paytm-xss-bounty-4f5efe6a643b?source=rss—-7b … ⌘ Read more
10 Musicians Who Became Famous After Death
Musicians understand that they may never achieve stardom, but there is no way of knowing if they will turn into legends posthumously. Some musicians work hard at their craft and spend decades trying to succeed. They write and record multiple songs and albums, earn record deals, and travel the world, playing their music anywhere that […]
The post [10 Musicians Who Became Famous After Death](https://listverse.com/2025/04/08/10-musicians-who-became- … ⌘ Read more
So I re-write this shell alias that I used all the time alias dkv="docker rm" to be a much safer shell function:
dkv() {
if [[ "$1" == "rm" && -n "$2" ]]; then
read -r -p "Are you sure you want to delete volume '$2'? [Y/n] " confirm
confirm=${confirm:-Y}
if [[ "$confirm" =~ ^[Yy]$ ]]; then
# Disable history
set +o history
# Delete the volume
docker volume rm "$2"
# Re-enable history
set -o history
else
echo "Aborted."
fi
else
docker volume "$@"
fi
}
**(#zzyjqvq) So I re-write this shell alias that I used all the time alias dkv="docker rm" to be a much safer shell function:
dkv() {
if ...**
So I re-write this shell alias that I used all the time `alias dkv="docker rm"` to be a much safer shell function:
dkv() {
if [[ “$1” == “rm” && -n “$2” ]]; then
read -r -p "Are you sure you want to delete volume '$2'? [Y/n] " confirm
confirm=${confirm:-Y}
if [[ "$confirm" =~ ^[Yy]$ ]]; then
# Disable history
set +o history
# Delete the volume
dock ... ⌘ [Read more](https://twtxt.net/twt/ml3toqq)
10 Amazing New Uses for AI
AI can be one of our greatest scientific friends rather than a technological boogeyman, as it’s often portrayed. AI has positively revolutionized healthcare, manufacturing, commercial industries, and many more. Yet, it’s gotten a bad recent rep due to the prevalence of AI writing and art, which has replaced at least a few human writers and […]
The post 10 Amazing New Uses for AI appeared first on [Listverse](https: … ⌘ Read more
Comment on The Ultimate Ubuntu Xmas Gift Guide (Updated) by Clark Calhoun
Good post! We will be linking to this particularly great post on our site. Keep up the great writing ⌘ Read more
GitHub for Beginners: How to get LLMs to do what you want
Learn how to write effective prompts and troubleshoot results in this installment of our GitHub for Beginners series.
The post GitHub for Beginners: How to get LLMs to do what you want appeared first on The GitHub Blog. ⌘ Read more
10 Worst Movies by Great Directors
While the days of movies serving as a cultural monolith are long gone, there are still names out there that demand as much as hundreds of millions of dollars in investment from companies and demand from audience members many hours in driving to theaters, watching ads, reading or writing essays devoted to their work. Whether […]
The post 10 Worst Movies by Great Directors appeared first on [L … ⌘ Read more
5 GitHub Actions every maintainer needs to know
With these actions, you can keep your open source projects organized, minimize repetitive and manual tasks, and focus more on writing code.
The post 5 GitHub Actions every maintainer needs to know appeared first on The GitHub Blog. ⌘ Read more
Goodbye GNU/Linux, Hello Rust/Linux
Ubuntu plans to ditch the battle-tested GNU Coreutils (chmod, Is, kill, & others), in favor of an unfinished Rust-based re-write, in the next few months. ⌘ Read more
SQL scares me i tweaked a bash script that pulled from a DB and the bash part was easy even if i was just going off of the code in there that i didn’t write (like i understood it at least) but the SQL parts had me suffering
Tech execs are pushing Trump to build ‘Freedom Cities’ run by corporations
A new lobbying group, dubbed the Freedom Cities Coalition, wants to convince President Trump and Congress to authorize the creation of new special development zones within the U.S. These zones would allow wealthy investors to write their own laws and set up their own governance structures which would be corporately controlled and wouldn’t involve a traditional bureaucracy. The new zone … ⌘ Read more
It Has Been a While
It has been a while since I last came by. Much has changed since, and I feel as if my draw to write, or babble, has been drained. I have a cold (I think?) as I write this. The first in the last six years. I should have kept using masks.
I have no much to say. I am not sure what will I do with this. Perhaps I will wait four years or so, and see how I feel then. ⌘ Read more
C++ creator calls for help to defend programming language from ‘serious attacks’
Bjarne Stroustrup, creator of C++, has issued a call for the C++ community to defend the programming language, which has been shunned by cybersecurity agencies and technical experts in recent years for its memory safety shortcomings. C and C++ are built around manual memory management, which can result in memory safety errors, such as out of bounds reads and writes, though bo … ⌘ Read more
Gajim: Gajim 2.0.1
This release resolves an issue with Gajim’s preferences window and fixes some bugs. Thank you for all your contributions!
Gajim 2.0
A note for Windows users: At the time of writing, there are some issues with emoji rendering on Windows. That’s why there is no release of Gajim 2.0 for Windows yet. This issue should soon be resolved and we will post an update once Gajim 2.0 is released on Windows.
More Changes … ⌘ Read more** Job posting **
I don’t write about work here. Not really as a rule, but out of habit.
It is a Saturday, and this morning at around 1 AM the federal government here in the U.S. fired my entire team, and the whole group they worked out of, 18f. This means that the team I was on is now just me. I was the only one not from 18f.
Nothing about this will increase efficiency or help anyone, at all.
If any of you beautiful RSS people are hiring senior level designers or qualitative researchers, please reach out and I can make introd … ⌘ Read more
Netboot Windows 11 with iSCSI and iPXE
For the past several years my desktop has also had a disk dedicated to maintaining a Windows install. I’d prefer to use the space in my PC case for disks for Linux. Since I already run a home NAS, and my Windows usage is infrequent, I wondered if I could offload the Windows install to my NAS instead. This lead me down the course of netbooting Windows 11 and writing up these notes on how to do a simplified “modern” version. ↫ Terin Stock The setup Terin S … ⌘ Read more
**Idea: The entire world population email comments@whitehouse.gov with words of disdain 🤣 For example:
Dear Mr. President
Your behavior …**
Idea: The entire world population email comments@whitehouse.gov with words of disdain 🤣 For example:Dear Mr. President
Your behavior today was woeful. I am writing to ask you to resign immediately before you make things much worse.
Kind regards
Citizen of the World ⌘ Read more
I agree. finding good writings on architecture is hard to find. I used to read architecture reviews over on the high scalability blog. i suspect the reason why is that the arch is how the big tech companies can build moats around their bases. I know in AWS world it only goes as far as how to nickle and dime you to death.
I have the books but they don’t grow much more past interview level.
“The closer to the train station, the worse the kebab” – a “study”
Article URL: https://www.jmspae.se/write-ups/kebabs-train-stations/
Comments URL: https://news.ycombinator.com/item?id=43165112
Points: 500
# Comments: 323 ⌘ Read more
Mozilla Chaos: Layoffs, Founder Out, New Democrat Operative Leadership
Yet another round of layoffs for troubled Firefox maker, with more looming. Insiders describe the mood as “ominous”, the “writing is on the wall”. ⌘ Read more
oh cool @lyse@lyse.isobeef.org !! and thanks, got rid of that empty line. ATM I’m using twtxt very much in an experimental way, only manual editing or writing my tools. curious to see how it will evolve. #meta #twtxt
How to Disable Apple Intelligence on iPhone, Mac, iPad
Apple Intelligence is an intriguing and powerful set of AI features available on the latest models of Mac, iPhone, and iPad with modern versions of system software. These AI features are tied to ChatGPT and range from useful writing and summarization tools, to business plan creation, to writing emails on your behalf, image generation with … [Read More](https://osxdaily.com/2025/02/18/how-to-disable-apple-intelligence-on-iphone … ⌘ Read more
How to Disable Apple Intelligence on iPhone, Mac, iPad
Apple Intelligence is an intriguing and powerful set of AI features available on the latest models of Mac, iPhone, and iPad with modern versions of system software. These AI features are tied to ChatGPT and range from useful writing and summarization tools, to business plan creation, to writing emails on your behalf, image generation with … [Read More](https://osxdaily.com/2025/02/18/how-to-disable-apple-intelligence-on-iphone … ⌘ Read more
Recover 7GB of iPhone, iPad, & Mac Storage by Disabling Apple Intelligence
Don’t use Apple Intelligence? Don’t care to have Apple Intelligence write your emails for you or instantly create a business plan or any of the handy writing and summary tools? Whether you’re on an iPhone, iPad, or Mac, if you recently updated to the latest versions of system software, then you’ll find that Apple Intelligence … [Read More](https://osxdaily.com/2025/02/12/recover-7gb-o … ⌘ Read more
I have a paper deadline coming up, so will everyone please stop writing twts for the next 48 hours, thanks.
(#d7l762q) For context, I’ve write to get one of these LLM(s) to do this for a project once before a couple of years ago. All it had to do was r …
For context, I’ve write to get one of these LLM(s) to do this for a project once before a couple of years ago. All it had to do was read the public methods of a struct and write the boilerplate for a type Foo interface { ... } with those same matching methods.
This shit™ is such a waste of time, human effort and global energy 🤦♂️ ⌘ Read more
Monero v0.18.4.0 release on the horizon as selsta posts to-do list
selsta1 has opened a new issue (a to-do list)2 in the Monero core repository for the upcoming v0.18.4.0 Fluorine Fermi release:
PR list overviewThe following pull requests have to be merged and issues have to be resolved. Any other PRs that I’m missing?
”`
- build: prepare v0.18.4.0 #9722
- blockchain sync: reduce disk writes from 2 to 1 per tx [RELEASE] #9740
- Some cleanup in span/connection_cont … ⌘ Read more”`
Linux 6.14 with Rust: “We are almost at the ‘write a real driver in Rust’ stage now”
With the Linux 6.13 kernel, Greg Kroah-Hartman described the level of Rust support as a “tipping point” for Rust drivers with more of the Rust infrastructure having been merged. Now for the Linux 6.14 kernel, Greg describes the state of the Rust driver possibilities as “almost at the “write a real driver in rust” stage now, depending on what you want to do.“ ↫ Michael … ⌘ Read more
OpenAI doesn’t like it when you use “their” generated slop without permission
OpenAI says it has found evidence that Chinese artificial intelligence start-up DeepSeek used the US company’s proprietary models to train its own open-source competitor, as concerns grow over a potential breach of intellectual property. ↫ Cristina Criddle and Eleanor Olcott for the FT This is more ironic than writing a song called Ironic that lists situations that aren’t actually … ⌘ Read more
Dava Sobel’s Religious Experience While Writing Her Book! ⌘ Read more