NEW: For a prettier blog interface, see the Wordpress version!
Tasks
| A1 | X | Package emacs-wiki deb {{Tasks:593}} (EmacsWikiMode) |
| B1 | X | planner-notes-index tag {{Tasks:601}} (PlannerModeCompletedTasks) |
| B2 | X | Confirm that still works {{Tasks:614}} |
| B3 | X | Fix dangling from {{Tasks:613}} (PlannerModeCompletedTasks) |
| B4 | X | Fix bug Nafai reported {{Tasks:609}} (PlannerModeCompletedTasks) |
| B5 | X | Merge Yvonne's patch for planner-wl {{Tasks:597}} (PlannerModeCompletedTasks) |
| B6 | X | Confirm bug fixed {{Tasks:599}} (../../notebook/emacs/emacs-wiki/planner.el) |
| B7 | X | Fix bug in non-prefixed planner-create-task-from-buffer {{Tasks:598}} (PlannerModeCompletedTasks) |
| B8 | X | Test if C-u for planner-create-task-from-buffer really works from ../../notebook/emacs/emacs-wiki/planner.el {{Tasks:595}} (PlannerModeCompletedTasks) |
| B9 | X | Make the prefix argument for planner-create-task prompt for a task page, defaulting the way remember-to-planner does. {{Tasks:594}} (PlannerModeCompletedTasks) |
Schedule
Notes
8. New module: planner-notes-index.el
7. Finite automata in LaTeX
<TerryP> sachac: hey, remember I asked for something to draw FA's [finite automata] with, that was closely connected to LaTeX? <TerryP> sachac: well, I found something that seems to beat both xypic and metapost, "dot" from graphviz
6. Display subject on the first line, dynamically
;;; gnus-summary-update-subject.el --- Display subject on the first line, dynamically
;;; Time-stamp: <2004-03-07 18:02:03 bojohan>
;; <http://www.dd.chalmers.se/~bojohan/emacs/gnus-summary-update-subject.html>
;; Modified by Sacha to work with subjects anywhere in the summary line.
;;; Code:
(defvar gnus-summary-update-subject-overlay nil)
(defvar gnus-summary-update-subject-hide-overlay nil)
(setq gnus-summary-same-subject (propertize " " 'gnus-summary-same-subject t))
(defvar gnus-summary-update-subject-thread-marker ">")
(defun gnus-summary-update-subject (&optional window start)
(when gnus-summary-update-subject-overlay
(save-excursion
(goto-char (or start (window-start)))
(when (re-search-forward gnus-summary-update-subject-thread-marker (line-end-position) t)
(if (not (text-property-any (line-beginning-position)
(line-end-position)
'gnus-summary-same-subject t))
(progn
(delete-overlay gnus-summary-update-subject-overlay)
(delete-overlay gnus-summary-update-subject-hide-overlay))
(let ((subject (gnus-summary-subject-string
(gnus-summary-article-number))))
(move-overlay gnus-summary-update-subject-hide-overlay
(+ (point) 2) (+ (point) 2 (length subject)))
(move-overlay gnus-summary-update-subject-overlay
(point) (1+ (point)))
;;(overlay-put gnus-summary-subject-overlay 'window (selected-window))
(overlay-put gnus-summary-update-subject-hide-overlay
'invisible t)
(overlay-put gnus-summary-update-subject-hide-overlay
'intangible t)
(overlay-put gnus-summary-update-subject-overlay
'after-string subject)))))))
(defun gnus-summary-update-subject-setup ()
(add-hook 'window-scroll-functions 'gnus-summary-update-subject nil t)
(set (make-local-variable 'gnus-summary-update-subject-overlay)
(make-overlay 0 0))
(set (make-local-variable 'gnus-summary-update-subject-hide-overlay)
(make-overlay 0 0)))
(add-hook 'gnus-summary-prepared-hook 'gnus-summary-update-subject-setup)
(defadvice gnus-summary-position-point (after summary-update-subject activate)
(gnus-summary-update-subject))
(provide 'gnus-summary-update-subject)
;;; gnus-summary-update-subject.el ends here
5. Planner supports Wanderlust
4. C-u M-x planner-create-task-from-buffer
Adding a prefix argument to M-x planner-create-task-from-buffer will make it prompt for the plan page. If the plan page is different from the current annotation, it will move the annotation into the description of the task. Any other suggestions? =)
3. DARN!
2. Wikibook -- Cookbook
1. Hotshot -- 55 words
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 .