NEW: For a prettier blog interface, see the Wordpress version!
~/.diary schedule
| 8:30 | 9:30 | CS21A at F227 |
| 10:30 | 11:30 | CS110 at F227 |
| 11:30 | 12:30 | CS21A at F227 |
| 13:30 | 15:30 | CS139.3 at F227 |
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
| B0 | X | Prepare problem for CS139.3 (SchoolWork) |
| C0 | X | Pack for school from 2004.07.10 |
| C0 | X | Check out Ph.D. Comics from 2004.07.10 |
| C0 | X | Check out Foxtrot from 2004.07.10 |
| C0 | X | Check out Helen, Sweetheart of the Internet from 2004.07.10 |
| A0 | X | Do some SchoolWork from 2004.07.10 |
Notes
2. Awwwwww! GRE scores are here
Categories: None -- Permalink
Got a 5.5 out of 6 on my GRE Analytical Writing section. Oh well. I
guess I'll have to settle for being slightly less than perfect... ;)
1. Funny Lisp cooking
Categories: None -- Permalink
http://www.emacswiki.org/cgi-bin/utis/2004-07-04
(defun make-arugolo-risotto ()
"Return a pot of risotto with arugola."
(interactive)
(let ((onions (chop (get-onions) 'fine))
(rice (get-rice))
(wine (get-wine))
(butter (get-butter))
(stock (get-stock 'vegetable))
(cheese (rasp (get-cheese 'parmesan)))
(pot (get-pot 'large))
(vegetable (chop (wash (get-vegetable 'arugola))
'medium)))
(setq pot (heat-pot pot 'medium))
(with-current-pot pot
(add butter)
(add onions)
(while (not-glassy-p onions) ; FIXME
;; not-glassy-p probably returns t too late in the process.
(stir pot))
(add rice)
(while (not (covered-with-butter-p rice)) ; FIXME
(stir pot))
(add wine)
(while (liquidity-not-absorbed-p rice)
(stir pot))
(finish-risotto pot rice stock)
(add vegetable)
(add cheese)
pot)))
(defun finish-risotto (pot rice stock)
(with-current-pot pot
(while (not (rice-ready-p rice))
(add stock)
(while (liquidity-not-absorbed-p rice)
(stir pot))))
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 .