~ [[Efforts]] > [!mountain] [[Areas]] | [[Projects]] | **[[Works]]** Works are things we create. This note represents the third step in the ARC Framework, [[Communicate]], and shows both works you've shared and works in progress. The following collection shows works in progress (WIPs), sorted by rank. KEY: 🖋️ Articles | 🗞️ Newsletters | 🎤 Talks | 📹 Videos | 📄 Documents ```dataview TABLE WITHOUT ID choice(type = "work" AND work-type = "article", "🖋️ " + file.link, choice(type = "work" AND work-type = "document", "📄 " + file.link, choice(type = "work" AND work-type = "artifact", "💠 " + file.link, choice(type = "work" AND work-type = "lesson", "📓 " + file.link, choice(type = "work" AND work-type = "lyric", "🎵 " + file.link, choice(type = "work" AND work-type = "newsletter", "🗞️ " + file.link, choice(type = "work" AND work-type = "slide", "🛝 " + file.link, choice(type = "work" AND work-type = "talk", "🎤 " + file.link, choice(type = "work" AND work-type = "video", "📹 " + file.link, choice(type = "work" AND work-type = "walkthrough", "🥾 " + file.link, file.link)))))))))) as "Works in Progress", rank as "Rank", type as "Parent Folder" WHERE rank and contains(collection,[[Works]]) SORT rank DESC LIMIT 11 ``` --- # All Shared Works Here is a list of all shared works, sorted by the most recent `published` date. ```dataview TABLE WITHOUT ID choice(type = "work" AND work-type = "article", "🖋️ " + file.link, choice(type = "work" AND work-type = "document", "📄 " + file.link, choice(type = "work" AND work-type = "artifact", "💠 " + file.link, choice(type = "work" AND work-type = "lesson", "📓 " + file.link, choice(type = "work" AND work-type = "lyric", "🎵 " + file.link, choice(type = "work" AND work-type = "newsletter", "🗞️ " + file.link, choice(type = "work" AND work-type = "slide", "🛝 " + file.link, choice(type = "work" AND work-type = "talk", "🎤 " + file.link, choice(type = "work" AND work-type = "video", "📹 " + file.link, choice(type = "work" AND work-type = "walkthrough", "🥾 " + file.link, file.link)))))))))) as "Shared Works", published as "Published" WHERE type = "work" SORT published DESC LIMIT 55 ``` --- Back to [[Efforts]]