NEW: For a prettier blog interface, see the Wordpress version!
Tasks
| A | X | Schedule an appointment with the US embassy |
| A | X | Finish contact information and work history for nonimmigrant visa applicant |
| A | X | Finish supplemental nonimmigrant visa application form |
| A | X | 1h Finish US embassy form (MoveToCanada) |
| A | X | Check on DHL package (MoveToCanada) |
| B | X | Use task hook for marking tasks done : ../emacs/dev/planner/planner-timeclock.el (2005.06.09 planner) |
| B | X | Merge dryice/42 for planner-authz : E-Mail from Dryice Dong Liu (2005.06.09 feature planner) |
| B | X | Read about personality types from email : E-Mail from Mark Chignell (research) |
| B | X | Ask Tita Raquel to reserve a flight (grad) |
| B | X | Make a breakdown for planner-timeclock-summary : E-Mail from micah milano (2005.06.09 planner feature) |
| B | X | Follow up nil bug for gnus link : E-Mail from Jesse Alama (2005.06.09 bug planner) |
| B | X | Write code for planner-multi to automatically schedule things onto TaskPool : E-Mail from Paul D. Kraus (2005.06.09 planner help) |
| B | C | Reply about personal information management and social communities : E-Mail from Mark Chignell (2005.06.09 FurtherStudies gradschool grad) |
| B | C | Re-fix gnus-registry 5.9.0 issue : E-Mail from Patricia J. Hawkins (2005.06.09 planner bug) |
| C | X | Reply about person planner : E-Mail from Paul Lussier (2005.06.09 feature planner) |
Notes
1. Automatically scheduling tasks onto TaskPool
(defadvice planner-create-task-from-buffer (before paul activate)
"Automatically schedule task onto TaskPool as well as other projects."
(if plan-page
(unless (string-match plan-page "TaskPool")
(setq plan-page (concat plan-page planner-multi-separator "TaskPool")))
(setq plan-page "TaskPool")))
Here's another snippet that will unschedule tasks from TaskPool when you mark them completed with C-c C-x (planner-task-done). Nifty stuff, huh?
(defadvice planner-task-done (after paul activate)
"Remove completed tasks from the TaskPool if that still leaves them linked."
(let ((info (planner-current-task-info)))
(when (planner-task-link-text info)
;; If it is linked to TaskPool _and_ at least one other thing
(if (string-match planner-multi-separator (planner-task-link-text info))
(planner-multi-replan-task
(planner-multi-make-link (planner-multi-filter-links "^TaskPool$" (planner-multi-task-link-as-list info) t)))
;; Else if it has a date and is linked to TaskPool
(if (and (planner-task-date info)
(string= (planner-task-link info) "TaskPool"))
(planner-replan-task nil))))))
原始的な計算機が、コンピューターの開発されるずっと以前に存在していた。 Primitive calculating machines existed long before computers were developed.
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 .