this post was submitted on 02 Sep 2024
223 points (98.3% liked)

Programming

17020 readers
260 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

There are a couple I have in mind. Like many techies, I am a huge fan of RSS for content distribution and XMPP for federated communication.

The really niche one I like is S-expressions as a data format and configuration in place of json, yaml, toml, etc.

I am a big fan of Plaintext formats, although I wish markdown had a few more features like tables.

you are viewing a single comment's thread
view the rest of the comments
[–] matcha_addict@lemy.lol 15 points 2 weeks ago (1 children)

I wish there was a good open standard for task management or todo list.

I know there's todo.txt, but it lacks features like dependent tasks, and overall the plain text format limits features and implementations.

[–] randy@lemmy.ca 10 points 2 weeks ago (1 children)

I think CalDAV (which uses the iCalendar format) may be the closest thing. It covers calendar items, obviously, but also task and journal items.

[–] matcha_addict@lemy.lol 4 points 2 weeks ago (1 children)

Do you know if it allows dependent tasks?

[–] randy@lemmy.ca 8 points 2 weeks ago* (last edited 6 days ago) (1 children)

Yes, but not all clients expose dependent tasks (which is sadly a common issue with open standards: they aren't always properly implemented). I'm using Tasks.org on my phone (which supports dependent tasks), synchronizing to a Nextcloud server with the Tasks app (which supports dependent tasks now, ~~but didn't for a long time~~), which also syncs to Thunderbird (which does not appear to show dependent tasks as dependents).

Edit: remembered that the Nextcloud Tasks app has long supported dependent tasks. I was thinking of recurring tasks, which it does not support. Again, open standards aren't always fully implemented.

[–] matcha_addict@lemy.lol 3 points 2 weeks ago

Well that's still good news that I didn't expect! I suppose I will look into that then. Thank you!