Lemmy Lead Developer and father of two children.

I also develop Ibis, a federated wiki.

  • 217 Posts
  • 1.72K Comments
Joined 5 years ago
cake
Cake day: January 17th, 2020

help-circle
  • Thanks this is very useful feedback. Especially the search box in community sidebar would be very useful and easy to add. Formatting for community ids should also be easy to improve. A bit later when I have time I will implement these things, and then make a post in the Help Design Lemmy Series regarding search.

    By the way basic reading is working for me in Tor browser with JS disabled. Though buttons like switching Local/All, sorting and of course forms like register, login and search are not supported. We could use contributors to help fix these things.





  • The lifecycle of open-source software development is well-established in lore if not in fact: under- or unpaid developers work on a project that started as a labor of love. The love disappears, and the labor quickly turns to animosity and dread, as Git repos devolve into loud, angry people demanding this or that, reporting bugs but not contributing to fixing existing ones, and always the politics, politics, politics.

    That might be true for some open source projects, but I personally am still very happy to work on Lemmy. If there are loud or angry people on Github we quickly ban them so that has never be a real problem. And politics on Lemmy are easy to block if you want to.

    I’ll back up a moment. I am not naive. I will ever conflate lemmy, or really any open-source software written by a small handful of volunteer or underpaid developers, with stability. And that’s OK. I accepted the fact that I would be in for a few bumps and scrapes here and there: like the time a new lemmy UI version was released that cocked up any form fields, resulting in a shitty UI experience. Or the time that the lemmy backend would just fuck around and die, taking others down with it in a spectacular blaze of error messages, all cryptic to me. Or the time when never-ending scrolling was dismissed because one person who happens to be the main developer just does not want it.

    The vast majority of Lemmy servers are absolutely stable. Lemmy.ml has been running for 6 years now and there have never been any problems like you describe. Maybe you have corrupt hardware or something, but its definitely not something you can blame on the Lemmy software. You should join the admin chat, people there can probably help you to resolve the problem.

    Concurrently, as lemmy.fan slowly grew and went through its adolescent phase, development on lemmy became less predictable and eventually stalled to the point where significant bugs and other issues were, and still are, being neglected as lemy version 1 is developed. I will NOT be that loud, vocal, open-source criticizer who laments the lack of work and progress from underpaid developers not giving into my demands and wants, so I began to research other options.

    Development is definitely not stalled, there were 87 pull requests merged and 66 issues closed just in the last month. The only unresolved issues are very minor or only affect the development version. And there is a lot of progress on 1.0, it will include many features such as private communities and multi-communities.













  • You can write a script for this:

    # loop through all post
    GET https://lemm.ee/api/v3/post/list?limit=50&sort=New&community_name=fedigrow&page=*page*
    # take `post.ap_id` for each item
    # then fetch it over activitypub on the other instance
    GET https://lemmy.ml/api/v3/resolve_object?q=*urlencode post.ap_id*
    # same thing for comments
    GET https://lemm.ee/api/v3/comment/list?limit=50&sort=New&community_name=fedigrow&page=*page*
    # again fetch
    GET https://lemmy.ml/api/v3/resolve_object?q=*urlencode comment.ap_id*