• 49 Posts
  • 466 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle

  • but I don’t see how what I am proposing would make things more difficult?

    Now when a user reports a troll, the report goes to the moderators of the community. But in special cases the admins of the user instances should deal with banning. So the admins of the community instances have to deal with reports, but the solution is at the hand of the user instance admins. It’s the same as dealing with users from other instances, but an edge case.

    My recommendations would be something like this: (I’m just a random user, so it’s just my point of view)

    • Shut down the fully inactive instances. Noone will even even notice it
    • Merge the semi active communities to a handful of instances, like sports and technology… . I’ve seen active communities move instances, it would be possible, take a look how !europe@feddit.de migrated to !europe@feddit.org. Give enough time for subscribers to notice and subscribe to the new one.
    • Allow registration of moderators on these instances, so they can work around the current limitations of moderation tools. Maybe an invite only solution or something like this.
    • You could find help more easily if you look for admins for 3-4 instances instead of for 18 instances.

    This would be useful for you and other admins, because you would have to admin much less number of instances. They would be still considered small instances, compared to big one, so you still not at the “too big to fail” level. For users it would help community discovery, there are overlap between followers of similar topics, e.g. I have friends who follow both European football and NBA at the same time, I read both selfhosting related topics and about general tech support, etc…




  • Xiaomi’s reasoning was they produce different phones for Chinese internal and for global market. A lot of scalpers bought the Chinese version, took it outside China, flashed a global rom and sold it. Chinese versions have limited frequency support and sometimes different chipsets, the problem was buyers of these phones nagged to Xiaomi’s support and left bad reviews, even though it wasn’t Xiaomi’s fault.

    Yes, it sounds bullshit, I’m just illustrating, that if you ask companies for reasons, they can tell you some similar stories.

    The good part, is that bootloader opening workflow was not the best, but at least acceptable for me compared to Asus’. You had to register your IMEI with a Xiaomi account, than wait a week and you could open it (This was the workflow like 5 years ago, and I still have the same phone, I don’t know if they changed it). This way they could slow down the scalpers, and they could see if someone want to mass open a lot of phones at the same time.






  • infeeeee@lemm.eetolinuxmemes@lemmy.worldIt is called 🍷
    link
    fedilink
    arrow-up
    24
    ·
    edit-2
    9 days ago

    No, it’s just remote. Remote desktop is now also called Windows, also the operating system you are connecting to is called Windows.

    Gnome has relatively good rdp support, so with this you could use Windows (the app) on Windows (the os) to connect to you Linux machine running Gnome.

    It seems deliberately confusing naming is working as expected, Microsoft marketing team should get extra raise.









  • One of them is a laptop, why ssh to the server isn’t an option? Set up tmux on the server so it always connects to the same session, so you can just continue where you left last time. If you need desktop support, rdp in gnome works really well.

    E.g if you connect with this command, and tmux is installed on the server, it will start a new session named “main”. If a session with that name exists it will connect to that:

    ssh -t pi@192.168.1.2 tmux new-session -A -s main

    Add something to .bashrc on the server to always do the same if you work on that phisically:

    if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
    tmux new-session
    fi