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

help-circle



  • I do and it’s fine.

    I used to have a separate machine for server stuff but it just cost more in electricity since I would leave them both on 24x7 anyway.

    I’ve got 64G of ram and I often use up to 48 of it with various VMs. I wouldn’t get any power savings with a separate server since I have a cron job to transcode everything that plex recorded off of TV during the day to av1 for disk space savings (usually turns 3GB of mpeg2 into 700MB of av1), so I would need a server with a moderately powerful cpu anyway for that.

    I have a ryzen 3700X. got it since it was the highest performance that was still 65w tdp at the time, didn’t want to spend a ton on electricity and extra air conditioning since I would be leaving it running 24x7.

    The only time I notice a performance impact during gaming is if my windows 11 vm is running, I don’t really need that one running 24x7 so I shut that one down if it happens to be running at the time.





  • It’s the worst trying to use git on a capitalization insensitive filesystem, like on mac’s default.

    mv DockerFile Dockerfile

    git says there are no changes.

    Had to

    git mv DockerFile Dockerfile1

    git commit -am “rename file”

    git mv Dockerfile1 Dockerfile

    git commit -am f

    git rebase -i origin/master

    and squash the last 2 commits together

    I ended up making a new volume on my mac specifically to hold git repos that was capitalization sensitive so I don’t have to deal with that shit.