Skip to content

Instantly share code, notes, and snippets.

View wakatara's full-sized avatar

Daryl Manning wakatara

View GitHub Profile
@wakatara
wakatara / list.md
Created February 6, 2021 05:40 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@wakatara
wakatara / hey_notmuch!
Created June 30, 2020 15:20 — forked from vedang/hey_notmuch!
Notmuch configuration for Hey.com Style workflows.
- 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.
@wakatara
wakatara / archiving.el
Last active October 27, 2018 17:44
Archive all the org-mode journal files
(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)
@wakatara
wakatara / mad_skillz.md
Created January 29, 2018 04:41
[WIP] Management Skills

Project/Product

  • 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
@wakatara
wakatara / .vimrc
Last active January 3, 2018 15:54
.vimrc @ 20180103
set nocompatible
filetype off
set clipboard=unnamed
set hidden
set nospell
set noshowmode
call plug#begin()
" Chrome
Plug 'bling/vim-airline'

Keybase proof

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:

@wakatara
wakatara / Things2Taskpaper
Created February 27, 2013 04:38
A Applescript to migrate all tasks out of Cultured Code's THings for OSX and put them in the proper text format for Taskpaper from Hog's Bay Software.
-- 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»