I had an account on lemmy.one and now the instance has been down for a day or two so I made this new account. I also heard other small instances are dead or disappeared.

So which ones do you think will actually stick around for a long time?

ALSO, does anyone know how to get my subscriptions from lemmy.one and import it here? TIA!

  • @lemming934
    link
    English
    211 months ago

    Here’s a thread where I helped someone else with the process on windows: https://lemmy.sdf.org/comment/1420339

    The steps are:

    1. Set up the python code
      1. Go to https://github.com/wescode/lemmy_migrate/releases/tag/v1.1.0
      2. Download the zip file
      3. Extract the zip file, to make a folder somewhere on your system called lemmy_migrate-1.1.0. Remember where this folder is
      4. Inside the folder you will find a file called config.ini. Use notepad to edit the file to have your server URL and login credentials.
    2. Set up the python interpreter
      1. Install python from https://www.python.org/downloads/
      2. Open powershell
      3. install the python package requests by pasting the following command into powershell: py -m pip install --user requests
    3. Use the python interpreter to interpret your python
      1. first make sure powershell is looking at the correct folder. One way to do this is to open the lemmy_migrate-1.1.0 folder in windows explorer. right click on the box that shows you the path, and copy the text. then write cd <pasted path> in powershell. This path will very likely be something like C:\\Users\Wu9fee\Downloads\lemmy_migrate-1.1.0. If you don’t want to copy and paste the path from explorer, you can just do cd Downloads then cd lemmy_migrate-1.1.0
      2. Finaly, you can run the python command with py lemmy-migrate.py -c config.ini

    Let me know if you run into any problems.

    If you can pull this off, you can officially say you know how to code.

      • @StrawberryPigtails@lemmy.astaluk.icu
        link
        fedilink
        English
        211 months ago

        Not too hard. Just alot of unfamiliar vocabulary. 😄 If you run into any questions with either of our walk throughs, (my linux one or @lemming934@lemmy.sdf.org 's Powershell one), feel free to DM me. Don’t mind helping folks starting their exploration of computers. We all started somewhere.

      • @lemming934
        link
        English
        111 months ago

        It’s not too bad, it seems more difficult because I added all the steps. Changing the folder PowerShell is looking at is easy to do, but hard to explain.