Avatar by eveoart. Artwork - Artist

  • 0 Posts
  • 5 Comments
Joined 2 years ago
cake
Cake day: June 9th, 2023

help-circle


  • I’m disappointed, but not surprised… I have followed since the first announcement and gave up hope around 2020. Every dev update was “we made 1 step forward and 5 back” with no real substance to show for it.

    Assuming the trailers are real gameplay though, it looks like they could have and should have released an alpha years ago. Not sure how they thought it wouldn’t work as Minecraft released in pre-alpha and it worked out in the end. A shame we’ll probably never see the code or even a compiled build from all these people’s work.


  • on most of my systems I get tired of constantly lsing after a cd so I combine them:

    cd(){
        cd $1 && ls
    }
    

    (excuse if this doesn’t work, I am writing this from memory)

    I also wrote a function to access docker commands quicker on my Truenas system. If passed nothing, it enters the docker jailmaker system, else it passes the command to docker running inside the system.

    docker () {
            if [[ "$1" == "" ]]; then
                    jlmkr shell docker
                    return
            else
                    sudo systemd-run --pipe --machine docker docker "$@"
                    return
            fi
    }
    

    I have a few similar shortcuts for programs inside jailmaker and long directories that I got sick of typing out.