Searching We.Love.Privacy.Club

Twts matching #writing
Sort by: Newest, Oldest, Most Relevant
In-reply-to » jenny really isn’t well equipped to handle edits of my own twts.

@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.

⤋ 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 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

⤋ Read More
In-reply-to » This weekend (as some of you may now) I accidently nuke this Pod's entire data volume 🤦‍♂️ What a disastrous incident 🤣 I decided instead of trying to restore from a 4-month old backup (we'll get into why I hadn't been taking backups consistently later), that we'd start a fresh! 😅 Spring clean! 🧼 -- Anyway... One of the things I realised was I was missing a very critical Safety Controls in my own ways of working... I've now rectified this...

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
}

⤋ Read More

**(#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)

⤋ Read More

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

⤋ 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

⤋ 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

⤋ Read More

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

⤋ 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

⤋ 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

⤋ 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!

What’s New

Image

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

⤋ 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

⤋ 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

⤋ 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

⤋ 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.

⤋ 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

⤋ 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

⤋ 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

⤋ Read More

(#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

⤋ 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:

The following pull requests have to be merged and issues have to be resolved. Any other PRs that I’m missing?

PR list overview

”`

  • 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”`

⤋ 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

⤋ 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

⤋ Read More