siderea: (Default)
[personal profile] siderea
Canonical link: https://siderea.dreamwidth.org/1882100.html



0.

With all the eager discussion of the possibility of Trump dying in office, I am in the delicate and unfortunate position of not actually being in favor of it.

Don't get me wrong. I, too, would enjoy to seeing something very bad happen to Trump. What I'd best like is him getting his just deserts – ideally being arrested, indicted, tried, found guilty, sentenced, having appealed, the appeal failing, appealing again, having that appeal fail, petitioning the POTUS for clemency and it not being granted, him being duly executed by the state as the traitor to the Republic and the Constitution he was proven to be. I'm not generally a big fan of capital punishment, but I am in fact willing to make exceptions; he seems to think he's an exception to a lot of things, and here I would agree with him.

But that's not going to happen, not in this time-line, and it's probably for the best that it doesn't.

Perhaps he will simply keel over dead, and I confess I will take at least a little bitter satisfaction in it.

And it's certainly not that I don't wish us all to be spared even another moment of this Trump presidency. Of course I do.

Alas, as much as I hate to crush the pleasant fantasy of us being redeemed by the deus ex machina of artheriosclerosis finally doing its job and carrying off our oppressor: Vance is worse. Much, much worse.




1.

It's perhaps understandable that you would not realize this.... Read more [6,770 Words] )

This post brought to you by the 219 readers who funded my writing it – thank you all so much! You can see who they are at my Patreon page. If you're not one of them, and would be willing to chip in so I can write more things like this, please do so there.

Please leave comments on the Comment Catcher comment, instead of the main body of the post – unless you are commenting to get a copy of the post sent to you in email through the notification system, then go ahead and comment on it directly. Thanks!

Code deploy happening shortly

Aug. 31st, 2025 07:37 pm
mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
[staff profile] mark posting in [site community profile] dw_maintenance

Per the [site community profile] dw_news post regarding the MS/TN blocks, we are doing a small code push shortly in order to get the code live. As per usual, please let us know if you see anything wonky.

There is some code cleanup we've been doing that is going out with this push but I don't think there is any new/reworked functionality, so it should be pretty invisible if all goes well.

denise: Image: Me, facing away from camera, on top of the Castel Sant'Angelo in Rome (Default)
[staff profile] denise posting in [site community profile] dw_news

A reminder to everyone that starting tomorrow, we are being forced to block access to any IP address that geolocates to the state of Mississippi for legal reasons while we and Netchoice continue fighting the law in court. People whose IP addresses geolocate to Mississippi will only be able to access a page that explains the issue and lets them know that we'll be back to offer them service as soon as the legal risk to us is less existential.

The block page will include the apology but I'll repeat it here: we don't do geolocation ourselves, so we're limited to the geolocation ability of our network provider. Our anti-spam geolocation blocks have shown us that their geolocation database has a number of mistakes in it. If one of your friends who doesn't live in Mississippi gets the block message, there is nothing we can do on our end to adjust the block, because we don't control it. The only way to fix a mistaken block is to change your IP address to one that doesn't register as being in Mississippi, either by disconnecting your internet connection and reconnecting it (if you don't have a static IP address) or using a VPN.

In related news, the judge in our challenge to Tennessee's social media age verification, parental consent, and parental surveillance law (which we are also part of the fight against!) ruled last month that we had not met the threshold for a temporary injunction preventing the state from enforcing the law while the court case proceeds.

The Tennesee law is less onerous than the Mississippi law and the fines for violating it are slightly less ruinous (slightly), but it's still a risk to us. While the fight goes on, we've decided to prevent any new account signups from anyone under 18 in Tennessee to protect ourselves against risk. We do not need to block access from the whole state: this only applies to new account creation.

Because we don't do any geolocation on our users and our network provider's geolocation services only apply to blocking access to the site entirely, the way we're implementing this is a new mandatory question on the account creation form asking if you live in Tennessee. If you do, you'll be unable to register an account if you're under 18, not just the under 13 restriction mandated by COPPA. Like the restrictions on the state of Mississippi, we absolutely hate having to do this, we're sorry, and we hope we'll be able to undo it as soon as possible.

Finally, I'd like to thank every one of you who's commented with a message of support for this fight or who's bought paid time to help keep us running. The fact we're entirely user-supported and you all genuinely understand why this fight is so important for everyone is a huge part of why we can continue to do this work. I've also sent a lot of your comments to the lawyers who are fighting the actual battles in court, and they find your wholehearted support just as encouraging and motivating as I do. Thank you all once again for being the best users any social media site could ever hope for. You make me proud and even more determined to yell at state attorneys general on your behalf.

This one will be [curr ev]

Aug. 30th, 2025 04:20 am
siderea: (Default)
[personal profile] siderea
Current rumors engulfing Bluesky have me recalling an old Communist-era Russian joke:

Every day, a man walks to a news stand and pays for a copy of Pravda, unfolds it, looks at the front page, and throws it in the trash. Every day he does this, for months, until finally the news seller asks the man, "So what is it you are looking for on the front page every day?"

"I'm checking for an obituary."

"Comrade, the obituaries aren't on the front page."

"Oh, this one will be."

snuffle / salsa / chacha

Aug. 29th, 2025 12:02 pm
graydon2: (Default)
[personal profile] graydon2
This is a small note about a delightful function. Not cryptography advice or serious commentary. Just amusement.

A couple years back I had occasion to read in slightly more detail than I had before about the state of the art in cryptographically secure PRNGs (CSPRNGs). These are PRNGs we trust to have additional properties beyond the speed and randomness requirements of normal ones -- inability for an attacker to reveal internal state, mainly, so you can use them to generate secrets.

If you look, you'll find a lot of people recommending something based on one of Dan Bernstein's algorithms: Salsa20 or ChaCha (or even more obscurely "Snuffle"). All the algorithms we're discussing here are very similar in design, and vary only in minor details of interest only to cryptographers.

If you follow that link though, you'll notice it's a description of a (symmetric) stream cipher. Not a CSPRNG at all!

But that's ok! Because it turns out that people have long known an interesting trick -- actually more of a construction device? -- which is that a CSPRNG "is" a stream cipher. Or rather, if you hold it the other way, you might even say a stream cipher "is" just a CSPRNG. Many stream ciphers are built by deriving an unpredictable "key stream" off the key material and then just XOR'ing it with the plaintext. So long as the "key stream" is unpredictable / has unrecoverable state, this is sufficient; but it's the same condition we want out of the stream of numbers coming out of a CSPRNG, just with "seed" standing in for "key". They're fundamentally the same object.

I knew all this before, so people naming a CSPRNG and a stream cipher the same did not come as any surprise to me. But I went and looked a little further into ChaCha in particular (and its ancestor Salsa and, earlier still, Snuffle) because they have one additional cool and weird property.

They are seekable.

This means that you can, with O(1) effort, "reposition" the Snuffle/Salsa/ChaCha "key stream" / CSPRNG number stream to anywhere in its future. You want the pseudorandom bytes for block 20,000,000? No problem, just "set the position" to 20,000,000 and it will output those bytes. This is not how all CSPRNGs or stream ciphers work. But some do. ChaCha does! Which is very nice. It makes it useful for all sorts of stuff, especially things like partially decrypting randomly-read single blocks in the middle of large files.

I got to wondering about this, so I went back and read through design docs on it, and I discovered something surprising (to me): it's not just a floor wax and dessert topping CSPRNG and stream cipher. ChaCha is also a cryptographic hash function (CHF)! Because a CHF is also something you can build a CSPRNG out of, and therefore also build a stream cipher out of. They're all the same object.

How does the construction work? Embarassingly easily. You put the key material and a counter (and enough fixed nonzero bits to make the CHF happy) in an array and hash it. That's it. The hash output is your block of data. For the next block, you increment the counter and hash again. Want block 20,000,000? Set the counter to 20,000,000. The CHF's one-way-function-ness implies the non-recoverability of the key material and its mixing properties ensure that bumping the counter is enough to flip lots of bits. The end.

Amazing!

But then I got curious and dug a bit into the origins of ChaCha and .. stumbled on something hilarious. In the earliest design doc I could find (Salsa20 Design which still refers to it as "Snuffle 2005") the introduction starts with this:

Fifteen years ago, the United States government was trying to stop publication
of new cryptographic ideas—but it had made an exception for cryptographic
hash functions, such as Ralph Merkle’s new Snefru.

This struck me as silly. I introduced Snuffle to point out that one can easily
use a strong cryptographic hash function to efficiently encrypt data.
Snuffle 2005, formally designated the “Salsa20 encryption function,” is the
latest expression of my thoughts along these lines. It uses a strong cryptographic
hash function, namely the “Salsa20 hash function,” to efficiently encrypt data.

This approach raises two obvious questions. First, why did I choose this
particular hash function? Second, now that the United States government seems
to have abandoned its asinine policies, why am I continuing to use a hash function
to encrypt data?


In other words: the cool seekability wasn't a design goal. Shuffle/Salsa/ChaCha was intended as a tangible demonstration of a political argument that it's stupid to regulate one of the 3 objects (CHF, CSPRNG and stream cipher) since you can build them all out of the CHF. (And, I guess, "obviously you should be allowed to export CHFs" though I wouldn't bet on anything being obvious to the people who make such decisions).

And then I googled more and realized that when I was a teenager I had completely missed all the drama / failed to connect the dots. Snuffle was the subject of Bernstein v. United States, the case that overturned US export restrictions on cryptography altogether! And as this page points out "the subject of the case, Snuffle, was itself an attempt to bypass the regulations".

Anyway, I thought this was both wonderful and funny: both the CHF-to-CSPRNG construction (which I'd never understood/seen before), but also the fact that Snuffle/Salsa/ChaCha is like the ultimate case of winning big in cryptography. Not only does ChaCha now transport like 99%[EDIT "double-digit percentages"] of the world's internet traffic (it's become the standard we all use because it's fast and secure) but that it was pivotal in the evolution of the legal landscape and all arises from a sort of neener-neener assessment that the law at the time was internally inconsistent / contained a loophole for CHFs that made the whole thing "asinine".
denise: Image: Me, facing away from camera, on top of the Castel Sant'Angelo in Rome (Default)
[staff profile] denise posting in [site community profile] dw_news

I'll start with the tl;dr summary to make sure everyone sees it and then explain further: As of September 1, we will temporarily be forced to block access to Dreamwidth from all IP addresses that geolocate to Mississippi for legal reasons. This block will need to continue until we either win the legal case entirely, or the district court issues another injunction preventing Mississippi from enforcing their social media age verification and parental consent law against us.

Mississippi residents, we are so, so sorry. We really don't want to do this, but the legal fight we and Netchoice have been fighting for you had a temporary setback last week. We genuinely and honestly believe that we're going to win it in the end, but the Fifth Circuit appellate court said that the district judge was wrong to issue the preliminary injunction back in June that would have maintained the status quo and prevented the state from enforcing the law requiring any social media website (which is very broadly defined, and which we definitely qualify as) to deanonymize and age-verify all users and obtain parental permission from the parent of anyone under 18 who wants to open an account.

Netchoice took that appellate ruling up to the Supreme Court, who declined to overrule the Fifth Circuit with no explanation -- except for Justice Kavanaugh agreeing that we are likely to win the fight in the end, but saying that it's no big deal to let the state enforce the law in the meantime.

Needless to say, it's a big deal to let the state enforce the law in the meantime. The Mississippi law is a breathtaking state overreach: it forces us to verify the identity and age of every person who accesses Dreamwidth from the state of Mississippi and determine who's under the age of 18 by collecting identity documents, to save that highly personal and sensitive information, and then to obtain a permission slip from those users' parents to allow them to finish creating an account. It also forces us to change our moderation policies and stop anyone under 18 from accessing a wide variety of legal and beneficial speech because the state of Mississippi doesn't like it -- which, given the way Dreamwidth works, would mean blocking people from talking about those things at all. (And if you think you know exactly what kind of content the state of Mississippi doesn't like, you're absolutely right.)

Needless to say, we don't want to do that, either. Even if we wanted to, though, we can't: the resources it would take for us to build the systems that would let us do it are well beyond our capacity. You can read the sworn declaration I provided to the court for some examples of how unworkable these requirements are in practice. (That isn't even everything! The lawyers gave me a page limit!)

Unfortunately, the penalties for failing to comply with the Mississippi law are incredibly steep: fines of $10,000 per user from Mississippi who we don't have identity documents verifying age for, per incident -- which means every time someone from Mississippi loaded Dreamwidth, we'd potentially owe Mississippi $10,000. Even a single $10,000 fine would be rough for us, but the per-user, per-incident nature of the actual fine structure is an existential threat. And because we're part of the organization suing Mississippi over it, and were explicitly named in the now-overturned preliminary injunction, we think the risk of the state deciding to engage in retaliatory prosecution while the full legal challenge continues to work its way through the courts is a lot higher than we're comfortable with. Mississippi has been itching to issue those fines for a while, and while normally we wouldn't worry much because we're a small and obscure site, the fact that we've been yelling at them in court about the law being unconstitutional means the chance of them lumping us in with the big social media giants and trying to fine us is just too high for us to want to risk it. (The excellent lawyers we've been working with are Netchoice's lawyers, not ours!)

All of this means we've made the extremely painful decision that our only possible option for the time being is to block Mississippi IP addresses from accessing Dreamwidth, until we win the case. (And I repeat: I am absolutely incredibly confident we'll win the case. And apparently Justice Kavanaugh agrees!) I repeat: I am so, so sorry. This is the last thing we wanted to do, and I've been fighting my ass off for the last three years to prevent it. But, as everyone who follows the legal system knows, the Fifth Circuit is gonna do what it's gonna do, whether or not what they want to do has any relationship to the actual law.

We don't collect geolocation information ourselves, and we have no idea which of our users are residents of Mississippi. (We also don't want to know that, unless you choose to tell us.) Because of that, and because access to highly accurate geolocation databases is extremely expensive, our only option is to use our network provider's geolocation-based blocking to prevent connections from IP addresses they identify as being from Mississippi from even reaching Dreamwidth in the first place. I have no idea how accurate their geolocation is, and it's possible that some people not in Mississippi might also be affected by this block. (The inaccuracy of geolocation is only, like, the 27th most important reason on the list of "why this law is practically impossible for any site to comply with, much less a tiny site like us".)

If your IP address is identified as coming from Mississippi, beginning on September 1, you'll see a shorter, simpler version of this message and be unable to proceed to the site itself. If you would otherwise be affected, but you have a VPN or proxy service that masks your IP address and changes where your connection appears to come from, you won't get the block message, and you can keep using Dreamwidth the way you usually would.

On a completely unrelated note while I have you all here, have I mentioned lately that I really like ProtonVPN's service, privacy practices, and pricing? They also have a free tier available that, although limited to one device, has no ads or data caps and doesn't log your activity, unlike most of the free VPN services out there. VPNs are an excellent privacy and security tool that every user of the internet should be familiar with! We aren't affiliated with Proton and we don't get any kickbacks if you sign up with them, but I'm a satisfied customer and I wanted to take this chance to let you know that.

Again, we're so incredibly sorry to have to make this announcement, and I personally promise you that I will continue to fight this law, and all of the others like it that various states are passing, with every inch of the New Jersey-bred stubborn fightiness you've come to know and love over the last 16 years. The instant we think it's less legally risky for us to allow connections from Mississippi IP addresses, we'll undo the block and let you know.

Japanese Citizenship/Passport Query

Aug. 25th, 2025 06:10 pm
glinda: I...have a cunning plan (cunning plan)
[personal profile] glinda posting in [community profile] little_details
A rather more contemporary citizenship question here. I’m looking for a resource for Japanese passport and citizenship rules - do they have birthright citizenship, if a citizen emigrates can they retain dual citizenship, is it different if they emigrated as a child etc.

The Japanese Ministry of Foreign Affairs’ website is very helpful on the subject of visas and emigration for citizens of other countries so I guess I’m looking for a similar kind of FAQ to this - https://www.mofa.go.jp/j_info/visit/visa/ - but for, I guess you’d call it re-emigration? Moving back to the country of your birth as an adult?

Any help, gratefully received!

Mars Geology

Aug. 24th, 2025 09:23 pm
torchicwpip: (Default)
[personal profile] torchicwpip posting in [community profile] little_details
Hey howdy. Am doing some Martian worldbuilding and wondering about the rarity of some specific minerals and resources on Mars. The list is:
- quartz
- beryl
- bixbyite
- baryte/barium
- vanadium
- aerinite/silicate minerals
- calcite/calcium carbonate
- dolomite
- esperite
- fluorapatite/phosphate minerals
- malachite
- pyrite
- jasper
- celestine
- granite
- obsidian

My question is more on the rarity of these on Mars relative to their rarity on Earth, because theoretically all of these/almost all of these are possible to be found on Mars.

(Also ignore the fact that I accidentally commented on the first post of this community instead of making a post I am still getting used to this site lmao)

Untitled for Three Jigakkyu [music]

Aug. 24th, 2025 07:02 am
siderea: (Default)
[personal profile] siderea
Yall, the bowed musical instruments have finally made it to the electronica party. This is the coolest damn thing. Audio required, video also extremely worth it if accessible. 3 min 17 sec.

2025 Aug 11: Open Reel Ensemble: "Tape Bowing Ensemble - Open Reel Ensemble":
磁気テープを竹に張って演奏する民族楽器「磁楽弓(じがっきゅう)」三重奏による調べです

This is a trio performance on the “JIGAKKYU,” a traditional folk instrument made by stretching magnetic tape across bamboo.


ETA: I want to state for the record, contrary to what a lot of commenters on YT are saying, it is not that what is cool here is just how wackily innovative it is to use a reel-to-reel this way. The only reason this is going viral is because of how musically good it is; nobody would care about it otherwise, and I submit for evidence the half century plus of prior art of abusing reel-to-reel recorders in the name of music-making you have probably never heard of, because a lot of it wasn't very compelling as music so nobody ever brought it to your attention. What's most shocking here is how musical it is, and how they use the innovation to do something new in music recognizable as such. It isn't good because it's innovative; it's innovative because it's good.

As far as I am concerned, the great problem for electronic music has always been what I think of as the Piano Problem: the music is made by operating a machine, so there's a machine between the performer and the music. Great pianists master operating the machine so beautifully they make the machine disappear. But this is what makes piano playing hard. So much of what we love in music is its organicness, the aspects of it which are so beautifully expressive because of how intimately the performer's body interacts with the instrument.

Heretofore, the only ways to bring that kind of sound to electronic instruments were to use breath controlled midi controllers (electronic woodwinds), use an electromagnetic interface (e.g. theremin), or get really fantastic on keys. Or give up and embrace the mechanical nature of the instrument and use it for repertoire the excellence of which does not rest in expressiveness (q.v. Wendy Carlos' Bach recordings).

This instrument conclusively brings the organicness of bowing and all its delicate expressiveness to electronica. The result is simply gorgeous and I hope this creative vein is further mined.

Phone, again [me, tech]

Aug. 21st, 2025 05:10 am
siderea: (Default)
[personal profile] siderea
Whelp, it looks like I'm in the market for a cell phone again.

On Saturday night, I noticed something dangling from the corner of my cell phone, which immediately struck me as odd, as there's no aperture in the protective gel case there for something to get stuck. Well, there's not supposed to be. On further inspection, I discovered the corner of the gel case no longer fit over the corner of the phone, and some random shmutzig had gotten wedged... between the back plate of the phone and the rest of the phone, to which it was no longer attached along the bottom. Pressing it back down didn't work: something in the middle of the phone was causing resistance to closing the phone.

Lo, verily, my phone's battery was pregnant.

Some of you who follow me on the fediverse might be thinking, "Wait, didn't you just replace a phone, the battery of which swelled up?" Lol, yes: late April. That was my work phone. This is my personal phone. Lolsob.

So, being a proper nerd, I went right to iFixit to order myself a battery. Whereupon I was stopped by something that did not bode well. I entered my phone's model information and iFixit, instead of telling me what battery to buy, alerted me that it is not possible to determine what kind of battery my phone took from the outside.

It turns out that the OnePlus 9 G5 can take one of two batteries, and which one a given OnePlus 9 G5 takes can only be determined by putting eyes on the battery which is in it.

Well, okay then: I clicked through the helpful link to read instructions on how to pull the battery on a OnePlus 9 G5. I read along with slow dawning horror at exactly how involved it was and how many tools I would have to buy, and made it to step twelve – "Use a Phillips screwdriver to remove the ten 3.8 mm-long screws securing the motherboard cover. One of the motherboard cover screws is covered by a white water ingress sticker. To unfasten the screw you can puncture the sticker with your screwdriver." – of thirty and decided: fuck this, I will hire a professional.

(I think maybe it was a fortunate thing that I went through the prior fiasco with trying to change the battery on the Nuu B20 5G, first, because it softened me to the idea of maybe I don't have to service all my electronics personally myself.)

Alas, it was late on a Saturday night and all the cell phone repair places around me were closed until Monday.

Fortunately, I had a short day Monday and would be getting out of work around 5:30pm. I called ahead to a place that is open to 7pm to ask if I needed an appointment and whether they did OnePlus phones. There was a bit of a language barrier with the guy who answered the phone, but he said no appointment was necessary and whether they could fix my phone would entail putting eyes on it, and please try to come before 6pm to give them time to fix it before they close.

So after work, Mr B took me there, and we presented the phone. Dude got the back of the phone the rest of the way off the phone with rather more dispatch that I would be have been able to, and pretty quickly discovered that he was in over his head. Credit where it's due – "A man's got to know his limitations" – he promptly backed off, and told me to bring it back tomorrow when the more-expert boss was in.

I'm slightly irritated that we made the unnecessary trip instead of him saying, "Oh, a OnePlus, come tomorrow when our OnePlus expert is in", but it did give me the extra time to do more thorough backing-up. I have never managed to get Android File Transfer to work, nor any a number of alternatives; snapdrop.io would only do single files at a time, not whole directories, and, weirdly, Proton Drive, both app and website, doesn't allow uploading whole directories from Android either.

Finally, I saw a mention that the Android app Solid Explorer "does FTP". I wanted to make a local backup to my Mac, but, fuck it, I have servers, I can run FTP somewhere just to get my files backed up off my phone. Imagine my surprise on opening up the "FTP" option on Solid Explorer and discovering it wasn't an FTP client it was an FTP server. Yes, the easiest way I found to exchange files between my Android phone and my MacBook Pro was to put an FTP server on my phone.

Worked fine. My FTP client on my Mac sucks, but I'll solve that another day. (Does Fetch still exist?)

Mr B and I discussed it and decided he'd bring the phone in the next day, Tuesday, to spare me the hike. He returned with the phone, still with the back off, and the news that they had discovered, as I had, you have to get at the battery to even figure out which battery to order. And that he was told that the battery would be in by 3pm the next day (Wednesday). The only surprising thing here is that they could get the battery that fast.

So, today (Wednesday), after 3pm, Mr B took my phone back for a third visit, and they attempted to install my new battery.

It was the wrong battery.

Hwaet! The saga continues... )
siderea: (Default)
[personal profile] siderea
Yall. I am so tired.

Last thing first. Investigating the other thing, I discovered this. I'll just cut and paste what I submitted as a ticket to Patreon:
I took a break of a few months, and when I came back my fees spiked. What gives?

I just did a month (July 2025) that extremely similar to last January (2025): similar revenues (466.19 vs 458.50), similar patrons (160 vs 162). According to my "Insights > Earnings" page, my total fees went up from 11.4% to the astounding 14.6%. Drilling down, most of that is an eye-watering 3% increase of the payment fees (5.8% to 8.8%). There was also a minor increase of Patreon's platform fee from 5.6% to 5.8%.

That represents a FIFTY-TWO PERCENT INCREASE in processing fees, and a 28% increase in fees over all.

Care to explain? Was there some announced change in payment structure or payment processor fees I missed?
I have received no response.

But the other thing is this: Patreon has dropped my business model.

Apparently by accident.

When I went to Patreon to create the Patreon post for my latest Siderea Post at the end of July, I was confronted with a recent UI update. In and of itself it wouldn't have been a problem, but, as usual, they screwed something up.

They removed the affordance for a post to Patreon to both be public and paid. The new UI conflated access and payment, such that it was no longer possible to post something world-accessible and still charge patrons for it.

I found a kludge to get around it so I could get paid at all, and I fired off a support ticket asking if it was possible but unobvious, or just not possible, and if it was not possible, whether that was a policy or a mistake. I have received very apologetic reply back from Patreon support which seemed to suggest (but not actually affirm) it was an unintentional:
From what we've seen so far, the option to make a post publicly accessible while still charging members for it isn't possible in the new editor. Content within a paid post will only be available to those with paid access, and it won't show up for the public.

Other creators have reported this same issue, and I want to reassure you that I've already shared this feedback with our team. If anything changes or if this feature is brought back, I'll be sure to keep you in mind and let you know right away.
So it's not like the reply was, "Oh, yes, it was announced that we wouldn't be supporting that feature any more," suggesting, contrarily, they didn't realize they were removing a feature at all.

The support person I was corresponding with encouraged me to write back with any further questions or issues, so I did:
Hi, [REDACTED], thanks for getting back to me. I have both some more questions and feedback.

1) Question: Am I understanding correctly, that the new UI's failure to support having publicly accessible paid posts was an oversight, and not a policy decision to no longer support that business model? Like, there's not an announcement this was going away that I missed? As a blogger who often writes about Patreon itself, I'd like to be able to clarify the situation for my readers.

2) Question: Do you have any news to share whether Patreon intends to restore this functionality? Is fixing this being put on a development roadmap, or should those of us who relied on this functionality just start making other plans? Again: my readers want to know, too.

3) Suggestion: If Patreon intends to restore this functionality, given the way the new UI is organized, the way to add the functionality back in is under "Free Access > More options" there should also be a "charge for this post" button, which then ungrays more options for charging a subset of patrons, defaulting to "charge all patrons".

4) Feedback: The affordance that was removed, of being able to charge patrons for world-accessible content, was my whole business model. I'm not the only one, as I gather you already have discovered. In case Patreon were corporately unaware, this is the business model of creators using Patreon to fund public goods, such as journalism, activism, and open source software. My patrons aren't paying me to give them something; my patrons are paying me to give something to the world. Please pass this along to whomever it's news.

5) Feedback: This is the sort of gaffe which suggests to creators that Patreon is out of touch with its users and doesn't appreciate the full breadth of how creators use Patreon. It is the latest in a long line of incidents that suggests to creators that Patreon is not a platform for creators, Patreon is a platform for music video creators, and everybody else is a red-headed stepchild whom Patreon corporately feels should be grateful they are allowed to use the platform at all. It makes those of us who are not music video creators feel unwelcome on Patreon.

6) Feedback: Being able to charge patrons for world-accessible content is one of a small and dwindling list of features that differentiated Patreon from cheaper competitors. Just sayin'.

7) Feedback: I thought you should know: my user experience has become that when I open Patreon to make a post, I have no idea whether I will be able to. I have to schedule an hour to engage with the Patreon new post workflow because I won't know what will be changed, what will be broken, etc. It would be nice if Patreon worked reliably. My experience as a creator-user of your site is NOT, "Oh, I don't like the choices available to me", it's that the site is unstable, flaky, unpredictable, unreliable.
I got this response:
Hi Siderea,

Thank you so much for your thoughtful follow-up and for sharing your questions and feedback in such detail.

To address your first question, I can’t speak to whether this change was an oversight or a deliberate policy decision, but I can confirm there hasn’t been any official announcement about removing the ability to charge members for world-accessible posts. If anything changes or if we receive more clarity from our product team, I’ll be sure to keep you updated.

At this time, I also don’t have any news to share about whether this functionality will be restored or if it’s on the development roadmap.

I know that’s not the most satisfying answer, but I want to reassure you that your feedback and suggestions are being shared directly with the relevant teams. The more we can highlight how important this feature is for creators like you, the better.

Thank you as well for your suggestion about how this could be reintroduced in the UI—I’ll make sure to pass that along, along with your broader feedback about the impact on creators who fund public goods. Your perspective is incredibly valuable, and I just want to truly thank you for taking the time to lay it all out so clearly.

If you have any more thoughts, questions, or ideas, please let me know, and I’ll be happy to take a further look. I appreciate your patience and your willingness to advocate for the creator community.

All the best,
[REDACTED]
Several observations:

0) Whoa.

1) That is the best customer service response letter I've ever gotten, for reasons I will perhaps break down at some other junction. But it both does and does not read like it was written by an AI. I didn't quite know what to make of it, until someone mentioned to me the phenomenon of customer service agents at another org using AI to generate letters, and then I was like, oooooooh, maybe that's what this is. Or maybe not. Hard to say.

2) Though [REDACTED] could not confirm or deny, it sure sounds like an accident, but one that impacts such an uninteresting-to-Patreon set of creators that they can't be arsed to fix it, either in a timely way or at all.

3) "The more we can highlight how important this feature is for creators like you, the better." is a hell of a sentence. Especially in conjunction with "...along with your broader feedback about the impact on creators who fund public goods.". Reading between the lines, it sure sounds like the support people have been inundated by a little wave of outraged/anguished public-good posters, and the support people, or at least this support person, is entirely on the creators' side against higher ups brushing them off. Could be a pose, of course, but, dayum.

So that's what I know from Patreon's side.

The kludge I came up with for the post I made at the end of July is that I used another new feature – the ability to drop a cut line across a Patreon post where above it is world readable and below it is paid access only – to make a paid-access only post where 100% of the post contents are above the cut line.

Please let me know if it's not working as intended. This unfortunately has the gross effect of putting a button on my new post saying "Join to unlock".

So.

In any event, I strongly encourage those of you following me as unpaid subscribers over on Patreon to make sure you're following me, instead, here on Dreamwidth, because Patreon is flaky.

I will make a separate post with instructions as to all the ways to do that. You can get email notifications of my posts (either all or just the Siderea Posts), follow RSS and Atom feeds, get DM inbox notifications, and, of course, just follow me on your DW reading page, all on/through Dreamwidth, anonymously and completely free.
Page generated Sep. 1st, 2025 01:51 pm
Powered by Dreamwidth Studios