$msg = ""; $myaddress = "sacha" + "@" + "sachachua.com"; $page = "2006.10.11.php"; $page_title = "2006.10.11"; $page_updated = "2007-10-2322:14:1622:14:16-0400"; $maintainer = "sacha" + "@" + "sachachua.com"; require_once "include/calendar.php"; require_once "include/planner-include.php"; require_once "include/header.inc.php"; ?>
Headlines for Wednesday:
B | _ | Try out uberlog : E-Mail from Jason Roks (TaskPool) |
B | _ | Intro for |
B | _ | Women with Passion, http://www.womenwithpassion.com (TaskPool) |
B | _ | Write bloc party report for Greater IBM : E-Mail from Kevin Aires (TaskPool) |
C | _ | Set up blogreading in Gnus |
A | X | @0930 1h Catch up with family and friends |
A | X | @1030 1h Brunch |
A | X | @1400 10min Review Mark's notes from the meeting : E-Mail from Mark Chignell |
A | X | @1500-1600 Paperwork |
A | X | @1700-1800 Prepare dinner |
A | X | @1800 1h Do laundry |
A | X | @1845 1h Clutter control |
A | X | @2000-2045 GHC meeting |
A | X | 15min Make sure Fido bill is paid |
A | X | Pick up paperwork |
A | X | Drop off course dropping form |
A | X | Pick up check from MIE dept |
A | X | Replace health card |
A | X | 15min Catch up with my Moleskine |
A | X | Get Sametime to work |
A | X | 10min Get VPN connection to work |
A | X | 15min Track down copy of original proposal |
B | X | 30min Set up per-file headers for Muse |
B | X | 30min Catch up with mail |
B | X | 30min Catch up with Clair |
B | X | 10min Sign up for Digital Filipino |
B | X | 10min Fix hack night link : E-Mail from Richi's server |
C | X | 5min Track down renaissance dancing pictures |
C | X | 15min Catch up with my networks |
C | X | 30min Clear my OpenBC inbox |
C | X | 10min Fix my modeline |
A | C | 15min Transfer money to TD Visa |
I survived the Toast I.T. Toastmasters Open House. Yay!
The next thing on my horizon is CASCON 2006, IBM's free conference. We're still not sure if my research demo is going to get yanked from the tech showcase due to patent concerns, but I'll be helping out with a social computing panel and Hack Night is a go.
Sign up for Hack Night! Free T-shirt, computers, pizza, hacking into the night... Sweet!
Surviving October one thing at a time...
Random Emacs symbol: gnus-cite-unsightly-citation-regexp - Variable: Regexp matching Microsoft-type rest-of-message citations.
If you're coming from downtown, you can take the subway to Finch and the Viva bus from there. Three choices:
Viva Pink | Get off at South Town Centre |
#300 Express | Get off at South Town Centre |
#1 YRT | Get off at Warden |
Check out York Region Transit for schedules.
On Technorati: cascon2006, cascon
I just got a flash of what my DemoCamp presentation on Emacs will be like. <laugh> It's going to be *so* diggable.
I need to plan this well. I want to completely blow the DemoCampers away. Maybe even get a standing ovation. ;) That means I need to build in a crescendo.
I should also figure out how to record a presentation and how to put it up online, so that it can go live right after the event. Mwahahaha!
Note to self: Get Adsense sorted out.
One of the things I love about vising irc.freenode.net #emacs is that helping people with their questions lets me discover all sorts of cool things about Emacs. Today's nugget? hideshow.el, which allows you to automatically hide / show code. (Equivalent of vim folding).
I've added the following code to my config:
(load-library "hideshow") (add-hook 'emacs-lisp-mode-hook (lambda () (hs-minor-mode 1) (hs-hide-all) (set (make-variable-buffer-local 'my-hs-hide) t))) (defvar my-hs-hide t "Current state of hideshow for toggling all.") ;;;###autoload (defun my-toggle-hideshow-all () "Toggle hideshow all." (interactive) (set (make-variable-buffer-local 'my-hs-hide) (not my-hs-hide)) (if my-hs-hide (hs-hide-all) (hs-show-all))) (global-set-key (kbd "C-c @ @") 'my-toggle-hideshow-all) (global-set-key (kbd "C-c @ h") 'hs-hide-block) (global-set-key (kbd "C-c @ s") 'hs-show-block) (global-set-key (kbd "C-c @ SPC") 'hs-show-block)
Sweet.
... and then I find that I already have a hideshow config, of course, and that I added it on 2003.11.21... <bonk>!
On Technorati: emacs, pimpmyemacs
Random Emacs symbol: timezone-parse-date - Function: Parse DATE and return a vector [YEAR MONTH DAY TIME TIMEZONE].