> [!WARNING] Tracking is enabled > I use Google Analytics to track non-identifying behavior like amount of visitors on the website and time spent on each note to know what people are interested in. However, I value qualitative metrics much more so I am open to hearing from you :) ## Notes After 3 years, 1000+ hours, 7000+ total notes, I'm narrowing down on a system that works for my core pillars of [[Life Design]], [[Productivity]], and [[Personal Knowledge Management]]! (5000 notes are still in my old vault that I have yet to transfer) You can view the philosophy, systems, and workflows for yourself in [[Ultimate Starter Vault]]. To understand my personal significance of having digital galaxy, you can start with understanding the [[Digital Universe]]. I do this to respect [[The importance of imperfect digital gardens in metric-driven social media]]. For actual navigation, you can return to [[My Home]]. ## Housekeeping ### Random text at top of note That's called [[Metadata]], the properties of my notes I use to store information. ### Unsupported code blocks If you see random code blocks like: ```dataview table from #sometag where field != "value" sort file.ctime ``` then just pretend that there's notes there ;) Unfortunately since I'm now using [[Obsidian Publish]], these code blocks to query for certain notes in my vault are not fully supported as of yet. I am trying to bypass this by [[Render Obsidian Dataview Queries in Obsidian Publish]] but this will only be done for the most important queries in [[My Obsidian Publish Queries]]. There can also be other ones: - [[DataviewJS]] queries for custom renderring - Obsidian Charts plugin - [[Obsidian Tracker Plugin]] You can see them rendered in my related videos, but unfortunately they are not supported either 🥲 ## Tasks - [ ] Set up info buttons for certain types of note types based on tag - [ ] Random note ## Queries ### Projects ```dataview table Deadline FROM #project AND [[]] AND !"Hidden" AND !outgoing([[]]) SORT Deadline asc ``` ### Inputs ```dataview table Status, Author FROM #input AND [[]] AND !"Hidden" AND !outgoing([[]]) SORT file.mtime desc ``` ### Other Notes ```dataview table Created FROM [[]] AND !#project AND !#input AND !"Hidden" AND !outgoing([[]]) SORT file.mtime desc ```