ZWQbpkzl [none/use name]

  • 1 Post
  • 64 Comments
Joined 3 years ago
cake
Cake day: April 8th, 2022

help-circle





  • The main alternatives to Kodi are Jellyfin and Plex but I suspect those will have the same problem if your library isn’t organized. How well are NOVA and Infuse handling your library? Like are they able to tell queue up the next episode of a TV show? Because Kodi is basically trying to be more like a local Netflix than “just a video player”.

    Jellyfin and Plex are web-based so you’ll get a a far more consistent experience across devices than Kodi. But they’ll generally expect Movies to be in one folder, TV shows in another, and will have some expectations of the file name. They won’t open the file to figure out what movie it is.













  • Yeah I only suggested obsidian because its so popular and is completely out-of-the-box.

    If you want everything exactly as you want it you’ll need to spend time coding it all yourself. Otherwise you’re shopping around for different tools for specific things. Some editor plugin for notes. Another for tasks. Another for reminders etc.

    My issue with task warrior was its syncing service taskd. It required that you generate a self signed ssl certificate. You couldn’t host it behind caddy. But all the issues listed I’m pretty sure it covers. Its extremely robust.


  • Is there a reason you’re not looking at tools explicitly built for this like orgmode, obsidian, task-warrior, etc? There’s a plethora of these tools and my experience with this is you really don’t want to over-engineer your productivity suite.

    That said, if you go the SQL route, sqlite is the way to go. Other SQL databases must be run as a daemon whereas sqlite operates on a local file directly.

    However any SQL database isnt going to have the CLI youre asking for. Its interface is… SQL, so you’re scripts are going to have a bunch of SQL code embedded that isnt easily reusable. A non-sql database will probably be better. I’m not familiar with them but I think there’s some that store their data as text files in a folder which is organized a certain way. But that starts looking like the tools I mentioned before.