Author: mradwin

Vegetarian Guide to Fast Food

The Vegetarian Resource Group recently published the 2004 edition of their Guide to Fast Food. If you’re a vegetarian and you eat out at non-vegetarian restaurants, it’s well worth the $6 investment. The VRG publishes updates of the 24-page book every couple of years. I first found out about the VRG a couple of years […]

Coding conventions

As far as I’m concerned, there’s only one way to write C-like code. First of all, you must select sane whitespace defaults in your editor. Here’s the one true way to configure Emacs. (setq default-tab-width 8) (defun one-true-style () (c-set-style “bsd”) (setq tab-width 8) (setq c-basic-offset 4) (setq indent-tabs-mode t)) (add-hook ‘c-mode-hook ‘one-true-style) (add-hook ‘objc-mode-hook […]