#nobridge

  • 3 Posts
  • 115 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle





  • anamethatisnt@lemmy.worldOPtoAndroid@lemdro.idReminiscing about smaller phones
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    13 days ago

    I was thinking about trying another ROM on my old XZ1C but my banking apps wouldn’t run properly if I did that anyways.

    I can only imagine that your conviction is wrong. If we were large enough a market to make a nice profit then I imagine the smaller phones would still be around.
    With all the video that’s being consumed through phones today I kinda understand why most people prefer a larger screen too. I have friends who has neither tablets nor computers at home and if I didn’t have both of those I might even prefer a 6 inch screen myself.








  • I can only be another “everyone” and say go for a Synology. If you wanna run services on your NAS then the DSM is a godsend. The 423+ sounds like a good fit, might wanna grab a RAM upgrade for it though.

    edit: As you mentioned Jellyfin - if you wanna stream video you definitely want the 423+ and not the 923+ as the AMD Ryzen R1600 lacks GPU to transcode video streams.




  • Alternatively, you can create new users from the command line.
    This can be done as follows:

    If synapse was installed via pip, activate the virtualenv as follows (if Synapse was installed via a prebuilt package, register_new_matrix_user should already be on the search path):

    cd ~/synapse
    source env/bin/activate
    synctl start # if not already running
    Run the following command:
    register_new_matrix_user -c homeserver.yaml
    This will prompt you to add details for the new user, and will then connect to the running Synapse to create the new user. For example:

    New user localpart: erikj
    Password:
    Confirm password:
    Make admin [no]:
    Success!

    This process uses a setting registration_shared_secret, which is shared between Synapse itself and the register_new_matrix_user script.
    It doesn’t matter what it is (a random value is generated by --generate-config), but it should be kept secret, as anyone with knowledge of it can register users, including admin accounts, on your server even if enable_registration is false.

    https://element-hq.github.io/synapse/latest/setup/installation.html