Month: April 2004

T-mobile SIM unlock, part 2

I successfully completed the T-mobile SIM unlock process that I started yesterday. T-mobile sent the following instructions: T-Mobile Sim Unlock Request Sim Unlock Reference: xxxxxxxx IMEI: xxxxxxxxxxxxxxx Unlock Code: xxxxxxxx Thank you for taking the time to contact T-Mobile. Below you will see the Instructions for unlocking your Motorola device. NOTE: Before you start you […]

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 […]