This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```dataviewjs | |
// find dates based on format [[YYYY-MM-DD]] | |
const findDated = (task)=>{ | |
if( !task.completed && !task.path.startsWith('Bins/Roam Import')) { // ignores Roam imports | |
task.link = " " + "[[" + task.path + "|*]]"; | |
task.date=""; | |
const found = task.text.match(/\[\[([12]\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01]))\]\]/); | |
if(found) task.date = moment(found[1]); | |
return true; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This constant is written in column C for rows for which an email | |
// has been sent successfully. | |
var ADDED = true; | |
var EMAIL_SENT = true; | |
/** | |
* Sends non-duplicate emails with data from the current spreadsheet. | |
*/ | |
function sendEmails() { | |
var sheet = SpreadsheetApp.getActiveSheet(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type:: #{% if category == "articles" %}Article{% elif category == "books" %}Book{% elif category == "tweets" %}Tweet{% else %}{{category|title}}{% endif %} | |
Author:: [[{{author}}]] | |
Recommended By:: | |
Full Title:: {{full_title}} | |
Status:: #Waiting [[📤Things to Process]] | |
Tags:: #Readwise | |
Newsletter:: [[Newsletter Backlog]] | |
{% if url %}Link:: {{url}}{% endif %} | |
{% if image_url %}{% endif %} | |
# Summary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type:: #Book | |
Author:: | |
Recommended by:: | |
Status:: #Waiting | |
Link:: | |
Tags:: | |
Newsletter:: | |
# Summary | |
After organizing, highlighting, and bolding the highlights, create a high-level summary #[[Progressive Summarization]] | |
# [[💡Ideas]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
#export PATH=$HOME/bin:/usr/local/bin:$PATH | |
export PATH="/usr/local/opt/python/libexec/bin:$PATH" | |
export TERM="xterm-256color" | |
#See this for some commands: https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet | |
#source ~/.fonts/*.sh | |
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Use Non-ASCII Font" : false, | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { | |
"Green Component" : 0.50962930917739868, | |
"Red Component" : 0.44058024883270264, | |
"Blue Component" : 0.51685798168182373 | |
}, |