I hereby claim:
- I am wakatara on github.
- I am wakatara (https://keybase.io/wakatara) on keybase.
- I have a public key ASBq0SmQFkBMrfAvM4mKCyrN-MCECFkCkClipz3lxX9RSAo
To claim this, I am signing this object:
| -- modified on 21 Feb 2013 by Daryl Manning | |
| set thePath to (path to desktop as Unicode text) & "Things2Taskpaper.taskpaper" | |
| set thingsToDoFile to (open for access file thePath with write permission) | |
| set eof of thingsToDoFile to 0 | |
| set cr to ASCII character 10 | |
| tell application "Things" | |
| -- Export to-dos from Inbox | |
| write "Inbox:" & return to thingsToDoFile as «class utf8» |
I hereby claim:
To claim this, I am signing this object:
| set nocompatible | |
| filetype off | |
| set clipboard=unnamed | |
| set hidden | |
| set nospell | |
| set noshowmode | |
| call plug#begin() | |
| " Chrome | |
| Plug 'bling/vim-airline' |
| (defun archive-done-org-journal-files () | |
| "Cycles all org files through checking function." | |
| (interactive) | |
| (save-excursion | |
| (mapc 'check-org-file-finito (directory-files "~/Desktop/test_archives/" t ".org$")) | |
| )) | |
| (defun check-org-file-finito (f) | |
| "Checks TODO keyword items are DONE then archives." | |
| (interactive) |
| - Specific Notmuch filters (and saved-searches) for: | |
| + The Feed (newsletters, blogs) | |
| + The Paper trail (receipts, ledger) | |
| + Screened Inbox (mail from folks you actually want to read) | |
| + Previously Seen (important mail that you've already read) | |
| + Unscreened Inbox (potential spam / stuff you don't want) | |
| - Elisp Functions to move / categorize emails from a particular sender. | |
| + Adds tags needed by filters defined above to all email sent by a particular sender | |
| + Creates an entry in a DB file, which is used by the Notmuch post-new script when indexing new email, to auto-add the relevant tags. |
| package utils | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "regexp" | |
| "strconv" | |
| "strings" | |
| "time" |
| # Modified from base airflow.sensors.filesystem | |
| # Author: Daryl Manning <dwm@wakatara.com> | |
| ############################################### | |
| # This sensor looks at a directory or directories | |
| # and builds a list of files with changed | |
| # modification datetimes since last check. | |
| from __future__ import annotations | |
| import os, datetime, json | |
| from glob import glob |