> [!multi-column] > >> [!note] Ideas for papers >> >> ```dataview LIST WITHOUT ID file.link FROM #paper/idea WHERE !contains(file.folder, "templates") SORT file.ctime ASC > [!multi-column] > >> [!note] Current Papers >> >> ```dataview LIST WITHOUT ID file.link FROM #paper/current WHERE !contains(file.folder, "templates") SORT file.ctime ASC # Notes > [!multi-column] > >> [!summary]- Created Today >> ```dataview >> LIST WITHOUT ID file.link >> FROM "" >> WHERE file.cday = this.file.day AND file.name != this.file.name >> SORT file.ctime ASC >> ``` > >> [!example]- Modified Today >> ```dataview >> LIST WITHOUT ID file.link >> FROM "" >> WHERE file.mday = this.file.day AND file.name != this.file.name AND file.cday != this.file.day >> SORT file.mtime ASC >> ``` > [!multi-column] > >> [!danger]- Created Yesterday >> ```dataview >> LIST WITHOUT ID file.link >> FROM "" >> WHERE file.cday = date(this.file.day-1) AND file.name != this.file.name >> SORT file.ctime ASC >> ``` > >> [!info]- Created Two Days Ago >> ```dataview >> LIST WITHOUT ID file.link >> FROM "" >> WHERE file.cday = date(this.file.day-2) AND file.name != this.file.name >> SORT file.ctime ASC >> ``` > [!multi-column] > >> [!abstract] Recent Thoughts >> ```dataview >> LIST WITHOUT ID file.link >> FROM #thought >> WHERE date(today) - file.cday <= dur(14 days) >> SORT file.ctime DESC >> ``` ## Quick Links > [!multi-column] > >> [!example] Quick Links >> ```dataview >> LIST WITHOUT ID file.link >> FROM #quicklink >> SORT file.cday DESC >> ``` # [[Scratch Pad]]