git-annex is something to consider too. It's kind of like git LFS in that it doesn't directly store files in the git repo (so the files can be enormous or change frequently without all the overhead of commits in git), but it's more flexible and allows you to direct the files to be stored and retrieved from many different types of file stores (network drives, piles of discs/burned CDs/USB drives, S3 storage, etc.). Basically throw all your music files wherever you want, tell git-annex where they live, and then ask it what music you want on what machines and it will do the rest to go figure out what needs to happen to materialize those files in the right locations.
I'd be leery of storing the music files in a git repo directly as MP3 tags and metadata are a wild west and some music players do wacky things like update ID3 tags with play counts, etc. on every listen (which would require committing and pushing music on every listen!).
Mine has learned exactly what corners to yell into such that their cry/meow echoes and reverberates everywhere so it can't be ignored. It's kind of impressive how smart and adaptable cats are, lol.
Is there some kind of bug or issue with HN comments? Maybe a bug in a client people are using? I've noticed over the last couple days what appear to be comments like this one above that are completely unrelated to the post. It almost seems like they were made in error or associated with the wrong post.
I've also noticed playback of DVDs is terrible these days too. Long ago I ripped my DVD collection to iso files so I could preserve the full experience of the menus, etc. But almost nothing these days supports DVD iso playback and menus, not even VLC! The only software I can get to work to play them is Kodi. It's wild how much DVD software has disappeared, I don't remember it being this bad 20 years ago.
You definitely should, I know some folks that keep their huge TV on 24/7 because they like the pretty screensaver and photos it shows when idle. These same folks take a lot of other steps in their life to try to help the environment (recycle, drive electric cars, etc) but simple stuff like turning things off completely confounds them.
Totally agree, so many things people get strong feelings about customizing workflows--note taking, todo lists, personal document management, inventory of goods, etc.--are really just a sqlite database with some nice custom views and interfaces. I could definitely see a future where datasette or similar tools can replace some of that stuff.
Access is probably caught in a weird spot internally at MS. If they put effort into it then it just removes some of the need to sell proper SQL server or azure cloud database tech. Better to just limp it along then start internal wars with bigger organizations/products.
I think of it more like MS Access but a sane backend of sqlite and python. There are thousands and thousands of critical business processes cludged together in Excel and Access--datasette could be a much better choice for those use cases. Something both devs and business people can use.
Yeah I wish more modern retro games would embrace the mostly flat shaded polygon aesthetic of mech 2 and similar games. There's a certain 80's future cool to early polygon graphics before it all became texture-mapped hyper realism.
Wow I wonder how much record of the arab spring protests and uprising are now lost forever. Those protests were all around 2010 to 2012 or so and was in my mind what really pushed Twitter into the public consciousness. I hope the Library of Congress managed to archive all that stuff like they said they would years ago, it would be a big loss to historians for it to disappear overnight.
I agree, and to solve this problem I say we nationalize and socialize healthcare to provide it to all citizens free of cost just as they do in many African and other countries. This will remove the need to have any healthcare CEOs entirely.
Distributed RPC, i.e. dbus over the network, is an incredibly complex and still basically unsolved problem. To really do it right and guarantee correctness across systems (which may be in different states of working or failed!) you need a perfect message queue with exactly once delivery... but in practice implementing that is incredibly storage intensive (you'd have to store every message forever). You're basically asking for something as complex and difficult to run as kafka--it's not as simple as just send dbus messages over a network socket.
Systemd doesn't remove any control, and in fact gives a lot of extra control over things like process dependencies, environment, etc. The big complaint people had/have really just boils down to someone moved the cheese--your bespoke and brittle startup scripts are now declarative config files. Some people had to learn something new and that _really_ angered them.
Unix domain sockets or FIFOs could be an alternative, but you'd have to do all kinds of complexity to support pub/sub style many to many communication over them (which is what dbus effectively does for you).
I'd be leery of storing the music files in a git repo directly as MP3 tags and metadata are a wild west and some music players do wacky things like update ID3 tags with play counts, etc. on every listen (which would require committing and pushing music on every listen!).