• 3 Posts
  • 9 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle




  • Assuming a key akin to “deadline”, you could use or adapt the following:

    WHERE dateformat(deadline, “yyyy-MM-dd”) <= dateformat(date(today), “yyyy-MM-dd”)

    Or work with note creation date:

    WHERE dateformat(file.date, “yyyy-MM-dd”) <= dateformat(date(today), “yyyy-MM-dd”)

    Instead of “today” use “this.file.name” when working with daily notes as in your case.

    To have the list be divided into completed and unfinished, skip the “!completed” and instead use:

    SORT completed

    Add DESC to reverse order.

    Another option would be to have two separate dataview queries. One for completed and one for unfinished tasks.



  • Thank you! This is pretty much how I go about it, but the manual work load is still great.

    In my case it is the adoption of LATCH, a concept I only encountered after I had already been using Obsidian for some time. Not to mention that my LATCH template already changed once or twice, until I found what works for me, but this still leaves the possibility open for future changes to it and another round of mass edits. Deciding on a more fundamental level, if and how or if at all I should address these changes is a question that I have not yet found a decisive answer to.


  • Well it’s not just meta data. I write only the bare necessities in an actual YAML header, the rest of the front matter goes into a comment section below that. This gives me the option to add links as meta data. What I would like to do is to embed older notes with LATCH. This would help with cataloging and indexing, which would in turn help with identifying merge-able topics, relating topics and reviewing notes.




  • Yes, of course.

    Dataview let’s you list notes, which contain certain keys. So you can index your notes automatically.

    One can for example add category: and date: to the YAML and then use a dataview snippet like the following to list all work related notes and sort them by latest:

    LIST

    WHERE category = work

    SORT date desc

    With more keys you can make more conditions or show more information in a table. For example deadline: or urgency: in the YAML.

    You can also check for notes, which are missing information in their YAML through:

    TABLE

    WHERE !category

    There are lot of tutorials and the documentation online, if you want to know more.


  • I am surprised that nobody mentions dataview plugin… The thing about ToDos is that you need a central place to display them. This can be done with a dataview snippet in a ToDo-Note and Dataview is perfect for task keeping since you can add any type of key to your notes and display those in a sorted table as well, e.g. Deadline, Urgency, Workload, Parent-Note.

    It’s not sending you automatic reminders though, so if you are not habitually checking your ToDo-Note you might benefit from setting a reminder for that and eventually building the habit.