Interesting, when I tried a while back it broke all images (not visible on the website due to service worker caching but visible if you put any pictrs url into postman or something)
Interesting, when I tried a while back it broke all images (not visible on the website due to service worker caching but visible if you put any pictrs url into postman or something)
I wrote a patch for Lemmy a week or so ago if you want to skip the caching: https://github.com/LemmyNet/lemmy/pull/3897
I think deleting images from the pictrs storage can corrupt the pictrs sled db so I would not advise it, you should go via the purge endpoint on the pictrs API.
Just a note that my PR there doesn’t disable pictrs for your own instance’s users. It just disables the caching of remote content.
The Lemmy instance I’m speaking from right now is running in my k8s cluster.
I ran this query:
select distinct thumbnail_url as url from post where not local and thumbnail_url like 'https://campfyre.nickwebster.dev/pictrs%'
(replace with your instance’s url)
I then sent delete requests to /internal/purge on pictrs to delete all of those old thumbnails, which cleared out a lot of space. After deleting the thumbnails I ran an UPDATE
query to set all of those old thumbnail URLs to null
in the DB. I also patched the version of lemmy that I run to stop caching thumbnails in the future. Hope this helps!
The FNV modding scene is great. I just installed Living Desert last night and was very impressed.
I feel like shitty sites getting too good at SEO has largely made google useless. That’s why you had to append “Reddit” to get any useful info that wasn’t from some SEO scamsite.
I have a few but my main one is https://nick.geek.nz followed by https://nickwebster.dev which currently just had a redirect, some email stuff, and this Lemmy instance.
You only pull down stuff when a member of your instance subscribes/visits another instance via yours.
Honestly, the web app (and hopefully Sync when it arrives)
They’ve already made the “new” reddit web view unusable for any sub marked NSFW. I feel sorry for the web devs at Reddit that spent all this time making a responsive site that works on mobile, then to be forced to artificially block access to push app usage.
You’re probably correct :(
Wouldn’t it be better if they federated so it doesn’t become a walled garden in there? It means we can stay on our own instances but aren’t cut off from their large userbase.
I think fighting this will be a mistake. Instances ran by the likes of Tumblr and Meta can only bring more people into the fediverse, and when they’re in it will be easier for them to move around.
The great thing about AcitivityPub is it lets the people who want to be in larger more centralised servers connect to those who don’t fairly seamlessly.
Yeah, that’s largely what happened with email too. It’s a decentralised network but most people just pick a big provider and stick with that (which is absolutely fine)
True, you’re correct. I’m just not sure how you did it without corrupting the sled db. Maybe I’m just unlucky