• 1 Post
  • 9 Comments
Joined 8 months ago
cake
Cake day: January 19th, 2024

help-circle



  • That’s what I meant when I wrote “Git submodules can only point to a whole different repository” - they can’t point to a path inside a repository, only to another repository root. That unfortunately renders them useless for me (I’d have to set up in the order of hundreds of small repositories for the sets of shared data I have).


  • I’m already using Git for source code related versioning, but some use cases involving large binary files with partial updates aren’t well covered by Git (I’ve gone into some detail in my reply to @vvv@programming.dev).

    There’s also the lack of svn:externals in Git. Git submodules can only point to a whole different repository as far as I’m aware.


  • I’m already using Git, thus my experience with Gitea. I am well versed with svndumpfilter and git-svn to extract and migrate individual Subversion repositories to Git.

    I’m not only hosting code, but I have several projects involving large binary files with binary changes. Git’s delta compression algorithm for binary files is so-so. Git LFS is just outsourcing the problem. Even cloning with --depth 1 --single-branch gives me abysmal performance compared to Subversion.

    So I’m still looking for a nice WebUI to make my life with the Subversion repositories I have easier.




  • It did change on thing for me: it made me drop support for Oculus in my game dev project.

    I still own an Oculus DevKit 2. But after wildly succeeding with his Kickstarter, the founder has done nothing but jerk moves. First he silently dropped Linux support, then he funded a pro-Trump troll army on Reddit and finally he sold his entire VR company to Facebook/Meta, which then did its own jerk move by rendering everyone’s hardware useless if they didn’t sign up to Facebook/Meta. My Oculus account was forcefully obliterated just a week ago.

    What a complete nosedive that was.

    They had the nicer tech (Oculus uses infrared LEDs around the headset that are filmed by special cameras to track your orientation, i.e. it’s steady state – HTC Vive / Valve Index have light-sensing diodes on the headset itself and their lighthouses swipe light curtains horizontally and vertically through the room, with an annoying whining noise and all the wear & tear from constantly rotating parts), for a while, Meta even had John Carmack polishing the system.

    I still hope VR will not completely die. Half Life: Alyx was fun, some archery, zombie shooting and climbing games were highly enjoyable and I could well imagine getting into sculpting / 3D modelling that way if only the tools were better.

    But if, as the HTC exec in the article says, Meta has defined the “market perception of what this technology should cost” (and they’re producing at a loss, too), then Meta has walled off most of the VR market to Facebook boomers (sorry, Meta boomers) and is hogging the more robust tracking tech for itself, too.


  • I’m on OpenRC, so I can’t say anything about systemd, but I have several SSHFS mounts (non-auto) listed in my fstab:

    sshfs#root@192.168.0.123:/random-folder/ /mnt/random-folder fuse noauto,uid=1000,gid=100,allow_other 0 0

    Is that similar to what you’ve tried in your fstab? I’d assume replacing noauto with auto should just work, but then again, I haven’t tried it (and rebooting my system right now would be very inconvenient, sorry).

    It also might require you to either use password-based login and specify the password or store the SSH keys in the .ssh directory of the user doing the mount (should be root with auto set).