I've seen so many 10" servers that look amazing from the front and very polished, but then having a rats nest of cables and a mess at the back.

After 62 iterations and many 3D prints, blood, sweat, profanity and tears. I my design and implementation is finally done. image
I used Hexagons where possible, because as you know, Hexagons are the bestagons

This is Before:
image

And the After:
image
The ducky adds 200MHz

The front of my mini-rack is actually still somewhat of a mess, I thought I'd focus on the back first.

I've published it in excruciating detail on my GitHub Leave a Star if you like what you see.

I self host a bunch of stuff on here to get away from Big-Tech, and because I find it fun. For a lot more details see https://erasmus.works/

It always bothered me the the fronts of racs are modular, but not the backs, this solves that
If you have any questions feel free to ask, hopefully this helps other clear up their rats nests.

you are viewing a single comment's thread
view the rest of the comments
[–] 5 points 9 hours ago (1 child)

It seems that using multiple remotes is also possible. So instead of syncing two repos, push to both at once.

https://git-scm.com/docs/git-remote#Documentation/git-remote.txt-set-url

https://stackoverflow.com/questions/849308/how-can-i-pull-push-from-multiple-remote-locations/12795747#12795747

git remote set-url origin --push --add user1@repo1
git remote set-url origin --push --add user2@repo2
git remote -v
  • source
  • parent
  • hideshow 1 child comment
  • [–] 4 points 9 hours ago*

    You can, but you can also run into some issues if you have git LFS, if one rejects for whatever reason, or sometimes just branch issues.

    Thats why I prefer to go to one repo and push out from there, but it is absolutely doable with git by itself.

  • source
  • parent