NEW: For a prettier blog interface, see the Wordpress version!
Tasks
Priorities - A: high, B: medium, C: low; Status - _: unfinished, X: finished, C: cancelled, P: pending, o: in progress, >: delegated. Covey quadrants - Q1 & Q3: urgent, Q1 & Q2: important
| B | X | Print the appeal for Mark Tecson {{Tasks:874}} |
| B2 | X | Reply {{Tasks:444}} (E-Mail from Andrew Clausen) |
| B3 | C | Reply from E-Mail from Joe Corneli {{Tasks:828}} (TaskPool) |
| B4 | C | Reply from E-Mail from Joe Corneli {{Tasks:794}} (TaskPool) |
| B5 | C | Reply from E-Mail from Joe Corneli {{Tasks:802}} (TaskPool) |
~/.diary schedule
| 12:00 | 15:00 | Go to school, pick up certificate of employment, drop off letter |
| 17:30 | 19:00 | Aikido |
| 20:00 | 20:30 | Display job detail. |
| 20:00 | 22:00 | Work on scheduler |
| 22:00 | 22:30 | Check out EClass again from 2003.11.11 {{Tasks:876}} |
Notes
2. Got my FSF papers back!
Categories: None -- Permalink
I'm now an official contributor and my part of ERC can be merged into GNU Emacs eventually. Yay!
1. Scheduling tasks in the diary
Categories: EmacsHacks#22 -- Permalink
(defun sacha/planner-diary-schedule-task (time)
"Add a diary entry for the current task at TIME."
(interactive "MTime: ")
(save-window-excursion
(save-excursion
(save-restriction
(let ((info (planner-current-task-info)))
(sacha/planner-diary-add-entry
(planner-task-date info)
(concat time " | " (planner-task-description info) "")))))))
(defun sacha/planner-diary-add-entry (date text &optional annotation)
"Prompt for a diary entry to add to `diary-file'."
(interactive
(list
(if (or current-prefix-arg
(not (string-match planner-date-regexp (planner-page-name))))
(planner-read-date)
(planner-page-name))
(read-string
"Diary entry: ")))
(save-excursion
(save-window-excursion
(make-diary-entry
(concat
(let ((cal-date (planner-filename-to-calendar-date date)))
(calendar-date-string cal-date t t))
" " text
(or annotation
(let ((annotation (run-hook-with-args-until-success
'planner-annotation-functions)))
(if annotation
(concat " " annotation)
"")))))
(planner-goto date)
(planner-diary-insert-diary-maybe))))
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .