Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
-
No low-effort posts. This is subjective and will largely be determined by the community member reports.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
Hey, thank you for this! I'll test it later. I was planning to eventually do the same thing (and in rust too).
Thus said, something that I always find impractical with simple todo lists, is that you cannot use it with subtasks. For example, if I want to manage a large project with it, I would need to create a task "Refactor this worker", and add subtasks "Delete old function", "Handle the new property", etc.
I cannot flatten the subtasks in the list because their names wouldn't be explicit, and making their names explicit would make it a burden to read, and it would make it difficult to follow the main task progress. How do you handle such things with your software?
My pleasure! :)
Subtasks is the main reason I made this program. I have it in the "Tasks" Android app and I wanted it on desktop too.
The main way it's implemented is clicking on
Linknext to a parent task in the GUI (or selectingyankin the TUI), then selectingChildon another task makes it a sub-task of the parent.I've also implemented part of
RFC 9253 Support for iCalendar Relationships(Blocked-Bylogic); after selectingLink/yankon a parent task, there is also the option to selectBlockon another task and the blocked task appears grayed out and lists the tasks that are blocking it in its description. This is something I haven't seen in any other CalDAV tasks software and the only thing I would have missed from something like Jira.And of course one can filter by tags/categories (with AND or OR) so only a (sub-)project is shown (and I've added tag aliases, e.g.
#refactor_this_workercould autocomplete to#refactor_this_worker,#program_name,#software_development, to make that more convenient).Parent/child:
Blocked-by: 
Interesting! I'll definitely have a look 🙂