• 0 Posts
  • 21 Comments
Joined 2 months ago
cake
Cake day: July 15th, 2025

help-circle
  • Piefed version != api version. The api is still listed as alpha and uses alpha endpoints, so changes are to be expected on that front. For the past couple of weeks, we have been making posts to [email protected] about changes coming in 1.2 as we have been working through them.

    The devs have been really responsive as well. If I am honest, I expected a lot more problems than what has appeared in the wake of the changes. This release included a huge overhaul to the api to help make it more stable for the future, and as part of that included quite a number of changes where things were really inconsistent before. There shouldn’t be breaking changes like are in this release going forward as we are working from a much more solid foundation now.


  • Piefed doesn’t currently natively support setting up an rss feed to populate a community (though there is an issue for it on the codeberg, so hopefully soon). However, we do have an api at this point that is feature complete enough to cook something like this up without too much trouble.

    As for self-hosting piefed, it is pretty comparable to lemmy. They both are dockerized and I have a personal instance of both of them. Resource-wise, for a personal instance, I haven’t really noticed a difference, though my VMs are well enough provisioned that I doubt I would run into any bottlenecks for a 1-user instance.

    I’m more familiar with the Python ecosystem than Rust

    This is basically how I have ended up becoming a piefed contributor. There were features that weren’t in lemmy that I was frustrated by, but don’t know a thing about rust. So, I just started implementing things in python…and have just kept doing it.



  • That notification url is only going to work for you because it’s your notification, other users are going to be blocked.

    As for why this is happening for threads with a large number of comments, it is probably because once a post gets more than a certain number of comments, piefed loads them “lazily”. This means it loads the rest of the page first and then loads the comments and fills them in. So, the page isn’t automatically scrolled to the correct comment when the page loads because the comment isn’t there yet.

    I haven’t really looked at this area of the code, but I suspect the solution will have to be some Javascript that triggers the scroll after the comment has loaded. @[email protected] probably knows better though since he wrote the lazy loading.