We just added Alexandrite to the server, it’s an alternative desktop UI for Lemmy created by Sheodox who worked tirelessly to make the necessary changes to we could host it ourselves here. So go to https://a.lemmy.world and have a look!

He continues to update it constantly, you can follow the development on his github page or in his community. If you like what you see and want to support him, why not buy him a coffee? :)

For those who don’t have Lemmy World as their home instance and want to use Alexandrite, either ask your instance admins to add it or go to https://alexandrite.app!

Edit: I should probably have mentioned that Alexandrite is meant for desktop!

  • fidodo@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    1 year ago

    I want to caution that every new ui is a potential security risk. When it’s a mobile app then it’s entirely on the user to decide if they trust it, but when it’s hosted the host is implicitly giving a seal of approval so I think at least a bit of a code audit should be done, especially since xss is much more of a risk on the web.

    There’s already been one security breach on the default Lemmy skin, so I think it would be a good idea to do an audit for every new hosted ui and include a section for it on these posts. You don’t necessarily need to crawl through every line of course, but it’d be good to cover what framework and rendering engine it uses and acknowledge any risks associated with them.

    • Antik 👾@lemmy.worldOPM
      link
      fedilink
      arrow-up
      5
      ·
      1 year ago

      We have the devs of all but one of the alternative UI’s on our discord server. We try to provide options for our users as well as give some extra exposure to the Lemmy developers community by hosting these on LW. It’s actually pretty cool to see that devs from different apps are going through each other’s code and are being helpful. And other community members are actively helping the developers test (and request) new features.

      So that is one of the things that we did to “play safe”. But I understand your concern and I’ll have a talk with the team how we can organise something like a code review of the UI’s we host.

      We have one more UI to be announced soon. And that will most likely be the last one we will add.

  • Metz@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    okay, yes, i dig it. especially the much better arranged comment trees. and the content on the right side is actually a quite nice idea. after hiding the sidebar you can basically scroll and consume in a endless loop. This may or may not be something good…

  • Imhotep@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    It’s really nice.

    One issue (already mentioned probably): the time with a minus sign confuses me, I keep thinking it represents downvotes.

    Instead of -4 h, maybe 4 h ago?

  • The King@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    It’s really great that you are moving so quickly and supporting your community in this way, but I wonder if all these front ends are potentially going to create a bit of a long term maintenance headache? How are we certain that they don’t introduce any new vulnerabilities and how are we staying on top of those when they happen? I worry that each new frontend adds burden to an already small community for a potentially minor practical gain.

    Don’t get me wrong, you guys are doing awesome stuff, and I’m consistently impressed with this instance. That’s just the first thing that comes to my head having done software for many years myself.

    • Antik 👾@lemmy.worldOPM
      link
      fedilink
      arrow-up
      0
      ·
      1 year ago

      Maintenance in regards to updates is not an issue. All the extra frontends we added run in docker and are automatically updated twice a day to make sure we are always running the latest stable versions. All apps are using the Lemmy api’s just like the 3rd party apps and should anything break we have ways to contact the developers.

      • Nix@merv.news
        link
        fedilink
        arrow-up
        0
        ·
        1 year ago

        How did you set them up to automatically update? Have you done a write up on how you set these up? Would be great for other admins to be able to do the same

        • Antik 👾@lemmy.worldOPM
          link
          fedilink
          arrow-up
          1
          ·
          1 year ago

          We use docker compose in scripts and crontabs

          /scripts/update-alexandrite.sh:

          cd /opt/alexandrite
          docker-compose pull
          docker-compose down
          docker-compose up -d
          

          Then use crontab -e and add this line:

          00 05,00 * * * bash /scripts/update-alexandrite.sh

          • Nix@merv.news
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            1 year ago

            Sweet thanks, do you have this and scripts to keep the other front ends updated on GitHub somewhere?

              • Nix@merv.news
                link
                fedilink
                arrow-up
                2
                ·
                1 year ago

                I understand but a lot of admins that are hosting instances just for themselves and a couple of friends have little no experience running a server so having a github with different tips and best practices would be very useful. I hope you consider it :)