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.
Oh, yeah, cross-posts are great - I think it’s something we’re all supposed to be doing. I wouldn’t say anything usually - just thought this image might raise questions that the creator could perhaps answer.
(sorry to intrude). This has had a few cross-posts on Lemmy. The link that goes to !tails@lemmon.website is attributed to the author of the image, so you can reply to them via that community if you wish.
(sorry to intrude). This has had a few cross-posts on Lemmy - this one technically wasn’t, but it seems Lemmy has picked up on it. If you want some ALT text, and to reply to author of this image, the link that goes to !tails@lemmon.website provides that.
Errr … I want to say it was in Captain America, but I was being vague 'cos I can’t really remember. I wasn’t expecting to be quizzed on it tbh.
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.
These are pretty neat. Considering that close-up shots of hands are usually filmed separately (often with someone else’s hands*), you can probably do similar things with lots of other movies.
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.
It’s been censored out, but it looks like it’s heading for Shit Creek, appropriately enough.
A meme made in response (not by me):
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).
I think that’s just a fun title. I searched for London, UK when it was set for 750 million years ago and it said something about the land not being there for it yet. As advised, I changed to a more ‘recent’ year and it came up.
deleted by creator
Can confirm. Just looked at Boost and there they all are. Pretty neat. (Boost is the only app I’ve seen that notifies you of comments too)
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