aka freamon

Codeberg: https://codeberg.org/freamon?tab=activity

Anything from https://lemmon.website is me too.

  • 3 Posts
  • 78 Comments
Joined 6 months ago
cake
Cake day: March 27th, 2024

help-circle





  • PieFed has some design principles, including being accessible on lower-end devices and for those with unreliable bandwidth, which mean that it’s default UI is never going to look like apps which involve downloading a sizable chunk of Typescript.

    I’m okay with its look. Partly because it’s themeable, and there’s a theme called ‘Card Shadow’ which looks more modern imo. And partly because Lemmy can feel quite slow showing 20 posts at a time, whereas PieFed throws 100 at a time. And also because there will eventually be an API, allowing people to view it how they want (similar to Lemmy - lemmy-ui is maybe not that great, but there’s other frontends which I think are an improvement)




  • Oh. I subscribed to this post because I hoped someone would be able to give an answer too.

    It’s been a day, so before I forget and on the basis that some answer is better than none at all, I’ll have a crack:

    400 Bad Request isn’t much to worry about, it doesn’t mean anything is malfunctioning and it can happen for a gazillion reasons. One is you’ve joined a new community and someone Likes a comment you don’t have (particularly if it’s nested in other comments you also don’t have). Another is if someone Likes a post or comment by a user on an instance that you’ve defederated from (your instance is defed’d from lemmygrad and hexbear whereas lemmy.ml isn’t)

    As for 499, that seems to be a client issue, and that client mostly seems to be beehaw, who are stuck on an old Lemmy version and being increasingly wonky (in the other direction, they often reply in HTML rather than JSON and randomly decide that their communities’ inboxes don’t exist, so I wouldn’t worry about stuff from them either)




  • is it in reality not “all” but only “all posts that at least one user of this instance is subscribed to”?

    Exactly this, yes. Not literally ‘all’ (a brand new instance would have nothing in its All feed). This is what was meant by ‘partial data set’ - everything for a subscribed community (from the moment it was subscribed to), but nothing for a community that no-one’s subscribed to.

    Some instances run bots to populated their All feed more than what would happen naturally (with the idea being that the bot unsubscribes when a human does)



  • Seems like ‘posts’ works okay, but it’s ‘comments’ that don’t (and overview is a mix of both).

    API call to see posts:
    curl --request GET --url 'https://lemmy.world/api/v3/user?username=beebarfbadger&sort=TopDay&page=1&limit=1' --header 'accept: application/json' | jq .posts[].post.published = 2024-09-26T15:35:33.998368Z (today’s top post is today)

    API call to see comments:
    curl --request GET --url 'https://lemmy.world/api/v3/user?username=beebarfbadger&sort=TopHour&page=1&limit=1' --header 'accept: application/json' | jq .comments[].comment.published = 2024-03-03T05:09:45.255807Z (this hour’s top comment was in March)

    They probably know about it, but if not it’s probably a good idea to report the bug here: https://github.com/LemmyNet/lemmy/issues










  • Andrew@piefed.socialtoAsklemmy@lemmy.mlHow to use peertube
    link
    fedilink
    English
    arrow-up
    0
    ·
    13 days ago

    Yeah (well, nerds anyway). With Lemmy, if you do curl --header 'accept: application/activity+json' --location [https://lemmy.wtf/c/gametrailers/followers](https://lemmy.wtf/c/gametrailers/followers) | jq . it tells you there’s 68 but not who they are. With PeerTube you can do curl --header 'accept: application/activity+json' --location [https://peertube.wtf/video-channels/startgametrailers/followers?page=1](https://peertube.wtf/video-channels/startgametrailers/followers?page=1) | jq . and it provides names (including me and you and a bot from leaf.dance)