I don’t trust that fish

  • 0 Posts
  • 29 Comments
Joined 7 months ago
cake
Cake day: December 14th, 2025

help-circle


  • I think it means that stuff is always kinda bothering us and weighing us down and hasn’t been fully processed. when we lay down to sleep our brain is at rest and able to bring it forward to process it but we dont actually ever spend full conscious effort to do so. Almost holding onto it by not allowing ourselves to resolve it. At least thats just what I think I can’t know for sure. Ive started practicing writing them down and how to resolve it. Sometimes the answer is to just be content with it and let it go as a learning experience. Others ive gone to people and said I was sorry and they usually dont even remember and are like “oh no big deal” but it was to me apparently or I wouldn’t be thinking about it at 3AM cringing myself out XD spending the conscious effort though has seemed to help me come to terms with some stuff and those ones, at least, don’t come back randomly.

















  • You can just use a USB. Cloning your directories and copying them over is how backups work. Copying the files over as they belong accomplishes installing the game.

    Cloning on Linux

    Use the rsync command in Bash to clone directories.

    1. Open Terminal
    2. Command:

    rsync -avh /path/to/source/ /path/to/destination/

    Replace /path/to/source/ with the path of your game directory. Replace /path/to/destination/ with the path to where you want to clone the directory.

    On Windows

    You can use PowerShell

    1. Right click PowerShell; run as admin
    2. command:

    Copy-Item -Path “C:\path\to\source*” -Destination "C:\path\to\destination" -Recurse

    Replace C:\path\to\source\ with the path of your game directory. Replace C:\path\to\destination\ with the path for where you want to put the files. Probably the USB