quot; + cost-per-month + "/month)" WHERE (contains(program-type, this.filter-type) OR this.filter-type="all") AND (contains(program-access,"iOS") AND (contains(program-access,"browser") OR contains(program-access,"Publish to Web"))) AND !(contains(file.path,"fileClass")) sort file.name ``` ## Lists [AWS (Amazon Web Services)](https://aws.amazon.com/) ### Entertainment #### Media Service Provider Used to read e-books, listen to music, listen to podcast, watch shows, or watch movies ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Media Service Provider") and !(contains(file.path,"fileClass")) sort file.name ``` ### Productivity #### Second Brain [[Second Brain]] is a catch-all for everything in life - notes, research, tasks, events, lists, etc ![[Query Second Brain]] #### Project Manager A complex version of a task manager, meant for group collaboration on large projects. Has task properties such as who the task is assigned to and views such as Gantt chart. ![[Query Project Manager]] #### Tasks Manager ![[Query Tasks Manager]] #### Note Taking ![[Query Note Taking]] #### Calendar ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Calendar") and !(contains(file.path,"fileClass")) sort file.name ``` #### Database ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Database") and !(contains(file.path,"fileClass")) sort file.name ``` #### Automation ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Automation") and !(contains(file.path,"fileClass")) sort file.name ``` #### File Management ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"File Management") and !(contains(file.path,"fileClass")) sort file.name ``` ### Developer Use #### Command Line Interface [[Command Line Interface|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Command Line Interface") and !(contains(file.path,"fileClass")) sort file.name ``` #### Source Code Management [[Source Code Management|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Source Code Management") and !(contains(file.path,"fileClass")) sort file.name ``` #### Analytics Engine ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Analytics Engine") and !(contains(file.path,"fileClass")) sort file.name ``` #### Web Host Provides the server that runs the website. ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Web Hosting") and !(contains(file.path,"fileClass")) sort file.name ``` #### Content Delivery Network [[Content Delivery Network|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Content Delivery Network") and !(contains(file.path,"fileClass")) sort file.name ``` #### RDBMS ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"RDBMS") and !(contains(file.path,"fileClass")) sort file.name ``` #### Static Site Generator [[Static Site Generator|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Static Site Generator") and !(contains(file.path,"fileClass")) sort file.name ``` #### App Builder [[App Builder|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"App Builder") and !(contains(file.path,"fileClass")) sort file.name ``` #### Website Builder ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Website Builder") and !(contains(file.path,"fileClass")) sort file.name ``` #### Content Management System [[Content Management System|Read More]] ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Content Management System") and !(contains(file.path,"fileClass")) sort file.name ``` #### POS Systems (Point of Sale Systems) [reviews](https://top-posproviders.com/?gclid=Cj0KCQjwxqayBhDFARIsAANWRnSXmOD7BHJQy7q0ia33mdyT6eLIoeNihbfmvtzYb2V5WSyfeBmDRkAaAoVREALw_wcB&sptkn=5322f0363245&spstkn=62526266abc1&spvtkn=37c4a7392005) [more reviews](https://top-posproviders.com/homepage-b/?gclid=Cj0KCQjwxqayBhDFARIsAANWRnQRWLJmCmBnJXBZ04nYYA_Tocn5vEpdVvh1CnyWBAwqGP4a4Hry4CYaAl6gEALw_wcB&sptkn=3c80ca3b52a4&spstkn=62526266abc1&spvtkn=37c4a7392005) ![[Query POS]] #### Domain Registration [some domain registration reviews](https://www.shopify.com/blog/domain-price) ![[Query Domain Registration]] #### Other Developer Related ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(program-type,"Developer") and !(contains(file.path,"fileClass")) sort file.name ``` ### Other ```dataview LIST rows.program WHERE (contains(fileClass,"Program") or file.folder="Program" ) AND !(contains(file.path,"fileClass")) AND !(contains(program-type, "Analytics Engine") OR contains(program-type,"Media Service Provider") OR contains(program-type,"Second Brain") OR contains(program-type,"Project Management") OR contains(program-type,"Task Management") OR contains(program-type,"Note Taking") OR contains(program-type,"Calendar") OR contains(program-type,"Database") OR contains(program-type,"Web Host") OR contains(program-type,"RDBMS") OR contains(program-type,"Developer") OR contains(program-type,"Automation") OR contains(program-type,"Command Line Interface") OR contains(program-type,"Source Code Management") OR contains(program-type,"Analytics Enginer") OR contains(program-type,"Static Site Generator") OR contains(program-type,"App Builder") OR contains(program-type,"Website Builder") OR contains(program-type,"Content Management System") OR contains(program-type,"Content Delivery Network") OR contains(program-type,"POS") OR contains(program-type,"Domain Registration") ) sort file.name flatten " " + link(file.link,file.name) as "program" flatten program-type as "type" GROUP BY type ``` ### Other Programs [[DayOne]] [[Goodreads]] [[MediSafe]] [[OneDrive]] [[QOwnNotes]] ### Decisions ```dataview LIST rows.program WHERE (contains(fileClass,"Program") or file.folder="Program" ) AND !(contains(file.path,"fileClass")) AND (contains(program-type,"Task Management")) sort file.name flatten " " + link(file.link,file.name) + " ("+program-decision+")" as "program" GROUP by Active ``` Yes: ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(Active,"Yes") and !(contains(file.path,"fileClass")) sort file.name ``` Trying: ```dataview LIST without ID " " + link(file.link,file.name) WHERE contains(Active,"Trying") and !(contains(file.path,"fileClass")) sort file.name ``` To try: ```dataview LIST without ID " " + link(file.link,file.name) + " ("+program-decision+")" WHERE contains(Active,"To try") and !(contains(file.path,"fileClass")) sort file.name ``` Prob Not: ```dataview LIST without ID " " + link(file.link,file.name) + " ("+program-decision+")" WHERE contains(Active,"Prob Not") and !(contains(file.path,"fileClass")) sort file.name ``` No: ```dataview LIST without ID " " + link(file.link,file.name) + " ("+program-decision+")" WHERE contains(Active,"Nope") and !(contains(file.path,"fileClass")) sort file.name ``` ## Comparisons >[!info]- Icons > check: > > ``` > ✔ > ``` > > question: > > ``` > ❔ > ``` > > cross: > > ``` > ✖ > ``` ```dataview TABLE without ID " " + link(file.link,file.name) as "Program", (choice(open-sourced="✔",1,0) + choice(offline-access="✔",1,0) + choice(local-storage="✔",1,0) + choice(integrations="✔",1,0) + choice(publish="✔",1,0) + choice(ios-app="✔",1,0) + choice(ios-lock-screen="✔",1,0) + choice(automations="✔",1,0) + choice(api="✔",1,0) + choice(natural-language-procesing="✔",1,0) + choice(notifications="✔",1,0) + choice(custom-properties="✔",1,0) + choice(repeatable-tasks="✔",1,0) + choice(sub-tasks="✔",1,0)+ choice(calendar-view="✔",1,0)) as "Total", open-sourced,offline-access, local-storage, integrations, publish, ios-app,ios-lock-screen, automations, api, natural-language-processing, notifications, custom-properties, repeatable-tasks, sub-tasks, calendar-view WHERE (contains(fileClass,"Program") or file.folder="Program" ) AND !(contains(file.path,"fileClass")) AND (ios-app!="✖" and offline-access!="✖") AND (contains(program-type,"Second Brain") or contains(program-type,"Project Management") or contains(program-type,"Task Management") or contains(program-type,"Note Taking") or contains(program-type,"Calendar") or contains(program-type,"Database")) AND !contains(active,"No") sort (choice(open-sourced="✔",1,0) + choice(offline-access="✔",1,0) + choice(local-storage="✔",1,0) + choice(integrations="✔",1,0) + choice(publish="✔",1,0) + choice(ios-app="✔",1,0) + choice(ios-lock-screen="✔",1,0) + choice(automations="✔",1,0) + choice(api="✔",1,0) + choice(natural-language-procesing="✔",1,0) + choice(notifications="✔",1,0) + choice(custom-properties="✔",1,0) + choice(repeatable-tasks="✔",1,0) + choice(sub-tasks="✔",1,0)+ choice(calendar-view="✔",1,0)) DESC ``` ## All Programs ```dataview LIST without ID " " + link(file.link,file.name) WHERE (contains(fileClass,"Program") or file.folder="Program" ) AND !(contains(file.path,"fileClass")) sort file.name ``` ## Layout ``` `=""` ``` ---- ## #Inbox Supernotes - https://toolfinder.co/tools/supernotes Reflect Notes - https://toolfinder.co/tools/reflect-notes Acreom - https://toolfinder.co/tools/acreom Any type - https://toolfinder.co/tools/anytype Domain Registration options w/ domain registrar - GoDaddy - Namecheap - Porkbun - Domain.com - Dynadot - Google Domains - Name.com - NameSilo - Register.com w/ web hosting sites - Bluehost - Hostinger - IONOS - Siteground - A2 Hosting - HostGator - DreamHost - InMotion Hosting https://www.linode.com/ https://www.digitalocean.com/products/app-platform https://lookerstudio.google.com/u/0/reporting/55bc8fad-44c2-4280-aa0b-5f3f0cd3d2be/page/M6ZPC?params=%7B%22df46%22:%22include%25EE%2580%25800%25EE%2580%2580IN%25EE%2580%2580desktop%22,%22df44%22:%22include%25EE%2580%25800%25EE%2580%2580IN%25EE%2580%2580ALL%25EE%2580%2580WordPress%25EE%2580%2580Cloudflare%25EE%2580%2580Shopify%25EE%2580%2580Node.js%25EE%2580%2580Squarespace%25EE%2580%2580Wix%25EE%2580%2580Firebase%25EE%2580%2580Netlify%25EE%2580%2580Vercel%25EE%2580%2580Jekyll%25EE%2580%2580Astro%22%7D