![](/static/61a827a1/assets/icons/icon-96x96.png)
![](https://feddit.nl/pictrs/image/0e5ef11b-1841-4e8d-be66-21f6c31589ef.jpeg)
Edited to account for blahaj updating to 0.19.3 … hopefully that’s the last big instance to change.
It’s been about a week since sh.itjust.works and lemmy.world updated, so results from those instances will start appearing again soon.
aka freamon@lemmy.world, freamon@feddit.nl, and any username from lemmon.website
This account is currently parked, and I’m using https://piefed.social/u/andrew_s
Edited to account for blahaj updating to 0.19.3 … hopefully that’s the last big instance to change.
It’s been about a week since sh.itjust.works and lemmy.world updated, so results from those instances will start appearing again soon.
Voyager has a setting for “No subscribed in All/Local” that does this. It’s better on than off, obviously, but it doesn’t turn All or Local into some kind of goldmine.
I get the sense that, unless you’re willing to do it yourself, feature requests for Lemmy don’t have much chance of being realised.
Wait, what? A user posts a thing to a server, and that thing isn’t then duplicated to 50 other servers … yeah, I don’t see how that can work.
(I’m just kidding - your site looks neat.)
!quickanimalfacts@lemm.ee - yeah, go on then. subbed.
The crawler at lemmyverse.net has picked up on an ngrok URL I’ve used for messing around with Lemmy. I was using it last night to play with PieFed, and saw it make about 20 attempts to read an API that isn’t there. I thought - oh, I wonder if that will break it - and sure, enough, there wasn’t a 6:00 update from it this morning. Ho hum.
Yeah it was pretty nifty in lots of ways. Loads of emulators, of course, and doing stuff like compiling apps directly on the device itself was neat.
Frustrating in lots of other ways too, though. I don’t think the Pyra ever really got off the ground, unfortunately.
This was always an impressive emulator - it was originally made for the Open Pandora (an ARM-based mini-computer not much bigger than a DS). It’s always been free for that - it’s just, you know, you’d have to own an Open Pandora (I do!)
Informing a human that their work has already been done for them by a bot is oddly appropriate for this post.
Regarding the ‘Unresolved questions’ part, the ActivityPub activity for Reports is:
{
"actor": "http://ds9.lemmy.ml/u/lemmy_alpha",
"to": ["http://enterprise.lemmy.ml/c/main"],
"audience": "http://enterprise.lemmy.ml/u/main",
"object": "http://enterprise.lemmy.ml/post/7",
"summary": "report this post",
"type": "Flag",
"id": "http://ds9.lemmy.ml/activities/flag/98b0933f-5e45-4a95-a15f-e0dc86361ba4"
}
From this page. I imagine it’s up to lemmy where this actually gets sent (in the sense that if a community has 1 moderator, it goes to 1 inbox, but if it has 2 moderators, it goes to 2 inboxes).
In Lemmy terms they’re at ‘RequireApplication’. Open is completely open. PixelFed have automated something that lemmy.world did for feddit.nl a while ago - defederate from them until they changed their application policy.
Manual approval isn’t the only alternative to Open Registration - the main one involves requiring an email address, and/or solving a captcha
It’s not a one-click solution, but lemmy admins can check other instance’s registration policy. e.g.
curl https://lemmy.world/api/v3/site | jq -r .site_view.local_site.registration_mode
Other Fediverse apps will reveal it in different ways of course. Nothing to stop an instance that was set up just for spam from lying about it of course.
It’s me deciding. Recommendations for interesting people on Mastodon to follow are welcome (either in this post, or the sticky ‘About this community’ post).
Mmmm. It’s the instance that people are on on that’s doing (or not doing) much of the work there. If you comment on a post, the instance will send 1 copy to me (who’s responsible for federating it out to other Lemmy instances) and 1 copy to Mastodon for the post’s author.
If you reply to a Lemmy comment, it doesn’t send it to Mastodon because it’s not for the author (in much the same way that you don’t get replies to replies in your inbox if you’re the OP of a Lemmy post). For local posts, both Mastodon and Lemmy show the local comment tree, but neither can show every Fediverse interaction because they never hear about them.
Likewise, if you reply to a Mastodon comment, your instance will send it to the comment author, but not the post author, so won’t appear anywhere under their post.
As for Mastodon comments on Lemmy … it depends. I follow some accounts, so when I post them to Lemmy, top-level comments come through automatically (again, though, I never hear about replies to replies). Other content is just stuff I’ve seen and grabbed. I often post the existing replies, but not if they’ve turned Authorized Fetch on, and I don’t typically go back and check for more later.
They can, yes. The lemmy instance that a particular user is on handles that. This community is mostly about getting the posts and comments into lemmy in the first place.
Lol, no. I’ve decided that they should be exclusively referred to as Tails OS (they’ve yet to formally agree).
The name comes it being a Community that follows People (so flipping the usual relationship in a heads/tails kinda way, but also tail as a synonym for follow).
Not yet, no.
I’ve seen this happen occasionally, but it doesn’t always look great, and relies on them having heard of Lemmy in the first place, obvs.
Suggested setting: give up after X number of days if no real person from that instance subscribes. Whoever added the community is free to try again.
No settings page (as far as I’m aware), but you can use the API to get everything (posts, comments, etc):
step 1: get login token -
curl --request POST \ --url https://lemmy.ml/api/v3/user/login \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "username_or_email": "2br02b", "password": "YOUR-PASSWORD" } '
step 2: use login token (big long string starting with ‘ey’) to get data -
curl --request GET \ --url 'https://lemmy.ml/api/v3/user?username=2br02b&page=1' \ --header 'accept: application/json' \ --header 'authorization: Bearer YOUR-JWT'
Increment page number until you have everything. source: https://lemmy.readme.io/reference/get_user