<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9064519392873169925</id><updated>2011-09-30T10:56:12.190-05:00</updated><category term='justsaying'/><category term='tech'/><category term='travel'/><category term='wine'/><category term='fiction'/><category term='movies'/><category term='food'/><category term='work'/><category term='drink'/><category term='politics'/><category term='computer'/><title type='text'>The Mote Report</title><subtitle type='html'>If managing a team of programmers taught me one thing, it's that if you find yourself relaying the same bit of information more than once, you're best off writing it down and making it available to all.  Since I've been lousy at keeping in contact with friends and family, and I never know where to begin catching them up, I'm going to apply the same theory to my personal life.  Behold the blog.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>36</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-8059380776407355058</id><published>2011-03-25T16:04:00.000-05:00</published><updated>2011-03-25T16:04:02.570-05:00</updated><title type='text'>AWS: Here's how you subscribe an SQS queue to an SNS topic!</title><content type='html'>&lt;div class="zemanta-img separator"&gt;&lt;a href="http://en.wikipedia.org/wiki/File:Amazon_Web_Services_logo.svg" style="clear: left; display: block; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img alt="Amazon Web Services logo" height="74" src="http://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Amazon_Web_Services_logo.svg/300px-Amazon_Web_Services_logo.svg.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-size: 0.8em;" width="200" /&gt;&lt;/a&gt;&lt;span class="zemanta-img-attribution" style="clear: left; float: left; margin-left: 1em; margin-right: 1em; width: 200px;"&gt;Image via &lt;a href="http://en.wikipedia.org/wiki/File:Amazon_Web_Services_logo.svg"&gt;Wikipedia&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;There's precious few code examples for subscribing an Amazon Web Services' SQS queue to an SNS topic, especially using the &lt;a href="http://aws.amazon.com/sdkforjava/"&gt;SDK for Java&lt;/a&gt;. I've finally figured it out, and this is my way of giving back to the authors of all the hints I &lt;i&gt;could&lt;/i&gt; find around the Web. The tricky part is the queue policy; if you create it incorrectly, you won't see any error messages -- it just won't work.&lt;br /&gt;&lt;br /&gt;The methodology is this:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create an SNS topic.&lt;/li&gt;&lt;li&gt;Set a policy on the topic to allow subscriptions.&lt;/li&gt;&lt;li&gt;Create an SQS queue.&lt;/li&gt;&lt;li&gt;Set a policy on the queue to allow message posting.&lt;/li&gt;&lt;li&gt;Subscribe the queue to the topic.&lt;/li&gt;&lt;li&gt;Wait for AWS settings to propagate and "take."&lt;/li&gt;&lt;li&gt;Send an SNS notification message.&lt;/li&gt;&lt;li&gt;Listen for the message on the queue.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;And here's the code:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;code&gt;&lt;br /&gt;public class SnsWithSqsDemo {&lt;br /&gt;private static final Log LOG = LogFactory.getLog(SnsWithSqsDemo.class);&lt;br /&gt;private static final String TOPIC_NAME = "TestTopic";&lt;br /&gt;private static final String QUEUE_NAME = "TestQueue";&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* This program demonstrates how to hook up an AWS SQS queue to an AWS SNS&lt;br /&gt;* topic to receive messages.&lt;br /&gt;* &lt;br /&gt;* 1. Create an SNS topic.&lt;br /&gt;* 2. Set a policy on the topic to allow subscriptions.&lt;br /&gt;* 3. Create an SQS queue.&lt;br /&gt;* 4. Set a policy on the queue to allow message posting.&lt;br /&gt;* 5. Subscribe the queue to the topic.&lt;br /&gt;* 6. Wait for AWS settings to propagate and "take."&lt;br /&gt;* 7. Send an SNS notification message.&lt;br /&gt;* 8. Listen for the message on the queue.&lt;br /&gt;* &lt;br /&gt;* @param args not used&lt;br /&gt;*/&lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;AWSCredentials awsCredentials = null;&lt;br /&gt;AmazonSNS sns = null;&lt;br /&gt;AmazonSQS sqs = null;&lt;br /&gt;String topicArn = null;&lt;br /&gt;String queueUrl = null;&lt;br /&gt;String queueArn = null;&lt;br /&gt;String subscriptionArn = null;&lt;br /&gt;LOG.debug("Beginning.");&lt;br /&gt;try {&lt;br /&gt;awsCredentials = &lt;br /&gt;new PropertiesCredentials(&lt;br /&gt;SnsWithSqsDemo.class.getResourceAsStream("AwsCredentials.properties"));&lt;br /&gt;sns = new AmazonSNSClient(awsCredentials);&lt;br /&gt;// 1. Create a topic&lt;br /&gt;System.out.println("Step 1. Create an SNS topic.");&lt;br /&gt;CreateTopicResult ctResult =&lt;br /&gt;sns.createTopic(new CreateTopicRequest(TOPIC_NAME));&lt;br /&gt;topicArn = ctResult.getTopicArn();&lt;br /&gt;System.out.println(String.format("Created topic %s with ARN %s", &lt;br /&gt;TOPIC_NAME, topicArn));&lt;br /&gt;// 2. Set policy on topic to allow open subscriptions&lt;br /&gt;System.out.println("Step 2. Set a policy on the topic to allow subscriptions.");&lt;br /&gt;Policy snsPolicy =&lt;br /&gt;new Policy().withStatements(&lt;br /&gt;new Statement(Effect.Allow)&lt;br /&gt;.withPrincipals(Principal.AllUsers)&lt;br /&gt;.withActions(SNSActions.Subscribe));&lt;br /&gt;System.out.println("Set SNS policy: " + snsPolicy.toJson());&lt;br /&gt;sns.setTopicAttributes(new SetTopicAttributesRequest(&lt;br /&gt;topicArn, "Policy", snsPolicy.toJson()));&lt;br /&gt;// 3. Create a queue&lt;br /&gt;System.out.println("Step 3. Create an SQS queue.");&lt;br /&gt;sqs = new AmazonSQSClient(awsCredentials);&lt;br /&gt;CreateQueueResult cqResult =&lt;br /&gt;sqs.createQueue(new CreateQueueRequest(QUEUE_NAME));&lt;br /&gt;queueUrl = cqResult.getQueueUrl();&lt;br /&gt;System.out.println(String.format("Created queue %s with URL %s", &lt;br /&gt;QUEUE_NAME, queueUrl));&lt;br /&gt;GetQueueAttributesResult queueArnResult = &lt;br /&gt;sqs.getQueueAttributes(new GetQueueAttributesRequest(queueUrl)&lt;br /&gt;.withAttributeNames("QueueArn"));&lt;br /&gt;queueArn = queueArnResult.getAttributes().get("QueueArn");&lt;br /&gt;System.out.println("Queue ARN = " + queueArn);&lt;br /&gt;// 4. Set the queue policy to allow SNS to publish messages&lt;br /&gt;System.out.println("Step 4. Set a policy on the queue to allow message posting.");&lt;br /&gt;Policy sqsPolicy = &lt;br /&gt;new Policy().withStatements(&lt;br /&gt;new Statement(Effect.Allow)&lt;br /&gt;.withPrincipals(Principal.AllUsers)&lt;br /&gt;.withResources(new Resource(queueArn)) // Note: queue, not topic&lt;br /&gt;.withActions(SQSActions.SendMessage)&lt;br /&gt;.withConditions(&lt;br /&gt;ConditionFactory.newSourceArnCondition(topicArn)));&lt;br /&gt;Map&lt;string, string=""&gt; queueAttributes = new HashMap&lt;string, string=""&gt;();&lt;br /&gt;queueAttributes.put("Policy", sqsPolicy.toJson());&lt;br /&gt;sqs.setQueueAttributes(new SetQueueAttributesRequest(queueUrl, queueAttributes));&lt;br /&gt;System.out.println("Set SQS policy to " + queueUrl + ": " + sqsPolicy.toJson());&lt;br /&gt;// 5. Subscribe the queue to the topic &lt;br /&gt;System.out.println("Step 5. Subscribe the queue to the topic.");&lt;br /&gt;SubscribeResult sResult = &lt;br /&gt;sns.subscribe(new SubscribeRequest(topicArn, "sqs", queueArn));&lt;br /&gt;subscriptionArn = sResult.getSubscriptionArn();&lt;br /&gt;System.out.println("Subscription ARN: " + subscriptionArn);&lt;br /&gt;// 6. Wait a bit for AWS to get all synched-up&lt;br /&gt;System.out.println("Step 6. Wait for AWS settings to propagate and \"take.\"");&lt;br /&gt;Thread.sleep(60000L);&lt;br /&gt;// 6.1. Verify queue attributes&lt;br /&gt;GetQueueAttributesResult gqaResult =&lt;br /&gt;sqs.getQueueAttributes(new GetQueueAttributesRequest(queueUrl)&lt;br /&gt;.withAttributeNames("Policy", "QueueArn", "ApproximateNumberOfMessages"));&lt;br /&gt;if (gqaResult.getAttributes().size() == 0) {&lt;br /&gt;System.out.println("Queue " + QUEUE_NAME + " has no attributes");&lt;br /&gt;} else {&lt;br /&gt;System.out.println("Attributes for " + QUEUE_NAME);&lt;br /&gt;for (String key : gqaResult.getAttributes().keySet()) {&lt;br /&gt;System.out.println(String.format("\t%s = %s", &lt;br /&gt;key, gqaResult.getAttributes().get(key)));&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;// 6.2. Verify topic attributes&lt;br /&gt;GetTopicAttributesResult gtaResult =&lt;br /&gt;sns.getTopicAttributes(new GetTopicAttributesRequest(topicArn));&lt;br /&gt;if (gtaResult.getAttributes().size() == 0) {&lt;br /&gt;System.out.println("Topic " + TOPIC_NAME + " has no attributes");&lt;br /&gt;} else {&lt;br /&gt;System.out.println("Attributes for " + TOPIC_NAME);&lt;br /&gt;for (String key : gtaResult.getAttributes().keySet()) {&lt;br /&gt;System.out.println(String.format("\t%s = %s", &lt;br /&gt;key, gtaResult.getAttributes().get(key)));&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;// 6.3. Verify subscription&lt;br /&gt;ListSubscriptionsByTopicResult lsbtResult =&lt;br /&gt;sns.listSubscriptionsByTopic(new ListSubscriptionsByTopicRequest(topicArn));&lt;br /&gt;if (lsbtResult.getSubscriptions().size() == 0) {&lt;br /&gt;System.out.println("Topic " + TOPIC_NAME + " has no subscriptions.");&lt;br /&gt;} else {&lt;br /&gt;System.out.println("Subscriptions for " + TOPIC_NAME);&lt;br /&gt;for (Subscription subscription : lsbtResult.getSubscriptions()) {&lt;br /&gt;System.out.println("\t" + subscription.getProtocol() + ": " &lt;br /&gt;+ subscription.getEndpoint());&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;// 7. Send a notification&lt;br /&gt;System.out.println("Step 7. Send an SNS notification message.");&lt;br /&gt;PublishResult pResult = &lt;br /&gt;sns.publish(new PublishRequest(topicArn, &lt;br /&gt;"Mr Watson -- Come here -- I want to see you."));&lt;br /&gt;System.out.println("Sent message ID = " + pResult.getMessageId());&lt;br /&gt;// 8. Wait for message receipt in queue&lt;br /&gt;System.out.println("Step 8. Listen for the message on the queue.");&lt;br /&gt;for (int i = 0; i &amp;lt; 10; i++) {     Thread.sleep(2000L);     ReceiveMessageResult rmResult =      sqs.receiveMessage(new ReceiveMessageRequest(queueUrl));     if (rmResult.getMessages().size() &amp;gt; 0) {&lt;br /&gt;// A message has been received&lt;br /&gt;for (Message message : rmResult.getMessages()) {&lt;br /&gt;System.out.println(message.getBody());&lt;br /&gt;sqs.deleteMessage(new DeleteMessageRequest(queueUrl, &lt;br /&gt;message.getReceiptHandle()));&lt;br /&gt;}&lt;br /&gt;break;&lt;br /&gt;} else {&lt;br /&gt;// ??? Why aren't we receiving messages?&lt;br /&gt;System.out.println("No messages available, attempt " + (i+1));&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;} catch (Exception e) {&lt;br /&gt;e.printStackTrace(System.err);&lt;br /&gt;} finally {&lt;br /&gt;System.out.println("Shutting down...");&lt;br /&gt;// Unsubscribe the queue from the topic&lt;br /&gt;if (sns != null &amp;amp;&amp;amp; subscriptionArn != null) {&lt;br /&gt;sns.unsubscribe(new UnsubscribeRequest(subscriptionArn));&lt;br /&gt;System.out.println("Unsubscribed queue from topic.");&lt;br /&gt;}&lt;br /&gt;// Destroy queue&lt;br /&gt;if (sqs != null &amp;amp;&amp;amp; queueUrl != null) {&lt;br /&gt;sqs.deleteQueue(new DeleteQueueRequest(queueUrl));&lt;br /&gt;System.out.println("Deleted the queue.");&lt;br /&gt;sqs.shutdown();&lt;br /&gt;}&lt;br /&gt;// Destroy topic&lt;br /&gt;if (sns != null &amp;amp;&amp;amp; topicArn != null) {&lt;br /&gt;sns.deleteTopic(new DeleteTopicRequest(topicArn));&lt;br /&gt;System.out.println("Deleted the topic.");&lt;br /&gt;sns.shutdown();&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;LOG.debug("Done.");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/string,&gt;&lt;/string,&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=561f0ffc-2709-42d1-95ea-9ae259409af6" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-8059380776407355058?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/8059380776407355058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=8059380776407355058' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/8059380776407355058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/8059380776407355058'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2011/03/aws-heres-how-you-subscribe-sqs-queue.html' title='AWS: Here&apos;s how you subscribe an SQS queue to an SNS topic!'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-773930970071641859</id><published>2011-03-24T20:41:00.000-05:00</published><updated>2011-03-24T20:41:41.302-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tech'/><title type='text'>AWS: How do you subscribe an SQS queue to an SNS topic?</title><content type='html'>&lt;div class="zemanta-img separator"&gt;&lt;a href="http://www.crunchbase.com/product/amazon-web-services" style="clear: left; display: block; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img alt="Image representing Amazon Web Services as depi..." height="60" src="http://www.crunchbase.com/assets/images/resized/0003/2598/32598v1-max-450x450.png" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-size: 0.8em;" width="164" /&gt;&lt;/a&gt;&lt;span class="zemanta-img-attribution" style="clear: left; float: left; margin-left: 1em; margin-right: 1em; width: 164px;"&gt;Image via &lt;a href="http://www.crunchbase.com/"&gt;CrunchBase&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;If there are any AWS (Amazon Web Services) gurus out there, I'm stumped on trying to use a Simple Queue Service queue to receive notifications sent out on a Simple Notification Service topic. Any pointers?&lt;br /&gt;&lt;br /&gt;In the code below, I'm using the AWS SDK for Java (available &lt;a href="http://aws.amazon.com/sdkforjava/"&gt;here&lt;/a&gt;). The program does the following:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create an SNS topic.&lt;/li&gt;&lt;li&gt;Set a policy on the topic to allow subscriptions.&lt;/li&gt;&lt;li&gt;Create an SQS queue.&lt;/li&gt;&lt;li&gt;Set a policy on the queue to allow message posting.&lt;/li&gt;&lt;li&gt;Subscribe the queue to the topic.&lt;/li&gt;&lt;li&gt;Send an SNS notification message.&lt;/li&gt;&lt;li&gt;Listen for the message on the queue.&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;Steps 1-6 seem to work just fine, but on step 7, it listens in vain for messages. All ten iterations go by without picking up any messages on the queue. As an added note, if I subscribe an email address to the topic, messages &lt;i&gt;are&lt;/i&gt; delivered. Only the queue appears to be bypassed when SNS sends its notifications.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;code&gt;&lt;br /&gt;public class SnsWithSqsDemo {&lt;br /&gt;private static final String TOPIC_NAME = "TestTopic";&lt;br /&gt;private static final String QUEUE_NAME = "TestQueue";&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* This program demonstrates how to hook up an AWS SQS queue to an AWS SNS&lt;br /&gt;* topic to receive messages.&lt;br /&gt;* &lt;br /&gt;* 1. Create an SNS topic.&lt;br /&gt;* 2. Set a policy on the topic to allow subscriptions.&lt;br /&gt;* 3. Create an SQS queue.&lt;br /&gt;* 4. Set a policy on the queue to allow message posting.&lt;br /&gt;* 5. Subscribe the queue to the topic.&lt;br /&gt;* 6. Send an SNS notification message.&lt;br /&gt;* 7. Listen for the message on the queue.&lt;br /&gt;* &lt;br /&gt;* @param args not used&lt;br /&gt;*/&lt;br /&gt;public static void main(String[] args) {&lt;br /&gt;AWSCredentials awsCredentials = null;&lt;br /&gt;AmazonSNS sns = null;&lt;br /&gt;AmazonSQS sqs = null;&lt;br /&gt;String topicArn = null;&lt;br /&gt;String queueUrl = null;&lt;br /&gt;String queueArn = null;&lt;br /&gt;String subscriptionArn = null;&lt;br /&gt;try {&lt;br /&gt;awsCredentials = &lt;br /&gt;new PropertiesCredentials(&lt;br /&gt;SnsWithSqsDemo.class.getResourceAsStream("AwsCredentials.properties"));&lt;br /&gt;sns = new AmazonSNSClient(awsCredentials);&lt;br /&gt;// 1. Create a topic&lt;br /&gt;CreateTopicResult ctResult =&lt;br /&gt;sns.createTopic(new CreateTopicRequest(TOPIC_NAME));&lt;br /&gt;topicArn = ctResult.getTopicArn();&lt;br /&gt;System.out.println(String.format("Created topic %s with ARN %s", &lt;br /&gt;TOPIC_NAME, topicArn));&lt;br /&gt;// 2. Set policy on topic to allow open subscriptions&lt;br /&gt;Policy snsPolicy =&lt;br /&gt;new Policy().withStatements(&lt;br /&gt;new Statement(Effect.Allow)&lt;br /&gt;.withPrincipals(Principal.AllUsers)&lt;br /&gt;.withActions(SNSActions.Subscribe));&lt;br /&gt;// ??? Is there no Java SDK constant for "Policy"?&lt;br /&gt;sns.setTopicAttributes(new SetTopicAttributesRequest(&lt;br /&gt;topicArn, "Policy", snsPolicy.toJson()));&lt;br /&gt;// 3. Create a queue&lt;br /&gt;sqs = new AmazonSQSClient(awsCredentials);&lt;br /&gt;CreateQueueResult cqResult =&lt;br /&gt;sqs.createQueue(new CreateQueueRequest(QUEUE_NAME));&lt;br /&gt;queueUrl = cqResult.getQueueUrl();&lt;br /&gt;System.out.println(String.format("Created queue %s with URL %s", &lt;br /&gt;QUEUE_NAME, queueUrl));&lt;br /&gt;// 4. Set the queue policy to allow SNS to publish messages&lt;br /&gt;Policy sqsPolicy = &lt;br /&gt;new Policy().withStatements(&lt;br /&gt;new Statement(Effect.Allow)&lt;br /&gt;.withPrincipals(Principal.AllUsers)&lt;br /&gt;.withActions(SQSActions.SendMessage)&lt;br /&gt;.withConditions(ConditionFactory.newSourceArnCondition(topicArn)));&lt;br /&gt;Map&lt;string, string=""&gt; queueAttributes = new HashMap&lt;string, string=""&gt;();&lt;br /&gt;queueAttributes.put("Policy", sqsPolicy.toJson());&lt;br /&gt;sqs.setQueueAttributes(new SetQueueAttributesRequest(queueUrl, queueAttributes));&lt;br /&gt;// ??? Why isn't the queue ARN in the queue attributes?&lt;br /&gt;AmazonIdentityManagement idMgr = new AmazonIdentityManagementClient(awsCredentials);&lt;br /&gt;String accountId = idMgr.getUser().getUser().getUserId();&lt;br /&gt;queueArn = String.format("arn:aws:sqs:us-east-1:%s:%s", accountId, QUEUE_NAME);&lt;br /&gt;// 5. Subscribe the queue to the topic &lt;br /&gt;SubscribeResult sResult = &lt;br /&gt;sns.subscribe(new SubscribeRequest(topicArn, "sqs", queueArn));&lt;br /&gt;subscriptionArn = sResult.getSubscriptionArn();&lt;br /&gt;System.out.println("Subscription ARN: " + subscriptionArn);&lt;br /&gt;// 5.5. Wait a bit for AWS to get all synched-up&lt;br /&gt;Thread.sleep(60000L);&lt;br /&gt;// 6. Send a notification&lt;br /&gt;PublishResult pResult = &lt;br /&gt;sns.publish(new PublishRequest(topicArn, &lt;br /&gt;"Mr Watson -- Come here -- I want to see you."));&lt;br /&gt;System.out.println("Sent message ID = " + pResult.getMessageId());&lt;br /&gt;// 7. Wait for message receipt in queue&lt;br /&gt;for (int i = 0; i &amp;lt; 10; i++) {     Thread.sleep(2000L);     ReceiveMessageResult rmResult =      sqs.receiveMessage(new ReceiveMessageRequest(queueUrl));     if (rmResult.getMessages().size() &amp;gt; 0) {&lt;br /&gt;// A message has been received&lt;br /&gt;for (Message message : rmResult.getMessages()) {&lt;br /&gt;System.out.println(message.getBody());&lt;br /&gt;sqs.deleteMessage(new DeleteMessageRequest(queueUrl, &lt;br /&gt;message.getReceiptHandle()));&lt;br /&gt;}&lt;br /&gt;break;&lt;br /&gt;} else {&lt;br /&gt;System.out.println("No messages available, attempt " + (i+1));&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;} catch (Exception e) {&lt;br /&gt;e.printStackTrace(System.err);&lt;br /&gt;} finally {&lt;br /&gt;// Unsubscribe the queue from the topic&lt;br /&gt;if (sns != null &amp;amp;&amp;amp; subscriptionArn != null) {&lt;br /&gt;sns.unsubscribe(new UnsubscribeRequest(subscriptionArn));&lt;br /&gt;System.out.println("Unsubscribed queue from topic.");&lt;br /&gt;}&lt;br /&gt;// Destroy queue&lt;br /&gt;if (sqs != null &amp;amp;&amp;amp; queueUrl != null) {&lt;br /&gt;sqs.deleteQueue(new DeleteQueueRequest(queueUrl));&lt;br /&gt;System.out.println("Deleted the queue.");&lt;br /&gt;sqs.shutdown();&lt;br /&gt;}&lt;br /&gt;// Destroy topic&lt;br /&gt;if (sns != null &amp;amp;&amp;amp; topicArn != null) {&lt;br /&gt;sns.deleteTopic(new DeleteTopicRequest(topicArn));&lt;br /&gt;System.out.println("Deleted the topic.");&lt;br /&gt;sns.shutdown();&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/string,&gt;&lt;/string,&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=cb7cf34b-5b5a-4e85-b40f-e3fd2ff8be9b" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-773930970071641859?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/773930970071641859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=773930970071641859' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/773930970071641859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/773930970071641859'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2011/03/aws-how-do-you-subscribe-sqs-queue-to.html' title='AWS: How do you subscribe an SQS queue to an SNS topic?'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-572023026740086334</id><published>2011-02-19T11:53:00.000-06:00</published><updated>2011-02-19T11:53:19.800-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tech'/><title type='text'>2011: My Android Year</title><content type='html'>&lt;div class="zemanta-img separator" style="clear: right;"&gt;&lt;a href="http://en.wikipedia.org/wiki/File:Android-logo.jpg" style="clear: right; display: block; float: right; margin-left: 1em; margin-right: 1em;"&gt;&lt;img alt="Android robot logo." height="160" src="http://upload.wikimedia.org/wikipedia/en/a/a5/Android-logo.jpg" style="border: none; font-size: 0.8em;" width="145" /&gt;&lt;/a&gt;&lt;span class="zemanta-img-attribution" style="clear: both; float: right; margin-left: 1em; margin-right: 1em; width: 145px;"&gt;Image via &lt;a href="http://en.wikipedia.org/wiki/File:Android-logo.jpg"&gt;Wikipedia&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;Gadget journalism on the Web seems to be held to the same standard as entertainment journalism, meaning rumors, guesswork and hype make up most of my Google News alerts and Twitter feeds. But (like entertainment journalism, to those who follow it), the hype is strangely addictive. And the hype isn't just about a new device hitting the shelves, but upcoming &lt;i&gt;announcements&lt;/i&gt; about devices that won't see a shelf for months, or even announcements about upcoming announcements. It starts with leaked device code-names or Photoshopped concept images, then there are unconfirmed spec sheets and rumored release dates, followed by official teasers and then trade show releases (with the hands-on videos and device comparison sheets). Finally, YouTube starts getting the gadget version of amateur porn: the unboxing videos. It's an information strip-tease, showing just enough to catch the attention and drive the imagination wild with what isn't revealed.&lt;br /&gt;&lt;br /&gt;I'm not an early adopter of technology, and when something starts to get exciting, I research it for months before I make the jump. I've been carrying around a Windows Mobile phone (the HTC Touch Pro 2), top-class technology that integrated well with work when I bought it, but it seems that Microsoft as a mobile platform is moribund, while Android is the new market share powerhouse. In early 2010, I started following rumors of a beast of an Android phone called the HTC "Scorpion" and for the next year, I submerged myself in Android hype. By January's Consumer Electronics Show, I was sold on two or three Android devices scheduled to release in the first half of the year.&lt;br /&gt;&lt;br /&gt;I'd followed a rumored Motorola Android tablet code-named "Stingray," which was introduced at CES as the "Xoom." The Xoom is the hardware reference for Google's new release of Android, version 3.0 dubbed "Honeycomb," and it boasts a dual-core processor, rear- and front-facing cameras for video chats and HDMI output among its features. When the iPad came out, I couldn't understand where it fit in the gadget ecosystem: was it a bulky smartphone (&lt;i&gt;sans&lt;/i&gt; calls), an underpowered laptop or a high-eyestrain eBook reader? Then, as I moved many of my computer activities into the cloud, live-blogged from geek conventions and trips, and grew weary of taking my laptop out of my carry-on at airport security, I began to realize that the tablet was the ideal travel laptop. The more I researched the applications and accessories (like a Bluetooth keyboard) that would be available, the more the tablet's niche solidified:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Live-blogging&lt;/li&gt;&lt;li&gt;Travel laptop that stays in the carry-on, through security&lt;/li&gt;&lt;li&gt;Garmin navigator replacement&lt;/li&gt;&lt;li&gt;Stream media (Netflix, Hulu, etc.) to any TV&lt;/li&gt;&lt;li&gt;SSH into my work computers and Amazon EC2 instances&lt;/li&gt;&lt;li&gt;Portable movies&lt;/li&gt;&lt;li&gt;Document editing (with Google Docs)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;As of this writing, the Xoom is supposed to release on February 24, 2011. But that information comes from the gadget rags: Motorola and Verizon are silent on the topic.&lt;br /&gt;&lt;br /&gt;As for the Android phone, up until CES 2011, I was looking forward to the HTC Thunderbolt, billed as "Not your dream phone. The one after that." It's sleek like the Nexus One, thin but with a huge 4.3" screen. It's the first "4G" phone on Verizon's LTE network. But Motorola came to CES with a surprise: the heretofore un-hyped (and unheard of) DROID Bionic, with a dual-core processor (the Thunderbolt's is single-core), more on-board storage and an HDMI-out port. The Bionic's case is not as pretty as the Thunderbolt's, but it seems to be more of a powerhouse. Even if Android 2.2 doesn't utilize dual core processors (and that's a big IF -- I haven't seen it categorically demonstrated that this is the case), Android 2.4 will, and software always evolves to push the hardware. The Bionic will have staying power. My wife surprised me by turning down an iPhone to replace her dying BlackBerry Storm, so I'm going to get her the Thunderbolt and stick with my Windows Mobile phone until the Bionic comes out. I'll be able to do some real comparisons then.&lt;br /&gt;&lt;br /&gt;Now, I wait. Neither Verizon, nor HTC nor Motorola have made an official statement about release dates, but the current rumor-mill has the Motorola Xoom releasing on February 24 2011, the HTC Thunderbolt releasing on February 28 2011, and the Motorola DROID Bionic releasing in June 2011. After that, I'll have to wean myself off of Android hype news, and enjoy what I have instead of lusting after the next cool thing.&lt;br /&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=3d1be016-0df9-455c-9175-062ba6280e8a" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-572023026740086334?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/572023026740086334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=572023026740086334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/572023026740086334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/572023026740086334'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2011/02/2011-my-android-year.html' title='2011: My Android Year'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-9175428020260205167</id><published>2011-01-24T22:10:00.000-06:00</published><updated>2011-01-24T22:10:40.741-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drink'/><title type='text'>Amrut Fusion: the acclaimed single malt whisky from... India??</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_VmHJIh6YSMI/TT5G4dbsmXI/AAAAAAAAl8s/3VHVpramlBc/s1600/001.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="320" src="http://3.bp.blogspot.com/_VmHJIh6YSMI/TT5G4dbsmXI/AAAAAAAAl8s/3VHVpramlBc/s320/001.jpg" width="190" /&gt;&lt;/a&gt;&lt;/div&gt;Whisky writer Jim Murray named Amrut Fusion Single Malt the world's third finest whisky, giving it 97 out of 100 points. What's interesting is that Amrut Fusion isn't a product of Scotland, or Ireland or even Kentucky. This whisky comes from Bangalore India, a city known for outsourced information technology rather than fine spirits. As a friend put it, "Beating the English at Cricket or Soccer, well that's just fun... but beating the Scots and Irish at booze... that I have to taste!"&lt;br /&gt;&lt;br /&gt;As did I. And this evening, my wife came home from work with a surprise for me. The local Binny's Beverage Depot carries the entire line of Amrut products. "Amrut" in Hindu mythology is the nectar of the gods. I've been looking forward to pouring a glass and sharing the experience with you. Let's begin!&lt;br /&gt;&lt;br /&gt;This whisky is a lovely light amber color, and its aroma hits you right as you pour it: the first whiff reminds me of cedar and cherry. It's a very fresh profile, but if you stick your nose in the glass like a wine taster, you can smell an undercurrent of smoke and maybe a hint of peat.&lt;br /&gt;&lt;br /&gt;My first sip bites at the tip of my tongue like a super-hot chutney. This is not a whisky I would typically drink neat. It's rough on the tongue, but full of flavors of fruit and vanilla-oak, with cloves and orange rind simmering at the back of the throat after it goes down. I'm not well-versed in whisky, but I've tasted a fair bit of wine, and Amrut Fusion has the same level of complexity I'd find in some of my favorite wines. It changes in your mouth, from the sharp, sweet attack at the tip of the tongue, to a spicy, smoky robustness at the end.&lt;br /&gt;&lt;br /&gt;The Indian men of my parents' generation love their Canadian Club, and get excited when they get their hands on a bottle of Chivas Regal. Now, they can drink something light years ahead of their old standards. And best of all, it's from their homeland. Amrut, you've made a drink worthy of the name.&lt;br /&gt;&lt;div class="zemanta-related"&gt;&lt;h6 class="zemanta-related-title" style="font-size: 1em; margin: 1em 0 0 0;"&gt; Related articles&lt;/h6&gt;&lt;ul class="zemanta-article-ul"&gt;&lt;li class="zemanta-article-ul-li"&gt;&lt;a href="http://www.luxist.com/2010/10/13/whisky-bible-awards-ballantines-and-buffalo-trace-top-three-201/"&gt;Whisky Bible Awards Ballantine's and Buffalo Trace Top Three 2011 Honors&lt;/a&gt; (luxist.com)&lt;/li&gt;&lt;li class="zemanta-article-ul-li"&gt;&lt;a href="http://chicagoist.com/2010/10/18/properly_sauced_amrut_fusion_single.php"&gt;Properly Sauced: Amrut "Fusion" Single Malt Indian Whiskey&lt;/a&gt; (chicagoist.com)&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=ff1eb11a-fa4e-4420-9298-8a4bd1eed821" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-9175428020260205167?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/9175428020260205167/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=9175428020260205167' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9175428020260205167'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9175428020260205167'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2011/01/amrut-fusion-acclaimed-single-malt.html' title='Amrut Fusion: the acclaimed single malt whisky from... India??'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VmHJIh6YSMI/TT5G4dbsmXI/AAAAAAAAl8s/3VHVpramlBc/s72-c/001.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-4478567633199704025</id><published>2010-10-06T20:28:00.000-05:00</published><updated>2010-10-06T20:28:38.433-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wine'/><title type='text'>Daily Six Ounces: Murphy-Goode "All In" Claret 2005</title><content type='html'>My calorie-counting has caused me to seriously neglect my wine consumption. &amp;nbsp;So I resolve to budget for 6 ounces (2.5 Weight Watchers POINTS) of wine every day.&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_VmHJIh6YSMI/TK0iL7DM8xI/AAAAAAAAkis/ew7zfsmZEYQ/s1600/Murphy_Goode_All_In_Claret.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://1.bp.blogspot.com/_VmHJIh6YSMI/TK0iL7DM8xI/AAAAAAAAkis/ew7zfsmZEYQ/s200/Murphy_Goode_All_In_Claret.JPG" width="150" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;First up: the &lt;a class="zem_slink" href="http://www.murphygoodewinery.com/" rel="homepage" title="Murphy-Goode"&gt;Murphy-Goode&lt;/a&gt; "All In" 2005 Claret. &amp;nbsp;A "claret" (pronounced with a hard 't') is a British term for Bordeaux red wine, so this is a Cabernet Sauvignon (59%), Merlot (28%) and Petit Verdot blend. &amp;nbsp;Poured in my glass, I can smell this beast a foot away, all dark red fruit and wood. &amp;nbsp;After a while, the wood becomes more pronounced, and that overused phrase "toasty oak" feels apropos. &amp;nbsp;(Mind you, the smell is competing with my wife's dinner of urad dal, but it seems to hold its own against even Indian food.) &amp;nbsp;At the rim, it's a deep brick red color, deepening to an inky purple inside. &amp;nbsp;It's a big, full wine in the mouth with a soft texture, notes of vanilla and berry on the tongue, finishing with a bit of peppery spice at the back of the throat. &amp;nbsp;Maybe it's just ghosts of meals past (in particular, at the now-closed Meritage restaurant in Chicago), but this wine makes me think of venison loin with a sour cherry sauce. &amp;nbsp;I think it would be great with a big gourmet burger too. &amp;nbsp;Even though it's so soft, the heft of this wine demands food. &amp;nbsp;I'm drinking it as a "cocktail", but it's making me hungry. &amp;nbsp;For meat. &amp;nbsp;Goode stuff, guys. &amp;nbsp;Maybe tomorrow I'll get myself a big old Carson's burger for dinner with my next six ounces.&lt;br /&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=b0851e0e-8c06-42c2-8cc2-901a56f8a6d7" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-4478567633199704025?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/4478567633199704025/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=4478567633199704025' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4478567633199704025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4478567633199704025'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/10/daily-six-ounces-murphy-goode-all-in.html' title='Daily Six Ounces: Murphy-Goode &quot;All In&quot; Claret 2005'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_VmHJIh6YSMI/TK0iL7DM8xI/AAAAAAAAkis/ew7zfsmZEYQ/s72-c/Murphy_Goode_All_In_Claret.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-5546108501438702813</id><published>2010-08-24T22:56:00.000-05:00</published><updated>2010-08-24T22:56:29.187-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='fiction'/><title type='text'>The Alligator on the Chicago River</title><content type='html'>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_VmHJIh6YSMI/THQzzlpzDJI/AAAAAAAAiho/pwVqPrcQTPs/s1600/ChicagoRiverAlligatorCaught.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="103" src="http://4.bp.blogspot.com/_VmHJIh6YSMI/THQzzlpzDJI/AAAAAAAAiho/pwVqPrcQTPs/s200/ChicagoRiverAlligatorCaught.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;No dangerous thrill&lt;br /&gt;About the river now that&lt;br /&gt;They caught the gator.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.chicagobreakingnews.com/2010/08/alligator-spotted-on-north-branch-of-chicago-river.html"&gt;http://www.chicagobreakingnews.com/2010/08/alligator-spotted-on-north-branch-of-chicago-river.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We wore our boots, got our cameras and armed ourselves with sticks -- just in case.&lt;br /&gt;We cut school and set out to the Chicago River, hoping to see the alligator.&lt;br /&gt;We hunted through the reeds, stepping over the broken glass and soggy rubbish, making no noise (except when trying to scare each other).&lt;br /&gt;We saw the river with new eyes.&lt;br /&gt;We spied ducks, geese, some jumping fish and the tail of a beaver as it slid into the water, but our quarry eluded us.&lt;br /&gt;We saw on the news that evening that the gator was captured an hour before we got there.&lt;br /&gt;We secretly hoped it laid eggs.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-5546108501438702813?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/5546108501438702813/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=5546108501438702813' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5546108501438702813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5546108501438702813'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/08/alligator-on-chicago-river.html' title='The Alligator on the Chicago River'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_VmHJIh6YSMI/THQzzlpzDJI/AAAAAAAAiho/pwVqPrcQTPs/s72-c/ChicagoRiverAlligatorCaught.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-703788997838161396</id><published>2010-08-22T13:00:00.000-05:00</published><updated>2010-08-22T13:00:20.732-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>American Ideals and Islamic Terrorism</title><content type='html'>Every time America has strayed from the principle of equality under the law for all people, we end up viewing it as a black mark on our history.&lt;div&gt;&lt;br /&gt;Every time Americans compromise their ideals (such as those codified in the Bill of Rights) in response to anti-American terrorism, the terrorists score a victory.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Every time Americans equate radical, Islamic zealots with all Muslims, Osama bin Laden comes closer to his stated goal of instigating a war between the West and the Islamic world.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Every time Americans justify repressive policy on our part by pointing to repressive policy in another country, we erode our claim to moral superiority.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-703788997838161396?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/703788997838161396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=703788997838161396' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/703788997838161396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/703788997838161396'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/08/american-ideals-and-islamic-terrorism.html' title='American Ideals and Islamic Terrorism'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-4971483969529417047</id><published>2010-08-20T16:00:00.001-05:00</published><updated>2010-08-20T16:33:09.625-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tech'/><title type='text'>Location, Location, Location</title><content type='html'>I used to be a regular at a bar near my apartment, "Garret Ripley's". &amp;nbsp;I'd go there almost every day. &amp;nbsp;Even when alone, I'd go to read or write over a couple of pints of Boddington's. &amp;nbsp;The owners and staff knew me by name, and I knew them; someone would start pouring my Boddy's the minute I walked in the door. &amp;nbsp;Cute servers would chat with me between rounds like we were old friends. &amp;nbsp;It felt special. &amp;nbsp;And that feeling of being special, as much as the Boddington's, kept me coming back.&lt;br /&gt;&lt;br /&gt;This week, &lt;a class="zem_slink" href="http://facebook.com/" rel="homepage" title="Facebook"&gt;Facebook&lt;/a&gt; launched its "Places" feature, in line with social networking technologies like &lt;a class="zem_slink" href="http://foursquare.com/" rel="homepage" title="Foursquare"&gt;FourSquare&lt;/a&gt; and &lt;a class="zem_slink" href="http://gowalla.com/" rel="homepage" title="Gowalla"&gt;Gowalla&lt;/a&gt;. &amp;nbsp;You, with your GPS-enabled mobile phone, can "check in" to the places you vsit, broadcasting your city-crawling lifestyle to your friends. &amp;nbsp;You're also rewarded for "accomplishments" both wide (you've visited the most places in your neighborhood) and deep (you're the most regular of the regulars at your favorite pub). &amp;nbsp;Now, feeling special is easier than ever: these services will express admiration of your worldliness, and show appreciation of your repeat business -- all while providing businesses with valuable customer intelligence as outlined in the fine print of their privacy policies.&lt;br /&gt;&lt;br /&gt;Commentators on the State Of Society have the same critique of these technologies as they had for blogging, Facebook and Twitter: they feed our narcissism, they substitute stunted forms of interaction for real human interaction, they publicize things better kept private, they create a barrier to "authentic" experience... &amp;nbsp;There's truth in all those notions, but that doesn't interest me much. &amp;nbsp;These aren't technologies that are aimed at solving particular problems, they're technologies that are looking for a use. &amp;nbsp;And while the initial applications are sometimes bizarre, it's interesting to see the uses people do find for them, and how that causes the technology to evolve.&lt;br /&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_VmHJIh6YSMI/TG7s0qzYMhI/AAAAAAAAihY/nf3PaDy8nd0/s1600/digitalWorld.jpeg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="149" src="http://3.bp.blogspot.com/_VmHJIh6YSMI/TG7s0qzYMhI/AAAAAAAAihY/nf3PaDy8nd0/s200/digitalWorld.jpeg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;FourSquare and Gowalla users can leave their friends messages, retrievable only when their friends check into the location it was left. &amp;nbsp;The messages can be useful, like "try the corn bisque -- it's dynamite", or just fun Kilroy-was-here markers, like finding a friend's initials carved into your school desk. &amp;nbsp;As the things you can leave for your friends to find become more sophisticated and multi-media, entire parallel dimensions of reality will be created, accessible through your mobile devices, where the public, physical world is only one part of what you can discover. &amp;nbsp;All the old haunts are new again. &amp;nbsp;It's easy to imagine "Dungeons &amp;amp; Dragons" types of games, played in a virtual overlay on the physical world. &amp;nbsp;"London Below", the hidden world existing sideways to the real London from Neil Gaiman's book &lt;i&gt;Neverwhere,&lt;/i&gt;&amp;nbsp;seems prophetic.&lt;br /&gt;&lt;br /&gt;Of course, if you're technically savvy, there's no reason to even leave your house to explore this virtual world. I have a friend who writes applications against the FourSquare API such that he has generated phantom digital proxies of himself who spend all day wandering plausible routes (plausible, to prevent FourSquare from noticing it isn't a real person, and blocking it) and checking into places around town. &amp;nbsp;He describes it as the "game underneath the game" of FourSquare.&lt;br /&gt;&lt;br /&gt;Digital realities and phantoms who wander a world similar to our own, but invisible without the proper gear and permission. &amp;nbsp;The craziest science fiction is coming true in our lifetime.&lt;br /&gt;&lt;br /&gt;Do you check into places using social media? &amp;nbsp;If so, what do you enjoy about it? &amp;nbsp;How would you like to see this develop? &amp;nbsp;If not, what's your biggest turn-off about it? &amp;nbsp;What changes would get you to use a location check-in system?&lt;br /&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=1a6b4d17-b532-4119-816c-bc20627b21aa" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-4971483969529417047?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/4971483969529417047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=4971483969529417047' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4971483969529417047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4971483969529417047'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/08/location-location-location.html' title='Location, Location, Location'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VmHJIh6YSMI/TG7s0qzYMhI/AAAAAAAAihY/nf3PaDy8nd0/s72-c/digitalWorld.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-7302612923879922956</id><published>2010-07-29T15:16:00.001-05:00</published><updated>2010-07-29T16:51:14.268-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='fiction'/><title type='text'>Bedtime, Age 6</title><content type='html'>&lt;div style="background-color: white; color: black; counter-reset: __goog_page__ 0; font-family: Arial; font-size: 12pt; line-height: normal; margin-bottom: 6px; margin-left: 6px; margin-right: 6px; margin-top: 6px; min-height: 1100px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_VmHJIh6YSMI/TFHhWvTK-RI/AAAAAAAAihI/o_fX3DL4bkc/s1600/closetMonster1.jpeg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_VmHJIh6YSMI/TFHhWvTK-RI/AAAAAAAAihI/o_fX3DL4bkc/s320/closetMonster1.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h1 style="font-size: 18pt;"&gt;&lt;span class="Apple-style-span" style="font-size: 16px; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;I’m already moving as I bat down the light switch. The dark pushes the light back into the bulb and then swallows it, but I’m flying, my feet clearing any shadowy arms that might snatch from under the bed. &amp;nbsp;Landing, I scramble to make sure nothing hangs over the edge. &amp;nbsp;I know the rules for avoiding what lurks underneath. &amp;nbsp;Following the rules keeps me safe.&lt;/span&gt;&lt;/h1&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;All the monsters in the dark have rules, and six-year-olds know them instinctively. &amp;nbsp;Light and grown-ups scare them away. &amp;nbsp;Things that live under beds can’t reach up on top of them. &amp;nbsp;Blankets protect whatever they cover. &amp;nbsp;Things that peer in the window won’t come inside if you pretend you’re asleep. &amp;nbsp;Things that live in closets can’t open doors by themselves.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Oh, no.&lt;/i&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;The closet door is cracked open -- just a little bit, but enough. &amp;nbsp;The opening is a black slash in the nighttime gloom. &amp;nbsp;The watching darkness freezes me. &amp;nbsp;I’m afraid to look, but terrified of looking away. &amp;nbsp;I carefully sit up, trying to make no sound -- and a bedspring’s creak sends a gasp to squeeze my throat. &amp;nbsp;The shadows shift around me but I keep my eyes on the closet. &amp;nbsp;The shapes that flutter at the corner of my vision want me to look at them. &amp;nbsp;I know better.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;I have nothing but my hands to push the door shut. &amp;nbsp;I have to reach -- to lean -- over the edge of the bed. &amp;nbsp;This is part of the rules too. &amp;nbsp;If you forget to check before the lights are out, whatever happens is your own fault. &amp;nbsp;That’s when they get you, when you make a mistake. &amp;nbsp;Mommy and Daddy won't always be there to protect you, you know. &amp;nbsp;I reach over the edge, trying to watch both the dark slash and the shadowy floor, suddenly forgetting whether something will spring from where I’m looking, or from where I’m not. &amp;nbsp;I imagine if I push too softly, the door will bounce on the latch and the crack will yawn open like a hungry mouth. &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;I forget about whatever is under the bed as I slam my palm against the closet door. &amp;nbsp;It closes with a too-loud CLACK, and I dive back to the safety zone, burrowing into the warm covers, squeezing my eyes shut so I don’t see the fluttering things that want me to see them. &amp;nbsp;I lie very still, waiting for my heartbeat to slow.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;The danger fades, and feels a little silly; gentler dreams come out to play like wary mice. &amp;nbsp;Secure in blankets, all I need to do is act asleep -- until I am. &amp;nbsp;I'm safe again for one more night.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-7302612923879922956?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/7302612923879922956/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=7302612923879922956' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/7302612923879922956'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/7302612923879922956'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/07/bedtime-age-6.html' title='Bedtime, Age 6'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_VmHJIh6YSMI/TFHhWvTK-RI/AAAAAAAAihI/o_fX3DL4bkc/s72-c/closetMonster1.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-1520095234530636081</id><published>2010-07-15T17:25:00.002-05:00</published><updated>2010-07-29T13:03:33.630-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='fiction'/><title type='text'>"Second Chance"</title><content type='html'>&lt;div class="zemanta-img separator" style="clear: right;"&gt;&lt;a href="http://commons.wikipedia.org/wiki/File:Paradise_Lost_12.jpg" style="clear: right; display: block; float: right; margin-left: 1em; margin-right: 1em;"&gt;&lt;img alt="Satan on his way to bring about the downfall o..." height="320" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/Paradise_Lost_12.jpg/300px-Paradise_Lost_12.jpg" style="border-bottom-style: none; border-color: initial; border-left-style: none; border-right-style: none; border-top-style: none; border-width: initial; font-size: 0.8em;" width="258" /&gt;&lt;/a&gt;&lt;span class="zemanta-img-attribution" style="clear: both; float: right; margin-left: 1em; margin-right: 1em;"&gt;Image via &lt;a href="http://commons.wikipedia.org/wiki/File:Paradise_Lost_12.jpg"&gt;Wikipedia&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;When Lucifer was invited back to Heaven to petition for readmission, he laughed -- even as he chose his best suit and tie. &amp;nbsp;Unfurling his long-unused wings and ascending, he mused that he was but a minion when he Fell. &amp;nbsp;Now he was a ruler. &amp;nbsp;What could Heaven offer him? &amp;nbsp;But as he walked the shining white promenades, inhaling the incense fanned by Seraphim's wings and basking in the ambient Grace, he was struck by how the mind kindly forgets the glories it deems forever lost. &amp;nbsp;Sitting in the waiting room, sipping complimentary Ambrosia, Lucifer couldn't stop stealing glances at the office door. &amp;nbsp;His palms began to sweat.&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;A cherub opened the door with precise punctuality and ushered him inside. &amp;nbsp;He introduced himself, inquired if Lucifer needed anything before they began, and then asked some casual “warm-up” questions. &amp;nbsp;The script was unchanged since Lucifer’s time on the other side of that table. &amp;nbsp;After the pleasantries came the only question that mattered in Heaven.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;“Do you repent of your sins and come to the Lord asking forgiveness?”&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;Lucifer had no false modesty about his oratorical prowess. &amp;nbsp;He had prepared an ode of contrition that could inspire men to form new religions of redemption, and make the Archangels themselves blubber with teary compassion. &amp;nbsp;It almost seemed a waste to debut it to this fluttering baby whose name he had already forgotten. &amp;nbsp;His eyes downcast, a penitent smile on his lips, he gave his answer.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;“No, and no.”&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;Lucifer blinked. &amp;nbsp;Words spun of gold got lost somewhere between his mind and his tongue, and raw truth -- unbidden, undecorated and irretrievable -- came out instead. &amp;nbsp;&lt;i&gt;This place!&lt;/i&gt; &amp;nbsp;All his subtle talents, developed and honed in the long years since the Fall, counted for nothing in Heaven. &amp;nbsp;The final bit of artifice, his own illusions, flaked away like charred skin. &amp;nbsp;The cherub’s big eyes, the color of a clear noon-day sky, held bottomless pity.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;“Thank you for your time.”&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;Lucifer stared at the objects in the tiny interview room, from the tasteful furniture and neat stacks of writing parchment to the way the color of the walls gently diffused light. &amp;nbsp;The smallest things in Heaven were truly lovely.  But they would never value him here. &amp;nbsp;He could spend an eternity trying, with the same result. &amp;nbsp;Even Heaven wasn’t worth that.  &lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;“Thank you for your indulgence, little brother.”&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt; &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: 15px; white-space: pre-wrap;"&gt;Outside, he could feel Heaven rejecting him, its spaces folding away like a delicate sea creature recoiling its fronds. &amp;nbsp;He expected the sudden wave of vertigo -- he had felt it first when being cast from the only home he knew. &amp;nbsp;A second time he Fell, his body gaining speed, his feathers bursting into flame, searing, curling black. &amp;nbsp;He felt no pain at all this time. &amp;nbsp;This time he was falling home.&lt;/span&gt;&lt;/div&gt;&lt;div class="zemanta-pixie" style="height: 15px; margin-top: 10px;"&gt;&lt;a class="zemanta-pixie-a" href="http://www.zemanta.com/" title="Enhanced by Zemanta"&gt;&lt;img alt="Enhanced by Zemanta" class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=aaa1415a-d4ce-4477-a305-bf86684a1a18" style="border: none; float: right;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-1520095234530636081?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/1520095234530636081/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=1520095234530636081' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/1520095234530636081'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/1520095234530636081'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/07/interview.html' title='&quot;Second Chance&quot;'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6750704244287799043</id><published>2010-07-08T10:38:00.001-05:00</published><updated>2010-07-08T10:39:10.587-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='movies'/><title type='text'>Toy Story 3</title><content type='html'>I enjoyed Pixar's new movie, &lt;i&gt;Toy Story 3&lt;/i&gt;, which elicited a few thoughts:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;It's not a "kids' movie". It's firmly a "parents' movie". The themes of being "outgrown" and having to let go probably resonate strongest with parents, especially of teens.&lt;/li&gt;&lt;li&gt;Mr. &amp;amp; Mrs. Potato Head raise questions of the nature of the "self": an association of physical parts? Or a ghost in the machine? &amp;nbsp;The Potato Heads appear to be both.&lt;/li&gt;&lt;li&gt;Mr. Tortilla Head was Dali-surreal and bizarre. Mr. Doo-Doo Head was just plain wrong.&lt;/li&gt;&lt;li&gt;Toys feel things deeply, and "betrayal" can send them down dark paths. If any Micronauts come asking for me, please tell them nothing.&lt;/li&gt;&lt;li&gt;If Pixar wanted to venture into Horror, they made a good start with Big Baby and the Watchful Monkey. &amp;nbsp;Yikes.&lt;/li&gt;&lt;li&gt;Ken is not gay. He is merely fabulous.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6750704244287799043?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6750704244287799043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6750704244287799043' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6750704244287799043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6750704244287799043'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/07/toy-story-3.html' title='Toy Story 3'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-9057889800540343480</id><published>2010-05-31T20:08:00.004-05:00</published><updated>2010-05-31T20:55:55.611-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='food'/><title type='text'>Restaurant Review: Elate</title><content type='html'>&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_VmHJIh6YSMI/TARlxgLrn-I/AAAAAAAAicQ/9WJ3WzuP6nc/s1600/IMG_3877_brighter.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_VmHJIh6YSMI/TARlxgLrn-I/AAAAAAAAicQ/9WJ3WzuP6nc/s320/IMG_3877_brighter.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Built in 1926, the Hotel Wacker, a holdout from less trendy times in Chicago's River North district, is gone. &amp;nbsp;In its place stands the Hotel Felix, bearing no resemblance to the shabby old apartment hotel, outside which transient folk would drink from bottles in brown paper bags. &amp;nbsp;Now, urbanites sip cocktails on the patio of &lt;a href="http://www.elatechicago.com/"&gt;Elate&lt;/a&gt;, the eight-month old restaurant in the Hotel Felix, which sports a modern, minimalist cool from its unadorned floors and tables to its high, exposed-ductwork ceiling.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Though separately owned, Elate shares some of the LEED-certified ethos of the boutique hotel, from its use of reclaimed materials, to its large selection of "biodynamic, organic, or sustainably produced" wines. &amp;nbsp;The menu declares that it promotes "local and organic products whenever possible," but also features Jidori chicken (California), Meyer beef (Colorado) and Rushing Waters trout (Wisconsin).&amp;nbsp; Explains Executive Chef Randal Jacobs, it’s about finding the best quality and flavor. &amp;nbsp;Premium products like these "distinguishes the restaurant" to industry insiders and self-educated foodies alike.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_VmHJIh6YSMI/TARmhL_R03I/AAAAAAAAicY/4yCy8L4N18U/s1600/IMG_3900.JPG" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_VmHJIh6YSMI/TARmhL_R03I/AAAAAAAAicY/4yCy8L4N18U/s320/IMG_3900.JPG" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;A gracious, gently-spoken host, Chef Jacobs likes to "let the good qualities of food speak for themselves." &amp;nbsp;They were eloquent in a four-course tasting, starting with an&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;amuse bouche&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&amp;nbsp;of a baguette slice with tomatoes and rosemary&amp;nbsp;&lt;i&gt;concassé&lt;/i&gt;, draped with a silky shaving of Serrano ham and topped with arugula. &amp;nbsp;The love of fresh herbs, the playful variations on classic pairings and the careful balance between acidity and richness echoed through the courses ahead. &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;The citrus gazpacho smelled of roasted tomatillos with a spritz of grapefruit and looked like a minced fruit salad.&amp;nbsp; Indeed, bits of fruit were balanced against avocado, peppers and onions, with cucumbers and toasted bread adding crunch. &amp;nbsp;It is a joyous riot of sweet, sour, savory and spice: springtime in a bowl.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Serious earthy aromas heralded the second course. &amp;nbsp;A lone slice of pink grapefruit was no match against the nutty richness of meaty French Horn mushrooms and brussel sprouts, the outer leaves fried crisp. &amp;nbsp;A delicately herbed hollandaise softened the dish, a hearty contrast to the previous course.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_VmHJIh6YSMI/TARokKP_s4I/AAAAAAAAicg/oBwF084D7oM/s1600/IMG_3888.JPG" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="150" src="http://2.bp.blogspot.com/_VmHJIh6YSMI/TARokKP_s4I/AAAAAAAAicg/oBwF084D7oM/s200/IMG_3888.JPG" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Elate's barbecued pork belly is pure indulgence. &amp;nbsp;Typically a 50/50 fat-to-meat ratio, Chef Jacobs procures a Dutch product closer to 85/15. &amp;nbsp;This he brines, applies a Kansas City spice rub, slow cooks, brushes with barbecue sauce, and chars. &amp;nbsp;The resulting slab of piggy custard is sweet, creamy and decadent. &amp;nbsp;Only the assertive tartness and crunch of the accompanying sauerkraut in cider vinegar and Granny Smith apple slices cut through the glorious fat.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;I love cilantro, but never thought to use it in dessert. &amp;nbsp;Chef Jacobs does exactly that in his Lime Curd Crisp, layering lime cream, toasted phyllo, raspberries macerated with cilantro, and a dollop of torched coconut meringue. &amp;nbsp;The sweet and sour, creamy and crispy confection has a lovely herbal freshness unlike any dessert I've ever tasted.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;In a neighborhood already replete with dining options, Elate’s basic focus on quality ingredients in balanced compositions make it a noteworthy addition, one that I hope remains a fixture on Clark and Huron for years to come.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Elate at the Hotel Felix&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;111 W. Huron Street&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Chicago IL 60654&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;(312) 202-9900&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div style="font-family: Verdana; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;elatechicago.com&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;span class="Apple-style-span" style="font-family: verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: black;"&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-9057889800540343480?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/9057889800540343480/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=9057889800540343480' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9057889800540343480'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9057889800540343480'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/05/restaurant-review-elate.html' title='Restaurant Review: Elate'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_VmHJIh6YSMI/TARlxgLrn-I/AAAAAAAAicQ/9WJ3WzuP6nc/s72-c/IMG_3877_brighter.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-2566617260382297696</id><published>2010-04-21T11:19:00.000-05:00</published><updated>2010-04-21T11:19:41.328-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='justsaying'/><title type='text'>I'm Just Saying: It Begs the Question</title><content type='html'>From &lt;a href="http://en.wikipedia.org/wiki/Begging_the_question"&gt;Wikipedia&lt;/a&gt;:&lt;br /&gt;&lt;blockquote&gt;Begging the question (or petitio principii, "assuming the initial point") is a logical fallacy in which the proposition to be proved is assumed implicitly or explicitly in the premise.&lt;/blockquote&gt;It &lt;i&gt;begs&lt;/i&gt; the question, for example, to assert that "might makes right" because morality is defined by the victor. &amp;nbsp;But presenting a plan requiring a mansion and a yacht may &lt;i&gt;raise&lt;/i&gt; the question of how to acquire such resources. &amp;nbsp;Rule of thumb: If you're about to say "It begs the question..." followed by an actual question, you probably mean "it raises the question."&lt;br /&gt;&lt;br /&gt;I'm just saying.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-2566617260382297696?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/2566617260382297696/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=2566617260382297696' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/2566617260382297696'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/2566617260382297696'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/04/im-just-saying-it-begs-question.html' title='I&apos;m Just Saying: It Begs the Question'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-7695283257925829722</id><published>2010-04-14T17:26:00.001-05:00</published><updated>2010-04-15T10:18:34.224-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>Moving To The Cloud</title><content type='html'>Recently, my hard drive gave out on my personal laptop. &amp;nbsp;Around the same time, my work laptop fell victim to malware and had to be re-imaged. &amp;nbsp;I back up my data, but restoring applications and configuration settings is a multi-day drudgery. &amp;nbsp;Making things worse, I was still stubbornly using Outlook as my Personal Information Manager, and though I synchronized with my phone, a hard drive crash spells a tiresome, error-prone restoration effort. &amp;nbsp;I love my HTC Touch Pro2 smart phone, but most of my synchronization is through Windows ActiveSync, and with this constant Windows Update and anti-virus/spyware arms race, I'm considering ditching Windows altogether. &amp;nbsp;(This&amp;nbsp;&lt;a href="http://wubi-installer.org/"&gt;installer&lt;/a&gt;&amp;nbsp;for Ubuntu looks like it makes things easy.)&lt;br /&gt;&lt;br /&gt;So now that I'm rebuilding from the rubble of my old laptop, I'm thinking I'll drag myself into the 21st century and move my data into the Cloud. &amp;nbsp;I want to get as much as possible out onto remote servers that are cared for better than I care for my hardware. &amp;nbsp;So I made a list of the things I do with desktop applications on my personal computer, and have started investigating Cloud alternatives. &amp;nbsp;Here's my first stab.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Email/Contacts/Calendar/Tasks&lt;/b&gt;&lt;br /&gt;Let the shaming ensue, but I &lt;i&gt;like&lt;/i&gt; Outlook. &amp;nbsp;I like dragging emails into my tasks or calendar and having them morph into the appropriate object. &amp;nbsp;I like the ease of synchronization with my WindowsMobile phone. &amp;nbsp;I like all the fun fields on a Contact record. &amp;nbsp;I like the interface. &amp;nbsp;But the data is hard to back up, hard to access except through Microsoft applications and not in the Cloud (I don't know if hotmail has sync features, but I don't need yet another email account). &amp;nbsp;So I'm thinking of moving to&amp;nbsp;&lt;a href="http://mail.google.com/"&gt;GMail&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="http://www.google.com/calendar/"&gt;Google Calendar&lt;/a&gt;, probably moving my domain to&amp;nbsp;&lt;a href="http://www.google.com/apps/intl/en/business/gmail.html"&gt;GMail For Business&lt;/a&gt;&amp;nbsp;for $50 per year. &amp;nbsp;Yes, their task manager is primitive and I hate the calendar interface, but if I'm that bummed about it, Google has APIs I can use to write my own damn UI.&lt;br /&gt;&lt;br /&gt;Note: A colleague did show me a hosting service called&amp;nbsp;&lt;a href="http://www.dreamhost.com/"&gt;dreamhost.com&lt;/a&gt;&amp;nbsp;that allows not only Google suite integration, but shell access and an expanding list of plug-ins. &amp;nbsp;It looks tempting, but I don't know when I'll have the time to take advantage of all the things it offers.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Word Processing/Spreadsheets/Power Points&lt;/b&gt;&lt;br /&gt;&lt;a href="http://docs.google.com/"&gt;Google Docs&lt;/a&gt;&amp;nbsp;is the obvious solution here, and there are convenient importer/converters for my Office documents. &amp;nbsp;The formatting and layouts aren't as robust as the desktop alternatives, but I can't remember the last time I used that extra control.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Personal Finance&lt;/b&gt;&lt;br /&gt;I currently use Intuit's Quicken to track and manage my finances, and I can enter expenses on Landware's Pocket Quicken and syncrhonize it to my desktop. &amp;nbsp;It works great, and I love it. &amp;nbsp;But now, Intuit has decided to end its licensing to Landware and, following its acquisition of Mint, has scrapped Quicken Online as well. &amp;nbsp;It looks like their new Cloud product,&amp;nbsp;&lt;a href="http://www.mint.com/"&gt;Mint.com&lt;/a&gt;, will combine the "best" of both Quicken and Mint. &amp;nbsp;Sadly, the only mobile support is for the iPhone, but if the Web interface looks good on a mobile device, this won't be too much of a hardship. As long as I have Internet access...&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Password Management&lt;/b&gt;&lt;br /&gt;I currently have SplashID installed on my desktop, which synchronizes with the SplashID on my phone. &amp;nbsp;It's a great solution, and probably my most-used application -- on both my phone and my desktop. &amp;nbsp;Happily, the same company has a&amp;nbsp;&lt;a href="https://www.splashid.com/splashid"&gt;SplashID Live&lt;/a&gt;&amp;nbsp;Cloud solution which can import/export (though not synchronize) from/to the desktop file format. &amp;nbsp;I think this might be a good product to have both in the Cloud &lt;i&gt;and&lt;/i&gt; on the desktop, just in case I need the information and don't have access to the Web.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Programming&lt;/b&gt;&lt;br /&gt;This one is easy. &amp;nbsp;Add a&amp;nbsp;&lt;a href="http://github.com/"&gt;github&lt;/a&gt;&amp;nbsp;plug-in to Eclipse, and your source code and resources are under Cloudy source control.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Photographs&lt;/b&gt;&lt;br /&gt;Most of my data is digital photographs. &amp;nbsp;On my desktop, I like the ZoomEx utility provided by Canon, but I do like using&amp;nbsp;&lt;a href="http://picasa.google.com/"&gt;Picasa&lt;/a&gt;&amp;nbsp;on the desktop and its easy synchronization to&amp;nbsp;&lt;a href="http://picasaweb.google.com/"&gt;PicasaWeb&lt;/a&gt;. &amp;nbsp;With my old desktop computer's CD burner broken, this has already helped me get all the old photographs off its hard drive.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Music&lt;/b&gt;&lt;br /&gt;This one seems difficult. &amp;nbsp;I'm not an iPod/iTunes user and I'm not interested in becoming one. &amp;nbsp;But&amp;nbsp;&lt;a href="http://www.mp3tunes.com/"&gt;The Locker from MP3Tunes&lt;/a&gt;&amp;nbsp;seems to provide a good solution for putting MP3s in the Cloud and making them accessible from various devices. &amp;nbsp;There's even an open API against which to program your own music clients. &amp;nbsp;Very cool.&lt;br /&gt;&lt;br /&gt;That's my initial game plan for migrating my personal computing to the Web. &amp;nbsp;Has anyone encountered any better online solutions for these different areas?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-7695283257925829722?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/7695283257925829722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=7695283257925829722' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/7695283257925829722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/7695283257925829722'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/04/moving-to-cloud.html' title='Moving To The Cloud'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-5300589669720077820</id><published>2010-01-12T21:22:00.000-06:00</published><updated>2010-01-12T21:22:56.261-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='justsaying'/><title type='text'>I'm Just Saying: I Could Indeed Care Less</title><content type='html'>At the risk of sounding pedantic, I'd like to clarify something.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;"I could care less."&lt;br /&gt;&lt;/blockquote&gt;You have some interest, however marginal.&amp;nbsp; You're saying that it is possible for you to care less than you currently do.&amp;nbsp; Your investment in the topic at hand is at some level greater than zero.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;"I couldn't care less."&lt;br /&gt;&lt;/blockquote&gt;You are completely uninterested.&amp;nbsp; There is no way for you to care less than you currently do.&amp;nbsp; Your investment is zero, and the scale doesn't go negative.&lt;br /&gt;&lt;br /&gt;I'm just saying.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-5300589669720077820?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/5300589669720077820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=5300589669720077820' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5300589669720077820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5300589669720077820'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2010/01/im-just-saying-i-could-indeed-care-less.html' title='I&apos;m Just Saying: I Could Indeed Care Less'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6605018108833464217</id><published>2009-12-15T17:38:00.001-06:00</published><updated>2009-12-15T17:46:28.071-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Travel Tweets: Zanzibar and Homeward Bound</title><content type='html'>During our travels, I found Twitter to be an excellent tool to document the journey as it happened.&amp;nbsp; Even in places where I had limited internet access, I typically had a phone signal, which was enough to record a 140-character thought for my family and friends to see. &amp;nbsp;(Previous: &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-serengeti-and-tarangire.html"&gt;Serengeti and Tarangire Tweets&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Here are the Tweets from the last leg of our Tanzania trip: our relaxation time in Zanzibar, just off the coast of Dar Es Salaam.&amp;nbsp; Times are in U.S. Central. &amp;nbsp;(See all the photos on my &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=directlink"&gt;Picasa album&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Zanzibar! Local weather, hot and humid. Bela's in heaven. I need air conditioning. Or a cold drink. &lt;br /&gt;6:55 AM Nov 6th from txt&lt;br /&gt;&lt;br /&gt;At the Shooting Star Lodge in Zanzibar, in an adorably quaint bungalow with a back porch overlooking the Indian Ocean. &lt;br /&gt;8:47 AM Nov 6th from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ib99NL2c4VhcaCVk41RQ1w?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyW5H3P6ToI/AAAAAAAADtM/dnnOc9YgzdA/s144/IMG_3249.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=embedwebsite"&gt;Zanzibar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Played in the pool ("swam" is too strong a term) overlooking the Indian Ocean in Zanzibar. After lunch, we'll play in the ocean itself. &lt;br /&gt;4:40 AM Nov 7th from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/bXy_niYBW0sIOe_LhlQ4sw?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyW54vhJ0uI/AAAAAAAADvs/s2cz1GsmGQA/s144/IMG_3272.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/i_11DdL60y_E0ZE6fn4TMQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyW58zi6Q2I/AAAAAAAADv8/KSWJFXwGurk/s144/IMG_3274.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/tpAN0MUACdnDorsnAGIQ7g?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyW5_NmUJJI/AAAAAAAADwE/N0_GRO56RGs/s144/IMG_3275.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=embedwebsite"&gt;Zanzibar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;How the Muslim ladies of Zanzibar, completely covered in black, manage to keep cool in this heat and humidity escapes me.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;9:18 AM Nov 7th&amp;nbsp;&amp;nbsp; from txt&lt;br /&gt;&lt;br /&gt;Saw tiny, fast-moving white crabs on the Zanzibar beach. They ducked into holes in the sand whenever I approached. They're kinda adorable.&lt;br /&gt;&lt;/div&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;9:31 AM Nov 7th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/QVxlSG-v0SiWGAVIlkK5AA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyW6dv7jS2I/AAAAAAAADxw/YwNSL_pk6WI/s144/IMG_3296.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/C_-4EysbWMLDkyKFzFq-FQ?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyW6f0szbyI/AAAAAAAADx4/7f8bW6o496w/s144/IMG_3299.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/LL7DyXT-4ycDfOzMoe2Ekg?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyW6jLiuWbI/AAAAAAAADyE/qtyxgstK3Bg/s144/IMG_3329.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=embedwebsite"&gt;Zanzibar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Saturday night at the Shooting Star in Zanzibar: beach BBQ with fresh-caught lobster, GIANT prawns, fish and squid. w/Chenin/Chard/Viognier. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:43 AM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/2A_EBZkkN4Xw3qCd40RxNA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyW6l2FRjyI/AAAAAAAADyM/CfeDYp5oCbg/s144/IMG_3306.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/LorlPKyD8IQOVCVA0WMQoQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyW6oRl3CUI/AAAAAAAADyU/mmmyvTg3j0s/s144/IMG_3301.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ZXuZF0kbJau9nuaMTkEWpw?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyW6q3WSL-I/AAAAAAAADyc/SNsRiDD--E4/s144/IMG_3302.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ukXKbDIvKHrtzsjx2Zom3A?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyW6sx0Is2I/AAAAAAAADyo/4tAwsvBcJJ8/s144/IMG_3305.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=embedwebsite"&gt;Zanzibar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Increasing annoyance with Zanzibar heat, humidity, bugs, critters and rustic settings means it's nearing time for vacation's end tomorrow. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:50 AM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Correcting past Tweet: we were NOT cheated on entry visa cost. Tanzanians have proven to be among the most honest folk I've ever met. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:17 AM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Ants in sugar, flies on food. Hotel guest panicked when she saw a green snake at breakfast. Al fresco dining in the tropics comes at a cost. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:28 AM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Powdered sugar: a sweet way to choke. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:13 PM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Watching the sunlight shimmer off Indian Ocean waves while waiting for ride to Zanzibar airport, DarEsSalaam bound. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:37 PM Nov 8th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/GapAwKOz0pFSr174gldQMQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyW618GFmYI/AAAAAAAADzI/2YMYvMJPDHw/s144/IMG_3312.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zanzibar?feat=embedwebsite"&gt;Zanzibar&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;I'm impressed by all the young Europeans and Americans backpacking through Africa. Adventurous kids. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;1:46 AM Nov 9th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Puddle-jumped from Zanzibar to Dar Es Salaam. Now killing time at Slipway and friends' homes before our evening flight to Zurich. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:11 AM Nov 9th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Rap/hip-hop in Swahili sounds pretty cool, though I can't understand a word of it. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:24 AM Nov 9th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Dar Es Salaam traffic at a dead standstill. Flight to Zurich in 4 hours. I remain optimistic. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;9:28 AM Nov 9th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;is in the Dar Es Salaam airport, waiting to board his 10-hour flight to Zurich. The journey home begins! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:00 AM Nov 9th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;is in Zurich, where they don't convert Tanzanian Shillings. Gonna buy some Swiss chocolate while waiting for flight to Chicago. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ot-BAvckWekqFIH-PK9uzg?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/Sx3qgYZd2KI/AAAAAAAAC-o/kE3zHLWH_OA/s144/IMG_2937.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/7O0AoDrS_56IRMwTG09Vyw?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/Sx3qjIgTSxI/AAAAAAAAC-0/kOhHom89OG4/s144/IMG_2938.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/_LyqnZjtGsjQov7JcJghFg?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/Sx3qlieZXOI/AAAAAAAAC-8/5tTRFfeF7sE/s144/IMG_2939.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/WXovpwmAgLXwmIyDQBCjRA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3qoUn7knI/AAAAAAAAC_E/8IbbK-eYsf4/s144/IMG_2940.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/nHOqzOseVwSN6sOa5o-h9w?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3qq9xpZHI/AAAAAAAAC_M/EcvqDXn-j7E/s144/IMG_2941.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/DnXd1SylFpeXf2kJ-melew?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3quGwcJoI/AAAAAAAAC_U/16pAQ1pM0QU/s144/IMG_2942.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:29 AM Nov 10th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Caotina surfin Swiss Premium Chocolate Drink puts Kay-O/Yoohoo to shame. And I LOVE Kay-O/Yoohoo. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:17 AM Nov 10th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;http://twitpic.com/ozboe - Electric bug zapper racquet! Genius! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:57 AM Nov 10th from TwitPic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And so concludes the travel Tweets for our Tanzanian trip.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6605018108833464217?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6605018108833464217/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6605018108833464217' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6605018108833464217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6605018108833464217'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/12/travel-tweets-zanzibar-and-homeward.html' title='Travel Tweets: Zanzibar and Homeward Bound'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_VmHJIh6YSMI/SyW5H3P6ToI/AAAAAAAADtM/dnnOc9YgzdA/s72-c/IMG_3249.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6455221660514517313</id><published>2009-12-15T17:33:00.002-06:00</published><updated>2009-12-15T17:47:30.500-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Travel Tweets: Serengeti and Tarangire</title><content type='html'>During our travels, I found Twitter to be an excellent tool to document the journey as it happened.&amp;nbsp; Even in places where I had limited internet access, I typically had a phone signal, which was enough to record a 140-character thought for my family and friends to see. &amp;nbsp;(Previous: &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-ngorongoro-crater.html"&gt;Ngorongoro Tweets&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Here are the Tweets from the fourth and fifth phases of our Tanzania trip: a trip through Olduvai Gorge to a safari in the Serengeti national park and wildlife preserve, and then a day in Tarangire national park and preserve.&amp;nbsp; Times are in U.S. Central.  (For all the pictures see my Picasa albums for the &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=directlink"&gt;Serengeti&lt;/a&gt; and &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=directlink"&gt;Tarangire&lt;/a&gt;.)&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Zebras make a high-pitched whistling braying sound, like donkeys on helium. &lt;br /&gt;11:27 PM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/Zbh2p8x2khZwVNkABiT9wQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SychC5occ0I/AAAAAAAAErY/OqWEH0CGSEA/s144/IMG_0736.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The Masai have traditions, mores &amp;amp; taboos that define &amp;amp; binds them as a people. What defines Americans? Worth pondering in devisive times. &lt;br /&gt;11:34 PM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;Just saw a giraffe and her calf on the road to Olduvai. She stopped, turned her back, lifted her tail, and pooed for us.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;11:53 PM Nov 1st&amp;nbsp;&amp;nbsp; from txt&lt;br /&gt;&lt;br /&gt;Here at Olduvai (mispronunciation of "Oldupai") Gorge, human evolution is refreshingly uncontroversial. &lt;br /&gt;1:10 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/W9uGluQ11jmg-dxLO4vXlw?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQ8-gSE9I/AAAAAAAAELs/dl7Ivi9UJcY/s144/IMG_0348.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Hominid "Lucy" was named for the hit song at the time: Lucy In The Sky With Diamonds. &lt;br /&gt;1:15 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/uieO1LK7XlrBu0oYgPPyeQ?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXRAeThA-I/AAAAAAAAEMM/h586L7yPDCA/s144/IMG_0350.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;"Serengeti" is a mispronunciation of the Masai word for endless plains, "Sirengeti". &lt;br /&gt;1:23 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;On the Serengeti I can see the Earth's curvature all around. Only other place I've seen such far horizons is at sea. &lt;br /&gt;2:19 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;Over the last few days in the Tanzanian bush, I've gained so much respect for the Land Cruiser and especially our driver Mr. Mkenda. &lt;br /&gt;4:04 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/_rkwY5opVrhPXxWlgJsFKw?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLQPowYzI/AAAAAAAAD9w/ZocxXpf4Tco/s144/IMG_3107.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Wandered up a little trail at a rest stop in the Serengeti. Encountered a baby elephant! Took pix and backed away, looking out for mama. &lt;br /&gt;4:08 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;I never realized how huge an animal the giraffe is, until staring up at one, 20 feet away on a Serengeti road.&lt;br /&gt;4:40 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/Tv3B4WCaicytcZkK59mArw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXRP5EPsFI/AAAAAAAAENk/aYqnsv2oQls/s144/IMG_0847.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Staying at the Serengeti Sopa Lodge, where the animals come close to our suite's balcony. Very close. &lt;br /&gt;6:30 AM Nov 2nd from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/jwmtC9klV5Rs7bcXOFehCQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXRPJhMhfI/AAAAAAAAENc/NMOjHRe49m0/s144/IMG_0845.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Don't get between a hippo and the water. A big hippo's SNORT made that very clear.&lt;br /&gt;&lt;/div&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;9:59 AM Nov 2nd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/_QGpitNIVXnIUAgpSM0KFg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SydkoyJoICI/AAAAAAAAEyM/4qlTkkX2x2o/s144/IMG_0387.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4am wake-up call tomorrow for a balloon ride over the Serengeti! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:55 AM Nov 2nd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/Yo_5y34Qd4h1-X_ULtXJng?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SycB0jig_gI/AAAAAAAAEVY/iFxtiz-dgGA/s144/IMG_0437.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Lions, cheetah &amp;amp; herds of hippo are just bonuses on a balloon ride over the Serengeti. The bird's-eye view alone is worth the price. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:30 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/NgZBUBhqPcGDB_1p_Ji5MQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SycF8HPP1JI/AAAAAAAAEXI/iRSgqvFPRpk/s144/IMG_0463.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/u2DXZLcruvGZ8-JQ8LOQbA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SycNXEbKiwI/AAAAAAAAEYA/aEuuXAGwKlY/s144/IMG_0490.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ZVNOTDjUw6XOJN__fcuiIA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SycNdVfmd9I/AAAAAAAAEYU/psg2y62fpeI/s144/IMG_3209.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/hLy2ijKfOAS_YNa5-8sd9g?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SycPqCKKHOI/AAAAAAAAEZA/7PE-LWdFQec/s144/IMG_0503.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Just saw the loser of a bull hippo fight. His carcass was pillaged by the biggest crocodile I've ever seen. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:32 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/wGlEOMhwjtGsYwOb6j2Oqw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SydDE9PBYaI/AAAAAAAAEsA/ReyHWbKPEFI/s144/IMG_0543.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/BnaqrWq0znQuY2U9jpWFLw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SydDGjW2SmI/AAAAAAAAEsI/Gn0H88EgItU/s144/IMG_0538.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Stopped for lunch, watching a pride of lionesses sunning. Warthog passed by. Chase. Kill. Lionesses lunch too. WOW. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:35 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/BH4AdB_iUYNuM97tMT_UIQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SydRvNMLDVI/AAAAAAAAEuc/pN7RC65C718/s144/IMG_0636.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Guide stopped the Land Cruiser within ten feet of a big, scarred male lion and a sleek cheetah. Exhilirating! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:37 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/obgjWG0V20z4auQaOlr6IQ?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SydRnhnSUVI/AAAAAAAAEt4/o3-67jjfnZ0/s144/IMG_0613.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/x558gz05TPGDhpwuG9zb8A?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SydRr026CZI/AAAAAAAAEuM/AwPdKalAxvo/s144/IMG_0619.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Safari BINGO! After spotting the leopard, we've seen all the big animals possible on the Sarengeti. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;5:07 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/pSgpvad0cLqbk50r1JVhGA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SydR17GU10I/AAAAAAAAEvE/twsMBh0seCs/s144/IMG_0733.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Touring the Serengeti, came upon a lioness guarding a water buffalo kill. She had on a radio collar. Marlin Perkins was here. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;5:16 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/W9WR0LnmM3iJFiWI9rajmg?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SydRx0TxWeI/AAAAAAAAEus/s3MjEOFKnuw/s144/IMG_0657.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;The vicious, relentless, disease-carrying tsetse fly is attracted to the colors blue and gray. The same colors as my shoulder bag and shirt. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;10:29 AM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;I wouldn't have thought I could get sore from riding in a Land Cruiser over Serengeti trails... But oh, can I! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:13 PM Nov 3rd from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Our Tanzanian park guide Mkenda credits growing up among mountains and vast plains for his eagle-eyed distance vision. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:36 AM Nov 4th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;is eating lunch at a folding table on a Serengeti plain amidst herds of grazing wildebeest and impala. This is amazing!&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:08 AM Nov 4th&amp;nbsp;&amp;nbsp; from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/MmnMouktbGEWZiMozWpWbA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sydm4dv19TI/AAAAAAAAEz8/nmpP-wdcYj4/s144/IMG_0755.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;At the Serengeti visitor's center, hyraxes scamper around like they own the place, sunning on picnic tables, curling up at your feet. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;6:16 AM Nov 4th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/bTCtousuUq-msXHETtEc6w?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SycSqQrwadI/AAAAAAAAEb0/6GEKel0gp5M/s144/IMG_0784.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Leopards seem to be the elusive celebrities of the Serengeti. One just got up, sauntered among us paparazi cars and crossed the road. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;7:24 AM Nov 4th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;The leopard just walked up to our Land Rover, checked out the tires and sauntered down the road. Could've petted, but wanted to keep arm. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;7:36 AM Nov 4th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/dwzmQs9bPODIj-53Sjh6dw?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SydR6YTZd3I/AAAAAAAAEvU/bGnNvuoB7xY/s144/IMG_0806.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/SarengetiNationalPark?feat=embedwebsite"&gt;Sarengeti National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Today we leave the Serengeti and head for Tarangire National Park for our final day of safari. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;10:06 PM Nov 4th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;On the Serengeti you WILL eventually be eaten. If not while you're breathing, then certainly after. And not even your bones will remain. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/LzV8YtI0jHKGjhtnqAwzjg?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXPHzT7vlI/AAAAAAAAECw/bCaiCQKt3N4/s144/IMG_0052.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:50 AM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Stopped at Gibb's Farm, a lush coffee plantation in Karatu. All estate-grown vegetables; most flavorful I've ever eaten! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:57 AM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/IP7JWKieq1yNtIcznedncA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyW4DWkjdJI/AAAAAAAADpc/QrEE309ZwVk/s144/IMG_0871.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/oukBhvR7Kox-p4u-aHTpkw?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyW4EjV5njI/AAAAAAAADpo/mh-A2xBzn94/s144/IMG_0872.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=embedwebsite"&gt;Tarangire National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Now entering Tarangire National Park, Tanzania: our final safari destination. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;6:40 AM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Tarangire National Park has approx 3 elephants per square kilometer. Seems like more. Common as dogs in River North! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:30 PM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/PcGGj-5H3afictoYpPY3zQ?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyXKfkTBvRI/AAAAAAAAD6g/vryzM6b1EJI/s144/IMG_0941.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=embedwebsite"&gt;Tarangire National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Seeing a lion up close is great. Seeing a lioness &amp;amp; 5 cubs, with a young wildabeest kill -- up close -- is spectacular! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:38 PM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/1BWx-VDwi9tz3-pOKjTLrA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyW4fDIVpvI/AAAAAAAADr0/oiHCH1I4CoE/s144/IMG_0911.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=embedwebsite"&gt;Tarangire National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Kikoti Camp in Tarangire: fell asleep to the smell of wood smoke and the sounds of insects; awoke to bird song and mist over the forest. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:46 PM Nov 5th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/uxKJpIMHTfjEgFg1whdcaA?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyXKy0rQK_I/AAAAAAAAD7k/vwVWvNJJhjg/s144/IMG_3243.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/hngzT0zkU3zjG7ZJgJRHDA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXKzoP2heI/AAAAAAAAD7s/PQFhzxxho5U/s144/IMG_0956.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/mlQRo-LS1YSs2MFlzvJeig?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SyXK37PYS2I/AAAAAAAAD8M/TllDoy_ko0o/s144/IMG_0950.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=embedwebsite"&gt;Tarangire National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Like a fifth leg or a second trunk, a bull elephant's junk almost reaches the ground. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;12:24 AM Nov 6th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/vnMQfKSxkxsQtLD30Ebohw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXKg_D7YeI/AAAAAAAAD6o/l2339x6y1HY/s144/IMG_0942.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/TarangireNationalPark?feat=embedwebsite"&gt;Tarangire National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Leg 1 (father-in-law's old haunts) and 2 (safari) of our Tanzanian trip are over. Now off to leg 3: Zanzibar to play in the ocean! &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:58 AM Nov 6th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Finally, we left for Zanzibar, to end our trip relaxing on the beach. &amp;nbsp;(Go to the &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-zanzibar-and-homeward.html"&gt;Zanzibar Tweets&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6455221660514517313?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6455221660514517313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6455221660514517313' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6455221660514517313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6455221660514517313'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/12/travel-tweets-serengeti-and-tarangire.html' title='Travel Tweets: Serengeti and Tarangire'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_VmHJIh6YSMI/SychC5occ0I/AAAAAAAAErY/OqWEH0CGSEA/s72-c/IMG_0736.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-4161467011304587880</id><published>2009-12-13T22:35:00.030-06:00</published><updated>2009-12-15T17:48:00.978-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Travel Tweets: Ngorongoro Crater</title><content type='html'>During our travels, I found Twitter to be an excellent tool to document the journey as it happened.&amp;nbsp; Even in places where I had limited internet access, I typically had a phone signal, which was enough to record a 140-character thought for my family and friends to see. &amp;nbsp;(Previous: &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-dar-es-salaam.html"&gt;Dar Es Salaam Tweets&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Here are the Tweets from the third phase of our Tanzania trip: safari in the Ngorongoro Crater national park and wildlife preserve.&amp;nbsp; Times are in U.S. Central.  (See all the pictures on my &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=directlink"&gt;Picasa album&lt;/a&gt;.)&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Driving from Arusha to Ngorongoro, seeing lavender-flowered Jaracanda trees, arabica coffee plantations, giant aloes, cattle and goats. &lt;br /&gt;6:48 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/n54aRpuxmKqzXPJRSwX7KA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLWEgIPWI/AAAAAAAAD-A/a0r5dKj_F4U/s144/IMG_3090.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Just saw camels grazing with donkeys on the wide, arid grasslands. Patches of green along the road where the rains run off. &lt;br /&gt;6:55 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;On the Arusha-Ngorongoro road, the horizon is nothing but mountains and towering fluffy cumulonimbus. Acacia and sere grasslands until then. &lt;br /&gt;7:10 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/DUjRjzJmkjIDPGM9TFb31w?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLSGN4_QI/AAAAAAAAD94/ioMVfwVlJME/s144/IMG_3093.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Driving through northern Tanzania, I'm convinced the Masai inspired the Aiel and their Three-Fold Land. #WoT &lt;br /&gt;7:30 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;More sights along the Arusha-Ngorongoro road: big termite mounds like ruined pillars and tornado-like dust devils.&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;7:54 AM Oct 31st&amp;nbsp;&amp;nbsp; from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/RAMvwBpYksSxHgY_BFzaJA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLaGxIi9I/AAAAAAAAD-U/xACMGfDMJ3U/s144/IMG_3099.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;That's one HUGE dust storm heading our way... &lt;br /&gt;7:59 AM Oct 31st from tx&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;br /&gt;Baboons! Hanging around and sauntering across the road like they own the place. And I'm not gonna argue with them. &lt;br /&gt;8:13 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/szYwbBkRq3yK6NkCQCcB7g?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLcYYfFtI/AAAAAAAAD-c/hSjFbUJVJW8/s144/IMG_3100.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The countryside is painted in vivid green grass &amp;amp; leaves, yellow brush, red &amp;amp; lavender flowers, rust soil, powder-blue sky and white clouds. &lt;br /&gt;8:41 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;First view of Ngorongoro Crater from the rim is breathtaking. A vast preserve 600m below of plains. &amp;amp; lakes, animal herds visible as specks. &lt;br /&gt;9:45 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/KS1931-msCYf2-qFPkCoyQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLhrtau_I/AAAAAAAAD_A/uypjM3QMMlM/s144/IMG_0049.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/CkJPZHY5Rjwuzzc0FTczhA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLiY0f21I/AAAAAAAAD_I/M0m1cwHCm_8/s144/IMG_0050.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/oHRxIpoFp8ScGCLhFgNfdg?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLjbSTvLI/AAAAAAAAD_Q/e1QbPHmmL1s/s144/IMG_0051.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/nk-RBy0f6zWp5Kh0vowMnA?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLgZQvwbI/AAAAAAAAD-4/XwmtwrcBy4E/s144/IMG_0045.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The Sopa Lodge at the rim of Ngorongoro Crater can be described in one word: paradise. Words, even pictures fail to capture this beauty. &lt;br /&gt;10:21 AM Oct 31st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/rV5XdomIlHqlvz0xAS9fkw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXOtzTz9eI/AAAAAAAAEAs/04pvzCDXsic/s144/IMG_0319.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/hv1CVdqI-goOiJFB8TmIVQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXOvZaYEJI/AAAAAAAAEA4/5O6G2CDS5ws/s144/IMG_0321.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/KPQYbQrkRZc9RoUtcgslRQ?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXOw0fvk-I/AAAAAAAAEBA/fLt5b7Nr8lM/s144/IMG_0322.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/VyyMaLwjyluILKiL5hqc6Q?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXOyJoUAQI/AAAAAAAAEBI/6Ynlf5souA8/s144/IMG_0325.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Ngorongoro Crater: buffalo LIONS hyenas vultures jackals buzzards warthogs ostrich wildabeest zebra gazelle egrets ELEPHANTS HIPPOS!&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;2:23 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td align="center" style="background: url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat left; height: 194px;"&gt;&lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;&lt;img height="160" src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXK_v9BXbE/AAAAAAAAEE0/HtmKe1-sCUI/s160-c/NgorongoroNationalPark.jpg" style="margin: 1px 0 0 4px;" width="160" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: center;"&gt;&lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite" style="color: #4d4d4d; font-weight: bold; text-decoration: none;"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;There are 26 black rhinos left in Ngorongoro crater. I'm looking at one of them through binoculars. &lt;br /&gt;2:38 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/-N0uoidGFBpFY3ZnquBh8w?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQYDodcXI/AAAAAAAAEJQ/SttJtLPgo7Y/s144/IMG_0262.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Six! Six beautiful black rhinos! Note "white rhinos" are the same color as black rhinos. It's a mispronunciation of "wide (lipped) rhino." &lt;br /&gt;4:37 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;The floor of Ngorongoro Crater has more animal poop per square meter than anyplace I've ever seen. And not just little poop either. &lt;br /&gt;5:28 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/pt8u3QXJ_OCgcdbLsVkNtQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXP-e1LrNI/AAAAAAAAEHE/zwSJXjacucc/s144/IMG_0184.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The Masai may be a rustic, traditional folk, but they're hard, aggressive bargainers when it comes to their handicrafts. &lt;br /&gt;7:17 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/rFkPx7yZj1gV8qRo7L_guQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQm_NylYI/AAAAAAAAEKE/9ZHU3HcTTOI/s144/IMG_0297.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/o8ZygtlTjo8JlGESEe7FuA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQyfDUj5I/AAAAAAAAEKw/4eYwDq81-qY/s144/IMG_3157.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;See the Ngorongoro Crater once in life. Nearly untouched by man, it's a view and perspective into a vast, thriving world of primal beauty. &lt;br /&gt;8:05 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;I was uncomfortable when the Masai came out and danced for us, to "welcome important ambassadors." At least we brought crayons for the kids. &lt;br /&gt;8:09 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/NCeyTUsfVq6iNdZRs6DYvA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQsjYzRlI/AAAAAAAAEKg/kQhb6Bb3f2o/s144/IMG_0304.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/kAoDqDsryXsq8YuDpHw7QQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXQ02GaHXI/AAAAAAAAELA/MSasEjguv6s/s144/IMG_0311.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Relaxing last evening at Ngorongoro Sopa Lodge in suite's solarium, looking down lush slopes, sere grasslands &amp;amp; the mountainous crater rim. &lt;br /&gt;8:13 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/cMUOOJ4TkuJSk-5WouE6Ag?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SyXO_JpyDNI/AAAAAAAAECE/fRVzgFqJMZY/s144/IMG_3111.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/C1OJaf0JGfsoL1_C_yq1zw?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SyXPBBzYgeI/AAAAAAAAECM/aLI8i2mN9cA/s144/IMG_3112.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Safari essentials: a camera with at least 20X optical zoom, 16GB memory, bandana/dust guard, bug repellant. &lt;br /&gt;9:09 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;On safari nature isn't enclosed; you are. You venture into territory where the animals don't care about you, they're busy doing their thing. &lt;br /&gt;9:14 AM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;Ngorongoro Sopa Lodge rooms have no TVs, which is helpful when trying to get a full night's sleep before an early safari.&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;8:40 PM Nov 1st from txt&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ieCAv-soRTmrS-L26RLMHg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXO89Hy49I/AAAAAAAAEB8/eEuQhKbd8bc/s144/IMG_3110.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;The morning mists over the Ngorongoro rim are like breakfasting in a cloud. Next stop: Olduvai Gorge.&lt;br /&gt;&lt;/div&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;10:12 PM Nov 1st from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/3wFGTo3hj9kpsB8hJYyDgA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXPCge_iWI/AAAAAAAAECU/vbf5FzN9Sio/s144/IMG_3114.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;From Ngorongoro, we set out to the Serengeti wildlife preserve, stopping at Olduvai Gorge on the way. &amp;nbsp;(Go to the &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-serengeti-and-tarangire.html"&gt;Serengeti and Tarangire Tweets&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-4161467011304587880?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/4161467011304587880/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=4161467011304587880' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4161467011304587880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4161467011304587880'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/12/travel-tweets-ngorongoro-crater.html' title='Travel Tweets: Ngorongoro Crater'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/_VmHJIh6YSMI/SyXLWEgIPWI/AAAAAAAAD-A/a0r5dKj_F4U/s72-c/IMG_3090.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-970450929185358682</id><published>2009-12-07T22:59:00.010-06:00</published><updated>2009-12-15T18:11:28.920-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Travel Tweets: Dar Es Salaam</title><content type='html'>During our travels, I found Twitter to be an excellent tool to document the journey as it happened.&amp;nbsp; Even in places where I had limited internet access, I typically had a phone signal, which was enough to record a 140-character thought for my family and friends to see.&lt;br /&gt;&lt;br /&gt;Here are the Tweets from the second leg of our Tanzania trip: a visit to Dar Es Salaam, where my wife was born and her father grew up.&amp;nbsp; This trip was their first return in 26 years.&amp;nbsp; Times are in U.S. Central.  (See all the pictures on my &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=directlink"&gt;Picasa album&lt;/a&gt;.)&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Non-disembarking stop in Nairobi. Come to understand better the phrase "unwashed masses."&lt;br /&gt;11:42 AM Oct 28th from txt&lt;br /&gt;&lt;br /&gt;50 more minutes to Dar Es Salaam, and into what I've overheard is a spectacularly slow immigration. Fingers crossed it ain't so. &lt;br /&gt;11:53 AM Oct 28th from txt&lt;br /&gt;&lt;br /&gt;Landed in Dar Es Salaam! Air is humid, smells of roasting corn.&lt;br /&gt;1:22 PM Oct 28th from txt&lt;br /&gt;&lt;br /&gt;Just got double-charged for entry visa. Welcome to Africa!&lt;br /&gt;1:40 PM Oct 28th from txt&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;i&gt;We later learned that we were not, in fact, overcharged.&amp;nbsp; The cost of an American entry visa had gone up.&amp;nbsp; Counter to our jaded expectations, we found the Tanzanian people to be among the most honest and welcoming we'd ever encountered.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Dar Es Salaam at night looks like India: industrial concrete buildings, roadside chai, billboards for hi-tech products.&lt;br /&gt;12:24 AM Oct 29th from mobile web&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/BCG36TmMc0_5WNz7eKsnig?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCrZKNq2II/AAAAAAAABiM/W7eHc-Jm8Pg/s144/IMG_0002.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Spotty cell coverage in Tanzania means fewer Tweets. And perhaps a more authentic experience. &lt;br /&gt;12:27 AM Oct 29th from mobile web&lt;br /&gt;&lt;br /&gt;Using bottled water for drinking, brushing teeth &amp;amp; face washing while abroad is an excellent lesson in water conservation.&lt;br /&gt;12:57 AM Oct 29th from mobile web&lt;br /&gt;&lt;br /&gt;Small wonder Indians once flocked to Dar Es Salaam: it looks and feels just like India, with less visible abject poverty.&lt;br /&gt;5:17 AM Oct 29th from mobile web&lt;br /&gt;&lt;br /&gt;On a nostalgia tour with my father-in-law in Tanzania, seeing friends of 40 years ago, the hospital where Bela was born.&lt;br /&gt;7:33 AM Oct 29th from mobile web&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/A9s6XpE30uM4CpGf_xNhQQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCriSPByCI/AAAAAAAABis/I3t0QQRoNqY/s144/IMG_3060.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/NFNvXKma4O_u8XM52kLqjg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCrlU4R1PI/AAAAAAAABi0/uKy_4lHj3OE/s144/IMG_2980.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/oTbLsRFYoeOrZcDA6ekYiA?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SwCr10CZVZI/AAAAAAAABjg/nmkNVipESsY/s144/IMG_2947.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/0L6RQhbXhX6wha6TvM8rQw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SwCsBCUbMHI/AAAAAAAABkI/QtTC0NGW0Fw/s144/IMG_2951.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The Indian Ocean sparkles green and deep azure in the powerful African sun. &lt;br /&gt;7:35 AM Oct 29th from mobile web&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/LVWy7id2cX6dygfeGq5qcw?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCsDHLOEyI/AAAAAAAABkQ/POMIevLdCvs/s144/IMG_2972.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Under the broiling African sun, amidst primally vivid color and sea-smells, he rued what could've been.&lt;br /&gt;10:58 AM Oct 29th from mobile web&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/s5yCesV4C0MnUIgPop2WZg?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SwCsk1yZ4nI/AAAAAAAABmg/oD9bCv7cQ7c/s144/IMG_3003.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The Tanzanian people seem relaxed, friendly and courteous. I found myself smiling and nodding at passers-by; so unlike Chicago.&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;11:07 AM Oct 29th from mobile web&lt;br /&gt;&lt;/div&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;&lt;br /&gt;Amazing Indian dining at Garden Bistro in Dar Es Salaam: in large part because of the gorgeous outdoor cabanas under the stars.4:03 PM Oct 29th from mobile web&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/AMBbjMddtYYvz-fEU4o7ZA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCsvIsiTaI/AAAAAAAABnA/jWlcQaTLSYI/s144/IMG_3014.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;In Tanzania, non-GM, organic, farm/sea-to-table isn't fancy dining; it's the default, and delicious.&lt;br /&gt;10:48 PM Oct 29th from mobile web&lt;br /&gt;&lt;br /&gt;Mysteriously, magically, international roaming sprung back to life for me in Tanzania. Let's see for how long... &lt;br /&gt;11:47 PM Oct 29th from txt&lt;br /&gt;&lt;br /&gt;The poverty I've seen in DarEsSalaam is stark, but somehow not wretched, despite the visible disparity. I wonder what I'm not seeing.12:53 AM Oct 30th from txt&lt;br /&gt;&lt;br /&gt;"K.T." -- allegedly the best hole-in-the-wall kebab joint in DarEsSalaam. Kebabs acquired for picnic on Bongoyo Island.&amp;nbsp; &lt;br /&gt;2:56 AM Oct 30th&amp;nbsp;&amp;nbsp; from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/LRF8nog6hZB473Oaz31HMQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCs_CzylzI/AAAAAAAABn0/bxi4jWKQluY/s144/IMG_3015.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Around $77 for 3 of us to take a small boat to Bongoyo Island to sit on the beach for 2 hours? No thanks - we'll be in Zanzibar in 4 days.3:19 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/-d7TthC9Da4BK22BwhfQEw?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SwCsaCkPdvI/AAAAAAAABls/ANOKaDnkf40/s144/IMG_2996.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;University of Tanzania's campus is a beautiful arid park of hills, acacia and dry brush. That the students walk in this heat humbles me.&lt;br /&gt;4:17 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ZezuekpuZC1volHOa0d8eA?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SwCtCKMQt4I/AAAAAAAABn8/KxbgoNnr7pg/s144/IMG_3024.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Enjoyed our K.T. Kebabs on a hill overlooking Dar Es Salaam. Great! Balls of lamb, onion &amp;amp; spices crispy on outside, tender on inside.&lt;br /&gt;4:20 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/MksvyHBKlQD-OHVVb12Fmg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCtII9-hvI/AAAAAAAABoM/3DOsvV4DD7Q/s144/IMG_3021.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Taking a ferry across Kigmboni Bay for no better reason than it'd be cool to take a ferry across the bay. &lt;br /&gt;4:59 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/x567yDD7cCLxsi5Jj2Pfmg?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SwCtODhrkwI/AAAAAAAABoc/3vSioQCrUfU/s144/IMG_3032.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Aha. Kigmboni across the bay -- that's where the really poor people live. And it's a site of some spectacular white-sand beaches.&lt;br /&gt;5:41 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/s2xAdj-5q_8_8zV3R87yOQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/SwCtTxYGv3I/AAAAAAAABos/piENUeCtWa4/s144/IMG_3041.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Sitting in a beach cabana across the bay from DarEsSalaam enjoying a beer with Bela and her dad, listening to the waves of the Indian Ocean.&lt;br /&gt;5:50 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/62sZlhVT95gIPwchYYujgg?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SwCtXBG8VJI/AAAAAAAABo0/oSksh0zEfZA/s144/IMG_3046.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Bela, watching men at the beach: "These Tanzanian men are IN SHAPE." Me: "Well, when you grow up in a country without Twinkies..."&lt;br /&gt;5:58 AM Oct 30th from txt&lt;br /&gt;&lt;br /&gt;We're at the Patel Brotherhood club. Everyone's speaking Gujarati. I smile and nod.&lt;br /&gt;11:25 AM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/fwrh7dYFEEZY5oIa7rv02Q?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_VmHJIh6YSMI/SwCr5x_A72I/AAAAAAAABjw/P52DeeM0OSE/s144/IMG_3063.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Bela: "You know you're in a Gujarati restaurant when they give your table only one menu. And then give it to the other table after."&lt;br /&gt;11:45 AM Oct 30th from txt&lt;br /&gt;&lt;br /&gt;Bela looked into an empty concrete room and saw second-hand memories of her first 10 months take new shape. &lt;br /&gt;3:24 PM Oct 30th from txt&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/QcFyFfvhsr1c5fwLVBw6eg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SwCr3yMfD_I/AAAAAAAABjo/e7ShNqYlHEY/s144/IMG_2948.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Two-hour flight from DarEsSalaam to Arusha in a tiny single-engine plane! This should be fun...&lt;br /&gt;&lt;/div&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:58 PM Oct 30th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/mr4dicZTxjrzfV0LNI5JTQ?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/SwCtqcfvsxI/AAAAAAAABpw/-VqOMa7i9Go/s144/IMG_3072.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/DarEsSalaam?feat=embedwebsite"&gt;Dar Es Salaam&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Thirteen passengers fit in this plane. One as a co-pilot. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;1:20 AM Oct 31st from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/6l3CEfDrOiRfcuKvLjBrmg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXLK1HmwyI/AAAAAAAAD9Y/YUb-pNpzHaA/s144/IMG_3081.JPG" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Flying from DarEsSalaam to Arusha via Zanzibar in a little propeller plane affords the most amazing views! Shutter-finger tired. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;1:54 AM Oct 31st from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/9u_UHw3cKgTESYbMSh3lyA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXLMYwsSGI/AAAAAAAAD9g/_cqK3DE-6BI/s144/IMG_0029.JPG" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Weather in Arusha is too much for our little plane. Stopped in Kilimanjaro waiting for weather to clear or a bus. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:53 AM Oct 31st from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width:auto;"&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/sijb1ObuthFziuPNXKbxCA?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/SyXLI9cKhWI/AAAAAAAAD9Q/DwSsdlrkeJc/s144/IMG_3089.JPG" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/NgorongoroNationalPark?feat=embedwebsite"&gt;Ngorongoro National Park&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Made it to Arusha! Having lunch at a posh little lodge. Carrots and potatoes actually have a distinct -- and good -- taste. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;5:49 AM Oct 31st from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;On our arrival in Arusha, we immediately hit the road, bound for the Ngorongoro Crater wildlife preserve. &amp;nbsp;(Go to the &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-ngorongoro-crater.html"&gt;Ngorongoro Tweets&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-970450929185358682?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/970450929185358682/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=970450929185358682' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/970450929185358682'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/970450929185358682'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/12/travel-tweets-dar-es-salaam.html' title='Travel Tweets: Dar Es Salaam'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_VmHJIh6YSMI/SwCrZKNq2II/AAAAAAAABiM/W7eHc-Jm8Pg/s72-c/IMG_0002.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-8345478322465751781</id><published>2009-12-07T22:22:00.008-06:00</published><updated>2009-12-15T17:48:44.913-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Travel Tweets: The Zurich Layover</title><content type='html'>During our travels, I found &lt;a href="http://twitter.com/RajivMote"&gt;Twitter&lt;/a&gt; to be an excellent tool to document the journey as it happened.&amp;nbsp; Even in places where I had limited internet access, I typically had a phone signal, which was enough to record a 140-character thought for my family and friends to see. &amp;nbsp;(Previous: &lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-zurich-layover.html"&gt;Zurich Layover Tweets&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;Here are the Tweets from the first leg of our Tanzania trip: our one-day layover in Zurich.&amp;nbsp; Times are in U.S. Central.  (See all the photographs on my &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=directlink"&gt;Picasa album&lt;/a&gt;.)&lt;br /&gt;&lt;br /&gt;&lt;div style="font-family: &amp;quot;Helvetica Neue&amp;quot;,Arial,Helvetica,sans-serif;"&gt;Bah. 8 kg carry-on limit on SwissAir just nuked our "all-carry-ons" plan. Nothing like last-minute reshuffling to kick off a journey.&lt;br /&gt;5:55 PM Oct 26th from txt&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href="http://twitpic.com/n2v07"&gt;http://twitpic.com/n2v07&lt;/a&gt; - SwissAir #9 to Zurich&lt;br /&gt;6:23 PM Oct 26th from TwitPic&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/-iMS3exyg6AHY7AF1rDxoQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/Sx3pR_RmvPI/AAAAAAAAC6U/aT5zga-FCxU/s144/2009_11_10_%20013.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;a href="http://twitpic.com/n38gr"&gt;http://twitpic.com/n38gr&lt;/a&gt; - Cramped quarters in SwissAir Economy class&lt;br /&gt;7:49 PM Oct 26th from TwitPic&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/o5uNSoraCJpOFEo5VmK-1g?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/Sx3pTP5z14I/AAAAAAAAC6c/lMJVoI8YqmQ/s144/2009_11_10_%20014.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;USB port on plane seat means my phone has power! Yay!&lt;br /&gt;8:05 PM Oct 26th from txt&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Landed in Zurich. Countryside looks so lovely, I may yodel. Keeping an eye out for Swiss Miss.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;4:34 AM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://twitpic.com/n4rce"&gt;http://twitpic.com/n4rce&lt;/a&gt; - Hotel Continental, Zurich: NOT the way to beat jetlag &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;6:47 AM Oct 27th from TwitPic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/mRL-ltpvLMUAe7WbOt7l8g?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3pUnAmCjI/AAAAAAAAC6k/WK_qhovZW4w/s144/2009_11_10_%20015.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Probably shouldn't have napped so long at the hotel, but now an evening circuit of Zurich Old Town awaits.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;10:11 AM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/9Z6GwgE3wh5RdMTlEcfwjg?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/Sx3poP1l3YI/AAAAAAAAC7g/0U5eR2eFRz8/s144/IMG_2912.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://twitpic.com/n5jr4"&gt;http://twitpic.com/n5jr4&lt;/a&gt; - Dusk over Zurich &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:35 AM Oct 27th from TwitPic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/4RzOnOHtCtnQRnUVflXTjQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/Sx3pp5CCryI/AAAAAAAAC7o/MG2vDyz7LwU/s144/2009_11_10_%20016.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://twitpic.com/n5jvb"&gt;http://twitpic.com/n5jvb&lt;/a&gt; - Dusk over Zurich 2&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;11:36 AM Oct 27th from TwitPic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/0pMJWdhm6HO96wtuFrBmZw?feat=embedwebsite"&gt;&lt;img src="http://lh5.ggpht.com/_VmHJIh6YSMI/Sx3prssxUtI/AAAAAAAAC70/d5PdqPfwLes/s144/2009_11_10_%20017.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Had an Italian meal in Zurich at La Pasta with perfectly al dente pasta and a comped (?) bottle of Amarone.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;1:25 PM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/ij5cNM1eJ417gLVSfKSEvQ?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_VmHJIh6YSMI/Sx3qH4G2LaI/AAAAAAAAC9M/-VSu1H8GIHU/s144/IMG_2925.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;&lt;i&gt;Nope, it wasn't comped, but it was thoroughly enjoyed.&lt;/i&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/b_JJkV5XgkVxocq2jG7VdQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3qJFrE4AI/AAAAAAAAC9U/99BtCRxw7rw/s144/2009_11_10_%20018.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Bela's drunk on Amarone and ready to crash. We have a 5:30am wake-up call. But I'm not done with Zurich. Wolf Bierhalle, I'm coming!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:18 PM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Found a fondue place: Swiss Chuchi. Trying to decipher wine list in German.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:03 PM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Ordered a glass of Staatschreiner Wein Cuvee Prestige from Zurich. Pinot noir, Muscat &amp;amp; Gewurztraminer. &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:09 PM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;The wine: dry muscat aromatics, ruby-tinged gold color, perfumey Gewurtz in mouth.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:19 PM Oct 27th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://twitpic.com/n6f65"&gt;http://twitpic.com/n6f65&lt;/a&gt; - 2nd Dinner at Swiss Chuchi, Zurich&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;3:23 PM Oct 27th from TwitPic&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;table style="width: auto;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;a href="http://picasaweb.google.com/lh/photo/jyB3sL65W6zTSC5yRRkbEQ?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_VmHJIh6YSMI/Sx3qLxllOWI/AAAAAAAAC9k/8Dj_ejxemY8/s144/2009_11_10_%20020.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="font-family: arial,sans-serif; font-size: 11px; text-align: right;"&gt;From &lt;a href="http://picasaweb.google.com/rajiv.mote/Zurich?feat=embedwebsite"&gt;Zurich&lt;/a&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Enjoyed an evening in Zurich; now preparing for 10 hours on the plane to Dar Es Salaam. P.S. Swiss coffee is surprisingly strong.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;1:52 AM Oct 28th from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;Swiss Miss appeared to me as a hologram in the Zurich airport. She kissed the window and vanished, beautiful and ephemeral as a dream.&lt;/span&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt; &lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;"&gt;2:49 AM Oct 28th&amp;nbsp;&amp;nbsp; from txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;object height="340" width="560"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Q-z801c-QEg&amp;hl=en_US&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Q-z801c-QEg&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;And then we were off, bound for Nairobi, Kenya, and then Dar Es Salaam, Tanzania. &amp;nbsp;(&lt;a href="http://rajivmote.blogspot.com/2009/12/travel-tweets-dar-es-salaam.html"&gt;Go to the Dar Es Salaam Tweets&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-8345478322465751781?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/8345478322465751781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=8345478322465751781' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/8345478322465751781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/8345478322465751781'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/12/travel-tweets-zurich-layover.html' title='Travel Tweets: The Zurich Layover'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_VmHJIh6YSMI/Sx3pR_RmvPI/AAAAAAAAC6U/aT5zga-FCxU/s72-c/2009_11_10_%20013.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-9038698429333581526</id><published>2009-09-08T22:48:00.000-05:00</published><updated>2009-09-08T22:48:01.135-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>Fear and Loathing in America</title><content type='html'>In President John F. Kennedy's oft-quoted inaugural address, he challenged America to "ask not what your country can do for you - ask what you can do for your country."&amp;nbsp; In 2009, that remark would have branded him a socialist, what with its overtones of a "common good" with nary an individual profit motive in sight.&amp;nbsp; (One wonders how the Preamble to the Constitution would fare in this current climate, with its "promote the general welfare" verbiage.)&amp;nbsp; President Barack Obama certainly came under conservative fire in the days leading up to today's address to the nation's school children.&amp;nbsp; The key objection was to the assignment that was initially to accompany the address: students would be asked to write a letter to themselves to discuss what they could do to help the president.&lt;br /&gt;&lt;br /&gt;This scared the bajeezus out of conservative parents, who envisioned this man, for whom &lt;i&gt;they&lt;/i&gt; didn't vote, indoctrinating their children into the sinister ethos of giving up some of what they had, to help those less fortunate.&amp;nbsp; (One wonders how Jesus Christ -- another notorious socialist -- would fare in this current climate.)&amp;nbsp; A suburban Colorado mom was &lt;a href="http://www.cnn.com/2009/POLITICS/09/04/obama.schools/index.html?iref=newssearch"&gt;quoted on CNN&lt;/a&gt; saying "Thinking about my kids in school having to listen to that just really upsets me.&amp;nbsp; I'm an American. They are Americans, and I don't feel that's OK. I feel very scared to be in this country with our leadership right now."&amp;nbsp; It was sentiments like this that created another of many modern absurdities: a presidential message for students to take school seriously being labeled "controversial."&lt;br /&gt;&lt;br /&gt;Of course, this "controversy," like so many in an age when ignorant voices get amplified by 24-hour "news" coverage, turned out to be a whole lot of nothing.&amp;nbsp; The message was as unassailable as a call to honor the service of our fallen troops:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;So today, I want to ask you, what’s your contribution going to be? What problems are you going to solve? What discoveries will you make? What will a president who comes here in twenty or fifty or one hundred years say about what all of you did for this country?&amp;nbsp; Your families, your teachers, and I are doing everything we can to make sure you have the education you need to answer these questions. ... But you’ve got to do your part too. So I expect you to get serious this year. I expect you to put your best effort into everything you do. I expect great things from each of you. So don’t let us down – don’t let your family or your country or yourself down. Make us all proud. I know you can do it.&lt;/blockquote&gt;&lt;br /&gt;So much agonizing over such a simple, worthy message.&amp;nbsp; And yet the rhetoric over the President's every comment is the most polarized since... Well, since the last President, actually, when people like me were sneering at President George W. Bush, labeling him an idiot and an autocrat.&amp;nbsp; It occurs to me that there's a deep and abiding fear on both sides of the partisan rift.&amp;nbsp; Liberals feared what the world was becoming in the wake of Bush's foreign policy; conservatives fear what the nation is becoming under Obama's domestic efforts at reform.&amp;nbsp; Both sides can offer cynical theories about why the other side's fear grows more stark, but that's precisely the rhetoric that deepens the divide.&lt;br /&gt;&lt;br /&gt;I've given myself an assignment: try to understand conservative fear of what they're calling a slippery slope to socialism.&amp;nbsp; For a while, I'm going to suspend my own dogma that this is a product of political spin to protect corporate interests and prevent Obama from chalking up any policy successes.&amp;nbsp; I'm going to do some reading and listening to see the picture of the future that conservatives fear.&amp;nbsp; Because in the end, fear is not dispelled by belittling it.&amp;nbsp; It's dispelled by understanding, and casting a bright light upon its source.&amp;nbsp; I'll update if I find any revelations.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-9038698429333581526?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/9038698429333581526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=9038698429333581526' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9038698429333581526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9038698429333581526'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/09/fear-and-loathing-in-america.html' title='Fear and Loathing in America'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6304899969234772338</id><published>2009-09-03T20:13:00.000-05:00</published><updated>2009-09-08T22:49:40.408-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>"Only the wealthy should live, and the sick ought to be punished financially."</title><content type='html'>On Facebook today, many of my friends' status updates read the same:&lt;br /&gt;&lt;blockquote&gt;"No one should die because they cannot afford health care, and no one should go broke because they get sick. If you agree, please post this as your status for the rest of the day."&lt;/blockquote&gt;Seeing it the first time (without the second sentence), I commented, agreeing, and saw the posts of various other like-minded people.&amp;nbsp; Over the course of the day, I saw more and more such status updates.&amp;nbsp; In the context of the current health care reform debate, it's a fair statement to make.&amp;nbsp; It tries to do what Bill Moyers (&lt;a href="http://www.youtube.com/watch?v=6gSQ2DWkVE0"&gt;on Real Time with Bill Maher&lt;/a&gt;) so eloquently argued President Obama &lt;i&gt;must&lt;/i&gt; do regarding public coverage: frame the debate as the moral issue it is.&lt;br /&gt;&lt;br /&gt;I didn't change my own status, despite my agreement.&amp;nbsp; Among my circle of friends, I would be preaching to the choir with regards to policy, and for those few in my network who take issue with semi-nationalized health care, this assertion is hardly an argument.&amp;nbsp; Honestly, who's going to rebut, "only the wealthy should live, and the sick ought to be punished financially"?&amp;nbsp; I question whether anyone's mind has ever been changed by a picket sign, bumper sticker or status update.&amp;nbsp; Opponents, at least the sane ones who speak in public, attack issues of policy, and cite the relative inefficiency of publicly-run programs in comparison to privately-run ones, or the effects of government interference on health care quality and availability.&amp;nbsp; In a pinch, they'll make up policy points to attack, like the infamous and fraudulent "death panels."&amp;nbsp; But most of the objections are things that ought to be addressed, and are amenable to serious debate.&amp;nbsp; Debatable points invite discussion; attacks on straw men create ideological silos.&lt;br /&gt;&lt;br /&gt;My old friend Andy offered me a different interpretation of the status update.&amp;nbsp; "I believe in solidarity as solace more than solidarity as change agent.&amp;nbsp; Knowing there are many like you is a great comfort in trying times."&amp;nbsp; It's a fair point, with an undeniable emotional resonance.&amp;nbsp; But on this issue, I feel that solidarity, manifesting as partisanship, has done a great deal to stymie real progress on this issue.&amp;nbsp; Using these new technologies, I hope that copy/paste activism among like-minded folk isn't mistaken for real engagement.&amp;nbsp; That's not to say that social media can't be used to argue a point.&amp;nbsp; My wife circulated the Bill Moyers clip on Facebook, which -- though preaching to the choir of Bill Maher viewers -- offers an articulate declaration of the moral basis to the policy that ought to be proposed.&amp;nbsp; Moyers stated the value proposition, gave its historical context, and made a call to action.&lt;br /&gt;&lt;br /&gt;But perhaps I'm committing the same sin I'm criticizing by attacking the sound bite, out of context of the message.&amp;nbsp; My wife, experienced in social activism, pointed out that political change requires a rallying cry, dissemination of information, and action.&amp;nbsp; It requires an engagement with your allies as well as your opponents.&amp;nbsp; If this shared Facebook update is the opening salvo to getting our message straight on this very important issue, then my criticism is misplaced.&amp;nbsp; I'd go so far as to say, I "Like" this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6304899969234772338?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6304899969234772338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6304899969234772338' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6304899969234772338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6304899969234772338'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/09/only-wealthy-should-live-and-sick-ought.html' title='&quot;Only the wealthy should live, and the sick ought to be punished financially.&quot;'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-5367537074571771660</id><published>2009-08-28T12:47:00.019-05:00</published><updated>2009-08-29T00:07:41.033-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='travel'/><title type='text'>Remembering Madison</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_VmHJIh6YSMI/Spi2_4pvHUI/AAAAAAAABds/oJYa24MbBCs/s1600-h/IMG_2726.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 200px;" src="http://1.bp.blogspot.com/_VmHJIh6YSMI/Spi2_4pvHUI/AAAAAAAABds/oJYa24MbBCs/s200/IMG_2726.JPG" alt="" id="BLOGGER_PHOTO_ID_5375247363922140482" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;When I lived in Madison, Wisconsin from 1993 through 1996, I was a pretty solitary guy. I had just graduated from Northwestern, bone-weary of academics and depressed over a breakup.  I wasn't looking for challenges and a fast-track career.  I was looking to hole up, lick my wounds, and experience living on my own terms for the first time in my life.  Madison seemed perfect.  It had the right balance of proximity and distance from my friends in Chicago and family in Omaha.  It had the familiarity of a college campus, and the distraction of a young nightlife scene. It had beautiful lakeshore parks and cozy coffee shops -- poetic places for a loner to sit and read or write or think.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;After I nailed an interview for a programming job in Madison, I wandered the town, identifying places where I would hang out.  I already had it in mind that I would claim Madison as my own by haunting it, by making myself a part of its landscape.  Living there, I was compulsive about doing exactly that.  Most have nostalgic feelings about the places they shared with someone dear.  I set out to engineer an anticipatory nostalgia about places I shared with my own self, a young man in his early 20s -- an age when melancholy and loneliness could still look romantic (so I thought) and not just sad.  Standing on the little curved foot bridge in Tenny Park, overlooking the lily pads, I imagined myself as an older man, seeing the bridge and remembering... some wistful,&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_VmHJIh6YSMI/Spi3Rb9F-AI/AAAAAAAABd0/aa-DqzkhQMk/s1600-h/Rajiv_Corn.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 105px; height: 200px;" src="http://1.bp.blogspot.com/_VmHJIh6YSMI/Spi3Rb9F-AI/AAAAAAAABd0/aa-DqzkhQMk/s200/Rajiv_Corn.JPG" alt="" id="BLOGGER_PHOTO_ID_5375247665456347138" border="0" /&gt;&lt;/a&gt; romanticized bullshit, most likely.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Last weekend, my wife, brother-in-law, dog and I took a road trip to Madison.  One of my fond, un-engineered Madison memories was of going to the annual Sun Prairie Sweet Corn Festival with office friends and gorging ourselves on sweet, sweet ears of corn, fresh out of the steamer.  This trip was to re-vist that experience, and my family indulged me in other such re-visitations.  Those who know me will not be surprised that most of them revolved around food.  We ate at Ella's Deli, with the carousel out front and a riot of clockwork toys in every nook and cranny of the restaurant. We browsed the Dane County Farmers' Market around the capitol square, and bought my favorite spicy cheese bread from Stella's Bakery, along with some picnic-worthy produce and cheese.  We stopped by the Memorial Union -- another old hangout -- to get Babcock's ice cream and frozen custard (my favorite is the orange custard with dark chocolate chips).  We stopped by Smoky Jon's BBQ to pick up a couple of bottles of their terrific sauce.  And thanks to my brother-in-law's research, we dined at a "new" restaurant, Harvest, where we made some new memories over a stunningly tasty farm-fresh meal with an outstanding Oregon Pinot Noir.&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We also stopped by my old apartment building, and my wife remarked that we could hear birds chirping -- in our downtown condo, we mainly hear traffic and construction.  We checked out my old office building too, nestled in a forested drive.  The picnic table where we sometimes lunched was still there, but no trace remained of my first full-time employer.  On the way to the capitol square, we passed Tenny Park and the foot bridge.  It was as pretty as I remembered it, but there was no sudden rush of sentiment, no sense of prophesized nostalgia fulfilled.  I have other, fonder memories of Madison, it seems.  On our next trip, I'd like to go to one of the surviving small music clubs, where I saw bands like Green Day, Garbage, God Lives Underwater and Letters To Cleo.  I'd like to have beers on the Union Terrace, and see if the "secret door" to the Barber's Closet still exists.  I'd like my wife to see the interior of the capitol dome. And instead of just buying sauce, next time we must sit down to some Smoky Jon's 'cue.  I'd like my next memories of Madison to be ones I share.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-5367537074571771660?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/5367537074571771660/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=5367537074571771660' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5367537074571771660'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5367537074571771660'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/08/remembering-madison.html' title='Remembering Madison'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_VmHJIh6YSMI/Spi2_4pvHUI/AAAAAAAABds/oJYa24MbBCs/s72-c/IMG_2726.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-831067495991180804</id><published>2009-08-21T15:51:00.003-05:00</published><updated>2009-12-14T00:16:37.937-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='food'/><title type='text'>Blommer's Saratoga Dark</title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://3.bp.blogspot.com/_VmHJIh6YSMI/So8IxoGLlgI/AAAAAAAABdk/UJbKm39_dKA/s1600-h/SaratogaDark-777549.jpg"&gt;&lt;img src="http://3.bp.blogspot.com/_VmHJIh6YSMI/So8IxoGLlgI/AAAAAAAABdk/UJbKm39_dKA/s320/SaratogaDark-777549.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5372522529146246658" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;The smell of baking brownies often blankets Chicago's northern Loop and River North neighborhoods. The source is actually Blommer's Chocolate Factory (&lt;a href="http://www.blommer.com/"&gt;http://www.blommer.com/&lt;/a&gt;) at Kinzie and Des Plaines. My blessing and curse is that they have a small retail shop, midway on the walk between my office and home.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;I just bought some chunks of the Saratoga Dark. At 73% cacao, it's black as the ace of spades and has a rich, almost winey odor. The chocolate has a silky texture in your mouth, melts easily, and leaves you with a hint of coffee at the end. A one pound bag is an indulgence at $4.83, but it'll make you so happy.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-831067495991180804?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/831067495991180804/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=831067495991180804' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/831067495991180804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/831067495991180804'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/08/blommers-saratoga-dark.html' title='Blommer&apos;s Saratoga Dark'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VmHJIh6YSMI/So8IxoGLlgI/AAAAAAAABdk/UJbKm39_dKA/s72-c/SaratogaDark-777549.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6405715368689344014</id><published>2009-08-13T15:03:00.002-05:00</published><updated>2009-12-14T00:19:22.335-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='work'/><title type='text'>The Bug Fix Bell</title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://2.bp.blogspot.com/_VmHJIh6YSMI/SoRxxd1Ci9I/AAAAAAAABcw/2fgxH1gaPhM/s1600-h/BUGFIXBELL-761098.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_VmHJIh6YSMI/SoRxxd1Ci9I/AAAAAAAABcw/2fgxH1gaPhM/s320/BUGFIXBELL-761098.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5369541750367095762" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;At Firm58, our Quality Assurance manager (a transplant from DoubleClick/Google, like me) set up a Bug Fix Bell like we had at our old job. Fix a software defect? You get to ring the bell. And everyone applauds. It's quite a morale boost. I've heard non-developers say they wish they could fix something so they too could ring the bell. That's the power of even a little apprecition!&lt;/span&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6405715368689344014?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6405715368689344014/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6405715368689344014' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6405715368689344014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6405715368689344014'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/08/bug-fix-bell.html' title='The Bug Fix Bell'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_VmHJIh6YSMI/SoRxxd1Ci9I/AAAAAAAABcw/2fgxH1gaPhM/s72-c/BUGFIXBELL-761098.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-5384969326667161359</id><published>2009-07-10T14:12:00.001-05:00</published><updated>2009-12-14T00:19:01.054-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='work'/><title type='text'>A Productive Day At Work</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;Rajiv could meet the deadline, but it meant losing a bit of what made him human. His eyes darted across the mosaic of windows on the screen, his awareness fragmenting and reassembling in pulses, data into information, information into structures and algorithms. He was the programmer. He was the program. Humanity faded as he merged with the stark perfection of silicon. Man had limits. Machine could do anything.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;Emotions are known to the cybermind. One is akin to the human notion of "anxiety" or "frustration," a frantic cycling until control of a digital resource can be seized or a data pathway opened. The other, more rare, is the rapturous repetition of operations on a shining torrent of bytes. The still-human might label it "glory."&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;Utimately, intelligences both organic and silicon were driven by the same thing: the fulfillment of purpose. Humans feared that computers would someday become like them, and self-determine a purpose at odds with humanity. But if computers had something approximating fear, it was of becoming like humans, adrift without clarity or direction.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;He had his purpose, and at last he had the clarity of well-defined tasks. Now, joined to the machine, he processed. And in the processing he experienced a kind of bliss. Deliverables blossomed in his workspace like digital buds under an electric sun.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-5384969326667161359?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/5384969326667161359/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=5384969326667161359' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5384969326667161359'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/5384969326667161359'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/07/productive-day-at-work.html' title='A Productive Day At Work'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6664821075213642659</id><published>2009-04-28T00:10:00.002-05:00</published><updated>2009-12-14T00:18:39.783-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='work'/><title type='text'>Going, Going, Googley-Gone!</title><content type='html'>&lt;span xmlns=''&gt;&lt;p&gt;In retrospect, "fixed-term employment" at Google was a bit like getting laid off slowly, over the course of a year.  But finally, on April 3&lt;sup&gt;rd&lt;/sup&gt; 2009, I turned in my badge and walked out the door a free man.  The sun was shining, a cold wind stung my face, and for the first time in five years, I looked ahead to doing something completely new.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Five years ago, the company I joined still referred to itself as "Performics," though New York-based DoubleClick had just acquired it.  My first two years were spent helping bring its search engine advertising product up to the standards of the new owners.  This entailed long nights and weekends of putting out fires, rewriting entire chunks of the system, and working with my colleagues to figure out how we could bring some discipline and predictability to our little start-up operation.  I stepped towards professional maturity even as the company did.  By 2006, we were calling ourselves "DoubleClick."  I became an engineering manager and had grown a staff of programmers under me in Chicago and coordinated its efforts with a team of offshore developers in India.  I got married, and shortly after getting back from my honeymoon, was asked to spend two weeks of every month in New York, managing another team there.  There's no quicker way to learn to fly than to be thrown off a building. If I didn't exactly soar all the time, I didn't crash through the pavement either, and as a team, we managed to do a lot of good.  When I attended our product's posh commercial launch party at the top of Rockefeller Center in Manhattan, it was hard not to be stunned by how far and fast we had come.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In early 2007, we at DoubleClick learned that Google had made a $3.1 billion bid to purchase us.  There was fanfare up and down the rows of the software development cubicles.  At heart, most of us still thought of ourselves as "Performics," and the prospect of being embraced by the legendary Shangri-La of software engineering was dizzying.  None of us was under the illusion that we were doing anything but sneaking into Google's back door.  None of us had the "preferred" PhD specified on Google's public job postings, and few of us believed we could pass their infamous interview process.  But our management gave us carefully non-committal reassurances that we had good prospects for surviving the transition.  We had launched and maintained a revenue-generating product.  We had domain expertise in a hotly-contested field.  Surely Google would value these things.  These were our mantras during the year in which the U.S. and European legalities of the acquisition were settled.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;On Tuesday March 11&lt;sup&gt;th&lt;/sup&gt; 2008, Google CEO Eric Schmidt announced, "As with most mergers, there may be reductions in headcount.  We expect these to take place in the U.S. and possibly in other regions as well.  We know that DoubleClick is built on the strength of its people.  For this reason we'll strive to minimize the impact of this process on all our clients and employees."  What we didn't know is that the "Googlers" (what Google employees call themselves) were themselves grumbling about the acquisition.  Google had been acquiring companies in force, and privately admitted that it didn't handle the integrations well.  Many of the long-time Googlers felt that their elite membership was being diluted, and their standards were being compromised.  The product Google wanted from DoubleClick – display advertising – was run out of New York; there was considerable debate whether satellite (no – "distributed") offices like Chicago should be brought in at all.  The mood in our office grew tense in those final weeks, and as a manager, it was my job to provide vague reassurances even as I stack-ranked my staff with the knowledge that someone would merge my list with others and draw a strike-line, separating the "ins" from the "outs."  Rumor said that the bloodletting would happen on Friday April 4&lt;sup&gt;th&lt;/sup&gt;, but privately, my boss told me and my fellow engineering managers to make sure everybody was in the office on Wednesday the 2&lt;sup&gt;nd&lt;/sup&gt;.  That night, I told my wife that if any of my team was cut, I'd want to be among them; I'd have a hard time dealing with the loss of any one engineer.  The next day, I got the chance to live up to my words.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;There were three possible fates for a DoubleClick employee that Wednesday: to be laid off outright, to be converted to a full-time Googler, or to be placed on a fixed-term contract.  My boss pulled me aside just as I walked in the door, and told me that my team was safe.  But I would be put on fixed-term employment for one year, and then laid off.  My ego folded like a broken lawn chair.  How did this happen?  There was nothing in my performance, qualifications, or even popularity that could have predicted it.  Later, I would learn that the "merged list with a strike line" was an over-simplification of the process by which Google eliminated 25% of DoubleClick-Chicago's workforce.  Great people were terminated, including our Senior Director, whom many of us low-level managers saw as a mentor.  At the time it was hardly a comfort.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I continued contributing as best I could during that final year, taking advantage of the vast learning opportunities Google afforded.  My boss wanted to find a way to convert me to full time status, but the ways of getting things done in the Google bureaucracy eluded us all.  Conversion was a possibility dangled in front of me from the very beginning of my Google tenure, but I quickly learned to put it out of my mind – it was a hope that carried too much painful baggage.  By all accounts, conversion could only be gained by going through Google's "front door" interview process, and I wasn't interested in being rejected twice.  After our team's third "realignment" in January, this time under a Director from the Pittsburgh office, my boss found someone who seemed sympathetic to his cause.  This new Director said he would do what he could to make sure Google "corrected its mistake" and kept me on – and he appeared to have the political savvy to do so.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;At the beginning of my final month, the Director set up a meeting with his HR recruiter to instruct me on what I needed to do to keep my job.  The recruiter told me that I would have to go to Mountain View for a battery of five one-hour engineering interviews involving brain-teasers and writing code on a whiteboard.  I would also need to supply two references, external to Google – despite the fact that anyone who could be a reference in the last five years now either worked for Google, or wanted to hire me into his own organization.  The process was no different than off-the-street applications, except that I was guaranteed the face-to-face interviews.  It was insulting.  I was hired into Performics/DoubleClick after two months working there as a consultant – I was given no interview, and was asked to name my price.  But it wasn't enough for Google that I had worked for them a year, and that even one of their Directors considered me "essential to the product's success."  On the morning I told my boss that I would not be pursuing the conversion interview, I felt blissfully light.  That feeling lasted the entire day, until at 5pm, the Director called and asked what he could do to change my mind – there may even be some flexibility in how the interview was conducted, he said.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;My wife saw that as confirmation of something she had long suspected.  They wanted me, she said, and they would find a way to make it work, acting within the process.  There was no reason not to do the interview, and then I could see what Google would put on the table, and compare it with the other job opportunities I was exploring.  So I studied for a week.  My last computer science course was more than 15 years ago, and though most of the topics never arise in day-to-day work, Google still sees itself as a computer science R&amp;amp;D organization.  Its culture is of computer scientists, and that would be how I was evaluated, regardless of my actual duties.  The Director set up my interviews in Cambridge, Massachusetts instead of Mountain View, California so I could be interviewed by engineers in a "distributed" office who did not have as much exposure to the DoubleClick acquisition.  By the time I flew there, I was cautiously optimistic.  I had reminded myself how to analyze algorithms in "big-O" notation, and suggest data structures that would optimize for speed or space.  I knew how to search and sort from scratch, manipulate linked lists, traverse trees, find shortest-paths on graphs, count permutations and combinations, and twiddle bits.  I was as ready as I was going to be.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I bombed the interview.  A non-disclosure agreement prevents me from getting into specifics, but the interview was purely technical, and while I could readily answer about half of the questions, for the other half, when I didn't glom onto the "trick" embedded in the questions, I spun my wheels.  Despair is the great enemy of thoroughness and creative thinking.  Once I started to sink, I sunk fast.  The interviewers were friendly, even kind, but well before the end of the day, I knew I was finished.  A week after the interviews, the Director confirmed it – again, with the utmost kindness.  "I'm sorry – I failed," he said.  "I tried to make it work, but I couldn't."  But of course, it was I who had failed, and with three days left at Google, I allowed myself – finally – to check out, grumpy that I had allowed Google to slap me twice.  More than anything else, though, I felt relief.  I had spent a year preparing myself to leave Google, and I had already secured a job – under the same former-Senior Director whom I considered a mentor.  One of the provisions of my fixed-term contract was a "completion bonus," which, combined with my severance, meant that I would walk away with 85% of my annual salary in a lump sum.  For someone who had been laid off in this economy, I was in excellent – even enviable – shape.  &lt;br /&gt;&lt;/p&gt;&lt;p&gt;This evening, I stopped by the old office to meet a friend.  Without a key card, I had to wait for him in the lobby – a rueful feeling, in a place where I once had free rein – but I got the chance to greet several former colleagues as they left work.  We chatted about what they were doing, and what I was doing, and I began to realize, hearing the familiar laments of issues and deadlines, just how refreshing it was to have finally moved on.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6664821075213642659?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6664821075213642659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6664821075213642659' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6664821075213642659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6664821075213642659'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/04/going-going-googley-gone.html' title='Going, Going, Googley-Gone!'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-9090949418218667041</id><published>2009-03-08T20:49:00.004-05:00</published><updated>2009-09-08T22:49:40.409-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>Brown Like Me</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 51);font-family:Verdana;" &gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;After his Republican response to President Obama's Congressional address, I declared that I was embarrassed, on behalf of Indian-Americans, about Bobby Jindal.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;I do realize that statement was bold-to-ridiculous.  Jindal, an honors biology graduate from Brown and a Rhodes Scholar with a Master's degree in political science from Oxford, is the youngest of the current state governors and the first Indian-American elected to that office.  Jindal's speech may have been clumsy, and I might take issue with his logic, but "embarrassment" seems presumptuous.  I was challenged, however, not on comparative credentials, but on my speaking on behalf of Indian-Americans.  Said one friend-of-a-friend, "that would be like me being embarrassed of Timothy Geithner on behalf of Caucasians...sounds silly doesn't it?"&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;This is the point when dialogue shuts down.  At this point, the brown person tells the white person he doesn't understand what it is to be a minority, and the white person asks how we can make progress if we don't "move beyond race."  Bobby Jindal certainly seems eager to move beyond his race.  In high school, he converted from his parents' Hinduism to Catholicism, and he even changed his given name, "Piyush," to the slice of Americana with which he best identified: Bobby Brady, of "The Brady Bunch."  He speaks with a folksy drawl, and has named his youngest son "Slade."  In an interview on "60 Minutes," Bobby and his wife Supriya said that their Indian heritage doesn't really factor into their daily lives.  They were raised American.  No doubt this makes Bobby Jindal more palletable to a constituency that elected a former Grand Wizard of the Ku Klux Klan to Congress.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;I was also raised American.  Growing up in Omaha, Nebraska, there were only about one hundred Indian-American families in town.  My circulation within that small community was limited to being dragged to weekend parties, where I spent evenings with the other kids in someone's basement, watching TV, while our parents upstairs spoke, ate and dressed "Indian."  Most of my friends were not Indian, and with those few who were, our ethnic bond felt incidental, an artifact of our parents more than ourselves.  And yet, whenever I'd see an unknown South Asian face on the sidewalk or in a store, something curious would happen.  One or both of us would catch the other's eye, smile, and nod.  Sometimes those smiles would become small-talk.  Sometimes the small-talk would try to become conversation, though I shied away from it.  This was not something that would happen with passers-by of any other ethnicity.  It continued when I moved to Chicago, where Indian faces were by no means rare.  It continued wherever I would travel to where Indians were a minority.  My brown face gave me an automatic kinship, welcome or not, with other brown faces.  I didn't think much about it -- it's part of who I am.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;Indian cuisine, music and cinema has seen a surge of popularity in the United States.  It doesn't make sense for me to feel validated by that, any more than it does to feel kinship with a stranger because of our skin.  But from having seen many Indian-Americans high-fiving at "Slumdog Millionaire's" eight-Oscar victory, I can tell I'm not alone.  I suppose it's a little like rooting for the home team; you may not be on the field yourself, but somehow, their pride in victory is yours, as is their humiliation in defeat.  Maybe I'm wrong to look at Bobby Jindal's brown face and believe that he represents "my kind" in the public forum.  It's obvious from his beliefs that he doesn't.  And if his success was abetted by his renunciation of his heritage and name, well, who am I to judge?  But when I hear him using Hurricane Katrina as an argument against Federal funding, or advocating the teaching of Intelligent Design despite holding an Ivy League biology degree, I wish that, in the eyes of this country, he looked a little less like me.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-9090949418218667041?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/9090949418218667041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=9090949418218667041' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9090949418218667041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/9090949418218667041'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/03/brown-like-me.html' title='Brown Like Me'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-6333674567913629478</id><published>2009-02-17T23:06:00.002-06:00</published><updated>2009-02-17T23:11:01.096-06:00</updated><title type='text'>Fixtures</title><content type='html'>A cousin of mine recently commented that she was strangely comforted by seeing the same people hanging out in a coffee shop she revisited after nine years.  I share the sentiment.  If life is a journey that sometimes doubles back on itself, it's comforting to have these fixtures in the landscape.   They reassure one that some things do endure, remind one of good times, and even prove, by contrast, how far one has come.  I don't think the pleasure they give is the same thing as nostalgia, which romanticizes the past.  If anything, these fixtures look a little smaller, a little humbler, than when they were first encountered.  These are not the people or things that have grown with me.  They are the things that, in some ways, I've left behind.&lt;br /&gt;&lt;br /&gt;A tiny sampling of the fixtures in my personal landscape, in no order of significance:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;My mother's childhood home in Nagpur, India -- though how much longer it will remain a "constant" is up in the air&lt;/li&gt;&lt;li&gt;The Omaha Public Library, near the house where I grew up -- specifically, the outside ledge that used to be my hideout&lt;/li&gt;&lt;li&gt;The Comic Book Guy at the Dragon's Lair in Omaha -- I went back recently, and he still runs his shop after more than 30 years&lt;/li&gt;&lt;li&gt;The Omaha Community Playhouse, where my Junior High self was inspired to fancy myself a "theater afficionado"&lt;/li&gt;&lt;li&gt;Buffalo Joe's, in Evanston, my first exposure to the Buffalo Wing&lt;/li&gt;&lt;li&gt;The Lakefill at Northwestern, where I took many walks, discussing many things that seemed vitally important at the time&lt;/li&gt;&lt;li&gt;Old Peculier Ale -- shared with Jon at Mr. Toad's in Omaha, my first "pub hangout"&lt;/li&gt;&lt;li&gt;The Briarwood apartments in Madison, my first home-on-my-own&lt;/li&gt;&lt;li&gt;The Espresso Royale on State Street and the terrace by the Student Union -- my Madison reading haunts when I didn't want to be by myself, but I had nobody to call&lt;/li&gt;&lt;li&gt;The bars near State and Division in Chicago, where we started our evenings with such hope, and ended them with such disappointment -- and kept repeating the cycle&lt;/li&gt;&lt;li&gt;The Michigan Avenue offices of the National Association of Realtors, where I spent some of the richest unproductive hours with Mike and Francisco&lt;/li&gt;&lt;li&gt;The Kopi Cafe in Andersonville where I went on two dates; the second of which led to marriage&lt;/li&gt;&lt;li&gt;More music, books and movies than I could name&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;My contract with Google will be over in April, which means that I'll soon be bidding farewell to people and a product with whom I've worked for five years.  In times of change, these little touchstones put things in perspective.  I will move on.  I'll grow, and change, and acquire wisdom.  And it'll be better than okay.&lt;br /&gt;&lt;br /&gt;But no, I'm still not going to my high school reunion!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-6333674567913629478?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/6333674567913629478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=6333674567913629478' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6333674567913629478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/6333674567913629478'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/02/fixtures.html' title='Fixtures'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-1423280561122668606</id><published>2009-01-20T12:00:00.000-06:00</published><updated>2009-09-08T22:49:40.409-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='politics'/><title type='text'>Inauguration From the Office</title><content type='html'>&lt;p class="mobile-photo"&gt;&lt;a href="http://2.bp.blogspot.com/_VmHJIh6YSMI/SYJ3b3IaI8I/AAAAAAAABDg/17nKRf9A2Io/s1600-h/0120091110-723646.jpg"&gt;&lt;img src="http://2.bp.blogspot.com/_VmHJIh6YSMI/SYJ3b3IaI8I/AAAAAAAABDg/17nKRf9A2Io/s320/0120091110-723646.jpg" alt="" id="BLOGGER_PHOTO_ID_5296927432280515522" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;We ducked out of our meetings to watch Obama's inauguration from our big "tech talk" videoconference room. We're a predominantly liberal lot, and the one guy who clapped when Obama thanked Bush for his service was briefly the focus of some sixty stares. Ironic, then, that the big screen was tuned to FOX news. I wasn't as moved as the people we saw on TV, even some in the room. I did vote for Obama, and I recognize the history unfolding, but some of the catharsis I see worries me. This is no "mission accomplished;" this is the beginning of a hard, long road. I'm happy we have a smart man in the White House, but even so, progress will be hard-won. I'm hoping that the emotion I saw was not the joy over a supposed savior, but a hopeful rededication of purpose on behalf of all citizens. We'll see.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;This message was sent using the Picture and Video Messaging service from Verizon Wireless!&lt;/p&gt;&lt;p&gt;To learn how you can snap pictures and capture videos with your wireless phone visit &lt;a href="http://www.verizonwireless.com/picture"&gt;www.verizonwireless.com/picture&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Note: To play video messages sent to email, QuickTime� 6.5 or higher is required.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-1423280561122668606?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/1423280561122668606/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=1423280561122668606' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/1423280561122668606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/1423280561122668606'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/01/fw-inauguration-from-office.html' title='Inauguration From the Office'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_VmHJIh6YSMI/SYJ3b3IaI8I/AAAAAAAABDg/17nKRf9A2Io/s72-c/0120091110-723646.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-3741870386524692289</id><published>2009-01-16T19:06:00.009-06:00</published><updated>2009-06-23T17:23:58.723-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wine'/><title type='text'>Hitting the Bottle: Turley 2005 Howell Mountain Zinfandel, Dragon Vineyard</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_VmHJIh6YSMI/SXIoxZ1skxI/AAAAAAAAA7c/dvfxKZ4QiGM/s1600-h/IMG_2196.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 200px;" src="http://2.bp.blogspot.com/_VmHJIh6YSMI/SXIoxZ1skxI/AAAAAAAAA7c/dvfxKZ4QiGM/s200/IMG_2196.JPG" alt="" id="BLOGGER_PHOTO_ID_5292337341328560914" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It's the premier of the final half-season of Battlestar Galactica.  We have a Lou Malnati's deep-dish pizza in front of the television, and it's time to hit the bottle.  This time, it's a 2005 Turley Zinfandel I've been saving.  It's a pretty, translucent color in the glass, like the skin of a black cherry.  It smells like I just stomped through a field of red raspberries, but underneath that, there's a whiff of something like Coca-Cola.  If they made Raspberry Coke, it would smell something like this.  And on the first taste... if cola wasn't sweetened by anything but a squeeze of blackberry juice, that'd come close to the flavors.  But this is a hefty sip with tannins that stay on your tongue with a taste that'd come from something smelling of cedar.  A couple of years ago, I tried a bottle of this wine that was a fruit-bomb, a riot of raspberry and blackberry jam with lots of pepper and woody spice.  Now, it's a little more calm and smooth.  This is a food wine, but this pizza isn't the right match.  This wine wants something savory, something roasted.  Slow-cooked beef ribs, where the meat falls off the bone.  No barbecue sauce, mind you.  Just roasted meat and the subdued blackberry and cedar of this wine.&lt;br /&gt;&lt;br /&gt;Glass number two.  Maybe my pizza smell is overwhelming it, but blackberries and cola are tight, reluctant to waft out of the glass.  A deep sniff gives me a red streak of raspberry, jazzy and then gone.  Is this Turley past its prime?  It has been lying around the condo for more than a year, subject to B's 80-degree thermostat and Remy's incessant tail-swatting. I'll get this pizza out of the way...  There we go -- dried raspberries and blackberries, and the first sip fills the mouth with dry, woody fruit and spices.  This is not a cocktail wine -- you have to keep eating, or it'll suck the moisture out of your mouth.  Feh. This wine is too somber.  Turley, I remember when you were fun.  What happened?  I don't &lt;span style="font-style: italic;"&gt;have&lt;/span&gt; any barbecue for you, and you're just clobbering this tomato sauce.&lt;br /&gt;&lt;br /&gt;Glass numbers three.  And four.  Okay, this isn't a wine for my pizza, so it's time to start dealing with it on its own terms.  It's giving me some fruit -- dry and almost bitter -- and a lot of scented wood.  This is good.  This is a dry dinner wine.  It's also thick and hefty in the mouth -- thick as whole milk.  Salty bacon bits from our salad make the fruit a little brighter, but this is still dark, deep stuff.  After some salt-and-savory, I got a mouthful of blackberry jam with a peppery bite.  These are spikes.  This wine wants to percolate in the lower registers; it talks like Brando in The Godfather -- nearly incomprehensible if you're paying attention, but sit back, let your mind wander, let its tastes play around on your tongue.  This is actually a damn good wine.  I'm sorry I doubted you Turley.  You're A-OK in my book.&lt;br /&gt;&lt;br /&gt;My wife is telling me to drink water.  This is a good idea.  It's time to say night-night to Turley.  I'll see you again when I have barbecue.  Or pot roast.  Yeah, that'd rock.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-3741870386524692289?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/3741870386524692289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=3741870386524692289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/3741870386524692289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/3741870386524692289'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/01/hitting-bottle-turley-2005-howell.html' title='Hitting the Bottle: Turley 2005 Howell Mountain Zinfandel, Dragon Vineyard'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_VmHJIh6YSMI/SXIoxZ1skxI/AAAAAAAAA7c/dvfxKZ4QiGM/s72-c/IMG_2196.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-4373447542331063811</id><published>2009-01-15T21:55:00.005-06:00</published><updated>2009-01-15T23:07:09.808-06:00</updated><title type='text'>Winter Whiners</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://lh5.ggpht.com/_VmHJIh6YSMI/SW_9Myq2kLI/AAAAAAAAA0o/aj4uNGv46v0/s512/IMG_2192.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 384px; height: 512px;" src="http://lh5.ggpht.com/_VmHJIh6YSMI/SW_9Myq2kLI/AAAAAAAAA0o/aj4uNGv46v0/s512/IMG_2192.JPG" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It has been snowing for days here in Chicago.  There has been a lull today -- but that was just because the temperature dropped into the negative double-digits, obliterating moisture at the molecular level.  This happens every year.  And every year, we Chicagoans start to whine.  "Why do we live here?"  "This town isn't fit for human habitation."  But, of course, it is, and we do.  The perpetually cheery kids who want "a moment of your time" to save the environment/children/whales are still standing at every corner in the Loop.  The homeless guys are still out in force, asking for change, somehow less bundled-up than they are in the summer.  And the Urban Professionals like me scurry from their warm lofts to trains/busses/cabs to the office and then back again, bitching about the weather to whomever will listen.&lt;br /&gt;&lt;br /&gt;And we all listen, because we're from Chicago, it's winter time, and we're bound together in our annual ritual of suffering.  Chicago folks know how wind off the lake can cut through four layers of clothing.  We know how shoes and pant legs from the knees down become a dull, uniform gray from the salt.  We know how frozen nostril hair &lt;span style="font-style: italic;"&gt;crunches&lt;/span&gt; as we breathe.  And we know that the skin in that unprotected oval between the bottoms of our hats and the tops of our scarves can bypass the sensation of "cold" entirely and go straight to "pain."  Most of us have a story about having to eat snow off the roofs of our cars while stuck in an icy five-hour traffic jam.  We tell these stories to our friends-in-warmer-climates.  It makes us feel tough by comparison, and it makes them feel smart by comparison.  Everybody wins.&lt;br /&gt;&lt;br /&gt;I do think Chicago blossoms in the summer precisely because it suffers through the winter.  The warm weather is a catharsis.  It is not taken for granted.  But I like winter in itself too, though I don't say that where my wife will hear.  Few scenes&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://lh5.ggpht.com/_VmHJIh6YSMI/SW_9XvTjqGI/AAAAAAAAA1M/EwFxTLvIK1M/s640/IMG_2179.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 431px; height: 351px;" src="http://lh5.ggpht.com/_VmHJIh6YSMI/SW_9XvTjqGI/AAAAAAAAA1M/EwFxTLvIK1M/s640/IMG_2179.JPG" alt="" border="0" /&gt;&lt;/a&gt; are as hauntingly lovely as moonlight reflected on new snow, the hush in the air as it falls in big, fluffy flakes.  The gray, dirty city turns clean and white, if only until morning.  Remy likes it too: after a snowfall, he charges through snow banks, pokes his nose under the drifts, and chases after snowballs that vanish on impact.  After the snow falls, the landscape is new, bright, and begging to be explored.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-4373447542331063811?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/4373447542331063811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=4373447542331063811' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4373447542331063811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4373447542331063811'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/01/winter-whiners.html' title='Winter Whiners'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh5.ggpht.com/_VmHJIh6YSMI/SW_9Myq2kLI/AAAAAAAAA0o/aj4uNGv46v0/s72-c/IMG_2192.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-960237433280115365</id><published>2009-01-10T19:47:00.007-06:00</published><updated>2009-01-10T21:06:24.334-06:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wine'/><title type='text'>Hitting the Bottle: Jessup Cellars 2003 Estate Bottled Cabernet Sauvignon</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_VmHJIh6YSMI/SWlQn9eg9HI/AAAAAAAAAz8/FNutH9BB-7I/s1600-h/JessupCab2003.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_VmHJIh6YSMI/SWlQn9eg9HI/AAAAAAAAAz8/FNutH9BB-7I/s320/JessupCab2003.jpg" alt="" id="BLOGGER_PHOTO_ID_5289847884771030130" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It has been snowing nonstop for the last two days, I'm still achey from working out for the first time in months, and it's time to hit the bottle.  Jessup Cellars, 2003 Estate Bottled Cabernet Sauvignon, which Bela and I brought back from Napa Valley.&lt;br /&gt;&lt;br /&gt;Oh yeah -- plum-dark and thick enough to be opaque, and it smells like spiced blackberry jam.  And cream.  That comes from the oak, right?  Another sniff -- gingerbread.  But enough foreplay.  Time to drink up.&lt;br /&gt;&lt;br /&gt;Thick as milk, this one, and spicy -- cinnamon and pepper -- and raspberries.  This is like raspberry jam on a fresh-baked scone.  (It's smelling like bread now.  That soft, fresh-baked white bread that's just out of the oven and light as air.  With a bit of nutmeg floating in the background.  It's like Christmas at a baker's house.)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_VmHJIh6YSMI/SWlbDYlp8nI/AAAAAAAAA0E/d6dTmT9LJLo/s1600-h/003.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 150px;" src="http://2.bp.blogspot.com/_VmHJIh6YSMI/SWlbDYlp8nI/AAAAAAAAA0E/d6dTmT9LJLo/s200/003.jpg" alt="" id="BLOGGER_PHOTO_ID_5289859351021482610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Okay, glass number two.  Or is it three?  I dunno, we're watching the first half of Battlestar Galactica Season 4, in preparation for the premier this month.  The glass keeps refilling.  It's so good, though.  I can't say that it pairs with the super nachos I made for our BSG marathon, but what would?  Nachos are beer food.  And maybe Malbec food.  But hey, it has spiced ground sirloin, so that kinda goes with a spicy, jammy Cab.   Nah, not really, but that's okay -- it's big enough to trounce even my nachos.  This reminds me of those gigantic Australian numbers, the Shiraz wines and such.&lt;br /&gt;&lt;br /&gt;Last glass of the bottle.  So yummy.  If there was a BYOB serving venison with a raspberry sauce, this would be the bottle I'd bring.  This stuff is like velvet on the tongue.  There are tannins, sure, but they're soft.  Silky, even.  And just like that, it's gone.  My beautiful Jessup Cab is no more.  And we have five more episodes of BSG on the DVR.  But 'tis the nature of pleasure to be ephemeral.  Goodbye, fair Cab.  Until the next.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-960237433280115365?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/960237433280115365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=960237433280115365' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/960237433280115365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/960237433280115365'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2009/01/hitting-bottle-jessup-cellars-2003.html' title='Hitting the Bottle: Jessup Cellars 2003 Estate Bottled Cabernet Sauvignon'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VmHJIh6YSMI/SWlQn9eg9HI/AAAAAAAAAz8/FNutH9BB-7I/s72-c/JessupCab2003.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-4567261690949065894</id><published>2008-12-26T11:26:00.004-06:00</published><updated>2009-06-23T17:19:42.958-05:00</updated><title type='text'>O Tannenbaum</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_VmHJIh6YSMI/SVUVMKbfLDI/AAAAAAAAAgU/KrSuDIuEcQg/s1600-h/IMG_2137.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 240px; height: 320px;" src="http://3.bp.blogspot.com/_VmHJIh6YSMI/SVUVMKbfLDI/AAAAAAAAAgU/KrSuDIuEcQg/s320/IMG_2137.JPG" alt="" id="BLOGGER_PHOTO_ID_5284153036491402290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Having a woman in the condo makes a difference in all sorts of subtle ways.  We're cooking at home more often and the music that's playing is from outside of my own, tired play list.  And we have a Christmas tree.  Bachelor-Raj didn't bother with such things -- home was a place to sleep in, watch TV, and dump my stuff before going out again.  B's putting back the touches of "home."  Our tree is tiny, fake, and cost us $5 as a Christmas Eve purchase at Ace Hardware, but it's something to liven up the place while we figure out what to do with all the boxes we need to unpack.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-4567261690949065894?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/4567261690949065894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=4567261690949065894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4567261690949065894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/4567261690949065894'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2008/12/o-tannenbaum.html' title='O Tannenbaum'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_VmHJIh6YSMI/SVUVMKbfLDI/AAAAAAAAAgU/KrSuDIuEcQg/s72-c/IMG_2137.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-2005530418570993480</id><published>2008-12-23T10:45:00.004-06:00</published><updated>2009-06-23T17:19:07.154-05:00</updated><title type='text'>I'm Bringin' B Back</title><content type='html'>Last weekend, I brought B home from Washington DC to Chicago.  Because loading, unloading and driving a U-Haul 700 miles wasn't enough of a challenge, we did it just as the snow and ice storms began pounding the Midwest.  Sixteen months ago, we drove to DC in a rented Jeep with a few boxes, a couple of suitcases, and room to spare.  That the return trip filled up a ten-foot truck is yet more evidence of the correlation between time elapsed and volume of possessions.  It's a pity there's no such correlation with living space.  We were fortunate that my brother-in-law still lived like my old college roommate, sleeping on a mattress on the floor -- to him went the bed, dresser, and nightstand.  But right now, the condo is decorated with pillars of boxes, a 32" LCD television lying on a beanbag, and clothes.  Oh, the clothes.&lt;br /&gt;&lt;br /&gt;The drive itself wasn't bad.  Yes, there was a learning curve with the truck -- even the smallest U-Haul is exactly as wide as some of DC's narrower streets, and the side-view mirrors stick out a good deal wider.  This means that it's entirely possible for a tree branch to thwack the passenger-side mirror, which, even at speeds lower than 30 mph, will shatter half the mirror.  (Yes, I know this empirically.)  Side mirrors are important on a truck; there is no other rear-view option.  And yes, I learned that if you accidentally get turned around on the Pennsylvania Turnpike, you'll have to drive 30+ miles to get turned back the right direction.  And yes, U-Hauls don't have CD or tape players.  But the drive from Washington DC to Toledo Ohio had clear weather throughout, and when the storms hit between Toledo to Chicago, the truck could plow through the worst of it.&lt;br /&gt;&lt;br /&gt;The unloading was the bad part.  In -30 degree windchill, unloading 15 boxes, some suitcases, paper bags of odd, loose items, and a television was decidedly unpleasant.  Unloading the bedroom set on the ice-buried street in front of my brother-in-law's place was pure hell.  People parked on the streets were trying to free their cars using shovels and pickaxes.  Arjun and I carried furniture over a jagged obstacle course of snow-covered ice, with the wind tearing through our scarves.  But I will give credit to the U-Haul folks.  Maybe it was the Christmas spirit, or maybe it was just too damn cold and too close to closing time, but the people at the U-Haul dropoff told me not to worry about the broken mirror, and said they wouldn't charge me the $361 for returning the truck to the wrong office.&lt;br /&gt;&lt;br /&gt;It's done.  I had nightmares about driving the truck the following night, but I slept hard.  The condo is a disaster, and the clean-up and organizing effort will take up our holiday, but that's okay.  B's back, and we're one household again.  That makes it all worth it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-2005530418570993480?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/2005530418570993480/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=2005530418570993480' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/2005530418570993480'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/2005530418570993480'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2008/12/im-bringin-bela-back.html' title='I&apos;m Bringin&apos; B Back'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9064519392873169925.post-964272177432652494</id><published>2008-12-06T18:45:00.006-06:00</published><updated>2009-06-23T17:17:59.286-05:00</updated><title type='text'>It Begins</title><content type='html'>This seems like a good time to begin a personal blog.  The year has been full of changes and transitions, and for those with whom I haven't spoken in a while, I have updates to provide.&lt;br /&gt;&lt;br /&gt;Most importantly, my wife is coming back to Chicago, and we're going to live like an actual married couple again.  Though being a "commuter couple" is oh-so-trendy (many are doing it, and the lifestyle even had an article in TIME Magazine this year), we've had a long-distance marriage since August 2007, not too long after our first anniversary.  Seeing each other only a couple of times a month does not help when trying to build a life together.  We never intended to be apart for this long.  The planets of our professional lives just aligned in strange ways.&lt;br /&gt;&lt;br /&gt;Without getting into the details (that's for B to disclose), her work took her to Washington D.C. at the end of August 2007.  During this time, legal proceedings were underway in America and Europe to approve Google's bid to acquire DoubleClick, the company in which I had worked up from a sofware developer, to a technical lead, to an engineering manager.  The deal was expected to close in April 2008, after which I would learn whether or not I still had a job.  If I was laid off, I would move to DC and look for a job there; if I became a Google employee, we would figure out what our options were and do our cost/benefit calculus.  (Google stock was still in the 800s at the time.)  Either way, we expected things to be decided before the summer of 2008.&lt;br /&gt;&lt;br /&gt;But come April, instead of hiring or firing me outright, Google offered me a one-year contract with a completion bonus hefty enough that I couldn't take my wounded pride and simply storm out the door.  So we remained in limbo, with me needing to stay in Chicago until April 2009, and with no good reason for B to leave DC, where she had found both interesting work and success in her career.&lt;br /&gt;&lt;br /&gt;Mentally preparing myself for moving to Washington DC was a process.  I love Chicago.  I love our River North loft, walking distance from my last two jobs.  I love the friends I have here, and I love the cheap Southwest Airlines flights from Chicago to Omaha, so I can visit my parents.  But I love B and her professional happiness too, and if I can't put my wife's needs ahead of my own, then I've failed to learn the lessons of the third Spider-Man movie.  For the record, I would have done it.  I would have moved to DC, and done so cheerfully, when the time came.  But again, events took a different turn.  B found a new opportunity in Chicago, which made the issue moot.&lt;br /&gt;&lt;br /&gt;B and I are excited that she's coming home, even as we acknowledge that we'll have to get past our "set in our independent ways" mentality again, just like when we got married.  It's a little bittersweet, because she has made some great friends in DC -- good people who have taken care of her and made sure she didn't get too lonely.  I think I value them for that almost as much as she does.  B's departure will be bittersweet, but mostly sweet.  My baby's coming home!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9064519392873169925-964272177432652494?l=rajivmote.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rajivmote.blogspot.com/feeds/964272177432652494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9064519392873169925&amp;postID=964272177432652494' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/964272177432652494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9064519392873169925/posts/default/964272177432652494'/><link rel='alternate' type='text/html' href='http://rajivmote.blogspot.com/2008/12/it-begins.html' title='It Begins'/><author><name>Rajiv Mote</name><uri>http://www.blogger.com/profile/10811666960589307126</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='17' height='32' src='http://4.bp.blogspot.com/_VmHJIh6YSMI/Spi5L9pWD6I/AAAAAAAABd8/nKDwpyGyMps/S220/Rajiv_Corn.JPG'/></author><thr:total>0</thr:total></entry></feed>
