this post was submitted on 28 Apr 2025
6 points (80.0% liked)

Programming Circlejerk

161 readers
13 users here now

Community to talk about enlightened programming takes

Rules:

founded 2 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 23 hours ago* (last edited 23 hours ago) (2 children)

In the comments, they state that it is point cloud data for gaussian splatting. I don't know what that is, but I suspect is is information that may not be best handled by git.

Edit: and high fidelity extended reality content.

Edit3: yeah, it looks like they are putting large amounts of binary data in the repo.

[–] [email protected] 1 points 7 hours ago

they're putting large amounts of binary data in git lfs, which is what it was designed for. lfs does have some rough edges though. if I had something really heavy on binary blobs, ex a large game or similar, idk if I'd be using git either. he extrapolates way too far though, most use cases don't run into any of these problems

and storing all that in a separate db is insane, it's stuff that should be versioned with the code. it's likely being created at a specific rev for the current code, and it evolves with it. if you git revert or create a pr, it should be part of that. it's not like they committed built binaries or smth. there should be tools able to handle this. git could be one of them if lfs was less rough

[–] [email protected] 0 points 14 hours ago

Sounds like he needs to lean about databases (or at least, about the fact you don’t commit the database to version control 😅)