the following code is meant for Obsidian DataView plugin and currently does not work on the website
TABLE WITHOUT ID file.link as Date, choice(mood >= 5, "✅", "❌") as Mood, choice(caffeine >= 1, "✅", "❌") as Caffeine, choice(Exercise >= 30, "✅", "❌") as Exercise, choice(Git >= 1, "✅", "❌") as GitFROM "notes/daily"WHERE contains(file.name, "2025-03")SORT file.day ASC
Balatro Stats
TABLE WITHOUT ID file.link as Date, choice(A♠️ >= 1, "✅", "❌") as A♠️, choice(K♠️ >= 1, "✅", "❌") as K♠️, choice(Q♠️ >= 1, "✅", "❌") as Q♠️, choice(J♠️ >= 1, "✅", "❌") as J♠️, choice(T♠️ >= 1, "✅", "❌") as "10♠️" FROM "notes/daily" WHERE contains(file.name, "2025-03") SORT file.day ASC
Daily Notes
Note
the following code is meant for Obsidian DataView plugin and currently does not work on the website
table without IDfile.link as Link,"["+file.name +"]]" as Datefrom "notes/daily"WHERE contains(file.name, "2025-03")sort file.name ASC
Tasks
Due
Note
the following code is meant for Obsidian DataView plugin and currently does not work on the website
not donedue 2025-03
Completed
Note
the following code is meant for Obsidian DataView plugin and currently does not work on the website
donedue 2025-03
Moments of the Month
Note
the following code is meant for Obsidian DataView plugin and currently does not work on the website
TABLE WITHOUT ID file.link as Date, mood as MoodFROM "notes/daily"WHERE contains(file.name, "2025-03")SORT file.day ASC