Skip to content

Instantly share code, notes, and snippets.

@jwinter
Created October 14, 2011 21:48
Show Gist options
  • Save jwinter/1288457 to your computer and use it in GitHub Desktop.
Save jwinter/1288457 to your computer and use it in GitHub Desktop.
; Insert today's standup template into my org doc
(defun standup-org()
(interactive)
(insert "* Joe W. " (format-time-string "%Y-%m-%d") "\n")
(insert
(mapconcat 'identity '("** Yesterday" "** Today" "** Next" "") "\n-\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment