- Creating vision, roadmap, architecture blueprint
- Validating and Managing requirements
- Managing Priorities
- Product Management 101
- Scoping
- Estimating
- Agile/Lean/Scrum
- User Stories/Jobs to be Done
This file contains 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
- 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. |
This file contains 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
(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) |
This file contains 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
set nocompatible | |
filetype off | |
set clipboard=unnamed | |
set hidden | |
set nospell | |
set noshowmode | |
call plug#begin() | |
" Chrome | |
Plug 'bling/vim-airline' |
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:
This file contains 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
-- 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» |