About two days ago we found a bug with the registration system on lemmy. Because of this we have updated our registration process a few times, and cannot deny any applications as the person registering does not receive any message and cannot re-apply.

We currently have several hundred people that we are waiting to deny, and some unknown amount of people that we denied prior to finding this issue which we would really like to contact and give them a chance to register as they didn’t write enough in their registration for us to really evaluate if they were a good fit for this instance.

If you’re a developer please take a look at this github issue and please work your magic to help fix this problem.

As an aside, we also have a list we’ve been working on for enhancements that would make moderating and administering this instance a lot easier, and enhancements we think users would enjoy in terms of UI and UX. We’d love to share these as well as facilitate a discussion to surface more ideas (and we plan to in the future), but right now we need to focus on the most pressing issue to us running this website, whether people can create an account here and participate.

  • nutomic@lemmy.ml
    link
    fedilink
    English
    arrow-up
    35
    ·
    1 year ago

    As a workaround you can go into the database and query directly for users with rejected application and email provided. Then write a script to email them. Getting a fix developed, reviewed, merged and deployed will take a few days in the best case. And even longer now because we are busy with lots of things.

  • Ghostalmedia@beehaw.org
    link
    fedilink
    English
    arrow-up
    20
    ·
    1 year ago

    Bit of a tangent here, but if you’re ever looking for experience designers to help out here and there, or to just give something a second set of eyes, I might be able to lend a hand or connect y’all with some bright and chill people.

    You probably don’t want me making any PRs, but I know my way around Figma and a user test plan.

    • Lionir [he/him]@beehaw.org
      link
      fedilink
      English
      arrow-up
      14
      ·
      1 year ago

      I’d love to see you redesign some parts of the Lemmy UI!

      In my option, a lot of designing work is still to be done so I’d love to see mockups you can make and your thoughts on design work!

      • HrBingR@beehaw.org
        link
        fedilink
        English
        arrow-up
        5
        ·
        edit-2
        1 year ago

        If we could end up with a theme that looks a lot more like https://kbin.social, I’d be so happy. My biggest gripe with Lemmy is all of the white space, and none of the current themes improve that at all. All of the theme options offered by kbin look amazing by comparison, and to my understanding Lemmy theming is done via CSS based on Bootstrap v4, so new theme creation should be straightforward enough.

        It’s to the point where, when visiting Lemmy instances, I use a custom CSS extension to modify a few properties to make it a bit more palatable to me.

        If you guys aver need help creating custom themes to offfer to users I’d be happy to contribute.

        • crank@beehaw.org
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 year ago

          Can you post your user style??

          But I would very much support having a more compact theme available without a browser extension. I think some tightening up up would make this place look more welcoming. It feels sort of “empty” due to all the white space.

          • HrBingR@beehaw.org
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            1 year ago

            Hey there, sure, currently I’m using this. The border between comments on a comment thread doesn’t look the best, but it makes it easier for me to track comment levels so I like it, though there are certain properties I’d like to change but can’t.

            Either way, I’m using an extension called Amino to apply my CSS changes on a domain-level.

            This fixes a lot of the whitespace and borders to make differentiating between posts and comments a little easier, while minimizing white space. I think it looks nice.

            EDIT: I’ve made a few more changes in terms of color.

            .container-lg {
                max-width: 1600px;
            }
            .col-md-8 {
                max-width: 80%;
                flex: 0 0 80%;
            }
            .col-md-4 {
                max-width: 20%;
                flex: 0 0 20%;
            }
            .col-sm-2 {
                max-width: 10%;
                flex: 0 0 10%;
            }
            .col-sm-9 {
                margin-left: 5px;
                max-width: 80%;
                flex: 0 0 80%;
            }
            .post-listing {
                border: 1px solid rgba(34,34,34,.125);
                border-bottom: 0px;
                border-color: #c80000;
                padding-top: 10px;
                background-color: #fff;
            }
            hr {
                display: none;
            }
            .border-top {
                border-top: 1px solid rgba(34,34,34,.125)!important;
            }
            .border-light {
                border-color: #e4e4e5!important;
            }
            body {
                background-color: #ecf0f1;
            }
            .navbar {
                background-color: #fff;
            }
            .card {
                background-color: #fff;
            }
            .comments {
                padding-left: 5px;
                background-color: #fff;
            }
            
            • crank@beehaw.org
              link
              fedilink
              English
              arrow-up
              2
              ·
              1 year ago

              thank you I like it! I hate when websites force me to have so much blank space. Like I remember what an improvement it was in 2002 when everyone got into sans serif fonts and padding to their table based layouts and using % widths, but the craft has moved on from those days… For this kind of website I am thinking more of a newspaper and less of a coffee table book.

              looks like Amino is only available for chrome and edge. For other ff users I will say I use an addon called Stylus but it might not be the best one; kind of resource hungry on big pages.

              • HrBingR@beehaw.org
                link
                fedilink
                English
                arrow-up
                2
                ·
                1 year ago

                Hey so just a heads up, I made a few more changes that I quite like (again, for the red theme, tweak appropriately for the default green theme), so thought I’d just update you.

                This changes the main feed quite a bit, adding a bit more of a card-like design to posts, though I have done my best to make sure there isn’t too much white-space from this change, I just feel it looks a bit more modern, but again, feel free not to use it :)

                It also, and this is my favorite change, changes the title color of any post you’ve visited, something that I feel is basic but for some reason Lemmy didn’t have before. So now any posts you’ve visited before will be a light-gray color instead. Hope you find some value here.

                .container-lg {
                    max-width: 1600px;
                }
                .col-md-8 {
                    max-width: 80%;
                    flex: 0 0 80%;
                }
                .col-md-4 {
                    max-width: 20%;
                    flex: 0 0 20%;
                }
                .col-sm-2 {
                    max-width: 10%;
                    flex: 0 0 10%;
                }
                .col-sm-9 {
                    margin-left: 5px;
                    max-width: 80%;
                    flex: 0 0 80%;
                }
                .post-listing {
                    border: 1px solid rgba(34,34,34,.125);
                    /*border-bottom: 0px;*/
                    border-color: #c80000;
                    border-radius: 5px;
                    margin-bottom: 8px;
                    padding-top: 10px;
                    background-color: #fff;
                    transition: all .2s;
                    box-shadow: 2px 2px 1px #c80000;
                }
                
                hr {
                    display: none;
                }
                .border-top {
                    border-top: 1px solid rgba(34,34,34,.125)!important;
                }
                .border-light {
                    border-color: #e4e4e5!important;
                }
                body {
                    background-color: #ecf0f1;
                }
                .navbar {
                    background-color: #fff;
                }
                .card {
                    background-color: #fff;
                    box-shadow: 2px 2px 1px #c80000;
                }
                .col-12 .card {
                    box-shadow: none;
                }
                .comments {
                    padding-left: 10px;
                    background-color: #fff;
                }
                a:visited .d-inline-block {
                    color:#d6d7d9!important;
                }
                .my-2 {
                    margin-bottom: 0px!important;
                }
                
                • crank@beehaw.org
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  1 year ago

                  Thank you for sharing! I will try it when i am on desktop.

                  I actually used your code as base to start to fix some things that bug me the most… all spacing/positioning the colors are a total mess. So i am interested to see what yours is like. I can tell from looking that yours is more efficient because i do not know what im doing so it is trial and error.

                  Do you think there is a better place than wherever we are to post? A repo or other code sharing? I think the stylus extension connects to some sort of website but i never investigated it.

      • Ghostalmedia@beehaw.org
        link
        fedilink
        English
        arrow-up
        5
        ·
        1 year ago

        Nice! I’m pretty new, so let me get a little bit more familiar with the platform, and I’ll craft up some stuff!

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

          Is there a way to follow you here? I’d like to see that. I’m working on being a designer and I’d like to see what others are coming up with.

            • Poke@beehaw.org
              link
              fedilink
              English
              arrow-up
              4
              ·
              1 year ago

              One option is to get a mastodon client/account and follow a user’s Lemmy address. A funny interaction of being in the fediverse :)

      • reka@beehaw.org
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 year ago

        How does this work with a federation model. Is it possible that there can be lots of different clients with different UX’es?

        • Skelectus@suppo.fi
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 year ago

          Lemmy backend and lemmy ui are separate components. Look up LemmyBB, that for example is an alternative to lemmy-ui.

        • 🦊 OneRedFox 🦊@beehaw.org
          link
          fedilink
          English
          arrow-up
          2
          ·
          1 year ago

          Fediverse platforms in general are just different UIs for the same content since they all interop to varying degrees. You can subscribe to and interact with Lemmy content from Mastodon, as an example.

          • chinpokomon@beehaw.org
            link
            fedilink
            English
            arrow-up
            0
            ·
            1 year ago

            Does that go in reverse too? Subscribing to a Lemmy instance, do I have a Mastodon account by extension? I thought they were different federated services, but being able to authenticate and authorize through one (or more) accredited account(s) would make sense for both services.

            • 🦊 OneRedFox 🦊@beehaw.org
              link
              fedilink
              English
              arrow-up
              1
              ·
              1 year ago

              Lemmy has yet to implement the functionality needed to follow non-Lemmy accounts, but it is in the todo list. You should check out kbin if you’re interested in a similar UI that currently supports this functionality.

  • Cass.Forest@beehaw.org
    link
    fedilink
    English
    arrow-up
    19
    ·
    1 year ago

    Hiya! Lemmy was actually one of the reasons I started learning Rust, but I do also know JavaScript, Python, a bit of Julia, C, C++, MASM, NASM, MIPS, a bit of TypeScript, and Java. I’ve worked on both frontend and backend although I think my expertise and comfort lies with backend primarily. I’m not sure if I’d be able to help with y’all’s issue as I’m not familiar with the Lemmy codebase, but I’d be willing to try and help debug the issue and hopefully get it under control.

  • BobQuasit@beehaw.org
    link
    fedilink
    English
    arrow-up
    14
    ·
    1 year ago

    I cannot code. 🫤

    But it occurs to me that we need a couple of features - although maybe they already exist.

    One is the ability to back up a Lemmy account and download the data.

    The other is account portability - the ability to move an account from one instance to another.

    But I suspect that #2 might be impossible.

    • Dessalines@lemmy.ml
      link
      fedilink
      English
      arrow-up
      17
      ·
      1 year ago

      We can definitely use all the help we can get. Luckily since lemmy and its UI is open source, we can embed all this highly popular functionality directly into lemmy-ui.

      • sailsperson@beehaw.org
        link
        fedilink
        English
        arrow-up
        9
        ·
        1 year ago

        I’d love it. I don’t hate the UI as it currently is, but I’d definitely appreciate some features, like the hotkeys RES has, or a tighter UI in general, with less padding and space between elements.

        To be fair, tweaking the UI is surely in my power and skillset, but UI is surely my least favorite part of development as a whole.

    • Zoop@beehaw.org
      link
      fedilink
      English
      arrow-up
      8
      ·
      1 year ago

      If I remember correctly, RES has basically been limping along in maintenance mode for quite a while now and there’s only one or two people left working on it - and only from time to time.

  • Mr. Frog@beehaw.org
    link
    fedilink
    English
    arrow-up
    11
    ·
    1 year ago

    Thanks for posting and writing all this up. I’ll take a good look at it if this is a Friday that work tickets decide to slow down.

  • SpacePirate@lemmy.ml
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    1 year ago

    Likely need to define some basic rbac controls. They signed up, sure, but don’t receive a “user” role until after approval. Then in the home page, when signed in with no roles assigned, they get a banner saying they’re still pending approval and will not be able to post or comment.

    The major concern will be retroactively applying user roles to the existing users.

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

      I’m a fan of this approach. That way, we can return a 200/201 on subsequent registrations for the case where an attacker would query if a user name already exists on an instance. If rejected, remove the account. If accepted, add the user role.

  • Blue@beehaw.org
    link
    fedilink
    English
    arrow-up
    10
    ·
    1 year ago

    I thought this was a mistake. I filled out an application early on and didn’t fill it out correctly. I expect that account was denied, but I did notice that the user was created the exact second I applied which was weird. I assume the username is now in a limbo state. Seems strange that lemmy would create an account before it’s approved.

    • jerkface@lemmy.ca
      link
      fedilink
      English
      arrow-up
      6
      ·
      1 year ago

      There needs to be something to approve or reject, after all. It could have been a separate table but this way is probably better ultimately, modulo current bugs. The same machinery can be used for suspending accounts and other steps in the account lifecycle.

  • SpaceCowboy639@beehaw.org
    link
    fedilink
    English
    arrow-up
    10
    ·
    1 year ago

    I’m a beginner with Rust, but a full-time web engineer with React/TS/PHP/SQL/etc experience. I’m a bit swamped at the moment, but I’m down to contribute eventually :)

  • karce@beehaw.org
    link
    fedilink
    English
    arrow-up
    9
    ·
    1 year ago

    I have Rust experience and will consider helping out. I’ve been wanting to help out Lemmy recently anyway.

  • beeboopbeep@beehaw.org
    link
    fedilink
    English
    arrow-up
    9
    ·
    1 year ago

    Is there a way we can minimize the stickies? It’s a quality of life but would be great to read it once and shrink it so I get to my feed quicker.

    • Gaywallet (they/it)@beehaw.orgOP
      link
      fedilink
      arrow-up
      7
      ·
      edit-2
      1 year ago

      We do not require an email at signup for many reasons. You do not have to provide one ever. We recommend having an email in case you get locked out of your account, but that’s your choice. We are not currently denying applications, so if you are in queue to be denied (there are currently >1000 individuals in this space) you will have to wait for a fix.

      There is no reapplying until this is fixed.

      • Admiral_Thrakus@beehaw.org
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        1 year ago

        Does this issue also explain why I didn’t receive an email to say I was successful and only discovered I was approved by just trying to login just in case or is that a separate issue? Edit: I am a fool. I don’t believe I supplied an email address… I’m off to a great start!

        • Gaywallet (they/it)@beehaw.orgOP
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          1 year ago

          We identified an issue with a few email providers blocking emails from our server, so we bought a new email address with a well-known provider to prevent this from being an issue. For those that registered with an email address, approvals should send an email. If you’ve registered in the past 24 hours with an email and did not receive one, please let us know on discord or matrix or reply and let us know here.

          If you did not register with an email, there is no notification in lemmy that lets you know of approval (also lodged in bug report).

  • SorteKanin@feddit.dk
    link
    fedilink
    English
    arrow-up
    8
    ·
    1 year ago

    as they didn’t write enough in their registration for us to really evaluate if they were a good fit for this instance.

    I’m just curious, what do you consider to be “writing enough”? How strict are you with your applications? I’m trying to learn from beehaw for my own instance.

    • Gaywallet (they/it)@beehaw.orgOP
      link
      fedilink
      English
      arrow-up
      12
      ·
      1 year ago

      We want them to fit in with our philosophy, so we’re looking that they paid attention to our rule, our ethos, and our ambiance. To be clear, we’re not making judgements, but if you leave it blank or only talk about federation, we can’t be certain that you will vibe with how we moderate and what we’re trying to do here.

      • SorteKanin@feddit.dk
        link
        fedilink
        English
        arrow-up
        11
        ·
        1 year ago

        Cool. Roughly how many % of applications do you deny? I’m starting to wonder if I should be stricter with my applications for the sake of “user quality”.

        I’ve found many applications simply fail to answer the questions. I guess this should at least be a minimum requirement.

        • Gaywallet (they/it)@beehaw.orgOP
          link
          fedilink
          English
          arrow-up
          28
          ·
          1 year ago

          I think we’re approving around half, but I’m not sure if that’s kept up today. To share my thoughts on the matter I’m extremely concerned about the possibility of this place moving the direction of echo chambers for a variety of reasons. I’ll probably make another philosophy post in the next week or so, but I’ve been very overextended between this, work, current healthcare issues (I’ve had 2 surgeries in the last two weeks 😩), stuff for pride month (I’m a leader at my work’s pride ERG, moderated a speaker today, speaking for a group next week, gotta help with SF pride, etc), and in general being busy in my social life as well so I haven’t really had a ton of time to contribute all my thoughts or put them on paper as I’d like to.

          • Zoop@beehaw.org
            link
            fedilink
            English
            arrow-up
            12
            ·
            1 year ago

            Oh my goodness! Please, please, please look after yourself and your health and wellbeing first and foremost!

            It sounds like we’re a lot alike, and I burned myself out overextending myself, like you’re doing, trying to help others so much for so long…my health issues got worse and now I can’t help anyone because I can barely even take care of myself! and it’s an awful feeling when previously helping others was my whole thing and reason for living.

            This may be unsolicited and TMI, but just wanted to caution you about what could happen. Look after yourself, please! You deserve it! Remember that you can’t help and look after others if you don’t help and look after yourself. Thank you for everything you’ve done and are doing already. Hang in there. <3

            • Gaywallet (they/it)@beehaw.orgOP
              link
              fedilink
              English
              arrow-up
              10
              ·
              1 year ago

              I greatly appreciate the feedback and I have taken a few steps back this week to ensure I’m not overextending myself. Thank you for looking out for me 🥰💜

              • Jon@lemmy.blahaj.zone
                link
                fedilink
                English
                arrow-up
                5
                ·
                1 year ago

                That’s great to hear – and well said @Zoop@beehaw.org. Burnout’s a huge risk in situations like this, so very glad you’re taking care of yourself.

      • SorteKanin@feddit.dk
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 year ago

        Hey, sorry to bother you again but I have a follow-up question. Maybe feel free to ping someone else that might be able to answer.

        How do you deal with users just signing up somewhere else and then interacting on beehaw anyway? I mean isn’t that effectively just circumventing the application process?

        • Gaywallet (they/it)@beehaw.orgOP
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          Probably most people interacting in our space are doing so through this method. It’s something we have always paid attention to. In the long, long run we will likely have to do something about it.

          Practically speaking we will likely have less tolerance for users like this who misbehave and we may have less discussions with them and simply ban and remove their content quicker.

          • SorteKanin@feddit.dk
            link
            fedilink
            English
            arrow-up
            2
            ·
            1 year ago

            In the long, long run we will likely have to do something about it.

            Do you have any solutions in mind? I’ve been trying to think of something but nothing quite feels right.

            Maybe having a setting like “Allow federated users to post” that you could disable, and then users from outside the instance can only comment, not post. That would at least cater the discussion somewhat to what the instance wants to talk about. It still feels very restricting though.

  • dlegan@beehaw.org
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    1 year ago

    I’m a react dev. I’m happy to contribute in my spare time, probably weekends and smaller issues. I noticed the client is built in inferno, which from a quick look appears to be fairly similar to react, so I’m sure I can be useful. I’ll have a look tomorrow, can see a large list of issues so I’m sure I will find something to do.