Procházet zdrojové kódy

Updated additional tests. Fixed API desynchronisation from V1 API.

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22326 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic před 15 roky
rodič
revize
0b317cfb1c

+ 2 - 2
library/Zend/Service/Twitter.php

@@ -518,8 +518,8 @@ class Zend_Service_Twitter extends Zend_Rest_Client
     public function userShow($id)
     {
         $this->_init();
-        $path = '/1/users/show/' . $id . '.xml';
-        $response = $this->_get($path);
+        $path = '/1/users/show.xml';
+        $response = $this->_get($path, array('id'=>$id));
         return new Zend_Rest_Client_Result($response->getBody());
     }
 

+ 139 - 271
tests/Zend/Service/Twitter/TwitterTest2.php

@@ -67,13 +67,53 @@ class Zend_Service_Twitter_TwitterTest2 extends PHPUnit_Framework_TestCase
     }
     
     /**
+     * Quick reusable Twitter Service stub setup. Its purpose is to fake
+     * interactions with Twitter so the component can focus on what matters:
+     * 1. Makes correct requests (URI, parameters and HTTP method)
+     * 2. Parses all responses and returns a Zend_Rest_Client_Result
+     * 3. TODO: Correctly utilises all optional parameters
+     *
+     * If used correctly, tests will be fast, efficient, and focused on
+     * Zend_Service_Twitter's behaviour only. No other dependencies need be
+     * tested. The Twitter API Changelog should be regularly reviewed to
+     * ensure the component is synchronised to the API.
+     *
+     * @param string $path Path appended to Twitter API endpoint
+     * @param string $method Do we expect HTTP GET or POST?
+     * @param string $responseFile File containing a valid XML response to the request
+     * @param array $params Expected GET/POST parameters for the request
+     * @return Zend_Http_Client
+     */
+    protected function _stubTwitter($path, $method, $responseFile = null, array $params = null)
+    {
+        $client = $this->getMock('Zend_Http_Client');
+        $client->expects($this->any())->method('resetParameters')
+            ->will($this->returnValue($client));
+        $client->expects($this->once())->method('setUri')
+            ->with('http://api.twitter.com/1/' . $path);
+        $response = $this->getMock('Zend_Http_Response', array(), array(), '', false);
+        if (!is_null($params)) {
+            $setter = 'setParameter' . ucfirst(strtolower($method));
+            $client->expects($this->once())->method($setter)->with($params);
+        }
+        $client->expects($this->once())->method('request')->with($method)
+            ->will($this->returnValue($response));
+        $response->expects($this->any())->method('getBody')
+            ->will($this->returnValue(
+                isset($responseFile) ? file_get_contents(dirname(__FILE__) . '/_files/' . $responseFile) : ''
+            ));
+        return $client;
+    }
+    
+    /**
      * @group ZF-8218
      */
     public function testUserNameNotRequired()
     {    
         $twitter = new Zend_Service_Twitter();
         $twitter->setLocalHttpClient($this->_stubTwitter(
-            'users/show/twitter.xml', Zend_Http_Client::GET, 'users.show.twitter.xml'
+            'users/show.xml', Zend_Http_Client::GET, 'users.show.twitter.xml',
+            array('id'=>'twitter')
         ));
         $exists = $twitter->user->show('twitter')->id() !== null;
         $this->assertTrue($exists);
@@ -264,6 +304,9 @@ class Zend_Service_Twitter_TwitterTest2 extends PHPUnit_Framework_TestCase
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
     }
 
+    /**
+     * TODO: Add verification for ALL optional parameters
+     */
     public function testFriendsTimelineWithPageReturnsResults()
     {   
         $twitter = new Zend_Service_Twitter;
@@ -276,251 +319,144 @@ class Zend_Service_Twitter_TwitterTest2 extends PHPUnit_Framework_TestCase
     }
 
     /**
-     * @return void
+     * TODO: Add verification for ALL optional parameters
      */
-    public function testFriendsTimelineWithCountReturnsResults()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->friendsTimeline(array('id' => 'zftestuser1', 'count' => '2'));
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-
-        $this->assertTrue(isset($response->status));
-        $this->assertEquals(2, count($response->status), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-    }
-
-    /**
-     * @return void
-     */
-    public function testUserTimelineStatusWithPageAndTwoTweetsReturnsResults()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->userTimeline(array('id' => 'zftestuser1', 'count' => 2));
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $raw_response = $httpResponse->getHeadersAsString() . $httpResponse->getBody();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-
-        $this->assertTrue(isset($response->status));
-        $this->assertEquals(2, count($response->status), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-    }
-
-    public function testUserTimelineStatusShouldReturnFortyResults()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->userTimeline(array('id' => 'zftestuser1', 'count' => 40));
+    public function testUserTimelineReturnsResults()
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/user_timeline/twitter.xml', Zend_Http_Client::GET, 'user_timeline.twitter.xml'
+        ));
+        $response = $twitter->status->userTimeline(array('id' => 'twitter'));
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-
-        $this->assertTrue(isset($response->status));
-        $this->assertEquals(40, count($response->status));
     }
 
     /**
-     * @return void
+     * TODO: Add verification for ALL optional parameters
      */
     public function testPostStatusUpdateReturnsResponse()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->update('Test Message - ' . rand());
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/update.xml', Zend_Http_Client::POST, 'statuses.update.xml',
+            array('status'=>'Test Message 1')
+        ));
+        $response = $twitter->status->update('Test Message 1');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
     }
 
     /**
-     * $return void
+     * @expectedException Zend_Service_Twitter_Exception
      */
     public function testPostStatusUpdateToLongShouldThrowException()
-    {$this->markTestIncomplete();
-        try {
-            $response = $this->twitter->status->update('Test Message - ' . str_repeat(' Hello ', 140));
-            $this->fail('Trying to post a status with > 140 character should throw exception');
-        } catch (Exception $e) {
-        }
-    }
-
-    public function testPostStatusUpdateUTF8ShouldNotThrowException()
-    {$this->markTestIncomplete();
-        try {
-            $response = $this->twitter->status->update(str_repeat('M�r', 46) . 'M�');
-        } catch (Exception $e) {
-            $this->fail('Trying to post a utf8 string of 140 chars should not throw exception');
-        }
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->status->update('Test Message - ' . str_repeat(' Hello ', 140));
     }
 
     /**
-     * $return void
+     * @expectedException Zend_Service_Twitter_Exception
      */
     public function testPostStatusUpdateEmptyShouldThrowException()
-    {$this->markTestIncomplete();
-        try {
-            $response = $this->twitter->status->update('');
-            $this->fail('Trying to post an empty status should throw exception');
-        } catch (Exception $e) {
-        }
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->status->update('');
     }
 
-    /**
-     * @return void
-     */
     public function testShowStatusReturnsResponse()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->status->publicTimeline();
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/show/15042159587.xml', Zend_Http_Client::GET, 'statuses.show.xml'
+        ));
+        $response = $twitter->status->show(15042159587);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $status_id = $response->toValue($response->status->id);
-        $this->assertType('numeric', $status_id);
-
-        $response2 = $this->twitter->status->show($status_id);
-        $this->assertTrue($response2 instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
-
     }
 
-    /**
-     * @return void
-     */
     public function testCreateFavoriteStatusReturnsResponse()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->userTimeline();
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'favorites/create/15042159587.xml', Zend_Http_Client::POST, 'favorites.create.xml'
+        ));
+        $response = $twitter->favorite->create(15042159587);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $update_id = $response->toValue($response->status->id);
-        $this->assertType('numeric', $update_id);
-
-        $response2 = $this->twitter->favorite->create($update_id);
-        $this->assertTrue($response2 instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
-
     }
 
-    /**
-     * @return void
-     */
     public function testFavoriteFavoriesReturnsResponse()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->favorite->favorites();
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'favorites.xml', Zend_Http_Client::GET, 'favorites.xml'
+        ));
+        $response = $twitter->favorite->favorites();
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
     }
 
+    /**
+     * TODO: Can we use a HTTP DELETE?
+     */
     public function testDestroyFavoriteReturnsResponse()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->favorite->favorites();
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'favorites/destroy/15042159587.xml', Zend_Http_Client::POST, 'favorites.destroy.xml'
+        ));
+        $response = $twitter->favorite->destroy(15042159587);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $update_id = $response->toValue($response->status->id);
-        $this->assertType('numeric', $update_id);
-
-        $response2 = $this->twitter->favorite->destroy($update_id);
-        $this->assertTrue($response2 instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
     }
 
     public function testStatusDestroyReturnsResult()
-    {$this->markTestIncomplete();
-        /* @var $response Zend_Rest_Client_Result */
-        $response = $this->twitter->status->userTimeline();
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/destroy/15042159587.xml', Zend_Http_Client::POST, 'statuses.destroy.xml'
+        ));
+        $response = $twitter->status->destroy(15042159587);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $update_id = $response->toValue($response->status->id);
-        $this->assertType('numeric', $update_id);
-
-        $response2 = $this->twitter->status->destroy($update_id);
-        $this->assertTrue($response2 instanceof Zend_Rest_Client_Result);
-
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
     }
 
+    /**
+     * TODO: Add verification for ALL optional parameters
+     */
     public function testUserFriendsReturnsResults()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->user->friends();
-        $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
-    }
-
-    public function testUserFolloersReturnsResults()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->user->followers(array('id' => 'zftestuser1'));
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/friends.xml', Zend_Http_Client::GET, 'statuses.friends.xml'
+        ));
+        $response = $twitter->user->friends();
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status));
     }
 
-    public function testUserFriendsSpecificUserReturnsResults()
-    {$this->markTestIncomplete();
-        $response = $this->twitter->user->friends(array('id' => 'ZendRssFeed'));
+    /**
+     * TODO: Add verification for ALL optional parameters
+     * Note: Implementation does not currently accept ANY optional parameters
+     */
+    public function testUserFollowersReturnsResults()
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'statuses/followers.xml', Zend_Http_Client::GET, 'statuses.followers.xml'
+        ));
+        $response = $twitter->user->followers();
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-        $this->assertTrue(isset($response->status), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
-
-        return $response;
     }
 
     public function testUserShowByIdReturnsResults()
-    {$this->markTestIncomplete();
-        $userInfo = $this->testUserFriendsSpecificUserReturnsResults();
-        $userId = $userInfo->toValue($userInfo->user->id);
-
-        $response = $this->twitter->user->show($userId);
+    {
+        $twitter = new Zend_Service_Twitter;
+        $twitter->setLocalHttpClient($this->_stubTwitter(
+            'users/show.xml', Zend_Http_Client::GET, 'users.show.twitter.xml',
+            array('id'=>'twitter')
+        ));
+        $response = $twitter->user->show('twitter');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-
-        $this->assertEquals($userInfo->toValue($userInfo->user->name), $response->toValue($response->name));
-        $this->assertEquals($userId, $response->toValue($response->id));
     }
 
     public function testUserShowByNameReturnsResults()
     {$this->markTestIncomplete();
-        $response = $this->twitter->user->show('zftestuser1');
+        $response = $twitter->user->show('zftestuser1');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
 
         $this->assertEquals('zftestuser1', $response->toValue($response->screen_name));
@@ -528,108 +464,63 @@ class Zend_Service_Twitter_TwitterTest2 extends PHPUnit_Framework_TestCase
 
     public function testStatusRepliesReturnsResults()
     {$this->markTestIncomplete();
-        $response = $this->twitter->status->replies(array('page' => 1, 'since_id' => 10000, 'invalid_option' => 'doh'));
+        $response = $twitter->status->replies(array('page' => 1, 'since_id' => 10000, 'invalid_option' => 'doh'));
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
+
     }
 
-    /**
-     * @return void
-     */
     public function testFriendshipDestory()
     {$this->markTestIncomplete();
-        $response = $this->twitter->friendship->destroy('zftestuser1');
+        $response = $twitter->friendship->destroy('zftestuser1');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
 
-        $httpClient = $this->twitter->getLocalHttpClient();
-        $httpRequest = $httpClient->getLastRequest();
-        $httpResponse = $httpClient->getLastResponse();
-        $this->assertTrue($httpResponse->isSuccessful(), $httpResponse->getStatus() . ': ' . var_export($httpRequest, 1) . '\n' . $httpResponse->getHeadersAsString());
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingCreate()
     {$this->markTestIncomplete();
-        $response = $this->twitter->block->create('zftestuser1');
+        $response = $twitter->block->create('zftestuser1');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
         $this->assertEquals('zftestuser1', (string) $response->screen_name);
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingExistsReturnsTrueWhenBlockExists()
     {$this->markTestIncomplete();
-        $this->assertTrue($this->twitter->block->exists('zftestuser1'));
+        $this->assertTrue($twitter->block->exists('zftestuser1'));
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingBlocked()
     {$this->markTestIncomplete();
-        $response = $this->twitter->block->blocking();
+        $response = $twitter->block->blocking();
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
         $this->assertEquals('zftestuser1', (string) $response->user->screen_name);
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingBlockedReturnsIds()
     {$this->markTestIncomplete();
-        $response = $this->twitter->block->blocking(1, true);
+        $response = $twitter->block->blocking(1, true);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
         $this->assertEquals('16935247', (string) $response->id);
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingDestroy()
     {$this->markTestIncomplete();
-        $response = $this->twitter->block->destroy('zftestuser1');
+        $response = $twitter->block->destroy('zftestuser1');
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
         $this->assertEquals('zftestuser1', (string) $response->screen_name);
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingExistsReturnsFalseWhenBlockDoesNotExists()
     {$this->markTestIncomplete();
-        $this->assertFalse($this->twitter->block->exists('zftestuser1'));
+        $this->assertFalse($twitter->block->exists('zftestuser1'));
     }
 
-    /**
-     * @return void
-     */
     public function testBlockingExistsReturnsOjectWhenFlagPassed()
     {$this->markTestIncomplete();
-        $response = $this->twitter->block->exists('zftestuser1', true);
+        $response = $twitter->block->exists('zftestuser1', true);
         $this->assertTrue($response instanceof Zend_Rest_Client_Result);
     }
 
     /**
-     * Insert Test Data
-     *
-     */
-    protected function insertTestTwitterData()
-    {$this->markTestIncomplete();
-        $twitter = new Zend_Service_Twitter('zftestuser1', 'zftestuser1');
-        // create 10 new entries
-        for ($x = 0; $x < 10; $x++) {
-            $twitter->status->update('Test Message - ' . $x);
-        }
-        $twitter->account->endSession();
-    }
-
-    /**
      * @group ZF-6284
      */
     public function testTwitterObjectsSoNotShareSameHttpClientToPreventConflictingAuthentication()
@@ -639,29 +530,6 @@ class Zend_Service_Twitter_TwitterTest2 extends PHPUnit_Framework_TestCase
         $this->assertFalse($twitter1->getLocalHttpClient() === $twitter2->getLocalHttpClient());
     }
     
-    /**
-     * Quick reusable Twitter Service stub setup.
-     */
-    protected function _stubTwitter($path, $method, $responseFile = null, array $params = null)
-    {
-        $client = $this->getMock('Zend_Http_Client');
-        $client->expects($this->any())->method('resetParameters')
-            ->will($this->returnValue($client));
-        $client->expects($this->once())->method('setUri')
-            ->with('http://api.twitter.com/1/' . $path);
-        $response = $this->getMock('Zend_Http_Response', array(), array(), '', false);
-        if (!is_null($params)) {
-            $setter = 'setParameter' . ucfirst(strtolower($method));
-            $client->expects($this->once())->method($setter)->with($params);
-        }
-        $client->expects($this->once())->method('request')->with($method)
-            ->will($this->returnValue($response));
-        $response->expects($this->any())->method('getBody')
-            ->will($this->returnValue(
-                isset($responseFile) ? file_get_contents(dirname(__FILE__) . '/_files/' . $responseFile) : ''
-            ));
-        return $client;
-    }
 }
 
 if (PHPUnit_MAIN_METHOD == 'Zend_Service_TwitterTest2::main') {

+ 46 - 0
tests/Zend/Service/Twitter/_files/favorites.create.xml

@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>848</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>21</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5929</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>

+ 46 - 0
tests/Zend/Service/Twitter/_files/favorites.destroy.xml

@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>false</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>848</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>21</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5929</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>

+ 768 - 0
tests/Zend/Service/Twitter/_files/favorites.xml

@@ -0,0 +1,768 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<statuses type="array">
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>848</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>21</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5929</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Thu Mar 25 06:27:15 +0000 2010</created_at>
+  <id>11021735076</id>
+  <text>A flight of nine stouts and then another of six strong ales, tonight. #Beer juding complete. #BJCP</text>
+  <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>14249124</id>
+    <name>Sean Coates</name>
+    <screen_name>coates</screen_name>
+    <location>Montreal</location>
+    <description>Web, Beer.</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/641929118/me_icon_normal.jpg</profile_image_url>
+    <url>http://seancoates.com</url>
+    <protected>false</protected>
+    <followers_count>918</followers_count>
+    <profile_background_color>7BCDCD</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>FFFFFF</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>009999</profile_sidebar_border_color>
+    <friends_count>225</friends_count>
+    <created_at>Sat Mar 29 03:52:29 +0000 2008</created_at>
+    <favourites_count>25</favourites_count>
+    <utc_offset>-18000</utc_offset>
+    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://a3.twimg.com/profile_background_images/2696809/whalecopter.png</profile_background_image_url>
+    <profile_background_tile>true</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>5630</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Tue Feb 09 16:42:06 +0000 2010</created_at>
+  <id>8861422763</id>
+  <text>What personality is that blog?... http://typealyzer.com/</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>19575586</id>
+    <name>Hacker News Bot</name>
+    <screen_name>hackernewsbot</screen_name>
+    <location>Internetz</location>
+    <description>Tweeting the hottest from Hacker News (YC)</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
+    <url>http://news.ycombinator.com</url>
+    <protected>false</protected>
+    <followers_count>3035</followers_count>
+    <profile_background_color>9ae4e8</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+    <friends_count>0</friends_count>
+    <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
+    <favourites_count>0</favourites_count>
+    <utc_offset>-21600</utc_offset>
+    <time_zone>Central Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>10943</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Sun Jan 31 04:24:18 +0000 2010</created_at>
+  <id>8439151704</id>
+  <text>People who demand that Flash be replaced by H.264 for video playing in the name of openness are hilarious.</text>
+  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>14492118</id>
+    <name>Marco Tabini</name>
+    <screen_name>mtabini</screen_name>
+    <location>Toronto, Canada</location>
+    <description>Galactic Garbage Collector and Chief Janitor at @phparch (http://phparch.com) and @blueparabola (http://blueparabola.com).</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/727751399/c7d3a27cd4f2f0fa792bcd8916a87fbc_normal.png</profile_image_url>
+    <url>http://blog.tabini.ca</url>
+    <protected>false</protected>
+    <followers_count>1383</followers_count>
+    <profile_background_color>9ae4e8</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+    <friends_count>373</friends_count>
+    <created_at>Wed Apr 23 12:03:22 +0000 2008</created_at>
+    <favourites_count>95</favourites_count>
+    <utc_offset>-18000</utc_offset>
+    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>6713</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Thu Jan 28 00:55:37 +0000 2010</created_at>
+  <id>8302314489</id>
+  <text>10 Feed Publishing Best Practices http://ow.ly/16rbQJ</text>
+  <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>43417156</id>
+    <name>superfeedr</name>
+    <screen_name>superfeedr</screen_name>
+    <location>San Francisco</location>
+    <description>Real-time feed parsing in the cloud for web-developers</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/330719094/g12951_normal.png</profile_image_url>
+    <url>http://superfeedr.com</url>
+    <protected>false</protected>
+    <followers_count>1734</followers_count>
+    <profile_background_color>1A1B1F</profile_background_color>
+    <profile_text_color>666666</profile_text_color>
+    <profile_link_color>2FC2EF</profile_link_color>
+    <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+    <friends_count>1694</friends_count>
+    <created_at>Fri May 29 21:46:48 +0000 2009</created_at>
+    <favourites_count>11</favourites_count>
+    <utc_offset>-28800</utc_offset>
+    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme9/bg.gif</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>3308</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Fri Dec 18 20:23:33 +0000 2009</created_at>
+  <id>6807246064</id>
+  <text>RT: @timbray: Here's yer geek holiday reading: http://www.tbray.org/ongoing/When/200x/2009/12/17/Tab-Sweep-Tech</text>
+  <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id>6806688768</in_reply_to_status_id>
+  <in_reply_to_user_id>1235521</in_reply_to_user_id>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name>timbray</in_reply_to_screen_name>
+  <user>
+    <id>546313</id>
+    <name>Bill de hOra</name>
+    <screen_name>dehora</screen_name>
+    <location>iPhone: 53.272644,-6.244568</location>
+    <description>http://dehora.net/journal/about</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/247287093/P1020452_normal.JPG</profile_image_url>
+    <url>http://dehora.net/journal</url>
+    <protected>false</protected>
+    <followers_count>1054</followers_count>
+    <profile_background_color>ffffff</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>4b4b4b</profile_sidebar_border_color>
+    <friends_count>509</friends_count>
+    <created_at>Thu Jan 04 17:13:11 +0000 2007</created_at>
+    <favourites_count>46</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://a3.twimg.com/profile_background_images/59194327/twilk_background.jpg</profile_background_image_url>
+    <profile_background_tile>true</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>2151</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Fri Dec 18 15:23:36 +0000 2009</created_at>
+  <id>6798914244</id>
+  <text>Overview of OpenMicroBlogging standard (OMB) 0.9 will be ActivityStreams / Atom based with PubSubHubbub+Salmon /via @evan #statusmtl</text>
+  <source>&lt;a href="http://identi.ca" rel="nofollow"&gt;identica&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>657693</id>
+    <name>Sylvain Carle</name>
+    <screen_name>afrognthevalley</screen_name>
+    <location>Montreal</location>
+    <description>CTO and Co-founder of Praized Media. Internet, opensource, media &amp; geo geek. Je Tweet en FR @sylvaincarle aussi. Tweets are CC-BY-SA http://bit.ly/ccbysa3</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/346376501/sylvaincarle-wordcamp-shadow_normal.png</profile_image_url>
+    <url>http://afroginthevalley.com/</url>
+    <protected>false</protected>
+    <followers_count>2085</followers_count>
+    <profile_background_color>000000</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>196900</profile_link_color>
+    <profile_sidebar_fill_color>FFFFFF</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>8F8F8F</profile_sidebar_border_color>
+    <friends_count>1717</friends_count>
+    <created_at>Thu Jan 18 00:10:45 +0000 2007</created_at>
+    <favourites_count>525</favourites_count>
+    <utc_offset>-18000</utc_offset>
+    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://a1.twimg.com/profile_background_images/2416056/praized-tribe-twitter.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5675</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Sun Dec 13 01:29:58 +0000 2009</created_at>
+  <id>6615439448</id>
+  <text>Just cleared up some longstanding tickets in the Drupal HTML Purifier queue. My apologies to all of you who had to wait.</text>
+  <source>web</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>14930686</id>
+    <name>Edward Z. Yang</name>
+    <screen_name>ezyang</screen_name>
+    <location>Cambridge, MA</location>
+    <description>MIT student who plays oboe and spends an inordinate amount of time fiddling with software</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/54757734/gravatar_normal.jpg</profile_image_url>
+    <url>http://ezyang.com</url>
+    <protected>false</protected>
+    <followers_count>168</followers_count>
+    <profile_background_color>4A6282</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>B1C0DF</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>7084AA</profile_sidebar_border_color>
+    <friends_count>87</friends_count>
+    <created_at>Wed May 28 05:22:04 +0000 2008</created_at>
+    <favourites_count>0</favourites_count>
+    <utc_offset>-18000</utc_offset>
+    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://a3.twimg.com/profile_background_images/2580349/logo-large.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>260</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Fri Dec 04 23:42:04 +0000 2009</created_at>
+  <id>6353225351</id>
+  <text>Rails 3 : Vaporware To Awesome... http://www.slideshare.net/wycats/vaporware-to-awesome</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>19575586</id>
+    <name>Hacker News Bot</name>
+    <screen_name>hackernewsbot</screen_name>
+    <location>Internetz</location>
+    <description>Tweeting the hottest from Hacker News (YC)</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
+    <url>http://news.ycombinator.com</url>
+    <protected>false</protected>
+    <followers_count>3035</followers_count>
+    <profile_background_color>9ae4e8</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+    <friends_count>0</friends_count>
+    <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
+    <favourites_count>0</favourites_count>
+    <utc_offset>-21600</utc_offset>
+    <time_zone>Central Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>10943</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Wed Nov 11 01:02:50 +0000 2009</created_at>
+  <id>5605372257</id>
+  <text>#PHP standards group have published final proposal http://bit.ly/2wI4DE. I've been following their talks and it ended exactly as I wanted :)</text>
+  <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>33927626</id>
+    <name>Juozas Kaziukenas</name>
+    <screen_name>juokaz</screen_name>
+    <location>Edinburgh, UK</location>
+    <description>Random ideas, scripts and facts</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/293691113/profile_normal.jpg</profile_image_url>
+    <url>http://www.juokaz.com</url>
+    <protected>false</protected>
+    <followers_count>551</followers_count>
+    <profile_background_color>EBEBEB</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>990000</profile_link_color>
+    <profile_sidebar_fill_color>F3F3F3</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>DFDFDF</profile_sidebar_border_color>
+    <friends_count>248</friends_count>
+    <created_at>Tue Apr 21 14:57:11 +0000 2009</created_at>
+    <favourites_count>0</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Edinburgh</time_zone>
+    <profile_background_image_url>http://a1.twimg.com/profile_background_images/9419692/march-09-clinging_to_colour-nocal-1920x1200.jpg</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>2598</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Tue Nov 10 11:53:48 +0000 2009</created_at>
+  <id>5586709670</id>
+  <text>Nice blog post by @davegardnerisme about setting up continuous integration using Hudson http://is.gd/4RyN3 #hudson #ci (via @raphaelstolt)</text>
+  <source>web</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>18136020</id>
+    <name>Federico Cargnelutti</name>
+    <screen_name>fedecarg</screen_name>
+    <location>London, UK</location>
+    <description>Software Developer</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/913196735/fede-pic2_normal.jpg</profile_image_url>
+    <url>http://www.fedecarg.com</url>
+    <protected>false</protected>
+    <followers_count>292</followers_count>
+    <profile_background_color>1A1B1F</profile_background_color>
+    <profile_text_color>636163</profile_text_color>
+    <profile_link_color>067fa1</profile_link_color>
+    <profile_sidebar_fill_color>000000</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>353536</profile_sidebar_border_color>
+    <friends_count>106</friends_count>
+    <created_at>Mon Dec 15 13:13:48 +0000 2008</created_at>
+    <favourites_count>2</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>London</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>605</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Tue Oct 27 22:54:58 +0000 2009</created_at>
+  <id>5213696169</id>
+  <text>YouTube video of my talk this morning at #140conf. http://r2.ly/n8cv</text>
+  <source>web</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>3839</id>
+    <name>Dave Winer</name>
+    <screen_name>davewiner</screen_name>
+    <location>NYC</location>
+    <description>Media Hackerer, Twitterer, NYU scholar</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/557815118/headshot_normal.jpg</profile_image_url>
+    <url>http://scripting.com/</url>
+    <protected>false</protected>
+    <followers_count>30623</followers_count>
+    <profile_background_color>9ae4e8</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>7f7f90</profile_link_color>
+    <profile_sidebar_fill_color>e1e1df</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a6aaa1</profile_sidebar_border_color>
+    <friends_count>1296</friends_count>
+    <created_at>Sat Aug 05 23:04:08 +0000 2006</created_at>
+    <favourites_count>17</favourites_count>
+    <utc_offset>-28800</utc_offset>
+    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://a3.twimg.com/profile_background_images/99323235/niagara.jpg</profile_background_image_url>
+    <profile_background_tile>true</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>25591</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Wed Oct 21 06:29:46 +0000 2009</created_at>
+  <id>5038508334</id>
+  <text>Damn you @revrev for showing me the beautifully great Machinarium point &amp; click puzzler http://bit.ly/2m8xlT</text>
+  <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>772681</id>
+    <name>Mark Krynsky</name>
+    <screen_name>krynsky</screen_name>
+    <location>Chatsworth, CA</location>
+    <description>Manage X PRIZE Foundation sites. Drupal &amp; Wordpress Fanboy. I run Lifestreamblog.com &amp; my avatar makes me look hipper than I really am.</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/684895249/mark_drinking_ces_normal.jpg</profile_image_url>
+    <url>http://lifestreamblog.com</url>
+    <protected>false</protected>
+    <followers_count>2089</followers_count>
+    <profile_background_color>ffffff</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0000ff</profile_link_color>
+    <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+    <friends_count>1071</friends_count>
+    <created_at>Wed Feb 14 21:28:40 +0000 2007</created_at>
+    <favourites_count>246</favourites_count>
+    <utc_offset>-28800</utc_offset>
+    <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://a3.twimg.com/profile_background_images/93245565/twitter_background_krynsky_v3.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>7406</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Mon Oct 19 14:14:33 +0000 2009</created_at>
+  <id>4991744144</id>
+  <text>RT @AdFreak: One of the better ads you'll see in support of gay marriage. From Ireland. http://bit.ly/2UyyEE #gay #lgbt /// Love it !</text>
+  <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>17352896</id>
+    <name>Simon Villeneuve</name>
+    <screen_name>SimonVilleneuve</screen_name>
+    <location>Montréal</location>
+    <description>Geek de formation smiley-addict fuyant la vie préfabriquée. J'adore la Suisse et @AriMcd. Ah oui, les #jeudiconfession... c'est ma faute! Sorry! :$</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/910317396/me-may18b-474px_normal.jpg</profile_image_url>
+    <url>http://www.simonvilleneuve.ca/</url>
+    <protected>false</protected>
+    <followers_count>1055</followers_count>
+    <profile_background_color>C0DEED</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+    <friends_count>500</friends_count>
+    <created_at>Thu Nov 13 00:35:16 +0000 2008</created_at>
+    <favourites_count>87</favourites_count>
+    <utc_offset>-18000</utc_offset>
+    <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>12821</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Fri Oct 16 06:26:57 +0000 2009</created_at>
+  <id>4910076661</id>
+  <text>wow, my "if it ain't broken" blog post is getting record amounts of visitors</text>
+  <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>1524641</id>
+    <name>Stefan</name>
+    <screen_name>skoop</screen_name>
+    <location>Woudenberg, Netherlands</location>
+    <description>open source, php, geek, music, symfony, buzzer, dad, conference speaker, vegetarian, fc utrecht, entrepreneur, freelancer</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/921970573/5d3c68fa-7d96-4f95-8f26-7c6d47496cd7_normal.png</profile_image_url>
+    <url>http://www.leftontheweb.com/</url>
+    <protected>false</protected>
+    <followers_count>1283</followers_count>
+    <profile_background_color>000000</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>323232</profile_link_color>
+    <profile_sidebar_fill_color>999999</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>CDCDCD</profile_sidebar_border_color>
+    <friends_count>1492</friends_count>
+    <created_at>Mon Mar 19 16:28:14 +0000 2007</created_at>
+    <favourites_count>31</favourites_count>
+    <utc_offset>3600</utc_offset>
+    <time_zone>Amsterdam</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>25592</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Fri Oct 16 02:32:39 +0000 2009</created_at>
+  <id>4905752912</id>
+  <text>Working on my PHP AtomPub library. I'll be ready to push some stuff to github in the near future. You'll be the first to know.</text>
+  <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>7794552</id>
+    <name>Ben Ramsey</name>
+    <screen_name>ramsey</screen_name>
+    <location>Nashville, TN</location>
+    <description>Senior Software Architect at @Moontoast. Author, speaker, blogger, web geek, beer aficionado, home brewer, literature nut, liberty lover, &amp; most of all, a dad.</description>
+    <profile_image_url>http://a3.twimg.com/profile_images/938351463/bramsey-square_normal.png</profile_image_url>
+    <url>http://benramsey.com/</url>
+    <protected>false</protected>
+    <followers_count>1348</followers_count>
+    <profile_background_color>666666</profile_background_color>
+    <profile_text_color>000000</profile_text_color>
+    <profile_link_color>0066CC</profile_link_color>
+    <profile_sidebar_fill_color>99ff66</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>33cc00</profile_sidebar_border_color>
+    <friends_count>172</friends_count>
+    <created_at>Sun Jul 29 02:44:40 +0000 2007</created_at>
+    <favourites_count>83</favourites_count>
+    <utc_offset>-21600</utc_offset>
+    <time_zone>Central Time (US &amp; Canada)</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>true</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>9307</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+<status>
+  <created_at>Thu Sep 17 12:54:45 +0000 2009</created_at>
+  <id>4053276261</id>
+  <text>The Missing Manual author guidelines = top rate advice for ANY tutorial author http://post.ly/5PfX</text>
+  <source>&lt;a href="http://www.posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>true</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>5808</id>
+    <name>David Barnes</name>
+    <screen_name>DRB</screen_name>
+    <location>Birmingham, UK</location>
+    <description>PacktPub.com acquisition editor.  Mainly tweeting about WRITING and GAME DEVELOPMENT.</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/683503668/DSC00010_normal.jpg</profile_image_url>
+    <url>http://davidbarneswork.posterous.com/</url>
+    <protected>false</protected>
+    <followers_count>590</followers_count>
+    <profile_background_color>B2DFDA</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>93A644</profile_link_color>
+    <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+    <friends_count>427</friends_count>
+    <created_at>Mon Sep 11 15:18:01 +0000 2006</created_at>
+    <favourites_count>2</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>London</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme13/bg.gif</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>true</following>
+    <statuses_count>1620</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>
+</statuses>

+ 46 - 0
tests/Zend/Service/Twitter/_files/statuses.destroy.xml

@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>false</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>848</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>21</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5928</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>

+ 4605 - 0
tests/Zend/Service/Twitter/_files/statuses.followers.xml

@@ -0,0 +1,4605 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<users type="array">
+<user>
+  <id>26839591</id>
+  <name>Likely.To</name>
+  <screen_name>likelyto</screen_name>
+  <location>Everywhere and nowhere.</location>
+  <description>Having fun with lots of cool friends.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/114614118/sss5_normal.png</profile_image_url>
+  <url>http://Likely.To/</url>
+  <protected>false</protected>
+  <followers_count>12063</followers_count>
+  <profile_background_color>FF6699</profile_background_color>
+  <profile_text_color>362720</profile_text_color>
+  <profile_link_color>B40B43</profile_link_color>
+  <profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>CC3366</profile_sidebar_border_color>
+  <friends_count>10941</friends_count>
+  <created_at>Thu Mar 26 20:20:13 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme11/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>61</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri Apr 09 00:44:56 +0000 2010</created_at>
+    <id>11853071898</id>
+    <text>could use some help testing my site.  I added more features finally.  http://likely.to/  thx all.  *waves*</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>137929178</id>
+  <name>Matthew Hellinger</name>
+  <screen_name>webspaceinc</screen_name>
+  <location>Birmingham, AL</location>
+  <description>CEO of Webspace Enterprises, Inc.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/858215349/ProfilePhoto_normal.jpg</profile_image_url>
+  <url>http://www.webspaceinc.com</url>
+  <protected>false</protected>
+  <followers_count>244</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>878</friends_count>
+  <created_at>Wed Apr 28 04:40:31 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>11</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 15:41:10 +0000 2010</created_at>
+    <id>14630801221</id>
+    <text>Toyota partnering with Tesla for Model S. Cool!</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14310904</id>
+  <name>Bernd Matzner</name>
+  <screen_name>bmatzner</screen_name>
+  <location>Berlin</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/54353746/berndmatzner-twitter_normal.jpg</profile_image_url>
+  <url>http://berndmatzner.de</url>
+  <protected>false</protected>
+  <followers_count>50</followers_count>
+  <profile_background_color>1A2D30</profile_background_color>
+  <profile_text_color>1A2D30</profile_text_color>
+  <profile_link_color>621A1A</profile_link_color>
+  <profile_sidebar_fill_color>CFD6D7</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>CFD6D7</profile_sidebar_border_color>
+  <friends_count>81</friends_count>
+  <created_at>Sat Apr 05 15:58:00 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>65</statuses_count>
+  <lang>de</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 19:17:35 +0000 2010</created_at>
+    <id>14782919693</id>
+    <text>just installed the Google Analytics Opt-Out add-on for browser. Feels good. http://tools.google.com/dlpage/gaoptout</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>87470812</id>
+  <name>Christian Albrecht</name>
+  <screen_name>c_alb</screen_name>
+  <location>Munich, Germany</location>
+  <description>self-taught coder applying  Zend Framework php &amp; jQuery, 
+Zend_Form Lead Maintainer</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/802030278/twitter3_normal.png</profile_image_url>
+  <url>http://christian-albrecht.info</url>
+  <protected>false</protected>
+  <followers_count>42</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>70</friends_count>
+  <created_at>Wed Nov 04 16:08:43 +0000 2009</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>160</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 18:20:58 +0000 2010</created_at>
+    <id>14990769746</id>
+    <text>Out of Rosenheim in tv now :D</text>
+    <source>&lt;a href="http://funkatron.com/spaz" rel="nofollow"&gt;Spaz&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>89178844</id>
+  <name>Andrey Shevchenko</name>
+  <screen_name>distdev</screen_name>
+  <location/>
+  <description>PHP developer / Zend Certified Engineer :)</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/598948962/dd_normal.gif</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>30</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>54</friends_count>
+  <created_at>Wed Nov 11 12:58:21 +0000 2009</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Kyiv</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>229</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 10:03:31 +0000 2010</created_at>
+    <id>15032621202</id>
+    <text>Харьковский Интернет вошел в десятку самых высокоскоростных в мире O.o http://bit.ly/bwEqpJ #Kharkov</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>7501222</id>
+  <name>bpizzi</name>
+  <screen_name>bpizzi</screen_name>
+  <location>France / Lyon</location>
+  <description>Un évangélisateur des ntic perdu dans le monde professionnel préhistorique français, ébahis par le travail qu'il lui reste à accomplir.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/23343532/moi7_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>35</followers_count>
+  <profile_background_color>673300</profile_background_color>
+  <profile_text_color>B26418</profile_text_color>
+  <profile_link_color>C12D06</profile_link_color>
+  <profile_sidebar_fill_color>FACA9A</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>B45B04</profile_sidebar_border_color>
+  <friends_count>44</friends_count>
+  <created_at>Mon Jul 16 08:35:24 +0000 2007</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>56</statuses_count>
+  <lang>fr</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 16:38:55 +0000 2010</created_at>
+    <id>14917930178</id>
+    <text>I've been Tweeting since July 16, 2007 (1047 days). How about you? - http://HowLongOnTwitter.com</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>138227780</id>
+  <name>BringBackSeeker</name>
+  <screen_name>BringBackSeeker</screen_name>
+  <location>Gate City, VA</location>
+  <description>Dedicated to bringing back Legend of the Seeker to TV.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/858837071/lots_normal.JPG</profile_image_url>
+  <url>http://bringbacktheseeker.com/</url>
+  <protected>false</protected>
+  <followers_count>584</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>1458</friends_count>
+  <created_at>Thu Apr 29 00:09:21 +0000 2010</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Quito</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>506</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 16:26:15 +0000 2010</created_at>
+    <id>14984621714</id>
+    <text>RT @SilentWatchman: vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat May 29 16:22:05 +0000 2010</created_at>
+      <id>14984381408</id>
+      <text>vote Legend of the Seeker for "TV Show of the Month" http://faxo.com/t</text>
+      <source>&lt;a href="http://faxo.com/" rel="nofollow"&gt;Faxo.com&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>41372905</id>
+  <name>Kornienko Alex</name>
+  <screen_name>Skorney</screen_name>
+  <location>Kiev</location>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/837956805/24747_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>18</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>29</friends_count>
+  <created_at>Wed May 20 14:51:11 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>12</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 08:51:13 +0000 2010</created_at>
+    <id>14894030650</id>
+    <text>RT @fabpot: just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Thu May 27 15:33:01 +0000 2010</created_at>
+      <id>14841757090</id>
+      <text>just pushed the #symfony 2 #propel bundle to my repo (still alpha but works) http://github.com/fabpot/symfony</text>
+      <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>8723432</id>
+  <name>Szabolcs Sulik</name>
+  <screen_name>blerou</screen_name>
+  <location>Budapest</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/717349044/45bd4ecd13d1638348596e7eb749070b_normal.jpeg</profile_image_url>
+  <url>http://bleroutoolkit.wordpress.com</url>
+  <protected>false</protected>
+  <followers_count>8</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>15</friends_count>
+  <created_at>Fri Sep 07 13:12:34 +0000 2007</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Budapest</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>8</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon Apr 19 09:29:06 +0000 2010</created_at>
+    <id>12446898577</id>
+    <text>RT @vsbmeza: Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge)  http://twitpic.com/1grsvd</text>
+    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Mon Apr 19 08:01:36 +0000 2010</created_at>
+      <id>12444503300</id>
+      <text>Cola-pop :) (2 coke exploded due to the freezing temperature in our fridge)  http://twitpic.com/1grsvd</text>
+      <source>&lt;a href="http://www.tweetings.net/iphone/" rel="nofollow"&gt;Tweetings&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo xmlns:georss="http://www.georss.org/georss">
+        <georss:point>47.562670 19.052829</georss:point>
+      </geo>
+      <coordinates xmlns:georss="http://www.georss.org/georss">
+        <georss:point>47.562670 19.052829</georss:point>
+      </coordinates>
+      <place xmlns:georss="http://www.georss.org/georss">
+        <id>e52e231315b975c1</id>
+        <name>Budapest</name>
+        <full_name>Budapest, Közép-Magyarország</full_name>
+        <place_type>city</place_type>
+        <url>http://api.twitter.com/1/geo/id/e52e231315b975c1.json</url>
+        <bounding_box/>
+        <country code="HU">Magyarország</country>
+        <street_address/>
+      </place>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>3840</id>
+  <name>Jason Calacanis</name>
+  <screen_name>Jason</screen_name>
+  <location>Los Angeles, CA</location>
+  <description>Cereal entrepreneur: Founder Weblogs Inc., TechCrunch50, Frosted Flakes, Silicon Alley Reporter, Open Angel Forum,Engadget,This Week in Startups &amp; Mahalo.com. </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/761165212/Screen_shot_2010-03-18_at_6.30.41_PM_normal.png</profile_image_url>
+  <url>http://thisweekin.com/thisweekin-startups/</url>
+  <protected>false</protected>
+  <followers_count>99910</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>32604</friends_count>
+  <created_at>Sat Aug 05 23:31:27 +0000 2006</created_at>
+  <favourites_count>52</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/84262475/t_and_f.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>17617</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 02:14:11 +0000 2010</created_at>
+    <id>15012821779</id>
+    <text>@seanjs word</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>14750822</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>seanjs</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19543646</id>
+  <name>Bulat Shakirzyanov</name>
+  <screen_name>avalanche123</screen_name>
+  <location>New York, NY</location>
+  <description>Senior Hacker, OpenSky</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/74768776/shakir_normal.jpg</profile_image_url>
+  <url>http://www.theopenskyproject.com/</url>
+  <protected>false</protected>
+  <followers_count>31</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>39</friends_count>
+  <created_at>Mon Jan 26 16:53:14 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>63</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 18:06:24 +0000 2010</created_at>
+    <id>14990055724</id>
+    <text>RT @s_bergmann: RIP Dennis Hopper</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat May 29 18:00:53 +0000 2010</created_at>
+      <id>14989777058</id>
+      <text>RIP Dennis Hopper</text>
+      <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>30000984</id>
+  <name>Craig Willis</name>
+  <screen_name>craig_willis</screen_name>
+  <location>Leeds</location>
+  <description>Web Developer.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/353248121/wiggles_normal.jpg</profile_image_url>
+  <url>http://www.craig-willis.co.uk</url>
+  <protected>false</protected>
+  <followers_count>132</followers_count>
+  <profile_background_color>62afd6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>541</friends_count>
+  <created_at>Thu Apr 09 15:07:47 +0000 2009</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>739</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 12:04:56 +0000 2010</created_at>
+    <id>15037043483</id>
+    <text>Today I shall me mostly.....getting wasted and rocking out!</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14287005</id>
+  <name>Paul Anthony</name>
+  <screen_name>webireland</screen_name>
+  <location>Belfast</location>
+  <description>.NET code monkey extraordinare.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/425853164/paul_normal.jpg</profile_image_url>
+  <url>http://blog.webdistortion.com/?utm_source=twitter&amp;utm_medium=social_media&amp;utm_campaign=ProfileURL</url>
+  <protected>false</protected>
+  <followers_count>1422</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>1057</friends_count>
+  <created_at>Wed Apr 02 20:08:29 +0000 2008</created_at>
+  <favourites_count>22</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/77619351/n19040221057_2014.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>5782</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 15:18:56 +0000 2010</created_at>
+    <id>14980630732</id>
+    <text>If you are using #CCCCCC as body text colour (or lighter) - I aint straining my eyes for you.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>87594768</id>
+  <name>Kevin Schroeder</name>
+  <screen_name>kpschrade</screen_name>
+  <location/>
+  <description>Technology Evangelist for Zend Technologies.  Co-author of the IBM i Programmer's Guide to PHP</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/790382249/Little_Schrade_normal.gif</profile_image_url>
+  <url>http://www.eschrade.com</url>
+  <protected>false</protected>
+  <followers_count>172</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>137</friends_count>
+  <created_at>Thu Nov 05 02:17:15 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>546</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 23:40:11 +0000 2010</created_at>
+    <id>14796133356</id>
+    <text>2012 is when #f1 returns to the US.  Austin, TX to be exact. I'll take a race I can drive to http://bit.ly/cNiUBz</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15883336</id>
+  <name>Rudger Gravestein</name>
+  <screen_name>Rud5G</screen_name>
+  <location>Rotterdam, NL</location>
+  <description>Волшебный кролик</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/764073210/rud_normal.jpg</profile_image_url>
+  <url>http://rudgergravestein.com/</url>
+  <protected>false</protected>
+  <followers_count>24</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>86</friends_count>
+  <created_at>Sun Aug 17 17:14:36 +0000 2008</created_at>
+  <favourites_count>13</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/57819525/LunaPark2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>91</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 12:20:03 +0000 2010</created_at>
+    <id>15037699311</id>
+    <text>@TBeijen ik hoor t al, alcohol doet weinig goeds met je grappen :) http://youtu.be/A_sY2rjxq6M</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15032331781</in_reply_to_status_id>
+    <in_reply_to_user_id>37911273</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>TBeijen</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20179801</id>
+  <name>Melody Morgan</name>
+  <screen_name>doremelody</screen_name>
+  <location>Los Angeles</location>
+  <description>plant enthusiast and web developer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/860564925/mm_profile_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>19</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>663B12</profile_text_color>
+  <profile_link_color>1F98C7</profile_link_color>
+  <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
+  <friends_count>19</friends_count>
+  <created_at>Thu Feb 05 19:49:58 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/96885905/ideas004.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>12</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 21 23:48:58 +0000 2010</created_at>
+    <id>14460074775</id>
+    <text>@LucreciaRoa ha jk ... 24 is mildly entertaining! Did i ever tell you about the time i saw kiefer sutherland tabledancing at ye old rustic?</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>20176213</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>LucreciaRoa</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15154429</id>
+  <name>Abhinav Lal</name>
+  <screen_name>abhinavlal</screen_name>
+  <location>India</location>
+  <description>Entrepreneur, Web developer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/935987039/f3195180-af41-4be3-879d-ca6a6c67abbc_normal.png</profile_image_url>
+  <url>http://abhinavlal.wordpress.com</url>
+  <protected>false</protected>
+  <followers_count>180</followers_count>
+  <profile_background_color>99B2B7</profile_background_color>
+  <profile_text_color>7A6A53</profile_text_color>
+  <profile_link_color>0E3E4A</profile_link_color>
+  <profile_sidebar_fill_color>D9CEB2</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>948C75</profile_sidebar_border_color>
+  <friends_count>140</friends_count>
+  <created_at>Wed Jun 18 05:19:03 +0000 2008</created_at>
+  <favourites_count>19</favourites_count>
+  <utc_offset>19800</utc_offset>
+  <time_zone>New Delhi</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103696624/x11f5531572c242115797eb5538a58a4.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>491</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 05:59:26 +0000 2010</created_at>
+    <id>14958547119</id>
+    <text>Awesome presentation n discussion on memcache #blrphp</text>
+    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>47087041</id>
+  <name>Tamer Solieman</name>
+  <screen_name>tamersolieman</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/262440546/tamrbinsolimancopy34_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>7</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>14</friends_count>
+  <created_at>Sun Jun 14 12:57:44 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Cairo</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 13 09:14:20 +0000 2010</created_at>
+    <id>13903917510</id>
+    <text>نفسي اخلص رسالتي و اقدم استقالتي</text>
+    <source>&lt;a href="http://choqok.gnufolks.org" rel="nofollow"&gt;choqoK&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>117894195</id>
+  <name>Assar Evans</name>
+  <screen_name>assar1234</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/720472445/imagesCA32Q2B5_normal.jpg</profile_image_url>
+  <url>http://bit.ly/aXkEaz</url>
+  <protected>false</protected>
+  <followers_count>406</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>705</friends_count>
+  <created_at>Fri Feb 26 23:48:31 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>906</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 21 16:35:08 +0000 2010</created_at>
+    <id>14439103608</id>
+    <text>Essential iPad apps: 10 great &amp;lt;b&amp;gt;games&amp;lt;/b&amp;gt; http://bit.ly/dvgKgJ</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14921902</id>
+  <name>Christof Damian</name>
+  <screen_name>cdamian</screen_name>
+  <location>Barcelona</location>
+  <description>Web Developer in Barcelona</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/460884471/Christof_Damian_200_normal.png</profile_image_url>
+  <url>http://christof.damian.net/</url>
+  <protected>false</protected>
+  <followers_count>95</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>808080</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>100</friends_count>
+  <created_at>Tue May 27 15:24:05 +0000 2008</created_at>
+  <favourites_count>15</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Madrid</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3827557/a.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1138</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:01:29 +0000 2010</created_at>
+    <id>15042915623</id>
+    <text>Sunday Mix: Maurizio ‘ deepmitch ‘ Miceli Presents 6ONE6 – Live Exclusive Mix (2008) http://ping.fm/HnFr2</text>
+    <source>&lt;a href="http://www.ping.fm/" rel="nofollow"&gt;Ping.fm&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>16462154</id>
+  <name>megan mcdonald</name>
+  <screen_name>Me9anC</screen_name>
+  <location>Saskatoon, SK, Canada</location>
+  <description>I write fiction and code. Dig my job at zu. And one day I will rule the world.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/536533431/4003130391_a5725fe7db_b_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>209</followers_count>
+  <profile_background_color>EDECE9</profile_background_color>
+  <profile_text_color>634047</profile_text_color>
+  <profile_link_color>088253</profile_link_color>
+  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
+  <friends_count>120</friends_count>
+  <created_at>Fri Sep 26 02:16:07 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme3/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1959</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 04:12:09 +0000 2010</created_at>
+    <id>14953810132</id>
+    <text>Bed-a-ma-tiiiiiime! Bed-a-ma-time.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17963909</id>
+  <name>Jean-Michel</name>
+  <screen_name>jmpnadeau</screen_name>
+  <location>Montréal, Qc, Canada</location>
+  <description>Internet infrastructures architect, systems administrator &amp; entrepreneur. Interested in high performance computing, clouds &amp; grids. 
+Technology lead @giftiniti</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/826076310/avatar-square_normal.png</profile_image_url>
+  <url>http://jmpnadeau.ca</url>
+  <protected>false</protected>
+  <followers_count>382</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>545</friends_count>
+  <created_at>Mon Dec 08 14:52:36 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>198</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 16:43:18 +0000 2010</created_at>
+    <id>14918204354</id>
+    <text>Facebook's Culture Problem May Be Fatal (from HBR) http://bit.ly/bdGY57</text>
+    <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>141257012</id>
+  <name>Tom Godar</name>
+  <screen_name>ficusd</screen_name>
+  <location>St Paul, MN</location>
+  <description>PHP development, Costa Rica, food &amp; travel</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/881097028/n1381922562_1767_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>8</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>20</friends_count>
+  <created_at>Fri May 07 15:52:19 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1273694933/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>7</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 13 21:56:40 +0000 2010</created_at>
+    <id>13936776532</id>
+    <text>I have never been so pissed of at an inanimate object as I am right now with the dijit.filiteringSelect</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>141186979</id>
+  <name>Shaun Steenkamp</name>
+  <screen_name>epsiloncrucis</screen_name>
+  <location>Mackay, Qld, Australia</location>
+  <description>PHP Programmer, Accountant, Aspiring Academic</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/880632909/GalacticCore_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>2</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>7</friends_count>
+  <created_at>Fri May 07 11:44:40 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>36000</utc_offset>
+  <time_zone>Brisbane</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 12 08:00:46 +0000 2010</created_at>
+    <id>13838819266</id>
+    <text>Jupiter loses a stripe - space - 11 May 2010 - New Scientist: http://bit.ly/cNpI4n via @addthis</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>140788163</id>
+  <name>Jenerate</name>
+  <screen_name>jenerateonline</screen_name>
+  <location>Dun laoghaire, Dublin</location>
+  <description>Jenerate.com provide innovative web services (Website creation, design).
+focused on our clients business objectives. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/878026861/avatar_normal.jpg</profile_image_url>
+  <url>http://www.jenerate.com</url>
+  <protected>false</protected>
+  <followers_count>355</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>660000</profile_link_color>
+  <profile_sidebar_fill_color>b35c59</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>bd6363</profile_sidebar_border_color>
+  <friends_count>1397</friends_count>
+  <created_at>Thu May 06 11:09:05 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/98929361/background.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>48</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 15:59:10 +0000 2010</created_at>
+    <id>14915427202</id>
+    <text>So everyone is telling you that you should be winning business using Facebook but should I start with my own page, a Group or a Fan page....</text>
+    <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>140657929</id>
+  <name>Casual Game Guru</name>
+  <screen_name>casualfunguru</screen_name>
+  <location>In the Mushroom Kingdom</location>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/877456829/pacman_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>157</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>1516</friends_count>
+  <created_at>Thu May 06 02:44:55 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue May 11 08:56:41 +0000 2010</created_at>
+    <id>13778238550</id>
+    <text>Anyone has a list of cool gaming sites - any recommendations?</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15084351</id>
+  <name>sas171</name>
+  <screen_name>sas171</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>16</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>59</friends_count>
+  <created_at>Wed Jun 11 12:49:46 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-10800</utc_offset>
+  <time_zone>Greenland</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>194</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 15:36:22 +0000 2010</created_at>
+    <id>14981656374</id>
+    <text>RT @raudssus: the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat May 29 14:51:51 +0000 2010</created_at>
+      <id>14978985426</id>
+      <text>the new #ipad by #madtv http://bit.ly/9kOM1b - this gag is 2 years old.... who has stolen where? ;)</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>139805562</id>
+  <name>sina miandashti</name>
+  <screen_name>sinamiandashti</screen_name>
+  <location>Iran Tehran Pasdaran</location>
+  <description>trance lover .... PHP developer
+zend frame work developer ...
+
+armin van buuren FAN
+state of trance FAN</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/870571600/n1662802593_8152_normal.jpg</profile_image_url>
+  <url>http://musicbase.ir</url>
+  <protected>false</protected>
+  <followers_count>17</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>88</friends_count>
+  <created_at>Mon May 03 18:54:20 +0000 2010</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>12600</utc_offset>
+  <time_zone>Tehran</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>46</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 14:36:39 +0000 2010</created_at>
+    <id>14978083982</id>
+    <text>just used the Zend_Db_Profiler_Firebug and Zend_Log_Writer_Firebug for the first time ... with FireBug FF addon . its cool #zf #firefox #php</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>139630685</id>
+  <name>Chabier Lorenzo</name>
+  <screen_name>zchab</screen_name>
+  <location>Ainsa, Huesca, Spain</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/934542720/empeorando_lo_presente_normal.jpg</profile_image_url>
+  <url>http://xtsports.tumblr.com/</url>
+  <protected>false</protected>
+  <followers_count>2</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>88</friends_count>
+  <created_at>Mon May 03 06:10:23 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-10800</utc_offset>
+  <time_zone>Greenland</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>0</statuses_count>
+  <lang>es</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>115095926</id>
+  <name>MyGeoInfo</name>
+  <screen_name>MyGeoInfo</screen_name>
+  <location>USA</location>
+  <description>Travelers: MyGeoInfo wants your travel and place articles. Earn residual income from submissions. Writers wanted. Unique Adsense sharing community.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/701510702/mygeoinfo11_normal.png</profile_image_url>
+  <url>http://www.mygeoinfo.com</url>
+  <protected>false</protected>
+  <followers_count>217</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>1981</friends_count>
+  <created_at>Wed Feb 17 16:03:34 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>138</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 12:12:46 +0000 2010</created_at>
+    <id>14758935251</id>
+    <text>My trip to Lake Como in Northern Italy was one of the most memorable experiences I have had for a long while. The third largest of the It...</text>
+    <source>&lt;a href="http://feastofcrumbs.com/blog/wordpress-plugins/auto-tweet/" rel="nofollow"&gt;Auto Tweet&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19268240</id>
+  <name>Raphael Almeida</name>
+  <screen_name>jaguarnet7</screen_name>
+  <location>Rio de Janeiro</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/72212876/gse_multipart68100_normal.jpg</profile_image_url>
+  <url>http://raphaeldealmeida.wordpress.com/</url>
+  <protected>false</protected>
+  <followers_count>95</followers_count>
+  <profile_background_color>709397</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>FF3300</profile_link_color>
+  <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
+  <friends_count>94</friends_count>
+  <created_at>Wed Jan 21 00:55:28 +0000 2009</created_at>
+  <favourites_count>12</favourites_count>
+  <utc_offset>-10800</utc_offset>
+  <time_zone>Brasilia</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/86309735/l267.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>472</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 19:54:51 +0000 2010</created_at>
+    <id>14995181731</id>
+    <text>No #ParqueDasRuinas em #SantaTeresa 3G #fail direto</text>
+    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>111701709</id>
+  <name>Old Noob</name>
+  <screen_name>Old_Noob</screen_name>
+  <location/>
+  <description>I'm a long-time RPG fan, but still a bit of a n00b with MMO video games.  Check out my site for great fantasy and RPG video games!</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/678042169/avatar_normal.jpg</profile_image_url>
+  <url>http://mmorpgnoob.com</url>
+  <protected>false</protected>
+  <followers_count>1127</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>009999</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>1794</friends_count>
+  <created_at>Fri Feb 05 21:40:49 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/72777520/avatar.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>128</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 15:51:03 +0000 2010</created_at>
+    <id>14842843690</id>
+    <text>What about a list of two player cooperative games like Gauntlet.  I guess FFCCEoT had cooperative mode.  Too bad it sucked.</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17131390</id>
+  <name>Agnès Haasser</name>
+  <screen_name>tut_tuuut</screen_name>
+  <location>Lyon, France</location>
+  <description>Individu geek femelle.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/446949005/IMG_9478_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>32</followers_count>
+  <profile_background_color>BADFCD</profile_background_color>
+  <profile_text_color>0C3E53</profile_text_color>
+  <profile_link_color>FF0000</profile_link_color>
+  <profile_sidebar_fill_color>FFF7CC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>F2E195</profile_sidebar_border_color>
+  <friends_count>47</friends_count>
+  <created_at>Mon Nov 03 14:37:38 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1273536095/images/themes/theme12/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>110</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 09:12:11 +0000 2010</created_at>
+    <id>15030893413</id>
+    <text>@_namass Bon bah j'installe adium et on en cause alors :D</text>
+    <source>&lt;a href="http://www.nambu.com/" rel="nofollow"&gt;Nambu&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15030664381</in_reply_to_status_id>
+    <in_reply_to_user_id>37896645</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>_namass</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>28873017</id>
+  <name>Follow for Follow?</name>
+  <screen_name>KapnKrunch1337</screen_name>
+  <location>SoCal</location>
+  <description>Follow for Follow?
+XBOX live gamertag: SOG KruncH</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/854789402/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>187</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>178a08</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>1358</friends_count>
+  <created_at>Sat Apr 04 21:20:41 +0000 2009</created_at>
+  <favourites_count>11</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/18264771/kk1337.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>469</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 02:00:22 +0000 2010</created_at>
+    <id>14946775101</id>
+    <text>I unlocked 4 Xbox achievements on Skate 3! http://raptr.com/SOG_KruncH</text>
+    <source>&lt;a href="http://www.raptr.com/" rel="nofollow"&gt;Raptr&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14853295</id>
+  <name>dakna</name>
+  <screen_name>dakna</screen_name>
+  <location>Berlin</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/517505178/twitter2_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>39</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>99</friends_count>
+  <created_at>Wed May 21 06:50:36 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>88</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 20 10:22:49 +0000 2010</created_at>
+    <id>14352473103</id>
+    <text>du weisst du arbeitest zu viel, wenn du auf dem handy die spiegel online app startest,das handy ans ohr hälst und dich über stille wunderst</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>23950019</id>
+  <name>Marius Ion</name>
+  <screen_name>imarims</screen_name>
+  <location>Atlantic Beach</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/93870310/blogphoto_normal.png</profile_image_url>
+  <url>http://www.appstacks.com</url>
+  <protected>false</protected>
+  <followers_count>673</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2600FF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>2002</friends_count>
+  <created_at>Thu Mar 12 13:56:21 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-14400</utc_offset>
+  <time_zone>Atlantic Time (Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/93986124/x44f850d7ef113c9939a9f3339a0f8fa.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>111</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 00:20:49 +0000 2010</created_at>
+    <id>15007284365</id>
+    <text>BP 'top kill' still not stopping flow - BP said Saturday that its latest bid to plug the worst oil spill in U.S. hi... http://ow.ly/17y3fP</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20019582</id>
+  <name>Georg Schmidl</name>
+  <screen_name>vicox</screen_name>
+  <location>Munich, Germany</location>
+  <description>Computer science student, enthusiastic about technology and FLOSS</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/703922954/me_normal.jpg</profile_image_url>
+  <url>http://vicox.net</url>
+  <protected>false</protected>
+  <followers_count>27</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>69</friends_count>
+  <created_at>Wed Feb 04 01:27:14 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>304</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 02:48:33 +0000 2010</created_at>
+    <id>14807157946</id>
+    <text>of course it works :) do you like it? RT @leolaporte: Installing Lucid Lynx on my Dell Studio 16 - works!</text>
+    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15985121</id>
+  <name>Gonzalo Míguez</name>
+  <screen_name>MrZarD</screen_name>
+  <location>Barcelona, España</location>
+  <description>Programador de la pradera, cornerback así maloso y lector empedernido. Y ñamesito :* Y bajista maloso... Y aprediz de todo y maestro de nada :P</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/421913307/n1448176801_1425_normal.jpg</profile_image_url>
+  <url>http://www.barcelonabufals.com</url>
+  <protected>true</protected>
+  <followers_count>57</followers_count>
+  <profile_background_color>003367</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>6E6E6E</profile_link_color>
+  <profile_sidebar_fill_color>87D0FF</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>FFFFFF</profile_sidebar_border_color>
+  <friends_count>112</friends_count>
+  <created_at>Mon Aug 25 18:29:54 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Madrid</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/2932781/bufals_bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1914</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>11941022</id>
+  <name>Extendez</name>
+  <screen_name>extendez</screen_name>
+  <location>Extendez</location>
+  <description>Extendez</description>
+  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_2_normal.png</profile_image_url>
+  <url>http://www.orderextenze.com</url>
+  <protected>false</protected>
+  <followers_count>38</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>450</friends_count>
+  <created_at>Mon Jan 07 13:02:19 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Arizona</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>0</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>11725892</id>
+  <name>Adam Levenson</name>
+  <screen_name>adamlevenson</screen_name>
+  <location>San Diego, CA</location>
+  <description>Digital Operative CTO + co-founder. Infecting digital marketing with technology. Bostonian in SoCal. Proud daddy. #dostream</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/824063460/Photo_40_normal.jpg</profile_image_url>
+  <url>http://www.digitaloperative.com/</url>
+  <protected>false</protected>
+  <followers_count>1432</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>32859a</profile_link_color>
+  <profile_sidebar_fill_color>f0fbfe</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>820</friends_count>
+  <created_at>Tue Jan 01 19:22:30 +0000 2008</created_at>
+  <favourites_count>9</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3904125/twitter-bkg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>2948</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 03:04:38 +0000 2010</created_at>
+    <id>15015489775</id>
+    <text>RT @BJ: Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Fri May 28 23:53:53 +0000 2010</created_at>
+      <id>14940224699</id>
+      <text>Just uploaded photo to our Facebook Page - DO as cast from LOST www.facebook.com/digital.operative.agency #dostream</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>44651789</id>
+  <name>Deon Heunis</name>
+  <screen_name>deonheunis</screen_name>
+  <location>Cape Town</location>
+  <description>Dad, husband, sports fan. Senior web developer at Prezence SA</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/793031315/PICT0800_normal.jpg</profile_image_url>
+  <url>http://www.heunis.com</url>
+  <protected>false</protected>
+  <followers_count>85</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>332652</profile_text_color>
+  <profile_link_color>0070bb</profile_link_color>
+  <profile_sidebar_fill_color>f8f8f8</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>159</friends_count>
+  <created_at>Thu Jun 04 16:18:51 +0000 2009</created_at>
+  <favourites_count>13</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Pretoria</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/89280986/header.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>273</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 16:51:00 +0000 2010</created_at>
+    <id>14986021985</id>
+    <text>Well done bulls, best team won</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>24362989</id>
+  <name>redphx</name>
+  <screen_name>redphx</screen_name>
+  <location>Danang, Vietnam</location>
+  <description>web developer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/262310769/eye_normal.png</profile_image_url>
+  <url>http://redphx.com</url>
+  <protected>false</protected>
+  <followers_count>245</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>777777</profile_text_color>
+  <profile_link_color>F7290C</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>146</friends_count>
+  <created_at>Sat Mar 14 12:45:09 +0000 2009</created_at>
+  <favourites_count>65</favourites_count>
+  <utc_offset>25200</utc_offset>
+  <time_zone>Hanoi</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/11913911/4363.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1350</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 10:32:17 +0000 2010</created_at>
+    <id>14897613032</id>
+    <text>tả tơi, hix</text>
+    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>125064962</id>
+  <name>Ute Pemm</name>
+  <screen_name>lovelygirl0992</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/766071466/Unbenannt_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>211</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>546</friends_count>
+  <created_at>Sun Mar 21 15:21:59 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications/>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following/>
+  <statuses_count>7</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon Apr 12 13:11:42 +0000 2010</created_at>
+    <id>12045334657</id>
+    <text>Asiarooms.com is offering amazing specials on Hotels in Thailand, Indonesia, Malaysia, Japan and China. spon -http://tinyurl.com/y4fc6w9</text>
+    <source>&lt;a href="http://revtwt.com" rel="nofollow"&gt;Goldbird&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>28537284</id>
+  <name>Tiago Paulino</name>
+  <screen_name>tiago_paulino</screen_name>
+  <location>France</location>
+  <description>Web Developer, PHP and Jquery addict, interested by software engineering, various open source solutions and general web technologies</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/695909648/logo2_normal.jpg</profile_image_url>
+  <url>http://www.tiagop.com</url>
+  <protected>false</protected>
+  <followers_count>168</followers_count>
+  <profile_background_color>ACDED6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>038543</profile_link_color>
+  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
+  <friends_count>525</friends_count>
+  <created_at>Fri Apr 03 10:24:37 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/76908122/Background.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>234</statuses_count>
+  <lang>fr</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 13:20:00 +0000 2010</created_at>
+    <id>14905473459</id>
+    <text>Web Operating Systems: The Options You should Consider | Graphic and Web Design Blog http://bit.ly/9CFaQD</text>
+    <source>&lt;a href="http://tweetmeme.com" rel="nofollow"&gt;TweetMeme&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>60885078</id>
+  <name>roy simkes</name>
+  <screen_name>roysimkes</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/576464048/Picture_4_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>14</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>25</friends_count>
+  <created_at>Tue Jul 28 12:03:15 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>5</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed Apr 21 21:53:23 +0000 2010</created_at>
+    <id>12599969326</id>
+    <text>Use this coupon code R6REM to save $10 on Postbox!  http://www.postbox-inc.com/ref.php?r=R6REM</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>32335514</id>
+  <name>hans torres</name>
+  <screen_name>hanseh</screen_name>
+  <location>makati</location>
+  <description>your friendly neighborhood programmer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/539605087/screenshot1_normal.png</profile_image_url>
+  <url>http://hanseh.wordpress.com</url>
+  <protected>false</protected>
+  <followers_count>36</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>26</friends_count>
+  <created_at>Fri Apr 17 06:51:06 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>28800</utc_offset>
+  <time_zone>Hong Kong</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>30</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue May 25 08:44:02 +0000 2010</created_at>
+    <id>14680717602</id>
+    <text>1 year na pala. :D</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15698784</id>
+  <name>Sebastian Jaramillo</name>
+  <screen_name>sebastianjt</screen_name>
+  <location/>
+  <description>I am a Web Developer specializing in Front-End technologies, interested in standard-compliant, well-engineered, accessible and engaging sites.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/90074883/gordoteins_hotmail.com_364d353c_normal.jpg</profile_image_url>
+  <url>http://www.sebastianjt.com</url>
+  <protected>false</protected>
+  <followers_count>423</followers_count>
+  <profile_background_color>1c1c1c</profile_background_color>
+  <profile_text_color>7d8f96</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>0f1417</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5e7e8c</profile_sidebar_border_color>
+  <friends_count>501</friends_count>
+  <created_at>Sat Aug 02 06:07:59 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Bogota</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3504656/BG.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1183</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 21 16:14:40 +0000 2010</created_at>
+    <id>14437873790</id>
+    <text>RT @betancur: Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
+    <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;mobile web&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Fri May 21 11:41:23 +0000 2010</created_at>
+      <id>14422426737</id>
+      <text>Fight Club - Chemical Burn - Kinetic Typography http://post.ly/gqKH</text>
+      <source>&lt;a href="http://www.posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14993209</id>
+  <name>Brandon Savage</name>
+  <screen_name>brandonsavage</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/859024571/brandon_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>752</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>152</friends_count>
+  <created_at>Tue Jun 03 14:28:21 +0000 2008</created_at>
+  <favourites_count>3</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>12034</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:16:34 +0000 2010</created_at>
+    <id>15043809171</id>
+    <text>@xwordy Glenn Beck ruined the quote, after he equated it to Barack Obama's administration.</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15042796140</in_reply_to_status_id>
+    <in_reply_to_user_id>10786112</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>xwordy</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>109229910</id>
+  <name>Smartphone Focus</name>
+  <screen_name>SmartphoneFocus</screen_name>
+  <location>UK</location>
+  <description>Q of the Day: Which products have you started using to work on the move in the past five years?</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/660712323/PTrotterFLIP_bigger_normal.JPG</profile_image_url>
+  <url>http://www.pcadvisor.co.uk/smartphone-focus/</url>
+  <protected>false</protected>
+  <followers_count>900</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>030303</profile_link_color>
+  <profile_sidebar_fill_color>fa120a</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>1582</friends_count>
+  <created_at>Thu Jan 28 11:10:30 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/88092044/Twitter-Vodafone_Smartphonei-2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1629</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu Apr 01 14:27:51 +0000 2010</created_at>
+    <id>11426869202</id>
+    <text>Palm Preparing UK Launch For Pixi Plus &amp; Pre Plus http://ow.ly/1tBkO</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>54812973</id>
+  <name>Ferenc Kovacs</name>
+  <screen_name>Tyr43l</screen_name>
+  <location>Budapest</location>
+  <description>Hacker 42 Anime Nationalism</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/620860479/490_Tyrael_4a51dbc18671c_2_normal.jpg</profile_image_url>
+  <url>http://tyrael.hu</url>
+  <protected>false</protected>
+  <followers_count>30</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>85</friends_count>
+  <created_at>Wed Jul 08 05:46:58 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Budapest</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>211</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 20 07:24:45 +0000 2010</created_at>
+    <id>14346510907</id>
+    <text>@leente "Levente Bagi is now Ruby on Rails developer at Self Employed" =&amp;gt; Na, mizu, meselj! :)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>5407342</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>leente</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14869245</id>
+  <name>julienPauli</name>
+  <screen_name>julienPauli</screen_name>
+  <location>Paris</location>
+  <description>ZCE, ZFCE. Web app architect. PHP, Apache, ZendF contributor</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/715548091/julienP_normal.jpg</profile_image_url>
+  <url>http://www.alterway.fr</url>
+  <protected>false</protected>
+  <followers_count>24</followers_count>
+  <profile_background_color>ACDED6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>038543</profile_link_color>
+  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
+  <friends_count>56</friends_count>
+  <created_at>Thu May 22 15:05:58 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>0</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>92359611</id>
+  <name>Medal of Honor</name>
+  <screen_name>medalofhonor</screen_name>
+  <location>Los Angeles</location>
+  <description>There is a new enemy. There is a new war. There is a new warrior. He is Tier 1. </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/555288054/twitter_pic_normal.jpg</profile_image_url>
+  <url>http://www.medalofhonor.com</url>
+  <protected>false</protected>
+  <followers_count>5957</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>c2c2c2</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>251</friends_count>
+  <created_at>Tue Nov 24 20:38:24 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-32400</utc_offset>
+  <time_zone>Alaska</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103800040/moh_twitter_final_rangertrailer.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>124</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 21:01:10 +0000 2010</created_at>
+    <id>14647009445</id>
+    <text>It's Military Monday at MedalofHonor.com and we have a new blog up entield "The Mind of a Soldier". http://bit.ly/dDc4Qm</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18849313</id>
+  <name>Matthew Pruitt</name>
+  <screen_name>matthewpruitt</screen_name>
+  <location>Los Angeles, CA | from Detroit</location>
+  <description>I oversee the communities for all of the Electronic Arts first-person shooter games.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/769039947/twit_normal.jpg</profile_image_url>
+  <url>http://www.linkedin.com/in/matthewpruitt</url>
+  <protected>false</protected>
+  <followers_count>1875</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>06001f</profile_text_color>
+  <profile_link_color>d94c17</profile_link_color>
+  <profile_sidebar_fill_color>ababab</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>220</friends_count>
+  <created_at>Sat Jan 10 22:46:39 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3868929/twitter.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>771</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 19 22:07:13 +0000 2010</created_at>
+    <id>14319327820</id>
+    <text>@mdk2002 Tier 1 beards FTW!</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14311379775</in_reply_to_status_id>
+    <in_reply_to_user_id>14506809</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>mdk2002</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>23930087</id>
+  <name>Qasim Shabbir</name>
+  <screen_name>qasimshabbir</screen_name>
+  <location/>
+  <description>Love to do programming. Expert areas are PHP, Opensource, eCommerce, CMS, Social Networking, CRM. Improving on RIA, Mobile Development, and Enterprise App</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/267164527/qasimportrati_normal.jpg</profile_image_url>
+  <url>http://www.q-sols.com</url>
+  <protected>false</protected>
+  <followers_count>191</followers_count>
+  <profile_background_color>0099B9</profile_background_color>
+  <profile_text_color>3C3940</profile_text_color>
+  <profile_link_color>0099B9</profile_link_color>
+  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
+  <friends_count>158</friends_count>
+  <created_at>Thu Mar 12 10:46:49 +0000 2009</created_at>
+  <favourites_count>35</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>746</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 19:57:27 +0000 2010</created_at>
+    <id>14995310359</id>
+    <text>Icon Library for Google Map Markers #tech #coach http://bit.ly/bubT0a</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15201026</id>
+  <name>45ACP</name>
+  <screen_name>45ACP</screen_name>
+  <location>ÜT: 39.743747,-104.938906</location>
+  <description>libertarian, web developer, business owner IT Professional</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/59972251/colorado_state_flag_normal.gif</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>671</followers_count>
+  <profile_background_color>1ba35f</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0f2b26</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>1627</friends_count>
+  <created_at>Sun Jun 22 21:36:41 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/88420186/twitterbg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1649</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 04:20:11 +0000 2010</created_at>
+    <id>15019517945</id>
+    <text>Received the tracking info for my replacement #blackberry #8900 hopefully this one will not spontaneously reboot everyday and loose wifi</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14213930</id>
+  <name>itabarau</name>
+  <screen_name>itabarau</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/52090741/good_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>36</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>133</friends_count>
+  <created_at>Tue Mar 25 07:44:41 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>54</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 16:42:28 +0000 2010</created_at>
+    <id>14634256606</id>
+    <text>RT @phpizer: An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Mon May 24 16:38:13 +0000 2010</created_at>
+      <id>14634022754</id>
+      <text>An Overview of PHP Framework Guides for Developers | Onextrapixel - Showcasing Web Treats Without A Hitch http://bit.ly/aFtNHo</text>
+      <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>94172381</id>
+  <name>Brian Swan</name>
+  <screen_name>brian_swan</screen_name>
+  <location>Redmond, WA</location>
+  <description>Blogger about all things related to PHP and Microsoft. Rookie husband/dad. Amatuer Mtn. biker, runner, hiker. Experienced beer drinker.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/624949934/Brian_2_normal.jpg</profile_image_url>
+  <url>http://blogs.msdn.com/brian_swan/</url>
+  <protected>false</protected>
+  <followers_count>119</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>159</friends_count>
+  <created_at>Wed Dec 02 20:47:52 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>197</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 18:58:15 +0000 2010</created_at>
+    <id>14925757554</id>
+    <text>@enygma  Picked it up this morning? Is that breakfast?</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14925469046</in_reply_to_status_id>
+    <in_reply_to_user_id>8854032</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>enygma</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>22903583</id>
+  <name>Lukas Kahwe Smith</name>
+  <screen_name>dybvandal</screen_name>
+  <location>Zurich</location>
+  <description>My twitter alter-ego is all about PHP, databases and other code related stuff.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg</profile_image_url>
+  <url>http://pooteeweet.org</url>
+  <protected>false</protected>
+  <followers_count>217</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>193</friends_count>
+  <created_at>Thu Mar 05 10:07:02 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Bern</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>220</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 20:36:18 +0000 2010</created_at>
+    <id>14997168565</id>
+    <text>Decided to break through the wall, eat that #CSS, but then again I am sure a pixel-pusher could do it better http://search.UN-informed.org</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>36688537</id>
+  <name>Steve Tran</name>
+  <screen_name>clu3</screen_name>
+  <location>O-n-l-i-n-e-24-7</location>
+  <description>Web development. Zend Framework and Jquery, and Online Business</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/201515571/avatar_normal.jpg</profile_image_url>
+  <url>http://clu3.com</url>
+  <protected>false</protected>
+  <followers_count>67</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>66</friends_count>
+  <created_at>Thu Apr 30 15:27:59 +0000 2009</created_at>
+  <favourites_count>15</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>63</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 22 15:27:40 +0000 2010</created_at>
+    <id>14499651048</id>
+    <text>Ryan Dahl on #node.js video http://www.yuiblog.com/blog/2010/05/20/video-dahl/</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>8136372</id>
+  <name>BizHat.com</name>
+  <screen_name>bizhat</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/417144074/pookalam_normal.jpg</profile_image_url>
+  <url>http://bizhat.com</url>
+  <protected>false</protected>
+  <followers_count>91</followers_count>
+  <profile_background_color>B2DFDA</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>93A644</profile_link_color>
+  <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>107</friends_count>
+  <created_at>Sun Aug 12 07:33:18 +0000 2007</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-36000</utc_offset>
+  <time_zone>Hawaii</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/37107528/P1010004.JPG</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>66</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 22 21:17:13 +0000 2010</created_at>
+    <id>14516850022</id>
+    <text>Final tweet of @netizentwo who passed away in plane crash 22 Mar 2009  #mangalore #india</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>9826072</id>
+  <name>jDempster</name>
+  <screen_name>jDempster</screen_name>
+  <location>Northampton, UK</location>
+  <description>the one constant in life, is change</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/82171216/jd2_normal.png</profile_image_url>
+  <url>http://www.jdempster.com/</url>
+  <protected>false</protected>
+  <followers_count>26</followers_count>
+  <profile_background_color>C6E2EE</profile_background_color>
+  <profile_text_color>663B12</profile_text_color>
+  <profile_link_color>1F98C7</profile_link_color>
+  <profile_sidebar_fill_color>DAECF4</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
+  <friends_count>44</friends_count>
+  <created_at>Wed Oct 31 15:08:37 +0000 2007</created_at>
+  <favourites_count>8</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme2/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>74</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu Apr 22 17:14:04 +0000 2010</created_at>
+    <id>12650534190</id>
+    <text>@giorgiosironi I recommed ZFS. lol. But I don't think can do diffs.</text>
+    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>12631604856</in_reply_to_status_id>
+    <in_reply_to_user_id>47998559</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>giorgiosironi</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17519155</id>
+  <name>macrina32</name>
+  <screen_name>macrina32</screen_name>
+  <location>Albany</location>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>0</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>12</friends_count>
+  <created_at>Thu Nov 20 19:20:55 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 13 15:04:00 +0000 2010</created_at>
+    <id>13918571519</id>
+    <text>@flyosity def worth it!</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>13895993105</in_reply_to_status_id>
+    <in_reply_to_user_id>10545</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>flyosity</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>21287694</id>
+  <name>Anthony Sterling</name>
+  <screen_name>AnthonySterling</screen_name>
+  <location>Newcastle-Upon-Tyne, UK</location>
+  <description>Full-time IT manager, part-time freelance PHP ninja.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/933539796/colour-border_normal.jpg</profile_image_url>
+  <url>http://www.anthonysterling.com</url>
+  <protected>false</protected>
+  <followers_count>245</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>100</friends_count>
+  <created_at>Thu Feb 19 10:14:59 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>2081</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:18:07 +0000 2010</created_at>
+    <id>15043898545</id>
+    <text>I love this quote regarding #freelancing - "I am not in the fast food business. I am a chef." - http://is.gd/cvGN0 /by @drewcrawford</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17366945</id>
+  <name>Travis Pew</name>
+  <screen_name>travispew</screen_name>
+  <location>Decatur, GA</location>
+  <description>Founder of www.gymgenius.com</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/650725821/profile_normal.JPG</profile_image_url>
+  <url>http://www.gymgenius.com</url>
+  <protected>false</protected>
+  <followers_count>63</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>102</friends_count>
+  <created_at>Thu Nov 13 15:37:28 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>233</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 22 17:29:56 +0000 2010</created_at>
+    <id>14506398878</id>
+    <text>@Juniper949 ok i am convinced.</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14505975800</in_reply_to_status_id>
+    <in_reply_to_user_id>33581425</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>Juniper949</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14438478</id>
+  <name>Chris Morrell</name>
+  <screen_name>inxilpro</screen_name>
+  <location>Philadelphia, PA</location>
+  <description>Chris is a Web designer and developer in Philadelphia, PA.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/56452575/Twitter_normal.jpg</profile_image_url>
+  <url>http://cmorrell.com</url>
+  <protected>false</protected>
+  <followers_count>183</followers_count>
+  <profile_background_color>eadfca</profile_background_color>
+  <profile_text_color>0C3E53</profile_text_color>
+  <profile_link_color>FF0000</profile_link_color>
+  <profile_sidebar_fill_color>f9f8f3</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>E0DAC4</profile_sidebar_border_color>
+  <friends_count>77</friends_count>
+  <created_at>Fri Apr 18 22:57:36 +0000 2008</created_at>
+  <favourites_count>81</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3522136/twitter-bg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1222</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 02:38:54 +0000 2010</created_at>
+    <id>14877191308</id>
+    <text>@r38y do you have Photoshop? It's just the noise filter as far as I can tell from that picture.</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14860091448</in_reply_to_status_id>
+    <in_reply_to_user_id>1465521</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>r38y</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>12165542</id>
+  <name>Victor Zamfir</name>
+  <screen_name>victorzamfir</screen_name>
+  <location>Romania</location>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_4_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>77</followers_count>
+  <profile_background_color>030303</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>e6ecee</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>e6ecee</profile_sidebar_border_color>
+  <friends_count>146</friends_count>
+  <created_at>Sat Jan 12 22:47:55 +0000 2008</created_at>
+  <favourites_count>72</favourites_count>
+  <utc_offset>-10800</utc_offset>
+  <time_zone>Greenland</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/88406645/backg-metromind2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat Nov 28 21:55:21 +0000 2009</created_at>
+    <id>6151979356</id>
+    <text>RT @MihaiDragan: RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat Nov 28 20:25:57 +0000 2009</created_at>
+      <id>6149928020</id>
+      <text>RT @webmyc: Romani Anti PSD - f bun! http://www.romaniantipsd.ro/</text>
+      <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>23214328</id>
+  <name>Źmicier Hryškievič</name>
+  <screen_name>zmicier</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/697397811/me_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>12</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>15</friends_count>
+  <created_at>Sat Mar 07 17:37:34 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Warsaw</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue Jan 26 23:40:50 +0000 2010</created_at>
+    <id>8255909159</id>
+    <text>Trip to Cracow. 5 hours remaining</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>70735867</id>
+  <name>Sebastian Krebs</name>
+  <screen_name>SeKrebs</screen_name>
+  <location>Berlin, Germany</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/393241806/av2_normal.jpg</profile_image_url>
+  <url>http://www.kingcrunch.de</url>
+  <protected>false</protected>
+  <followers_count>13</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>29</friends_count>
+  <created_at>Tue Sep 01 17:33:20 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>46</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 19 17:02:35 +0000 2010</created_at>
+    <id>14305275370</id>
+    <text>RT s_bergmann: Mathematik und Logik dürfen nicht patentierbar sein: http://bit.ly/PP100519 #piraten+</text>
+    <source>&lt;a href="http://code.google.com/p/microblog-purple/" rel="nofollow"&gt;mbpidgin&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>28200993</id>
+  <name>Paul Court</name>
+  <screen_name>IAWDev</screen_name>
+  <location/>
+  <description>PHP Developer - Drupal &amp; Zend Framework mainly</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/144829882/teitter-logo2_normal.png</profile_image_url>
+  <url>http://www.itsaboutwebsites.com</url>
+  <protected>false</protected>
+  <followers_count>86</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>63</friends_count>
+  <created_at>Wed Apr 01 21:29:15 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/53735060/twt-bg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>534</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 08:58:23 +0000 2010</created_at>
+    <id>14894270501</id>
+    <text>@rem I know what you mean!! I'm getting things vanishing from the page when I hover over them while "inspecting element"!</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14892093556</in_reply_to_status_id>
+    <in_reply_to_user_id>648873</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>rem</in_reply_to_screen_name>
+    <geo xmlns:georss="http://www.georss.org/georss">
+      <georss:point>53.51785234 -2.93405566</georss:point>
+    </geo>
+    <coordinates xmlns:georss="http://www.georss.org/georss">
+      <georss:point>53.51785234 -2.93405566</georss:point>
+    </coordinates>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>21797442</id>
+  <name>George Miroshnikov</name>
+  <screen_name>LaggyLuke</screen_name>
+  <location>Kyiv, Ukraine</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/82397314/570e2341344234f5a22d40059586caff_normal.jpeg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>26</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>21</friends_count>
+  <created_at>Tue Feb 24 21:04:27 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Kyiv</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>97</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 13:33:28 +0000 2010</created_at>
+    <id>14763275289</id>
+    <text>@egorFiNE well, maybe there's a chance for me with some localized Russian or even Ukrainian version :)</text>
+    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14759313446</in_reply_to_status_id>
+    <in_reply_to_user_id>5957612</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>egorFiNE</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14853168</id>
+  <name>Christer</name>
+  <screen_name>cogocogo</screen_name>
+  <location>Fredrikstad, Norway</location>
+  <description>Nerd from Norway enjoying PHP, beer and climbing. Senior developer at vg.no.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/55660178/n624270202_478062_2727_normal.jpg</profile_image_url>
+  <url>http://cogo.wordpress.com/</url>
+  <protected>false</protected>
+  <followers_count>100</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>75</friends_count>
+  <created_at>Wed May 21 06:32:16 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>301</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 08:22:37 +0000 2010</created_at>
+    <id>14893074549</id>
+    <text>Packing my bag for a weekend in Dublin!</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15947185</id>
+  <name>Tips, Tools, Status</name>
+  <screen_name>Twitter_Tips</screen_name>
+  <location>Minneapolis, MN</location>
+  <description>On Twitter.Alltop.com — Twitter tips, tools, news &amp; status from @SarahJL (radio DJ, dance teacher) &amp; @QuantumGood (resident geek)</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/58879430/Tweeple_Helpers_normal.png</profile_image_url>
+  <url>http://TwitterUserManual.com/</url>
+  <protected>false</protected>
+  <followers_count>186829</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>1C1200</profile_text_color>
+  <profile_link_color>2562FD</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>127105</friends_count>
+  <created_at>Fri Aug 22 16:55:46 +0000 2008</created_at>
+  <favourites_count>12</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/4791709/Twitter_Tips_Awards.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>19572</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:59:45 +0000 2010</created_at>
+    <id>15042804558</id>
+    <text>Telcel customers/Mexico can now send tweets via SMS. Visit http://j.mp/ckgynl to get started</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>121860608</id>
+  <name>Andrew Smith</name>
+  <screen_name>di0nysys</screen_name>
+  <location>Toronto</location>
+  <description>for the real me, goto my facebook page.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/745044038/twitter_normal.jpg</profile_image_url>
+  <url/>
+  <protected>true</protected>
+  <followers_count>3</followers_count>
+  <profile_background_color>ECD078</profile_background_color>
+  <profile_text_color>D95B43</profile_text_color>
+  <profile_link_color>C02942</profile_link_color>
+  <profile_sidebar_fill_color>542437</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>53777A</profile_sidebar_border_color>
+  <friends_count>676</friends_count>
+  <created_at>Wed Mar 10 20:54:34 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/92176410/x85dd5d3151b4f3b888b807a9ed5b1d6.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>184</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>118724553</id>
+  <name>Steve I</name>
+  <screen_name>torylaw</screen_name>
+  <location/>
+  <description>I will not be using this account</description>
+  <profile_image_url>http://s.twimg.com/a/1274130900/images/default_profile_3_normal.png</profile_image_url>
+  <url/>
+  <protected>true</protected>
+  <followers_count>2</followers_count>
+  <profile_background_color>352726</profile_background_color>
+  <profile_text_color>3E4415</profile_text_color>
+  <profile_link_color>D02B55</profile_link_color>
+  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
+  <friends_count>598</friends_count>
+  <created_at>Mon Mar 01 15:29:23 +0000 2010</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme5/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>48</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>56805372</id>
+  <name>Worky Developer</name>
+  <screen_name>WorkyDev</screen_name>
+  <location>Dublin</location>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/630886395/workyMan-solo_normal_normal.png</profile_image_url>
+  <url>http://www.worky.com</url>
+  <protected>false</protected>
+  <followers_count>20</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>18</friends_count>
+  <created_at>Tue Jul 14 20:25:55 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>9</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 21 15:47:19 +0000 2010</created_at>
+    <id>14436185662</id>
+    <text>hats off to the latest google homepage, mr and mrs packman ride again :)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18915942</id>
+  <name>Mad Dog Digital</name>
+  <screen_name>maddog_dave</screen_name>
+  <location/>
+  <description>Mad Dog Digital, Dublin, Ireland. Web design, development, online advertising and multimedia agency. HTML/CSS, Wordpress CMS, Flash, Actionscript and Richmedia.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/563026373/dave_logo_normal.png</profile_image_url>
+  <url>http://www.maddog.ie</url>
+  <protected>false</protected>
+  <followers_count>555</followers_count>
+  <profile_background_color>afa394</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>533A1A</profile_link_color>
+  <profile_sidebar_fill_color>ededed</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>533A1A</profile_sidebar_border_color>
+  <friends_count>547</friends_count>
+  <created_at>Mon Jan 12 21:18:26 +0000 2009</created_at>
+  <favourites_count>3</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/5087062/bg.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications/>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following/>
+  <statuses_count>1004</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 21:52:49 +0000 2010</created_at>
+    <id>14934336352</id>
+    <text>Sorry watching a on Sky+ about 15 mins behind. That woman is a tosser!</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>118651468</id>
+  <name>Simon Griffiths</name>
+  <screen_name>simonpgriffiths</screen_name>
+  <location/>
+  <description>Web developer, sys admin, dba and generally amazing guy!</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/729540287/smooch_profile_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>20</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>34</friends_count>
+  <created_at>Mon Mar 01 10:25:42 +0000 2010</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>205</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 20:55:31 +0000 2010</created_at>
+    <id>14858717547</id>
+    <text>@iandeveloper yea it will, prolly wont work though ;-)  man these queries in the home page are mental, some will deffo struggle with zf db</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14858239458</in_reply_to_status_id>
+    <in_reply_to_user_id>143537143</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>iandeveloper</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>117471817</id>
+  <name>Ross Baker</name>
+  <screen_name>LoadedSquirrel</screen_name>
+  <location>NY, USA</location>
+  <description>I'm a regular guy just looking to live a decent life. Be a respectable American. Do good when I can. I'm a gamer and Inspirer.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/893101696/conker_icon_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>22</followers_count>
+  <profile_background_color>FCF8BC</profile_background_color>
+  <profile_text_color>051f59</profile_text_color>
+  <profile_link_color>ff7105</profile_link_color>
+  <profile_sidebar_fill_color>b1ddf2</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>D6156C</profile_sidebar_border_color>
+  <friends_count>60</friends_count>
+  <created_at>Thu Feb 25 17:28:31 +0000 2010</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/81293115/x1534c55fce63377e3cefc1513204ce6.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>76</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 19:09:41 +0000 2010</created_at>
+    <id>14853624419</id>
+    <text>Neave Planetarium ...the sky in your web browser. *jawdropped me* http://su.pr/71bBl9 #astronomy #stars #starmap #coolstuff</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>9913542</id>
+  <name>Andrei Serdeliuc</name>
+  <screen_name>extraordinaire</screen_name>
+  <location>Eastbourne</location>
+  <description>Code whisperer @ 3ev.com</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/406101854/Photo_on_2009-09-09_at_13.15__2_normal.jpg</profile_image_url>
+  <url>http://extraordinaire.me</url>
+  <protected>false</protected>
+  <followers_count>378</followers_count>
+  <profile_background_color>2c211b</profile_background_color>
+  <profile_text_color>754746</profile_text_color>
+  <profile_link_color>259400</profile_link_color>
+  <profile_sidebar_fill_color>F3EEEB</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>F3EEeb</profile_sidebar_border_color>
+  <friends_count>145</friends_count>
+  <created_at>Sat Nov 03 12:39:58 +0000 2007</created_at>
+  <favourites_count>141</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/2841362/twitter.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications/>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following/>
+  <statuses_count>3342</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 18:53:25 +0000 2010</created_at>
+    <id>14640804551</id>
+    <text>Just went to the doctor, ointment is such a silly sounding word isn't it?</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14996367</id>
+  <name>Matthias v/d Heide</name>
+  <screen_name>matthiasvdh</screen_name>
+  <location>Netherlands</location>
+  <description>Student, software developer, techie, Lego fan</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/269860838/Untitled_normal.png</profile_image_url>
+  <url>http://vanderheide.it</url>
+  <protected>false</protected>
+  <followers_count>78</followers_count>
+  <profile_background_color>0099B9</profile_background_color>
+  <profile_text_color>3C3940</profile_text_color>
+  <profile_link_color>0099B9</profile_link_color>
+  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
+  <friends_count>153</friends_count>
+  <created_at>Tue Jun 03 19:19:52 +0000 2008</created_at>
+  <favourites_count>205</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme4/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>755</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 10:30:33 +0000 2010</created_at>
+    <id>15033538555</id>
+    <text>@padraicb please add a test for using the 'cursor' parameter on Zend_Service_Twitter::userFriends(). And then make it pass. ;-)</text>
+    <source>&lt;a href="https://oauth.filttr.com/" rel="nofollow"&gt;Filttr&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15008737288</in_reply_to_status_id>
+    <in_reply_to_user_id>9075802</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>padraicb</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19656811</id>
+  <name>SIAAR | CEO | SG</name>
+  <screen_name>siaargroup</screen_name>
+  <location>India</location>
+  <description>Basically I am an IT Professional, I write Blogs based on IT Topics based on my personal Expereinces...</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/73755566/aejaz_normal.jpg</profile_image_url>
+  <url>http://siaargroup.blogspot.com</url>
+  <protected>false</protected>
+  <followers_count>5500</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>B70001</profile_link_color>
+  <profile_sidebar_fill_color>adadad</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>B70001</profile_sidebar_border_color>
+  <friends_count>5800</friends_count>
+  <created_at>Wed Jan 28 15:30:03 +0000 2009</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>19800</utc_offset>
+  <time_zone>Chennai</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/70198559/siaarlogo.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>3635</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 06:49:04 +0000 2010</created_at>
+    <id>15025903255</id>
+    <text>Sharing Internet Connection:... http://ff.im/-l9Pyu</text>
+    <source>&lt;a href="http://friendfeed.com" rel="nofollow"&gt;FriendFeed&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15593496</id>
+  <name>garrizaldy</name>
+  <screen_name>garrizaldy</screen_name>
+  <location>Metro Manila, Philippines</location>
+  <description>Build something that you want others to build for you.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/934985663/jinnai_normal.jpg</profile_image_url>
+  <url>http://flavors.me/garrizaldy</url>
+  <protected>true</protected>
+  <followers_count>33</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>39</friends_count>
+  <created_at>Fri Jul 25 03:20:58 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>28800</utc_offset>
+  <time_zone>Hong Kong</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3095575/back.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>501</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>56225738</id>
+  <name>francisco echeverri</name>
+  <screen_name>ninjalord84</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_2_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>68</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>450</friends_count>
+  <created_at>Sun Jul 12 23:44:03 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon Jul 13 02:24:47 +0000 2009</created_at>
+    <id>2607573047</id>
+    <text>RT FREE Twitter Software that you can use on your website or WordPress Blog! You have to check it out at http://mytweetelite.com</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>117030265</id>
+  <name>Troels Knak-Nielsen</name>
+  <screen_name>troelskn</screen_name>
+  <location>Copenhagen, Denmark</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/715373478/troels_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>78</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>117</friends_count>
+  <created_at>Wed Feb 24 09:30:21 +0000 2010</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78378559/pattern_111.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>96</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 07:11:57 +0000 2010</created_at>
+    <id>15026757146</id>
+    <text>RT @sweatje: OH Come to the Dork side, we have π
+#fb</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat May 29 22:02:46 +0000 2010</created_at>
+      <id>15001137735</id>
+      <text>OH Come to the Dork side, we have π
+#fb</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20759488</id>
+  <name>Michael Pieperhoff</name>
+  <screen_name>SilverCircle</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/78755558/mean_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>35</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>27</friends_count>
+  <created_at>Fri Feb 13 09:43:38 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>97</statuses_count>
+  <lang>de</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu Jan 28 08:50:54 +0000 2010</created_at>
+    <id>8315960718</id>
+    <text>RT @stadt_marketing: #Traunstein # Altstadtfest 17.07.2010</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Wed Jan 27 21:18:43 +0000 2010</created_at>
+      <id>8294813086</id>
+      <text>#Traunstein # Altstadtfest 17.07.2010</text>
+      <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>42937812</id>
+  <name>Bobby C</name>
+  <screen_name>_phineas</screen_name>
+  <location>Philadelphia, Pennsylvania</location>
+  <description>Web developer, internet marketing, php, zend framework, social media</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/862699329/me-cropped_normal.jpg</profile_image_url>
+  <url/>
+  <protected>true</protected>
+  <followers_count>6</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>38</friends_count>
+  <created_at>Wed May 27 18:00:58 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Quito</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>33</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>14150898</id>
+  <name>rvdavid</name>
+  <screen_name>rvdavid</screen_name>
+  <location>Sydney, Australia</location>
+  <description>I develop mission critical web apps and sites. I work directly w/ clients and/or service providers. My Skillset: PHP, MySQL, X/HTML, CSS, JavaScript.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/613678319/rvdavid_normal.jpg</profile_image_url>
+  <url>http://www.rvdavid.net/</url>
+  <protected>false</protected>
+  <followers_count>139</followers_count>
+  <profile_background_color>1a1b1f</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>30</friends_count>
+  <created_at>Sat Mar 15 02:33:07 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>36000</utc_offset>
+  <time_zone>Sydney</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78797015/twitterback.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>853</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 05:11:40 +0000 2010</created_at>
+    <id>15021949248</id>
+    <text>Found an old external backup drive - what a trip through memory lane this is. It's been quite a ride, the past 10 years of my life has...</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13284092</id>
+  <name>Endijs</name>
+  <screen_name>Endijs</screen_name>
+  <location>Latvia, Jelgava</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/884323844/37d8da70-6322-46e5-a862-cf79b84ecd55_normal.jpg</profile_image_url>
+  <url>http://endijs.com</url>
+  <protected>false</protected>
+  <followers_count>433</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>118</friends_count>
+  <created_at>Sat Feb 09 15:33:41 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Riga</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>2404</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 19:47:57 +0000 2010</created_at>
+    <id>14994850660</id>
+    <text>Smieklīgi. Nordea krājkonta procenti Zelta klientam ir lielāki kā Zelta klienta depozītam uz 3mēn. Kur loģika?</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13892042</id>
+  <name>Alex Barth</name>
+  <screen_name>lxbarth</screen_name>
+  <location>Washington DC</location>
+  <description>Open Data, News Tracking, Drupal. @developmentseed</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/52529282/195892215_7b0faba08c_normal.jpg</profile_image_url>
+  <url>http://www.developmentseed.org/blog</url>
+  <protected>false</protected>
+  <followers_count>556</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>366</friends_count>
+  <created_at>Sun Feb 24 05:46:29 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1709</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 16:38:22 +0000 2010</created_at>
+    <id>14985320905</id>
+    <text>CNN maps fallen soldier's home location and where they died http://is.gd/cuwWo (via @elgreg)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20971380</id>
+  <name>Ole Markus With</name>
+  <screen_name>olemarkus</screen_name>
+  <location>Trondheim, Norway</location>
+  <description>Master of Computer Science student with an addiction to PHP, Gentoo Linux and heavy metal</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/632663735/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url>http://my.opera.com/olemarkus</url>
+  <protected>false</protected>
+  <followers_count>75</followers_count>
+  <profile_background_color>8B542B</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>9D582E</profile_link_color>
+  <profile_sidebar_fill_color>EADEAA</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>D9B17E</profile_sidebar_border_color>
+  <friends_count>42</friends_count>
+  <created_at>Mon Feb 16 08:44:13 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme8/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>219</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 08:41:33 +0000 2010</created_at>
+    <id>14822015556</id>
+    <text>RT @tychay: I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Wed May 26 20:30:33 +0000 2010</created_at>
+      <id>14786532308</id>
+      <text>I'm not embarassed for my country. #AmericaSpeakingOut http://is.gd/cqq2s</text>
+      <source>&lt;a href="http://www.twitlet.com" rel="nofollow"&gt;Twitlet&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14208622</id>
+  <name>Ricky Dunlop</name>
+  <screen_name>rickydunlop</screen_name>
+  <location>Belfast, Northern Ireland</location>
+  <description>I'm 26 and lead PHP developer at rehabstudio, Support Chelsea FC and like to DJ now and again. Also a keen runner</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/776545465/rd_normal.png</profile_image_url>
+  <url>http://www.rickydunlop.co.uk</url>
+  <protected>false</protected>
+  <followers_count>155</followers_count>
+  <profile_background_color>1e1a1f</profile_background_color>
+  <profile_text_color>12401e</profile_text_color>
+  <profile_link_color>403f3a</profile_link_color>
+  <profile_sidebar_fill_color>67f40b</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>181</friends_count>
+  <created_at>Mon Mar 24 16:44:50 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3566155/flower_vector.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications/>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following/>
+  <statuses_count>922</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 09:03:35 +0000 2010</created_at>
+    <id>14894455033</id>
+    <text>@cornercraig There's no cd drive on it, or usb or any connections really</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14894408103</in_reply_to_status_id>
+    <in_reply_to_user_id>20014857</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>cornercraig</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>111291721</id>
+  <name>Chun</name>
+  <screen_name>xunlee</screen_name>
+  <location>Europe</location>
+  <description>Web developing all day long...</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/675227116/andy_guitar_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>24</followers_count>
+  <profile_background_color>352726</profile_background_color>
+  <profile_text_color>464d14</profile_text_color>
+  <profile_link_color>ad1c43</profile_link_color>
+  <profile_sidebar_fill_color>ebebeb</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>66</friends_count>
+  <created_at>Thu Feb 04 12:21:00 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>58</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue May 25 13:15:38 +0000 2010</created_at>
+    <id>14691935024</id>
+    <text>@francetvdirect formidable merci :-)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14690652034</in_reply_to_status_id>
+    <in_reply_to_user_id>128183958</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>francetvdirect</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>110975283</id>
+  <name>Antoine Hedgecock</name>
+  <screen_name>mac_nibblet</screen_name>
+  <location>Sweden, Uppsala</location>
+  <description>I have my own view of life, and i love it. Have fun and do what you love, in my case that Web development (PHP,Js,SQL) Gymnastics and windsurfing! </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/675292520/19180_252310728549_529293549_3215945_2362829_n_normal.jpg</profile_image_url>
+  <url>http://www.pmg.se</url>
+  <protected>false</protected>
+  <followers_count>14</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>44</friends_count>
+  <created_at>Wed Feb 03 11:54:49 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>108</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:05:28 +0000 2010</created_at>
+    <id>15039826134</id>
+    <text>@webide I have a problem with scrolling on mac its freaking slow and i cannot adjust it. works perfectly to scroll on firefox etc..</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>115180931</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>webide</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>57753613</id>
+  <name>Birgir Haraldsson</name>
+  <screen_name>bix0r</screen_name>
+  <location>Akureyri, Iceland</location>
+  <description>#programmer @stefna, #linux admin and user #gentoo</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/341312109/biggi_stefna.is_avatar_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>112</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>150</friends_count>
+  <created_at>Fri Jul 17 20:50:50 +0000 2009</created_at>
+  <favourites_count>14</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Casablanca</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>310</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 22 15:41:16 +0000 2010</created_at>
+    <id>14500424205</id>
+    <text>@harabanar naw vinn ekki hjá Google: ( þarf víst að bíða eins og aðrir.</text>
+    <source>&lt;a href="http://mobile.twitter.com" rel="nofollow"&gt;Twitter for Android&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14500295004</in_reply_to_status_id>
+    <in_reply_to_user_id>17242117</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>harabanar</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14337070</id>
+  <name>ischenko</name>
+  <screen_name>ischenko</screen_name>
+  <location>Кривой Рог</location>
+  <description>Программист PHP, Zend Framework, JavaScript</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/53034241/DSC00314_normal.jpg</profile_image_url>
+  <url>http://www.jstoolbox.com</url>
+  <protected>false</protected>
+  <followers_count>124</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>74</friends_count>
+  <created_at>Tue Apr 08 23:08:49 +0000 2008</created_at>
+  <favourites_count>6</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>635</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 12:32:53 +0000 2010</created_at>
+    <id>14831211543</id>
+    <text>RT @rutkovsky: ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно гово ...</text>
+    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
+    <truncated>true</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Thu May 27 11:00:34 +0000 2010</created_at>
+      <id>14826971388</id>
+      <text>ребята, ретвитните, пожалуйста, эту новость (http://ow.ly/1QyId) о том, что в райотделе милиции погиб студент. Нужно говорить об этом.</text>
+      <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>66941572</id>
+  <name>IamUrban</name>
+  <screen_name>iamurbannet</screen_name>
+  <location>Netherlands / Belgium</location>
+  <description>ONLINE SOON....</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/569766646/Naamloos2_normal.jpg</profile_image_url>
+  <url>http://COMING.SOON</url>
+  <protected>false</protected>
+  <followers_count>113</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>534</friends_count>
+  <created_at>Wed Aug 19 07:41:53 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/59134031/aw2max2.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>8</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri Dec 11 16:32:29 +0000 2009</created_at>
+    <id>6571293832</id>
+    <text>RT @BWSE_Nazz RT: @LuxuryEnt: Make sure you follow @iamurbannet , more info Soon!!!</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>98099737</id>
+  <name>technews</name>
+  <screen_name>proftechnews</screen_name>
+  <location/>
+  <description>i'm News and comment from the world  technology update dan the future</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/583574529/AAAAAAAAA_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>155</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>872</friends_count>
+  <created_at>Sun Dec 20 10:29:22 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/60876532/BBBBB.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>5</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon Jan 04 12:36:42 +0000 2010</created_at>
+    <id>7365571409</id>
+    <text>Want to make money on twitter and have fun to http://bit.ly/6BiLk3 It Rocks</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>28810674</id>
+  <name>insigne Design</name>
+  <screen_name>insigneDesign</screen_name>
+  <location>Knoxville, TN</location>
+  <description>insigne Design is the typeface design studio of Jeremy Dooley. Tweets about the design process, typography, small business and random stuff I find on the web.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/312237246/Squarelogo_normal.gif</profile_image_url>
+  <url>http://www.insignedesign.com</url>
+  <protected>false</protected>
+  <followers_count>2760</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>72af63</profile_link_color>
+  <profile_sidebar_fill_color>fbcb82</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>0b88ae</profile_sidebar_border_color>
+  <friends_count>3037</friends_count>
+  <created_at>Sat Apr 04 15:22:12 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Quito</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/23101921/twitter.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>1134</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 16:32:24 +0000 2010</created_at>
+    <id>14845357361</id>
+    <text>Carta Marina 33% off for the rest of the week: http://new.myfonts.com/fonts/insigne/carta-marina/</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>112693181</id>
+  <name>360Naija Forum</name>
+  <screen_name>360Naija_Blog</screen_name>
+  <location>Lagos</location>
+  <description>360Naija Forum</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/687035664/site_logo2_normal.gif</profile_image_url>
+  <url>http://www.360naija.com</url>
+  <protected>false</protected>
+  <followers_count>283</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>d67f04</profile_text_color>
+  <profile_link_color>ffb70f</profile_link_color>
+  <profile_sidebar_fill_color>383737</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>2002</friends_count>
+  <created_at>Tue Feb 09 11:37:19 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/74023680/site_logo.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>3319</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:03:55 +0000 2010</created_at>
+    <id>15043057667</id>
+    <text>World Cup 2010 - Report: Security threat serious http://bit.ly/a6YLGq</text>
+    <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>10212462</id>
+  <name>medvetalp</name>
+  <screen_name>medvetalp</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274739546/images/default_profile_1_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>59</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>124</friends_count>
+  <created_at>Tue Nov 13 12:30:12 +0000 2007</created_at>
+  <favourites_count>3</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Budapest</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>false</following>
+  <statuses_count>43</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 13 12:50:09 +0000 2010</created_at>
+    <id>13912034159</id>
+    <text>Vajon van rajta backdoor? :) RT @syntaxerror13: cool RT @atomvillanas: a hacker hazat mindenki vagja itt a karoly koruton ugye? :)...</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+</users>

+ 4655 - 0
tests/Zend/Service/Twitter/_files/statuses.friends.xml

@@ -0,0 +1,4655 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<users type="array">
+<user>
+  <id>783214</id>
+  <name>Twitter</name>
+  <screen_name>twitter</screen_name>
+  <location>San Francisco, CA</location>
+  <description>Always wondering what's happening. </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
+  <url>http://twitter.com</url>
+  <protected>false</protected>
+  <followers_count>3229766</followers_count>
+  <profile_background_color>ACDED6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>038543</profile_link_color>
+  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
+  <friends_count>247</friends_count>
+  <created_at>Tue Feb 20 14:35:54 +0000 2007</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>true</verified>
+  <following>true</following>
+  <statuses_count>745</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>true</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 21:14:05 +0000 2010</created_at>
+    <id>14932507266</id>
+    <text>Good news for people everywhere http://bit.ly/b1Cf9A</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors>
+      <user_id>16739704</user_id>
+    </contributors>
+  </status>
+</user>
+<user>
+  <id>34175976</id>
+  <name>Jewel Staite</name>
+  <screen_name>JewelStaite</screen_name>
+  <location>Los Angeles, California</location>
+  <description>Avid lover of food, wine, shoes, cocker spaniels, and my husband. In no particular order. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/726184245/TWITTER_normal.bmp</profile_image_url>
+  <url>http://www.jewelstaite.com</url>
+  <protected>false</protected>
+  <followers_count>46784</followers_count>
+  <profile_background_color>0099B9</profile_background_color>
+  <profile_text_color>3C3940</profile_text_color>
+  <profile_link_color>0099B9</profile_link_color>
+  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
+  <friends_count>49</friends_count>
+  <created_at>Wed Apr 22 04:01:43 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme4/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>291</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 22:22:23 +0000 2010</created_at>
+    <id>14935771120</id>
+    <text>Headed up to wine country (yes, again. Shut up.) to celebrate my birthday for the weekend! So very happy and excited to be turning 25 again!</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>87594768</id>
+  <name>Kevin Schroeder</name>
+  <screen_name>kpschrade</screen_name>
+  <location/>
+  <description>Technology Evangelist for Zend Technologies.  Co-author of the IBM i Programmer's Guide to PHP</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/790382249/Little_Schrade_normal.gif</profile_image_url>
+  <url>http://www.eschrade.com</url>
+  <protected>false</protected>
+  <followers_count>172</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>137</friends_count>
+  <created_at>Thu Nov 05 02:17:15 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>546</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 23:40:11 +0000 2010</created_at>
+    <id>14796133356</id>
+    <text>2012 is when #f1 returns to the US.  Austin, TX to be exact. I'll take a race I can drive to http://bit.ly/cNiUBz</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17963909</id>
+  <name>Jean-Michel</name>
+  <screen_name>jmpnadeau</screen_name>
+  <location>Montréal, Qc, Canada</location>
+  <description>Internet infrastructures architect, systems administrator &amp; entrepreneur. Interested in high performance computing, clouds &amp; grids. 
+Technology lead @giftiniti</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/826076310/avatar-square_normal.png</profile_image_url>
+  <url>http://jmpnadeau.ca</url>
+  <protected>false</protected>
+  <followers_count>382</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>545</friends_count>
+  <created_at>Mon Dec 08 14:52:36 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>198</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 16:43:18 +0000 2010</created_at>
+    <id>14918204354</id>
+    <text>Facebook's Culture Problem May Be Fatal (from HBR) http://bit.ly/bdGY57</text>
+    <source>&lt;a href="http://seesmic.com/app" rel="nofollow"&gt;Seesmic Web&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>141186979</id>
+  <name>Shaun Steenkamp</name>
+  <screen_name>epsiloncrucis</screen_name>
+  <location>Mackay, Qld, Australia</location>
+  <description>PHP Programmer, Accountant, Aspiring Academic</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/880632909/GalacticCore_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>2</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>7</friends_count>
+  <created_at>Fri May 07 11:44:40 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>36000</utc_offset>
+  <time_zone>Brisbane</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 12 08:00:46 +0000 2010</created_at>
+    <id>13838819266</id>
+    <text>Jupiter loses a stripe - space - 11 May 2010 - New Scientist: http://bit.ly/cNpI4n via @addthis</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>114510988</id>
+  <name>♥</name>
+  <screen_name>SaveOurSeeker</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/697506036/SOSicon_normal.jpg</profile_image_url>
+  <url>http://www.saveourseeker.com/</url>
+  <protected>false</protected>
+  <followers_count>1476</followers_count>
+  <profile_background_color>371f2e</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>371f6e</profile_link_color>
+  <profile_sidebar_fill_color>91b53e</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>91b53e</profile_sidebar_border_color>
+  <friends_count>270</friends_count>
+  <created_at>Mon Feb 15 17:21:51 +0000 2010</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/75486965/sosbackground2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>446</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 20:10:40 +0000 2010</created_at>
+    <id>14995946574</id>
+    <text>CAMPAIGN: Write/email to Target, Wal-Mart, Best Buy, Borders, B&amp;N) and ask them to carry the S1 DVD in-store. More info: http://is.gd/ct8nz</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19421365</id>
+  <name>Jumpgate Evolution</name>
+  <screen_name>JumpgateEvo</screen_name>
+  <location>Space</location>
+  <description>Exhilarating space combat on a vast scale.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/339201034/twitter_logo_normal.jpg</profile_image_url>
+  <url>http://www.jumpgateevolution.com</url>
+  <protected>false</protected>
+  <followers_count>1559</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>20</friends_count>
+  <created_at>Fri Jan 23 23:15:53 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/26381712/twitter_jg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>176</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 01 16:00:26 +0000 2010</created_at>
+    <id>13195360582</id>
+    <text>@chaosteil We'll hopefully be filming, yes, but being there in person will be oh-so-much sweeter I guarantee it. ;) ^RJ</text>
+    <source>&lt;a href="http://cotweet.com/?utm_source=sp1" rel="nofollow"&gt;CoTweet&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>13184038646</in_reply_to_status_id>
+    <in_reply_to_user_id>15980149</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>chaosteil</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>111701709</id>
+  <name>Old Noob</name>
+  <screen_name>Old_Noob</screen_name>
+  <location/>
+  <description>I'm a long-time RPG fan, but still a bit of a n00b with MMO video games.  Check out my site for great fantasy and RPG video games!</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/678042169/avatar_normal.jpg</profile_image_url>
+  <url>http://mmorpgnoob.com</url>
+  <protected>false</protected>
+  <followers_count>1127</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>009999</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>1794</friends_count>
+  <created_at>Fri Feb 05 21:40:49 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-25200</utc_offset>
+  <time_zone>Mountain Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/72777520/avatar.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>128</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 15:51:03 +0000 2010</created_at>
+    <id>14842843690</id>
+    <text>What about a list of two player cooperative games like Gauntlet.  I guess FFCCEoT had cooperative mode.  Too bad it sucked.</text>
+    <source>&lt;a href="http://www.hootsuite.com" rel="nofollow"&gt;HootSuite&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20664078</id>
+  <name>Black Prophecy</name>
+  <screen_name>BlackProphecy</screen_name>
+  <location>Space</location>
+  <description>Begin your journey into space and experience fast-paced real-time action as a fighter pilot in countless hazardous missions and epic battles.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/335992886/twitter_normal.jpg</profile_image_url>
+  <url>http://www.blackprophecy.com</url>
+  <protected>false</protected>
+  <followers_count>766</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>7faeb1</profile_text_color>
+  <profile_link_color>ff7c00</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Thu Feb 12 09:22:53 +0000 2009</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Brussels</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/25943527/twitter_background.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>82</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 17:11:25 +0000 2010</created_at>
+    <id>14847637719</id>
+    <text>New interview with Creative Director Timo Krahl on MMORPG.com. Check it out at http://blackprophecy.gamigo.com/forum/showthread.php?t=1852</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>21797442</id>
+  <name>George Miroshnikov</name>
+  <screen_name>LaggyLuke</screen_name>
+  <location>Kyiv, Ukraine</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/82397314/570e2341344234f5a22d40059586caff_normal.jpeg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>26</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>21</friends_count>
+  <created_at>Tue Feb 24 21:04:27 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Kyiv</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>97</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 13:33:28 +0000 2010</created_at>
+    <id>14763275289</id>
+    <text>@egorFiNE well, maybe there's a chance for me with some localized Russian or even Ukrainian version :)</text>
+    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14759313446</in_reply_to_status_id>
+    <in_reply_to_user_id>5957612</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>egorFiNE</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18897157</id>
+  <name>KM Troedsson</name>
+  <screen_name>L_Twin</screen_name>
+  <location>Stockholm</location>
+  <description>GM for game developer DICE, working with our talented dev teams to deliver all of studio’s titles. Passionate gamer with a thing for motorcycles.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/98202265/Karl_Magnus_Troedsson_2_lo-res_normal.jpg</profile_image_url>
+  <url>http://www.battlefield.com/</url>
+  <protected>false</protected>
+  <followers_count>3354</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>a8a8a8</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>2e231a</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>200</friends_count>
+  <created_at>Mon Jan 12 10:20:17 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/19982027/Twitter_BG_4.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1896</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 05:11:59 +0000 2010</created_at>
+    <id>14885876908</id>
+    <text>@winsrp The BF2 ribbons? Don't know really, guessing they're handmade.</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14866436737</in_reply_to_status_id>
+    <in_reply_to_user_id>33629979</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>winsrp</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>81406494</id>
+  <name>Mike Sussman</name>
+  <screen_name>WrittenByMikeS</screen_name>
+  <location>Los Angeles</location>
+  <description>Writer/Producer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/838655403/MDS_normal.jpg</profile_image_url>
+  <url>http://writtenbymikesussman.com </url>
+  <protected>false</protected>
+  <followers_count>1918</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>009999</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>26</friends_count>
+  <created_at>Sat Oct 10 17:53:00 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/104304400/greenhollywood.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>101</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 15 22:45:45 +0000 2010</created_at>
+    <id>14062434889</id>
+    <text>"Unbroken" my last #LegendoftheSeeker episode airing this weekend. *sniff* Directed by @MichaelHurstNow, starring transcendent @BridgetRegan</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>28211953</id>
+  <name>Priyal</name>
+  <screen_name>legendoftheseek</screen_name>
+  <location> CA</location>
+  <description>PLEASE SAVE OUR SEEKER!!!!!!!!!!!! IT IS ALL WE HAVE THAT IS GREAT TV AND HAS ACTION, ROMANCE, CRAIG, AND BRIDGET IN IT</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/821665041/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>339</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>465</friends_count>
+  <created_at>Wed Apr 01 22:20:32 +0000 2009</created_at>
+  <favourites_count>11</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/56217514/Legend_of_the_Seeker_season_2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>358</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 03:04:03 +0000 2010</created_at>
+    <id>15015457570</id>
+    <text>Who would win in a fight between Richard from Seeker and Arthur from Merlin??</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>32960094</id>
+  <name>Bridget Regan</name>
+  <screen_name>BridgetRegan</screen_name>
+  <location>Los Angeles?</location>
+  <description>I'm an actor and producer.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/733203766/MDU09945_10_003_p_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>12480</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>41</friends_count>
+  <created_at>Sat Apr 18 18:04:18 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>43200</utc_offset>
+  <time_zone>Auckland</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/46278372/IMG_3364.JPG</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>263</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:33:13 +0000 2010</created_at>
+    <id>15044761843</id>
+    <text>RT @CAMPWANATACHI: What Would T-PAIN Do!? He'd autotune a musical, that's what. http://tinyurl.com/39mgcll http://twitpic.com/1ra2wc</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Wed May 26 16:13:07 +0000 2010</created_at>
+      <id>14773125001</id>
+      <text>What Would T-PAIN Do!? He'd autotune a musical, that's what. http://tinyurl.com/39mgcll http://twitpic.com/1ra2wc</text>
+      <source>&lt;a href="http://twitpic.com" rel="nofollow"&gt;Twitpic&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>5802762</id>
+  <name>David Hewlett</name>
+  <screen_name>dhewlett</screen_name>
+  <location>Washington State</location>
+  <description>Daddy-Nerd, Actor-Nerd Writer-Nerd Director-Nerd and All round Geek!</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/644512199/wideye_normal.jpg</profile_image_url>
+  <url>http://www.adogsbreakfastmovie.com</url>
+  <protected>false</protected>
+  <followers_count>25417</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>49</friends_count>
+  <created_at>Sun May 06 06:53:21 +0000 2007</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1765</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 05:34:05 +0000 2010</created_at>
+    <id>14957548812</id>
+    <text>Our beloved @ew just gave Splice an A-! Unfortunately Jane reads it in the shower so it's a soggy A-...strangely I was not mentioned ;-)</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14287005</id>
+  <name>Paul Anthony</name>
+  <screen_name>webireland</screen_name>
+  <location>Belfast</location>
+  <description>.NET code monkey extraordinare.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/425853164/paul_normal.jpg</profile_image_url>
+  <url>http://blog.webdistortion.com/?utm_source=twitter&amp;utm_medium=social_media&amp;utm_campaign=ProfileURL</url>
+  <protected>false</protected>
+  <followers_count>1422</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>1057</friends_count>
+  <created_at>Wed Apr 02 20:08:29 +0000 2008</created_at>
+  <favourites_count>22</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/77619351/n19040221057_2014.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>5782</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 15:18:56 +0000 2010</created_at>
+    <id>14980630732</id>
+    <text>If you are using #CCCCCC as body text colour (or lighter) - I aint straining my eyes for you.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14869245</id>
+  <name>julienPauli</name>
+  <screen_name>julienPauli</screen_name>
+  <location>Paris</location>
+  <description>ZCE, ZFCE. Web app architect. PHP, Apache, ZendF contributor</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/715548091/julienP_normal.jpg</profile_image_url>
+  <url>http://www.alterway.fr</url>
+  <protected>false</protected>
+  <followers_count>24</followers_count>
+  <profile_background_color>ACDED6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>038543</profile_link_color>
+  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
+  <friends_count>56</friends_count>
+  <created_at>Thu May 22 15:05:58 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme18/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>0</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+</user>
+<user>
+  <id>18899837</id>
+  <name>openstandards</name>
+  <screen_name>openstandards</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_5_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>34</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Mon Jan 12 13:01:58 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>23</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue Feb 09 08:07:43 +0000 2010</created_at>
+    <id>8846571181</id>
+    <text>RT @Open_Sourcing: Good paper! RT @LauraDeNardis Citron's "One Way Mirror: Enhancing....." http://digitalcommons.law.umaryland.edu/fac_p ...</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>true</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Mon Feb 08 23:18:54 +0000 2010</created_at>
+      <id>8829436211</id>
+      <text>Good paper! RT @LauraDeNardis Citron's "One Way Mirror: Enhancing....." http://digitalcommons.law.umaryland.edu/fac_pubs/853/</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15986114</id>
+  <name>Johannes Schlüter</name>
+  <screen_name>phperror</screen_name>
+  <location/>
+  <description>A random dude</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/58881546/elephpant-128x128_normal.JPG</profile_image_url>
+  <url>http://schlueters.de</url>
+  <protected>false</protected>
+  <followers_count>393</followers_count>
+  <profile_background_color>9999CD</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>000099</profile_link_color>
+  <profile_sidebar_fill_color>666699</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>127</friends_count>
+  <created_at>Mon Aug 25 19:36:28 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>618</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:25:52 +0000 2010</created_at>
+    <id>15044338024</id>
+    <text>http://www.focus.de/digital/computer/tid-18400/apple-die-technik-konterrevolution_aid_512425.html</text>
+    <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19551514</id>
+  <name>Alexander Veremyev</name>
+  <screen_name>CawaSPB</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274899949/images/default_profile_3_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>27</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>7</friends_count>
+  <created_at>Mon Jan 26 19:24:25 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>10800</utc_offset>
+  <time_zone>St. Petersburg</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu Feb 04 23:56:27 +0000 2010</created_at>
+    <id>8653702328</id>
+    <text>Ya-hoo! First Russian Zend Framework conference is officially announced! :)
+http://tinyurl.com/y933rcz</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>85299238</id>
+  <name>Union of RAD</name>
+  <screen_name>UnionOfRAD</screen_name>
+  <location>Everywhere</location>
+  <description>A group of developers dedicated to helping each other write better software.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/649025772/uor-660_normal.png</profile_image_url>
+  <url>http://rad-dev.org/</url>
+  <protected>false</protected>
+  <followers_count>189</followers_count>
+  <profile_background_color>e6e6e6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>000000</profile_link_color>
+  <profile_sidebar_fill_color>e6e6e6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>18</friends_count>
+  <created_at>Mon Oct 26 12:07:58 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/68991767/uor-660.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>43</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 21 22:00:37 +0000 2010</created_at>
+    <id>14455024193</id>
+    <text>5,100 Unique Visitors to rad-dev.org in the last month. Not too shabby. #li3</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>94172381</id>
+  <name>Brian Swan</name>
+  <screen_name>brian_swan</screen_name>
+  <location>Redmond, WA</location>
+  <description>Blogger about all things related to PHP and Microsoft. Rookie husband/dad. Amatuer Mtn. biker, runner, hiker. Experienced beer drinker.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/624949934/Brian_2_normal.jpg</profile_image_url>
+  <url>http://blogs.msdn.com/brian_swan/</url>
+  <protected>false</protected>
+  <followers_count>119</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>159</friends_count>
+  <created_at>Wed Dec 02 20:47:52 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>197</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 18:58:15 +0000 2010</created_at>
+    <id>14925757554</id>
+    <text>@enygma  Picked it up this morning? Is that breakfast?</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14925469046</in_reply_to_status_id>
+    <in_reply_to_user_id>8854032</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>enygma</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>92359611</id>
+  <name>Medal of Honor</name>
+  <screen_name>medalofhonor</screen_name>
+  <location>Los Angeles</location>
+  <description>There is a new enemy. There is a new war. There is a new warrior. He is Tier 1. </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/555288054/twitter_pic_normal.jpg</profile_image_url>
+  <url>http://www.medalofhonor.com</url>
+  <protected>false</protected>
+  <followers_count>5957</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>c2c2c2</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>251</friends_count>
+  <created_at>Tue Nov 24 20:38:24 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-32400</utc_offset>
+  <time_zone>Alaska</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/103800040/moh_twitter_final_rangertrailer.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>124</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 21:01:10 +0000 2010</created_at>
+    <id>14647009445</id>
+    <text>It's Military Monday at MedalofHonor.com and we have a new blog up entield "The Mind of a Soldier". http://bit.ly/dDc4Qm</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18849313</id>
+  <name>Matthew Pruitt</name>
+  <screen_name>matthewpruitt</screen_name>
+  <location>Los Angeles, CA | from Detroit</location>
+  <description>I oversee the communities for all of the Electronic Arts first-person shooter games.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/769039947/twit_normal.jpg</profile_image_url>
+  <url>http://www.linkedin.com/in/matthewpruitt</url>
+  <protected>false</protected>
+  <followers_count>1875</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>06001f</profile_text_color>
+  <profile_link_color>d94c17</profile_link_color>
+  <profile_sidebar_fill_color>ababab</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>220</friends_count>
+  <created_at>Sat Jan 10 22:46:39 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3868929/twitter.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>771</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 19 22:07:13 +0000 2010</created_at>
+    <id>14319327820</id>
+    <text>@mdk2002 Tier 1 beards FTW!</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14311379775</in_reply_to_status_id>
+    <in_reply_to_user_id>14506809</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>mdk2002</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>22903583</id>
+  <name>Lukas Kahwe Smith</name>
+  <screen_name>dybvandal</screen_name>
+  <location>Zurich</location>
+  <description>My twitter alter-ego is all about PHP, databases and other code related stuff.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg</profile_image_url>
+  <url>http://pooteeweet.org</url>
+  <protected>false</protected>
+  <followers_count>217</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>193</friends_count>
+  <created_at>Thu Mar 05 10:07:02 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Bern</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>220</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 20:36:18 +0000 2010</created_at>
+    <id>14997168565</id>
+    <text>Decided to break through the wall, eat that #CSS, but then again I am sure a pixel-pusher could do it better http://search.UN-informed.org</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20609518</id>
+  <name>Dalai Lama</name>
+  <screen_name>DalaiLama</screen_name>
+  <location>Dharamsala, India</location>
+  <description>Welcome to the official twitter page of the Office of His Holiness the 14th Dalai Lama.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/711293289/hhdl-twitter_normal.png</profile_image_url>
+  <url>http://dalailama.com</url>
+  <protected>false</protected>
+  <followers_count>381387</followers_count>
+  <profile_background_color>ffd21d</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>7d1900</profile_link_color>
+  <profile_sidebar_fill_color>f7f2dc</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>e8e3ce</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Wed Feb 11 18:34:22 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>19800</utc_offset>
+  <time_zone>New Delhi</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/78185270/hhdl-twitter-bg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>true</verified>
+  <following>true</following>
+  <statuses_count>154</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 09:42:44 +0000 2010</created_at>
+    <id>15031917082</id>
+    <text>We need to develop a sense of equanimity towards all living beings, expressed through the ability to relate to all others equally.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>50000478</id>
+  <name>Alan Kertz</name>
+  <screen_name>Demize99</screen_name>
+  <location>Stockholm</location>
+  <description>Senior Gameplay Designer Battlefield: Bad Company 2
+Personal Tweets, All Thoughts my Own</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/361999768/Dimize99_WHITE_normal.gif</profile_image_url>
+  <url>http://www.battlefield.com/</url>
+  <protected>false</protected>
+  <followers_count>3438</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>62</friends_count>
+  <created_at>Tue Jun 23 15:08:08 +0000 2009</created_at>
+  <favourites_count>5</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2810</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 16:31:12 +0000 2010</created_at>
+    <id>14984908550</id>
+    <text>@therealcliffyb The game "press" is just blogs these days.  Catchy headlines and rumors get the page views.  #YellowGamingJournalism</text>
+    <source>&lt;a href="http://twitter.digsby.com/" rel="nofollow"&gt;Digsby&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14980489438</in_reply_to_status_id>
+    <in_reply_to_user_id>48485771</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>therealcliffyb</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>119168161</id>
+  <name>Tweet Cloud</name>
+  <screen_name>tweetcloud_app</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/728439945/tweetcloud_normal.gif</profile_image_url>
+  <url>http://tweetcloud.icodeforlove.com/</url>
+  <protected>false</protected>
+  <followers_count>112691</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>6839</friends_count>
+  <created_at>Tue Mar 02 21:40:45 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>6</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 02 20:41:30 +0000 2010</created_at>
+    <id>13265152614</id>
+    <text>@BlackSwanMA I like that idea. I'm working on a total rehaul of TweetCloud. I'll definitely make a video :).</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>12162089671</in_reply_to_status_id>
+    <in_reply_to_user_id>129248147</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>BlackSwanMA</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18211952</id>
+  <name>Tobias Schlitt</name>
+  <screen_name>tobySen</screen_name>
+  <location>Dinslaken, Germany</location>
+  <description>Addicted PHP developer and open source fetishist. Deutsch: @tobySde.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/67831540/twitter_normal.jpg</profile_image_url>
+  <url>http://schlitt.info</url>
+  <protected>false</protected>
+  <followers_count>327</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>126</friends_count>
+  <created_at>Thu Dec 18 09:01:23 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1396</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 22:28:43 +0000 2010</created_at>
+    <id>15002363128</id>
+    <text>RT @muhdiekuh: Was fun to watch #esc with a group of nerds. Never had that much fun watching #esc before.</text>
+    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>47429047</id>
+  <name>David Goldfarb</name>
+  <screen_name>locust9</screen_name>
+  <location>iPhone: 59.309566,18.075535</location>
+  <description>lead game designer and writer at DICE/EA. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/745238389/n724216978_180201_216_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>1647</followers_count>
+  <profile_background_color>ACDED6</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>038543</profile_link_color>
+  <profile_sidebar_fill_color>F6F6F6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>EEEEEE</profile_sidebar_border_color>
+  <friends_count>135</friends_count>
+  <created_at>Mon Jun 15 20:04:31 +0000 2009</created_at>
+  <favourites_count>12</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/71932982/FanSite-Twitter-BFBC2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1978</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:42:59 +0000 2010</created_at>
+    <id>15041821497</id>
+    <text>@murpo I never should have looked out the window</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15039006557</in_reply_to_status_id>
+    <in_reply_to_user_id>29172644</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>murpo</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>7210032</id>
+  <name>Philip G</name>
+  <screen_name>guice</screen_name>
+  <location>Dallas, TX</location>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/701521785/icon_normal.jpg</profile_image_url>
+  <url>http://www.gpcentre.net/</url>
+  <protected>false</protected>
+  <followers_count>127</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>59</friends_count>
+  <created_at>Mon Jul 02 17:20:58 +0000 2007</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2610</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 18:13:23 +0000 2010</created_at>
+    <id>14923416350</id>
+    <text>Awesome...I get to send back a 2.6k check because insurance decided to add "Ascent Home Loans Inc" to it. I have no idea who they are.</text>
+    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>117030265</id>
+  <name>Troels Knak-Nielsen</name>
+  <screen_name>troelskn</screen_name>
+  <location>Copenhagen, Denmark</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/715373478/troels_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>78</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>117</friends_count>
+  <created_at>Wed Feb 24 09:30:21 +0000 2010</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78378559/pattern_111.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>96</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 07:11:57 +0000 2010</created_at>
+    <id>15026757146</id>
+    <text>RT @sweatje: OH Come to the Dork side, we have π
+#fb</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sat May 29 22:02:46 +0000 2010</created_at>
+      <id>15001137735</id>
+      <text>OH Come to the Dork side, we have π
+#fb</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>95479809</id>
+  <name>Sarah Porter</name>
+  <screen_name>cecilymsmith</screen_name>
+  <location>West Midlands</location>
+  <description>Computer Science student who loves the theatre, web design, programming, magic and giving fans a good name.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/746720045/sarah_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>20</followers_count>
+  <profile_background_color>e8e6da</profile_background_color>
+  <profile_text_color>585947</profile_text_color>
+  <profile_link_color>d01a54</profile_link_color>
+  <profile_sidebar_fill_color>fcb3d0</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>fcb3d0</profile_sidebar_border_color>
+  <friends_count>77</friends_count>
+  <created_at>Tue Dec 08 19:02:00 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/60165476/twitterbackground.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>636</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 13:01:43 +0000 2010</created_at>
+    <id>14832765584</id>
+    <text>My new landlady's name is Stapleton! I wonder if she's into butterflies...? #SherlockHolmes</text>
+    <source>&lt;a href="http://github.com/cezarsa/chromed_bird" rel="nofollow"&gt;Chromed Bird&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19268240</id>
+  <name>Raphael Almeida</name>
+  <screen_name>jaguarnet7</screen_name>
+  <location>Rio de Janeiro</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/72212876/gse_multipart68100_normal.jpg</profile_image_url>
+  <url>http://raphaeldealmeida.wordpress.com/</url>
+  <protected>false</protected>
+  <followers_count>95</followers_count>
+  <profile_background_color>709397</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>FF3300</profile_link_color>
+  <profile_sidebar_fill_color>A0C5C7</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>86A4A6</profile_sidebar_border_color>
+  <friends_count>94</friends_count>
+  <created_at>Wed Jan 21 00:55:28 +0000 2009</created_at>
+  <favourites_count>12</favourites_count>
+  <utc_offset>-10800</utc_offset>
+  <time_zone>Brasilia</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/86309735/l267.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>472</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 19:54:51 +0000 2010</created_at>
+    <id>14995181731</id>
+    <text>No #ParqueDasRuinas em #SantaTeresa 3G #fail direto</text>
+    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14150898</id>
+  <name>rvdavid</name>
+  <screen_name>rvdavid</screen_name>
+  <location>Sydney, Australia</location>
+  <description>I develop mission critical web apps and sites. I work directly w/ clients and/or service providers. My Skillset: PHP, MySQL, X/HTML, CSS, JavaScript.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/613678319/rvdavid_normal.jpg</profile_image_url>
+  <url>http://www.rvdavid.net/</url>
+  <protected>false</protected>
+  <followers_count>139</followers_count>
+  <profile_background_color>1a1b1f</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>30</friends_count>
+  <created_at>Sat Mar 15 02:33:07 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>36000</utc_offset>
+  <time_zone>Sydney</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/78797015/twitterback.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>853</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 05:11:40 +0000 2010</created_at>
+    <id>15021949248</id>
+    <text>Found an old external backup drive - what a trip through memory lane this is. It's been quite a ride, the past 10 years of my life has...</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13892042</id>
+  <name>Alex Barth</name>
+  <screen_name>lxbarth</screen_name>
+  <location>Washington DC</location>
+  <description>Open Data, News Tracking, Drupal. @developmentseed</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/52529282/195892215_7b0faba08c_normal.jpg</profile_image_url>
+  <url>http://www.developmentseed.org/blog</url>
+  <protected>false</protected>
+  <followers_count>556</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>366</friends_count>
+  <created_at>Sun Feb 24 05:46:29 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1709</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 16:38:22 +0000 2010</created_at>
+    <id>14985320905</id>
+    <text>CNN maps fallen soldier's home location and where they died http://is.gd/cuwWo (via @elgreg)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>10497972</id>
+  <name>Ben</name>
+  <screen_name>thejetset</screen_name>
+  <location>Dublin, Ireland</location>
+  <description>:) I love Tech!!</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/838741598/logo_normal.jpg</profile_image_url>
+  <url>http://ben.dismiz.com/</url>
+  <protected>false</protected>
+  <followers_count>552</followers_count>
+  <profile_background_color>696969</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>dbdbdb</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>291</friends_count>
+  <created_at>Fri Nov 23 17:32:27 +0000 2007</created_at>
+  <favourites_count>10</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3254647/background.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>7179</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:04:11 +0000 2010</created_at>
+    <id>15043073918</id>
+    <text>@TrionaRose oh sweet....</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15042939825</in_reply_to_status_id>
+    <in_reply_to_user_id>15346035</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>TrionaRose</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20536157</id>
+  <name>A Googler</name>
+  <screen_name>google</screen_name>
+  <location>Mountain View, CA</location>
+  <description>News and updates from Google</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/77186109/favicon_normal.png</profile_image_url>
+  <url>http://www.google.com/support/</url>
+  <protected>false</protected>
+  <followers_count>2260164</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000cc</profile_link_color>
+  <profile_sidebar_fill_color>ebeff9</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>bbccff</profile_sidebar_border_color>
+  <friends_count>253</friends_count>
+  <created_at>Tue Feb 10 19:14:39 +0000 2009</created_at>
+  <favourites_count>81</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/6219441/bg-google-white-75.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>true</verified>
+  <following>true</following>
+  <statuses_count>1518</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>true</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 21:17:00 +0000 2010</created_at>
+    <id>14999055999</id>
+    <text>Rising # of queries for [Kings Island] show Cinci-area residents seek holiday weekend fun, says @cindotcom. http://bit.ly/bqZE59</text>
+    <source>&lt;a href="http://bit.ly" rel="nofollow"&gt;bit.ly&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>110975283</id>
+  <name>Antoine Hedgecock</name>
+  <screen_name>mac_nibblet</screen_name>
+  <location>Sweden, Uppsala</location>
+  <description>I have my own view of life, and i love it. Have fun and do what you love, in my case that Web development (PHP,Js,SQL) Gymnastics and windsurfing! </description>
+  <profile_image_url>http://a1.twimg.com/profile_images/675292520/19180_252310728549_529293549_3215945_2362829_n_normal.jpg</profile_image_url>
+  <url>http://www.pmg.se</url>
+  <protected>false</protected>
+  <followers_count>14</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>44</friends_count>
+  <created_at>Wed Feb 03 11:54:49 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274914417/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>108</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:05:28 +0000 2010</created_at>
+    <id>15039826134</id>
+    <text>@webide I have a problem with scrolling on mac its freaking slow and i cannot adjust it. works perfectly to scroll on firefox etc..</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>115180931</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>webide</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>1068831</id>
+  <name>Slashdot</name>
+  <screen_name>slashdot</screen_name>
+  <location/>
+  <description>Slashdot News Feed</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/646567569/appicon-sd_normal.png</profile_image_url>
+  <url>http://www.slashdot.org</url>
+  <protected>false</protected>
+  <followers_count>26285</followers_count>
+  <profile_background_color>275A3F</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>2</friends_count>
+  <created_at>Tue Mar 13 04:57:07 +0000 2007</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>19273</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:27:13 +0000 2010</created_at>
+    <id>15040933800</id>
+    <text>New Ebola Drug 100 Percent Effective In Monkeys http://bit.ly/dzc9NP</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>48027925</id>
+  <name>Jane Espenson</name>
+  <screen_name>JaneEspenson</screen_name>
+  <location>Los Angeles</location>
+  <description>Writer-Producer</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/917354703/NoH8JANE_normal.jpg</profile_image_url>
+  <url>http://janeespenson.com</url>
+  <protected>false</protected>
+  <followers_count>15339</followers_count>
+  <profile_background_color>24ff1c</profile_background_color>
+  <profile_text_color>3D1957</profile_text_color>
+  <profile_link_color>FF0000</profile_link_color>
+  <profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>0738bd</profile_sidebar_border_color>
+  <friends_count>144</friends_count>
+  <created_at>Wed Jun 17 16:55:27 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme10/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1681</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 05:15:48 +0000 2010</created_at>
+    <id>15022129972</id>
+    <text>@Dominik500 I dunno... I don't think it's really him.  Doesn't look right to me.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15007788481</in_reply_to_status_id>
+    <in_reply_to_user_id>15719335</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>Dominik500</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>16839908</id>
+  <name>PHPGossip</name>
+  <screen_name>PHPGossip</screen_name>
+  <location>iPhone: 41.997592,-87.877326</location>
+  <description>We gossip about all that's happening in world of PHP.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/276323044/php-icon_normal.png</profile_image_url>
+  <url>http://phpgossip.org</url>
+  <protected>false</protected>
+  <followers_count>129</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Sat Oct 18 15:26:16 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>94</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 18:04:51 +0000 2010</created_at>
+    <id>14922949156</id>
+    <text>YZl9TD http://www.f8dpybvfNnMed027gchhA94jc.net</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>6461462</id>
+  <name>John Panzer</name>
+  <screen_name>jpanzer</screen_name>
+  <location/>
+  <description>I hack social software</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/461477381/me_normal.jpg</profile_image_url>
+  <url>http://www.abstractioneer.org/</url>
+  <protected>false</protected>
+  <followers_count>436</followers_count>
+  <profile_background_color>642D8B</profile_background_color>
+  <profile_text_color>3D1957</profile_text_color>
+  <profile_link_color>FF0000</profile_link_color>
+  <profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>65B0DA</profile_sidebar_border_color>
+  <friends_count>125</friends_count>
+  <created_at>Thu May 31 04:21:51 +0000 2007</created_at>
+  <favourites_count>84</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme10/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>513</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 03:30:05 +0000 2010</created_at>
+    <id>15016926268</id>
+    <text>@Jason How about Top Kill II: Executive Purge?</text>
+    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>3840</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>Jason</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>66116095</id>
+  <name>webfinger</name>
+  <screen_name>webfinger</screen_name>
+  <location/>
+  <description>An UNOFFICIAL twitter account following webfinger</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/364965447/webfinger_normal.gif</profile_image_url>
+  <url>http://code.google.com/p/webfinger/</url>
+  <protected>false</protected>
+  <followers_count>96</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>6</friends_count>
+  <created_at>Sun Aug 16 13:38:56 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274382024/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>146</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed Mar 10 16:12:25 +0000 2010</created_at>
+    <id>10277619219</id>
+    <text>CommonLinkRelations (Common XRD Link Relations) Wiki page commented on by singpolyma: Is space-seperation of rels... http://bit.ly/b1YDe2</text>
+    <source>&lt;a href="http://twitterfeed.com" rel="nofollow"&gt;twitterfeed&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>105918185</id>
+  <name>Mikael Kalms</name>
+  <screen_name>Kalmalyzer</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_2_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>306</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>10</friends_count>
+  <created_at>Sun Jan 17 23:01:50 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>140</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 14 23:27:36 +0000 2010</created_at>
+    <id>14003734320</id>
+    <text>@deplinenoise and rightly so!</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14003696882</in_reply_to_status_id>
+    <in_reply_to_user_id>84179009</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>deplinenoise</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15165502</id>
+  <name>Spirit and Oppy </name>
+  <screen_name>MarsRovers</screen_name>
+  <location>Mars: Gusev Crater &amp; Meridiani</location>
+  <description>Roaming the Red Planet on six wheels since Jan 2004.  The official mission Twitter of the Spirit and Opportunity rovers.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/670252813/136489main_PIA04413-feature-browse_normal.jpg</profile_image_url>
+  <url>http://marsrovers.jpl.nasa.gov</url>
+  <protected>false</protected>
+  <followers_count>44498</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>19</friends_count>
+  <created_at>Thu Jun 19 03:18:45 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/2951594/Twitter_BG_5.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>378</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 23:59:07 +0000 2010</created_at>
+    <id>14656131117</id>
+    <text>@noahgmacs Yes, it was 6 years in January. Oppy is still driving these days. It is closer to the equator and has more sunlight for power.</text>
+    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14653020592</in_reply_to_status_id>
+    <in_reply_to_user_id>29518703</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>noahgmacs</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>40729769</id>
+  <name>James</name>
+  <screen_name>xDeathReaperx</screen_name>
+  <location>Washington State :D - U.S.A</location>
+  <description>GamerTag: Kremble    PSN I.D: xDeathReaperx_2 Future Graphic Designer. And possibly Game Designer soon.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/884190780/DRx31_normal.jpg</profile_image_url>
+  <url>http://www.teamplaystation.com/</url>
+  <protected>false</protected>
+  <followers_count>501</followers_count>
+  <profile_background_color>0099B9</profile_background_color>
+  <profile_text_color>3C3940</profile_text_color>
+  <profile_link_color>0099B9</profile_link_color>
+  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
+  <friends_count>300</friends_count>
+  <created_at>Sun May 17 20:26:34 +0000 2009</created_at>
+  <favourites_count>5</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/101937905/CARNIVAL.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3516</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:02:30 +0000 2010</created_at>
+    <id>15042975664</id>
+    <text>Go to Glidden.com to get 2 FREE Paint Testers &amp; Give to to a friend. #GetColor Via @Glidden_Paint! Sponsored by http://spn.tw/cmqJ</text>
+    <source>&lt;a href="http://www.sponsoredtweets.com" rel="nofollow"&gt;Sponsored Tweets&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13494882</id>
+  <name>Allen Wang</name>
+  <screen_name>Boxhead</screen_name>
+  <location>Bay Area, CA</location>
+  <description>Community Manager at Raptr, PC/360 gamer, Asian guy, athlete. My head is actually shaped like a box.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/295867112/Facebook_-_Photos_of_You_1246649193137_normal.PNG</profile_image_url>
+  <url>http://raptr.com/Boxhead</url>
+  <protected>false</protected>
+  <followers_count>524</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>A17700</profile_link_color>
+  <profile_sidebar_fill_color>bdbdbd</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>426</friends_count>
+  <created_at>Thu Feb 14 23:24:30 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/28871085/nvRequiemForARobot.br.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2895</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 08:48:30 +0000 2010</created_at>
+    <id>15030100446</id>
+    <text>Had a good time at #wedgecon! Just Dance tournament was hilarious and finally met some Twitter folks in person.</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>21683408</id>
+  <name>Corey Krause</name>
+  <screen_name>Cokra</screen_name>
+  <location>South Bend, IN</location>
+  <description>Artist, Gamer, Student, Video Editor/ Producer, and a bunch more.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/922866407/Twit-2_normal.png</profile_image_url>
+  <url>http://www.youtube.com/icokrai</url>
+  <protected>false</protected>
+  <followers_count>405</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>c91a1a</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>176</friends_count>
+  <created_at>Mon Feb 23 19:28:17 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2298</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 01:06:00 +0000 2010</created_at>
+    <id>15009400126</id>
+    <text>played Call of Duty: Modern Warfare 2 (360) in the last 24 hours. http://raptr.com/CoKra</text>
+    <source>&lt;a href="http://www.raptr.com/" rel="nofollow"&gt;Raptr&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>102708290</id>
+  <name>The New Sleekness</name>
+  <screen_name>sleekness</screen_name>
+  <location>the internet</location>
+  <description>Rearranging the deck chairs on the Titanic</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/677408540/sleekness_normal.png</profile_image_url>
+  <url>http://www.thenewsleekness.com</url>
+  <protected>false</protected>
+  <followers_count>255</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>228</friends_count>
+  <created_at>Thu Jan 07 15:27:35 +0000 2010</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274130900/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>71</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue May 18 18:20:14 +0000 2010</created_at>
+    <id>14242551496</id>
+    <text>New post: Embracing the Game - http://is.gd/ceVKg</text>
+    <source>&lt;a href="http://www.bravenewcode.com/wordtwit/" rel="nofollow"&gt;WordTwit&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>24417275</id>
+  <name>Stephen Hawking</name>
+  <screen_name>Prof_S_Hawking</screen_name>
+  <location>Cambridge, UK</location>
+  <description>Theoretical physicist and Lucasian Professor of Mathematics at the University of Cambridge. Likes: black holes, cats and watching TV. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/96225201/me_normal.jpg</profile_image_url>
+  <url>http://www.hawking.org.uk/</url>
+  <protected>false</protected>
+  <followers_count>33426</followers_count>
+  <profile_background_color>2e1d3a</profile_background_color>
+  <profile_text_color>3D1957</profile_text_color>
+  <profile_link_color>1229fd</profile_link_color>
+  <profile_sidebar_fill_color>cfcfcf</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>0c1ea6</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Sat Mar 14 19:36:24 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/5709706/outerspace.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>43</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri Jan 08 18:17:14 +0000 2010</created_at>
+    <id>7527457406</id>
+    <text>Thanks for all the birthday wishes everyone</text>
+    <source>&lt;a href="http://echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15749095</id>
+  <name>Jeroen Keppens</name>
+  <screen_name>jkeppens</screen_name>
+  <location>Belgium</location>
+  <description>Passionate IT'er with experience as senior webdeveloper, DBA, project manager, team leader. Certifications: ZCE, ZFCE, MySQL 5 Developer, Scrum Master</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/374641259/profile_picture_normal.jpg</profile_image_url>
+  <url>http://www.amazium.be</url>
+  <protected>false</protected>
+  <followers_count>264</followers_count>
+  <profile_background_color>387CC6</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>FF1B83</profile_link_color>
+  <profile_sidebar_fill_color>A0B9D5</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>013369</profile_sidebar_border_color>
+  <friends_count>219</friends_count>
+  <created_at>Wed Aug 06 12:24:56 +0000 2008</created_at>
+  <favourites_count>5</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Brussels</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1960</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:39:45 +0000 2010</created_at>
+    <id>15041640266</id>
+    <text>@ndemoor DM je me je gsm nr + iad die je wil even? Ik rij morgen naar Frankrijk en met wat geluk is er nog genoeg stock. Ik bel je dan.</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>59094050</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>ndemoor</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15267012</id>
+  <name>Chris Corbyn</name>
+  <screen_name>d11wtq</screen_name>
+  <location>Melbourne, Australia</location>
+  <description>General geek, social butterfly, web developer, Swift Mailer author, in-house PHP developer for SitePoint</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/692985196/19235_292261586054_536061054_4983932_7539028_n_normal.jpg</profile_image_url>
+  <url>http://amoitaliano.com/</url>
+  <protected>false</protected>
+  <followers_count>267</followers_count>
+  <profile_background_color>352726</profile_background_color>
+  <profile_text_color>3E4415</profile_text_color>
+  <profile_link_color>D02B55</profile_link_color>
+  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>829D5E</profile_sidebar_border_color>
+  <friends_count>126</friends_count>
+  <created_at>Sun Jun 29 00:13:39 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>36000</utc_offset>
+  <time_zone>Melbourne</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/62030651/Yarra_River_Melbourne_Australia_1280x960.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3407</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 14:33:07 +0000 2010</created_at>
+    <id>14766919867</id>
+    <text>Tonight is all about the Monty Python :) http://www.youtube.com/watch?v=grbSQ6O6kbs&amp;feature=related</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>95992714</id>
+  <name>Pieter Kokx</name>
+  <screen_name>kokxie</screen_name>
+  <location>Netherlands</location>
+  <description>PHP developer, Zend Framework developer, author of Zend_Markup and Pirate</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/734067299/twitter_normal.png</profile_image_url>
+  <url>http://blog.kokx.nl/</url>
+  <protected>false</protected>
+  <followers_count>56</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>009999</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>88</friends_count>
+  <created_at>Thu Dec 10 21:57:35 +0000 2009</created_at>
+  <favourites_count>11</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Amsterdam</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme14/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>453</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 19:34:38 +0000 2010</created_at>
+    <id>14994211469</id>
+    <text>RT @joedevon: Cool sample .bashrc file: http://tldp.org/LDP/abs/html/sample-bashrc.html #BashTips</text>
+    <source>&lt;a href="https://launchpad.net/gwibber/" rel="nofollow"&gt;Gwibber&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>5025281</id>
+  <name>Joseph Smarr</name>
+  <screen_name>jsmarr</screen_name>
+  <location>Half Moon Bay, CA</location>
+  <description>Social Web Engineer at Google. Former CTO of Plaxo. Opening up the Social Web.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/15172442/plaxo-photo_normal.gif</profile_image_url>
+  <url>http://josephsmarr.com</url>
+  <protected>false</protected>
+  <followers_count>2789</followers_count>
+  <profile_background_color>B1BDD5</profile_background_color>
+  <profile_text_color>303030</profile_text_color>
+  <profile_link_color>286EA0</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>318</friends_count>
+  <created_at>Tue Apr 17 18:10:29 +0000 2007</created_at>
+  <favourites_count>100</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/1917452/twitter-DSCN5702.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>704</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 03:43:52 +0000 2010</created_at>
+    <id>14952358998</id>
+    <text>@johnmccrea look for the "tunerfish compatible" sticker and accept no substitutes! :)</text>
+    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>7537892</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>johnmccrea</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>75999164</id>
+  <name>Analog</name>
+  <screen_name>analogcoop</screen_name>
+  <location>Analog Island :-)</location>
+  <description>A company of friends who make web sites from San Francisco, Brooklyn, and Bristol, UK.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/860736648/analog-512_normal.png</profile_image_url>
+  <url>http://analog.coop/</url>
+  <protected>false</protected>
+  <followers_count>1247</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>321e1e</profile_text_color>
+  <profile_link_color>5a321e</profile_link_color>
+  <profile_sidebar_fill_color>ecf0e2</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>6</friends_count>
+  <created_at>Mon Sep 21 10:21:24 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/59769128/bg-400-paper.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>42</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Mon May 24 16:40:31 +0000 2010</created_at>
+    <id>14634153147</id>
+    <text>RT @jontangerine: I wrote about reversed logotype, and fixing an optical illusion: http://j.mp/Reversed-Logotype</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Mon May 24 14:51:19 +0000 2010</created_at>
+      <id>14627814089</id>
+      <text>I wrote about reversed logotype, and fixing an optical illusion: http://j.mp/Reversed-Logotype</text>
+      <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>355243</id>
+  <name>Jonathan George</name>
+  <screen_name>jdg</screen_name>
+  <location>Wichita, Kansas</location>
+  <description>moving faster than you.  I made Boxcar.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/536671459/me_normal.jpg</profile_image_url>
+  <url>http://jdg.net</url>
+  <protected>false</protected>
+  <followers_count>2058</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>1162</friends_count>
+  <created_at>Fri Dec 29 21:03:12 +0000 2006</created_at>
+  <favourites_count>45</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2742</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 05:59:01 +0000 2010</created_at>
+    <id>14887819060</id>
+    <text>@timhaines not sure if it was automatic or on accident. :-) quick e-mail fixed it a few minutes later. @twitterapi @rsarver</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14887765359</in_reply_to_status_id>
+    <in_reply_to_user_id>14341663</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>timhaines</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>86360812</id>
+  <name>Kevin McArthur</name>
+  <screen_name>KevinSMcArthur</screen_name>
+  <location>Victoria B.C.</location>
+  <description>I'm a Web Developer from Duncan B.C. Author of Pro PHP - Patterns Frameworks Testing and More.  I founded neutrality.ca, and run mycelium.ca among other things.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/499309029/Kevin_normal.jpg</profile_image_url>
+  <url>http://www.unrest.ca</url>
+  <protected>false</protected>
+  <followers_count>42</followers_count>
+  <profile_background_color>022330</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+  <friends_count>54</friends_count>
+  <created_at>Fri Oct 30 17:42:48 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme15/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>500</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 01:29:00 +0000 2010</created_at>
+    <id>15010529855</id>
+    <text>Cool. Skype works on 3g now... Though not thrilled about them charging for voip2voip. Iphoneos4 + skypein = killerapp.</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14369922</id>
+  <name>Mark Brown</name>
+  <screen_name>markjbrown</screen_name>
+  <location>47.70528294,-122.21210229</location>
+  <description>Product Manager for MS Web Platform. Riding the fence of OSS at MS. Very pointy pickets.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/538171372/MarkHeadShot_normal.jpg</profile_image_url>
+  <url>http://blogs.msdn.com/markbrown</url>
+  <protected>false</protected>
+  <followers_count>416</followers_count>
+  <profile_background_color>131516</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>009999</profile_link_color>
+  <profile_sidebar_fill_color>efefef</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
+  <friends_count>342</friends_count>
+  <created_at>Sat Apr 12 17:24:46 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1273875281/images/themes/theme14/bg.gif</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1247</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 04:17:26 +0000 2010</created_at>
+    <id>14740883637</id>
+    <text>@blowdart Ah well probably wasn't to @frankbisse directly. More likely an email I sent to a big DL about all sorts of nonsense :)</text>
+    <source>&lt;a href="http://code.google.com/p/pocketwit/" rel="nofollow"&gt;PockeTwit&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14740575353</in_reply_to_status_id>
+    <in_reply_to_user_id>1847381</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>blowdart</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>779141</id>
+  <name>Rob La Gesse</name>
+  <screen_name>kr8tr</screen_name>
+  <location>San Antonio, TX</location>
+  <description>I work for a great company.  One that worked for me for 7 years first.  But my opinions on this Twitter account are mine alone.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/918798597/rob_normal.jpg</profile_image_url>
+  <url>http://lagesse.org</url>
+  <protected>false</protected>
+  <followers_count>2410</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>011964</profile_text_color>
+  <profile_link_color>932AA0</profile_link_color>
+  <profile_sidebar_fill_color>23B5EB</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>4AC1EB</profile_sidebar_border_color>
+  <friends_count>607</friends_count>
+  <created_at>Sun Feb 18 20:35:01 +0000 2007</created_at>
+  <favourites_count>25</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/2321171/water_that_clear.PNG</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>17477</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 06:50:06 +0000 2010</created_at>
+    <id>15025942111</id>
+    <text>RT @swhitley: My Tweeple Chronicle - http://mytweeple.com/chronicle - Random blog musings from your Twitter friends. &amp;lt;- Very nice.  I likes</text>
+    <source>&lt;a href="http://www.seesmic.com/" rel="nofollow"&gt;Seesmic&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>21355321</id>
+  <name>Zeev Suraski</name>
+  <screen_name>zeevs</screen_name>
+  <location>Israel</location>
+  <description>Zend CTO &amp; Architect of PHP (one of them!)</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/206658984/IMG_6510_normal.jpg</profile_image_url>
+  <url>http://suraski.net/</url>
+  <protected>false</protected>
+  <followers_count>344</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>47</friends_count>
+  <created_at>Fri Feb 20 00:03:50 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>7200</utc_offset>
+  <time_zone>Jerusalem</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>219</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 14:47:56 +0000 2010</created_at>
+    <id>14839242551</id>
+    <text>RT @ziniman: It's the end of the world as we know it... http://tweetphoto.com/24182383</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>52413628</id>
+  <name>kae verens</name>
+  <screen_name>kae_verens</screen_name>
+  <location/>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/290363897/p9030002_normal.jpg</profile_image_url>
+  <url>http://verens.com/</url>
+  <protected>false</protected>
+  <followers_count>31</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>22</friends_count>
+  <created_at>Tue Jun 30 14:48:36 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>14</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat Feb 27 17:50:58 +0000 2010</created_at>
+    <id>9738601300</id>
+    <text>released a project which will help builders and builder suppliers. http://short.ie/7pk2dd - tells you any projects that are starting soon.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>4996631</id>
+  <name>Evert Bopp</name>
+  <screen_name>EvertB</screen_name>
+  <location>Tipperary, Ireland</location>
+  <description>www.haiti-connect.org
+Airappz.com Greenhouselimerick.com
+- WiFi know-it-all, Anarcho-capitalist, entrepreneur, part-time blogger. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/922279239/Avatar_normal.jpg</profile_image_url>
+  <url>http://evertb.wordpress.com/</url>
+  <protected>false</protected>
+  <followers_count>3230</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>3218</friends_count>
+  <created_at>Tue Apr 17 13:31:18 +0000 2007</created_at>
+  <favourites_count>410</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/12559391/pattern8-pattern-11c.png</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>53001</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:18:31 +0000 2010</created_at>
+    <id>15040492535</id>
+    <text>RT @GreenHouseL: We've just added an @eventbrite  booking option to the Bootcamp Sessions page: http://bit.ly/9ZcyaR</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sun May 30 13:15:40 +0000 2010</created_at>
+      <id>15040337619</id>
+      <text>We've just added an @eventbrite  booking option to the Bootcamp Sessions page: http://bit.ly/9ZcyaR</text>
+      <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15029021</id>
+  <name>Edvinas Maciulis</name>
+  <screen_name>EdvinasMaciulis</screen_name>
+  <location>London</location>
+  <description>Software developer with 5 years experience. JAVA/J2EE/LAMP/PHP5/MySQL/Oracle / PL/SQL / Javascript/DOM/ XHTML/CSS.  Certified in SCJP 6. </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/537785689/super_face2_normal.jpg</profile_image_url>
+  <url>http://www.linkedin.com/in/edvinasmaciulis</url>
+  <protected>false</protected>
+  <followers_count>63</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>0d0d0d</profile_text_color>
+  <profile_link_color>e60000</profile_link_color>
+  <profile_sidebar_fill_color>ededed</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>949494</profile_sidebar_border_color>
+  <friends_count>193</friends_count>
+  <created_at>Fri Jun 06 12:42:17 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/55621083/twitter_bg.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>18</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed Dec 30 01:44:10 +0000 2009</created_at>
+    <id>7179699456</id>
+    <text>made my gmail minimalistic, I am suggesting to try here is firefox addon http://mattconstantine.com/mg?v=2 #minimalism #gmail #firefox #ext</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20792319</id>
+  <name>Kamel Zeroual</name>
+  <screen_name>Stribe</screen_name>
+  <location>France, Paris</location>
+  <description>CEO &amp; Cofounder of Stribe </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/206660329/Stribe_S_logo_normal.jpg</profile_image_url>
+  <url>http://www.stribe.com/</url>
+  <protected>false</protected>
+  <followers_count>1163</followers_count>
+  <profile_background_color>f9f9f9</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>f77c00</profile_link_color>
+  <profile_sidebar_fill_color>f3f3f3</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>F2E195</profile_sidebar_border_color>
+  <friends_count>815</friends_count>
+  <created_at>Fri Feb 13 18:21:04 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/43806813/TwitterStribenewBG.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>420</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Tue Mar 16 15:21:06 +0000 2010</created_at>
+    <id>10574272993</id>
+    <text>Vers une intégration toujours plus poussée des médias sociaux dans les sites de marque : Stribe @.. http://bit.ly/dq5M9o</text>
+    <source>&lt;a href="http://tweetmeme.com" rel="nofollow"&gt;TweetMeme&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18916961</id>
+  <name>Саша Стаменковић</name>
+  <screen_name>umpirsky</screen_name>
+  <location>Niš</location>
+  <description>Software development</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/561352398/avatar_normal.JPG</profile_image_url>
+  <url>http://umpirsky.com/</url>
+  <protected>false</protected>
+  <followers_count>111</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>634047</profile_text_color>
+  <profile_link_color>088253</profile_link_color>
+  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
+  <friends_count>54</friends_count>
+  <created_at>Mon Jan 12 21:47:01 +0000 2009</created_at>
+  <favourites_count>7</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Belgrade</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/5500471/sajkaca.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>858</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 05:57:43 +0000 2010</created_at>
+    <id>14745164096</id>
+    <text>RT @neschadj: Baltička legenda - http://www.juznevesti.com/kolumne/Predrag-Blagojevic/Balticka-legenda.sr.html</text>
+    <source>&lt;a href="http://www.yoono.com" rel="nofollow"&gt;yoono&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Tue May 25 21:54:08 +0000 2010</created_at>
+      <id>14719715137</id>
+      <text>Baltička legenda - http://www.juznevesti.com/kolumne/Predrag-Blagojevic/Balticka-legenda.sr.html</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13596092</id>
+  <name>Dennis Winter</name>
+  <screen_name>d_winter</screen_name>
+  <location>Geldern/Germany</location>
+  <description>Freelancing web developer and student from Germany!</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/897202586/DSCF4271_normal.jpg</profile_image_url>
+  <url>http://blog.4expressions.com</url>
+  <protected>false</protected>
+  <followers_count>272</followers_count>
+  <profile_background_color>352726</profile_background_color>
+  <profile_text_color>352726</profile_text_color>
+  <profile_link_color>666666</profile_link_color>
+  <profile_sidebar_fill_color>99CC33</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>352726</profile_sidebar_border_color>
+  <friends_count>436</friends_count>
+  <created_at>Sun Feb 17 20:41:26 +0000 2008</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme5/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1639</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 11:11:33 +0000 2010</created_at>
+    <id>15034985239</id>
+    <text>#anzeige Finally a project management tool that both your engineers AND your business people will like! Check out Planio http://j.mp/90wF49</text>
+    <source>&lt;a href="http://be-a-magpie.com/twitterers/disclosure-statement" rel="nofollow"&gt;Magpie Advertising Network&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>16250884</id>
+  <name>wadearnold</name>
+  <screen_name>wadearnold</screen_name>
+  <location>Cedar Falls, IA USA</location>
+  <description>Flash Builder, Zend Amf, amfphp, Flex SDK, hadoop, cassandradb, hbase</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/492783235/wade_crops_150_normal.jpg</profile_image_url>
+  <url>http://wadearnold.com/blog/</url>
+  <protected>false</protected>
+  <followers_count>764</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>434</friends_count>
+  <created_at>Fri Sep 12 01:21:46 +0000 2008</created_at>
+  <favourites_count>10</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2373</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 20:28:27 +0000 2010</created_at>
+    <id>14930338861</id>
+    <text>RT @sjdust: John Deere makes the Cedar Valley an even greater place with new Tractor Museum. Thank You Deere!! http://bit.ly/dkkMga</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>9549602</id>
+  <name>Tony Bibbs</name>
+  <screen_name>tonybibbs</screen_name>
+  <location>Urbandale, IA</location>
+  <description>Entrepreneur trapped in a corporate body. Consummate family man and hunter-gatherer.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/785996175/Tony_normal.jpg</profile_image_url>
+  <url>http://www.tonybibbs.com</url>
+  <protected>false</protected>
+  <followers_count>584</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>321</friends_count>
+  <created_at>Fri Oct 19 20:08:42 +0000 2007</created_at>
+  <favourites_count>25</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274739546/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>5586</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 02:49:42 +0000 2010</created_at>
+    <id>14877823686</id>
+    <text>In Northeast Iowa in front of a campfire enjoying perfect weather, a drink and some good friends.</text>
+    <source>&lt;a href="/devices" rel="nofollow"&gt;txt&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>5620922</id>
+  <name>jock yitch</name>
+  <screen_name>jockyitch</screen_name>
+  <location>Toronto, Canada</location>
+  <description>Host of BASH. FPS Gaming Webcast.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/409050501/bash1_normal.jpg</profile_image_url>
+  <url>http://bashandslash.com</url>
+  <protected>false</protected>
+  <followers_count>878</followers_count>
+  <profile_background_color>12121a</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>a30000</profile_link_color>
+  <profile_sidebar_fill_color>f5a6a6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>20</friends_count>
+  <created_at>Sun Apr 29 02:21:07 +0000 2007</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/22882913/jock2.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1011</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 04:29:11 +0000 2010</created_at>
+    <id>15019957567</id>
+    <text>Are you "SOG Tough"? http://tinyurl.com/2c4zgaq  ...and that's just how they order breakfast!</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>786947</id>
+  <name>Dave Bost</name>
+  <screen_name>davebost</screen_name>
+  <location>St. Charles, IL</location>
+  <description>Microsoft Developer Evangelist and co-host of the Thirsty Developer podcast</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/457859622/dbost_normal.jpg</profile_image_url>
+  <url>http://www.davebost.com/blog</url>
+  <protected>false</protected>
+  <followers_count>1023</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>814</friends_count>
+  <created_at>Wed Feb 21 18:53:52 +0000 2007</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3562</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 11:18:14 +0000 2010</created_at>
+    <id>15035226350</id>
+    <text>Tee time at TPC Deere Run in T-90</text>
+    <source>&lt;a href="http://www.tweetdeck.com/" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>848901</id>
+  <name>Lauren Cooney</name>
+  <screen_name>lcooney</screen_name>
+  <location>Seattle, WA</location>
+  <description>Films, Music, Tech, Good coffee, adrenaline. GPM for Web Platforms at Microsoft</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/568760327/Lauren_Headshot3_normal.jpg</profile_image_url>
+  <url>http://lcooney.tumblr.com</url>
+  <protected>false</protected>
+  <followers_count>2038</followers_count>
+  <profile_background_color>0099B9</profile_background_color>
+  <profile_text_color>3C3940</profile_text_color>
+  <profile_link_color>0099B9</profile_link_color>
+  <profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
+  <friends_count>702</friends_count>
+  <created_at>Fri Mar 09 21:37:21 +0000 2007</created_at>
+  <favourites_count>14</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme4/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>4587</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 01 21:13:08 +0000 2010</created_at>
+    <id>13208710796</id>
+    <text>Just turned all the iPads in the Apple store in Corte Madera to the site www.Microsoft.com/web. Hehehehe. Yay me #fb</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14382272</id>
+  <name>Trond Husø</name>
+  <screen_name>trondhuso</screen_name>
+  <location>Østfold, Norway</location>
+  <description>I mostly tweet about LAMP, Ubuntu, Android/HTC and comment on Apple and Microsoft misuse of patents. Some Norwegian tweets may occur.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/498616314/___moodspin___trondhuso_normal.jpeg</profile_image_url>
+  <url>http://www.trondhuso.no/blog</url>
+  <protected>false</protected>
+  <followers_count>180</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>164</friends_count>
+  <created_at>Mon Apr 14 07:04:11 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Copenhagen</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1602</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 13:44:23 +0000 2010</created_at>
+    <id>14906879665</id>
+    <text>now looking at &amp;lt;xsl:for-each&amp;gt; exiting stuff... or confusing... it's all up to you.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>74423271</id>
+  <name>Neil Byrne</name>
+  <screen_name>facepalmedgamer</screen_name>
+  <location>Dublin, Ireland</location>
+  <description>The Twitter account of the Blog!</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/611538350/face_normal.jpg</profile_image_url>
+  <url>http://thefacepalmedgamer.wordpress.com</url>
+  <protected>true</protected>
+  <followers_count>24</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>25</friends_count>
+  <created_at>Tue Sep 15 11:22:59 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>49</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 19 10:34:38 +0000 2010</created_at>
+    <id>14287312419</id>
+    <text>@ladyj_79 no of course i still have it!but you can never have too many awesome scarves. Also i have no pots.</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14197479012</in_reply_to_status_id>
+    <in_reply_to_user_id>96188652</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>ladyj_79</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19575586</id>
+  <name>Hacker News Bot</name>
+  <screen_name>hackernewsbot</screen_name>
+  <location>Internetz</location>
+  <description>Tweeting the hottest from Hacker News (YC)</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/73596050/yc500_normal.jpg</profile_image_url>
+  <url>http://news.ycombinator.com</url>
+  <protected>false</protected>
+  <followers_count>3035</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>0</friends_count>
+  <created_at>Tue Jan 27 03:40:24 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>10943</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:42:06 +0000 2010</created_at>
+    <id>15041774105</id>
+    <text>How We Improved Our Conversion Rate by 72%... http://dmix.ca/2010/05/how-we-increased-our-conversion-rate-by-72/</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14776131</id>
+  <name>Isaque Fernandes</name>
+  <screen_name>sp1ke77</screen_name>
+  <location>Amadora, PORTUGAL</location>
+  <description/>
+  <profile_image_url>http://a1.twimg.com/profile_images/97810038/isaque_normal.jpg</profile_image_url>
+  <url>http://www.sp1ke77.com</url>
+  <protected>false</protected>
+  <followers_count>107</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>c2a634</profile_link_color>
+  <profile_sidebar_fill_color>ffea96</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffea96</profile_sidebar_border_color>
+  <friends_count>80</friends_count>
+  <created_at>Wed May 14 17:58:15 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Lisbon</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/54925576/twiter_sp1ke77.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>227</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 15:03:39 +0000 2010</created_at>
+    <id>14840215558</id>
+    <text>seguros de saúde existem apenas para pessoas saudáveis... lol...</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>20642205</id>
+  <name>BAS</name>
+  <screen_name>BibArch</screen_name>
+  <location>Washington D.C.</location>
+  <description>Exploring the archaeology of the Bible. The twitter page of Biblical Archaeology Review magazine.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/734495547/BSBA36020c100L_normal.jpg</profile_image_url>
+  <url>http://bib-arch.org</url>
+  <protected>false</protected>
+  <followers_count>1921</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>1922</friends_count>
+  <created_at>Thu Feb 12 00:12:54 +0000 2009</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-21600</utc_offset>
+  <time_zone>Central Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/48078032/twitter-covers-5.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>949</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 15:36:23 +0000 2010</created_at>
+    <id>14913976343</id>
+    <text>IN THE NEWS TODAY: Possible Clues to Egypt’s Past Found in Sahara Cave http://bit.ly/cJeBTq</text>
+    <source>&lt;a href="http://www.facebook.com/twitter" rel="nofollow"&gt;Facebook&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>16718387</id>
+  <name>Noelle Chun</name>
+  <screen_name>noellechun</screen_name>
+  <location>Honolulu, HI</location>
+  <description>Reporter-Host at Civil Beat. Alltop curator. Holy Kaw blogger. I like journalism, food &amp; drink. Just my own views here. Hello, friends!</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/488642190/DSC06949_2_normal.JPG</profile_image_url>
+  <url>http://noelle.posterous.com</url>
+  <protected>false</protected>
+  <followers_count>2294</followers_count>
+  <profile_background_color>362e2e</profile_background_color>
+  <profile_text_color>332f2f</profile_text_color>
+  <profile_link_color>c27a0f</profile_link_color>
+  <profile_sidebar_fill_color>756f6a</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C6E2EE</profile_sidebar_border_color>
+  <friends_count>1459</friends_count>
+  <created_at>Mon Oct 13 08:42:48 +0000 2008</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-36000</utc_offset>
+  <time_zone>Hawaii</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/42156181/path.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>6702</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 03:55:58 +0000 2010</created_at>
+    <id>15018292640</id>
+    <text>GoGirl? http://post.ly/hrrD</text>
+    <source>&lt;a href="http://posterous.com" rel="nofollow"&gt;Posterous&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15080671</id>
+  <name>{PST}*Joker</name>
+  <screen_name>pstjoker</screen_name>
+  <location>ÜT: 34.015155,-117.062999</location>
+  <description>CoD series modifications called eXtreme+ </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/72571533/avatar_normal.gif</profile_image_url>
+  <url>http://www.jokerXtreme.com</url>
+  <protected>false</protected>
+  <followers_count>475</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>a3a3a3</profile_text_color>
+  <profile_link_color>c60606</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>95</friends_count>
+  <created_at>Wed Jun 11 02:46:30 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/37781199/twitterbg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2387</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 15:01:49 +0000 2010</created_at>
+    <id>14911735193</id>
+    <text>RT @jockyitch: BASHandSlash.com will begin publishing articles, hourly, on the CoD:BO FirstLook event starting at 9:00am EST today. 7 ar ...</text>
+    <source>&lt;a href="http://blackberry.com/twitter" rel="nofollow"&gt;Twitter for BlackBerry®&lt;/a&gt;</source>
+    <truncated>true</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Fri May 28 05:53:46 +0000 2010</created_at>
+      <id>14887612098</id>
+      <text>BASHandSlash.com will begin publishing articles, hourly, on the CoD:BO FirstLook event starting at 9:00am EST today. 7 articles to start...</text>
+      <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>27855118</id>
+  <name>Battlefield BC2</name>
+  <screen_name>OfficialBFBC2</screen_name>
+  <location>DICE Stockholm, Sweden</location>
+  <description>Get a peek into what's happening on the Battlefield Bad Company 2 Team and learn where to look for the latest info!</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/684948987/Twitter_Avatar_02_normal.jpg</profile_image_url>
+  <url>http://www.battlefield.com/badcompany2/</url>
+  <protected>false</protected>
+  <followers_count>54079</followers_count>
+  <profile_background_color>CECCC0</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>49978e</profile_link_color>
+  <profile_sidebar_fill_color>ceccc0</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>232424</profile_sidebar_border_color>
+  <friends_count>15</friends_count>
+  <created_at>Tue Mar 31 11:54:50 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Stockholm</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/80071366/Twitter_BFBC2_new.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>521</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 14:45:00 +0000 2010</created_at>
+    <id>14910643392</id>
+    <text>Get the new BFBC2 Onslaught game mode wallpaper for your PC now from : http://bit.ly/b7aJyZ</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>18709570</id>
+  <name>Tina Sanchez</name>
+  <screen_name>Teanah</screen_name>
+  <location>San Francisco</location>
+  <description>My mom says I'm a goofball.  Host/Producer of 1UP Oddcast, Game Night and Community Manager of 1UP!</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/610578590/mypictr_Twitter_normal.jpg</profile_image_url>
+  <url>http://teanah.1up.com</url>
+  <protected>false</protected>
+  <followers_count>6571</followers_count>
+  <profile_background_color>EDECE9</profile_background_color>
+  <profile_text_color>634047</profile_text_color>
+  <profile_link_color>088253</profile_link_color>
+  <profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
+  <friends_count>247</friends_count>
+  <created_at>Wed Jan 07 03:55:41 +0000 2009</created_at>
+  <favourites_count>55</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/93780222/awens.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>6546</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 04:38:06 +0000 2010</created_at>
+    <id>15020385511</id>
+    <text>F yes. I get the Military channel now</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15418663</id>
+  <name>David Caunt</name>
+  <screen_name>dcaunt</screen_name>
+  <location>Birmingham, UK</location>
+  <description>A developer specialising in PHP, Zend Framework and all things web at iedesign.co.uk. I'm a Zend Framework contributor</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/498609274/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>266</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>552</friends_count>
+  <created_at>Sun Jul 13 20:55:23 +0000 2008</created_at>
+  <favourites_count>6</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1323</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 14:17:32 +0000 2010</created_at>
+    <id>14837338858</id>
+    <text>@akrabat Joined about a month ago, it's fantastic. The £10 always seemed like a lot but it's worth it for easy mobile music in London</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14822978600</in_reply_to_status_id>
+    <in_reply_to_user_id>9244712</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>akrabat</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>784912</id>
+  <name>Jason Snell</name>
+  <screen_name>jsnell</screen_name>
+  <location>Mill Valley, CA</location>
+  <description>Editor of Macworld, writer, primate, parent</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/919470689/jason-thinker-2_normal.jpg</profile_image_url>
+  <url>http://www.intertext.com/</url>
+  <protected>false</protected>
+  <followers_count>13451</followers_count>
+  <profile_background_color>061C69</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>000099</profile_link_color>
+  <profile_sidebar_fill_color>3399FF</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>000000</profile_sidebar_border_color>
+  <friends_count>263</friends_count>
+  <created_at>Wed Feb 21 00:04:08 +0000 2007</created_at>
+  <favourites_count>144</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/17696657/m101_hst.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>18074</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 04:34:40 +0000 2010</created_at>
+    <id>15020222123</id>
+    <text>@haikuman But if I needed to annotate PDFs, that would be the app for me.</text>
+    <source>&lt;a href="http://twitterrific.com" rel="nofollow"&gt;Twitterrific&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15017342285</in_reply_to_status_id>
+    <in_reply_to_user_id>15034532</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>haikuman</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>8150902</id>
+  <name>Jonathan H. Wage</name>
+  <screen_name>jwage</screen_name>
+  <location>Atlanta, GA</location>
+  <description>Doctrine and Symfony core developer, Sensio Labs Employee, business owner, consultant, published author, open source evangelist and Atlanta resident.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/887107676/e6bf8d13-db56-4d7e-9795-463953a30ce6_normal.png</profile_image_url>
+  <url>http://www.jwage.com</url>
+  <protected>false</protected>
+  <followers_count>1502</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>000000</profile_link_color>
+  <profile_sidebar_fill_color>9bcef8</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>b8b8b8</profile_sidebar_border_color>
+  <friends_count>143</friends_count>
+  <created_at>Mon Aug 13 03:17:08 +0000 2007</created_at>
+  <favourites_count>2</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/53535748/big-logo-white-bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>4854</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 03:57:20 +0000 2010</created_at>
+    <id>15018361575</id>
+    <text>RT @LuigiMontanez: Curated list of Chrome web developer extensions: http://bit.ly/9um0Ho</text>
+    <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Sun May 30 01:51:55 +0000 2010</created_at>
+      <id>15011687563</id>
+      <text>Curated list of Chrome web developer extensions: http://bit.ly/9um0Ho</text>
+      <source>&lt;a href="http://bit.ly" rel="nofollow"&gt;bit.ly&lt;/a&gt;</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>15072316</id>
+  <name>Fabien Potencier</name>
+  <screen_name>fabpot</screen_name>
+  <location>Paris, France</location>
+  <description>CEO at Sensio (http://www.sensiolabs.com/), and lead developer of the symfony framework (http://www.symfony-project.org/)</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/456339752/fabien-potencier_normal.jpg</profile_image_url>
+  <url>http://fabien.potencier.org</url>
+  <protected>false</protected>
+  <followers_count>2934</followers_count>
+  <profile_background_color>C0DEED</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDEEF6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
+  <friends_count>125</friends_count>
+  <created_at>Tue Jun 10 12:02:49 +0000 2008</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Paris</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274834447/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>756</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 17:01:41 +0000 2010</created_at>
+    <id>14847077383</id>
+    <text>@nico_somb Can you give me some examples?</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14831621530</in_reply_to_status_id>
+    <in_reply_to_user_id>16499811</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>nico_somb</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>23254994</id>
+  <name>Adewale Oshineye</name>
+  <screen_name>ade_oshineye</screen_name>
+  <location/>
+  <description>I'm not really here.</description>
+  <profile_image_url>http://s.twimg.com/a/1274144130/images/default_profile_0_normal.png</profile_image_url>
+  <url>http://www.google.com/profiles/adewale</url>
+  <protected>false</protected>
+  <followers_count>135</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>128</friends_count>
+  <created_at>Sun Mar 08 00:26:25 +0000 2009</created_at>
+  <favourites_count>141</favourites_count>
+  <utc_offset/>
+  <time_zone/>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>4</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 12:17:31 +0000 2010</created_at>
+    <id>15037587723</id>
+    <text>Finally uploaded my entry in the Wandering Book: http://blog.oshineye.com/2010/05/wandering-book.html</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>13411432</id>
+  <name>C. R.  Dick</name>
+  <screen_name>tixrus</screen_name>
+  <location>PDX OR USA</location>
+  <description>Tixrus founder, humorist,  author, web maven,   software collaborator, foodie,  #ZFer  PHP dojo   jquery etc.   </description>
+  <profile_image_url>http://a3.twimg.com/profile_images/503180567/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url>http://dorkage.net</url>
+  <protected>false</protected>
+  <followers_count>1159</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>812</friends_count>
+  <created_at>Wed Feb 13 02:17:16 +0000 2008</created_at>
+  <favourites_count>11</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/79117068/twilk_background_4b89c358c6ec4.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1608</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 20:20:52 +0000 2010</created_at>
+    <id>14929980105</id>
+    <text>The absolute best article on unicode &amp; encodings http://www.joelonsoftware.com/articles/Unicode.html  Must read 4 English speakers!</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place xmlns:georss="http://www.georss.org/georss">
+      <id>5773fcb5b3971151</id>
+      <name>Oread</name>
+      <full_name>Oread, Lawrence</full_name>
+      <place_type>neighborhood</place_type>
+      <url>http://api.twitter.com/1/geo/id/5773fcb5b3971151.json</url>
+      <bounding_box>
+        <georss:polygon>38.950101 -95.24875 38.950101 -95.23595 38.967502 -95.23595 38.967502 -95.24875</georss:polygon>
+      </bounding_box>
+      <country code="US">The United States of America</country>
+      <street_address/>
+    </place>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>820002</id>
+  <name>Matt Terenzio</name>
+  <screen_name>mterenzio</screen_name>
+  <location>Stamford, CT</location>
+  <description>Programmer-Journalist</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/314021586/profile071409_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>326</followers_count>
+  <profile_background_color>ffffff</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>055b91</profile_link_color>
+  <profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>ffffff</profile_sidebar_border_color>
+  <friends_count>242</friends_count>
+  <created_at>Wed Mar 07 23:08:57 +0000 2007</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/24186068/nvzebrafur_twitter.br.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>2163</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 14:51:15 +0000 2010</created_at>
+    <id>14839450870</id>
+    <text>@ryansholin editors are asking me how to feed stuff in and out of exchange. Do you have five minutes on Friday?</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id>884301</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>ryansholin</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place xmlns:georss="http://www.georss.org/georss">
+      <id>1cfa9ac27a1e93bd</id>
+      <name>Norwalk</name>
+      <full_name>Norwalk, CT</full_name>
+      <place_type>city</place_type>
+      <url>http://api.twitter.com/1/geo/id/1cfa9ac27a1e93bd.json</url>
+      <bounding_box>
+        <georss:polygon>41.020449 -73.474565 41.020449 -73.379088 41.17126 -73.379088 41.17126 -73.474565</georss:polygon>
+      </bounding_box>
+      <country code="US">The United States of America</country>
+      <street_address/>
+    </place>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>17386985</id>
+  <name>Standardistas</name>
+  <screen_name>standardistas</screen_name>
+  <location>Belfast</location>
+  <description>Learn how to build hand-crafted web pages using structured HTML and CSS using a Web Standardistas' approach.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/64507795/webstandardistas_brand_normal.png</profile_image_url>
+  <url>http://www.webstandardistas.com</url>
+  <protected>false</protected>
+  <followers_count>1481</followers_count>
+  <profile_background_color>771e0d</profile_background_color>
+  <profile_text_color>141414</profile_text_color>
+  <profile_link_color>771e0c</profile_link_color>
+  <profile_sidebar_fill_color>D5D5D5</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>FFCC00</profile_sidebar_border_color>
+  <friends_count>70</friends_count>
+  <created_at>Fri Nov 14 13:14:25 +0000 2008</created_at>
+  <favourites_count>35</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/3371104/red_gradient.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>855</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 09:32:44 +0000 2010</created_at>
+    <id>14965690132</id>
+    <text>Information Architects on WIRED for the iPad, "You cannot just transpose print candy to screen candy.": http://j.mp/apapertiger</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>38648728</id>
+  <name>Komplett Ireland</name>
+  <screen_name>komplettie</screen_name>
+  <location>Blanchardstown, Dublin 15</location>
+  <description>The Irish internet shop - You're talking to Marc.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/208592834/Social_Networking_Twitter_73x73_Komplett_ie_copy_normal.jpg</profile_image_url>
+  <url>http://www.komplett.ie</url>
+  <protected>false</protected>
+  <followers_count>1402</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>DDFFCC</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>862</friends_count>
+  <created_at>Fri May 08 11:35:41 +0000 2009</created_at>
+  <favourites_count>72</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>9569</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 11:48:15 +0000 2010</created_at>
+    <id>14900769128</id>
+    <text>@quotemeireland Thanks for the #ff :)</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14900474803</in_reply_to_status_id>
+    <in_reply_to_user_id>71216271</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>quotemeireland</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>10149472</id>
+  <name>Shane O'Grady</name>
+  <screen_name>ShaneOG</screen_name>
+  <location>Dublin, Ireland</location>
+  <description>{$bio_info}
+{$witty_comment}</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/695757834/merlin_hat_normal.jpg</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>248</followers_count>
+  <profile_background_color>000000</profile_background_color>
+  <profile_text_color>808080</profile_text_color>
+  <profile_link_color>68A3AB</profile_link_color>
+  <profile_sidebar_fill_color>0D3541</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>0D3541</profile_sidebar_border_color>
+  <friends_count>492</friends_count>
+  <created_at>Sun Nov 11 10:47:06 +0000 2007</created_at>
+  <favourites_count>4</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/93656381/smoke.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1268</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 16:46:33 +0000 2010</created_at>
+    <id>14918403876</id>
+    <text>@mneylon Where are you off to now? :)</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14918365060</in_reply_to_status_id>
+    <in_reply_to_user_id>13162762</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>mneylon</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>19901349</id>
+  <name>Arne Blankerts</name>
+  <screen_name>arneblankerts</screen_name>
+  <location>Hamburg</location>
+  <description/>
+  <profile_image_url>http://a3.twimg.com/profile_images/422153143/logo_kreis_weiss_unten_links_normal.png</profile_image_url>
+  <url/>
+  <protected>false</protected>
+  <followers_count>345</followers_count>
+  <profile_background_color>1A1B1F</profile_background_color>
+  <profile_text_color>666666</profile_text_color>
+  <profile_link_color>2FC2EF</profile_link_color>
+  <profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
+  <friends_count>94</friends_count>
+  <created_at>Mon Feb 02 10:47:00 +0000 2009</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>3600</utc_offset>
+  <time_zone>Berlin</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme9/bg.gif</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1112</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 10:31:01 +0000 2010</created_at>
+    <id>15033555383</id>
+    <text>Okay, time to relax a bit before leaving for #ipcse ... See you all in Berlin tonite! :)</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>14136842</id>
+  <name>ligaya turmelle</name>
+  <screen_name>lig</screen_name>
+  <location>Florida</location>
+  <description>Full Time Goddess, Part Time MySQL DBA and occasional PHP coder</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/51728177/me_normal.jpg</profile_image_url>
+  <url>http://blog.khankennels.com</url>
+  <protected>false</protected>
+  <followers_count>273</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>89</friends_count>
+  <created_at>Thu Mar 13 02:15:23 +0000 2008</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>-18000</utc_offset>
+  <time_zone>Eastern Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274144130/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>1100</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sat May 29 20:16:13 +0000 2010</created_at>
+    <id>14996207104</id>
+    <text>@ramsey feeling your pain darlin'</text>
+    <source>&lt;a href="http://www.echofon.com/" rel="nofollow"&gt;Echofon&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14994850866</in_reply_to_status_id>
+    <in_reply_to_user_id>7794552</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>ramsey</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>1235521</id>
+  <name>Tim Bray</name>
+  <screen_name>timbray</screen_name>
+  <location>Vancouver</location>
+  <description>Web geek with a camera.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/421637246/Tim_normal.jpg</profile_image_url>
+  <url>http://www.tbray.org/ongoing/</url>
+  <protected>false</protected>
+  <followers_count>10230</followers_count>
+  <profile_background_color>FFFFFF</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>AA0000</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>531</friends_count>
+  <created_at>Thu Mar 15 17:24:22 +0000 2007</created_at>
+  <favourites_count>252</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/1980852/IMGP1686.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>6681</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 05:00:53 +0000 2010</created_at>
+    <id>15021455582</id>
+    <text>Heard on the radio, recommended: Gin Wigmore, http://www.ginwigmore.com.au/music/</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>16063891</id>
+  <name>David Harris</name>
+  <screen_name>physicsdavid</screen_name>
+  <location>Palo Alto, CA</location>
+  <description>journalism+science+art+design+books+words (Editor-in-chief of symmetry magazine)</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/66570873/hamburg_normal.jpg</profile_image_url>
+  <url>http://www.symmetrymagazine.org</url>
+  <protected>false</protected>
+  <followers_count>775</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>476</friends_count>
+  <created_at>Sun Aug 31 05:52:55 +0000 2008</created_at>
+  <favourites_count>0</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>716</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Thu May 27 00:07:58 +0000 2010</created_at>
+    <id>14797659553</id>
+    <text>There are never enough trebuchets in your life but that can be fixed. (For @ladawn) http://yfrog.com/0pf8wsj</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>50835878</id>
+  <name>Drew Carey</name>
+  <screen_name>DrewFromTV</screen_name>
+  <location>Los Angeles via Cleveland</location>
+  <description>Also, @TPIRHost for Price Is Right tweets</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/462661569/twitterProfilePhoto_normal.jpg</profile_image_url>
+  <url>http://drewfromtv.blogspot.com/</url>
+  <protected>false</protected>
+  <followers_count>444765</followers_count>
+  <profile_background_color>9AE4E8</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>1e26d1</profile_link_color>
+  <profile_sidebar_fill_color>f2eded</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>4f4747</profile_sidebar_border_color>
+  <friends_count>141</friends_count>
+  <created_at>Fri Jun 26 00:20:02 +0000 2009</created_at>
+  <favourites_count>35</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://a1.twimg.com/profile_background_images/29108354/drewfromtv_bg_090704.jpg</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>true</verified>
+  <following>true</following>
+  <statuses_count>694</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 14:20:58 +0000 2010</created_at>
+    <id>15044062266</id>
+    <text>And a special THANK YOU to all you Vets. (And Semper Fi to my favorite branch of the military.) :)</text>
+    <source>&lt;a href="http://twitterrific.com" rel="nofollow"&gt;Twitterrific&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>11214</id>
+  <name>Paul M. Watson</name>
+  <screen_name>paulmwatson</screen_name>
+  <location>iPhone: 52.239363,-7.061564</location>
+  <description>South African web-developer living in Ireland. paul@paulmwatson.com or +353 86 896 8944.</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/554031311/10278518_cfd68d36e6_m_normal.jpg</profile_image_url>
+  <url>http://paulmwatson.com/journal/</url>
+  <protected>false</protected>
+  <followers_count>1173</followers_count>
+  <profile_background_color>000</profile_background_color>
+  <profile_text_color>666</profile_text_color>
+  <profile_link_color>39f</profile_link_color>
+  <profile_sidebar_fill_color>000</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>333</profile_sidebar_border_color>
+  <friends_count>145</friends_count>
+  <created_at>Tue Oct 31 21:05:36 +0000 2006</created_at>
+  <favourites_count>1881</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>Dublin</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/3881323/5545609_b20fa3d477_o.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>20239</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 13:52:10 +0000 2010</created_at>
+    <id>15042351035</id>
+    <text>@abetson deadly, sums it up nicely. Though I have one involving a red bra...</text>
+    <source>&lt;a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow"&gt;Twitter for iPhone&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15040314230</in_reply_to_status_id>
+    <in_reply_to_user_id>34587199</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>abetson</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>77293</id>
+  <name>alexis richardson</name>
+  <screen_name>monadic</screen_name>
+  <location>london town</location>
+  <description>jfgi</description>
+  <profile_image_url>http://a3.twimg.com/profile_images/836600467/alexis4_normal.jpg</profile_image_url>
+  <url>http://www.rabbitmq.com</url>
+  <protected>false</protected>
+  <followers_count>1353</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>848</friends_count>
+  <created_at>Mon Dec 18 11:46:31 +0000 2006</created_at>
+  <favourites_count>381</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1273871354/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>true</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>4842</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Fri May 28 12:52:43 +0000 2010</created_at>
+    <id>14903967608</id>
+    <text>RT @spring_tom: EIP and #springintegration provide your application a portable abstraction over JMS, AMQP,  and other messaging systems</text>
+    <source>&lt;a href="http://www.tweetdeck.com" rel="nofollow"&gt;TweetDeck&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id/>
+    <in_reply_to_user_id/>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name/>
+    <retweeted_status>
+      <created_at>Fri May 28 12:37:35 +0000 2010</created_at>
+      <id>14903183689</id>
+      <text>EIP and #springintegration provide your application a portable abstraction over JMS, AMQP,  and other messaging systems</text>
+      <source>web</source>
+      <truncated>false</truncated>
+      <in_reply_to_status_id/>
+      <in_reply_to_user_id/>
+      <favorited>false</favorited>
+      <in_reply_to_screen_name/>
+      <geo/>
+      <coordinates/>
+      <place/>
+      <contributors/>
+    </retweeted_status>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>22134978</id>
+  <name>Twfeed</name>
+  <screen_name>twfeed</screen_name>
+  <location/>
+  <description>Follow us for updates and support for the twitterfeed.com service. Support longer than 140 characters is at http://getsatisfaction.com/twitterfeed</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/267208040/favicon_normal.jpg</profile_image_url>
+  <url>http://twitterfeed.com</url>
+  <protected>false</protected>
+  <followers_count>38897</followers_count>
+  <profile_background_color>FFFFFF</profile_background_color>
+  <profile_text_color>333333</profile_text_color>
+  <profile_link_color>0084B4</profile_link_color>
+  <profile_sidebar_fill_color>fce6a6</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>BDDCAD</profile_sidebar_border_color>
+  <friends_count>42782</friends_count>
+  <created_at>Fri Feb 27 12:37:58 +0000 2009</created_at>
+  <favourites_count>1</favourites_count>
+  <utc_offset>0</utc_offset>
+  <time_zone>London</time_zone>
+  <profile_background_image_url>http://a3.twimg.com/profile_background_images/18521753/background.jpg</profile_background_image_url>
+  <profile_background_tile>true</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>false</verified>
+  <following>true</following>
+  <statuses_count>3960</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Wed May 26 15:17:26 +0000 2010</created_at>
+    <id>14769700611</id>
+    <text>@geluidforumnl This should be fixed now.  Please let us know if the issue continues.  Thanks.  ^SW</text>
+    <source>&lt;a href="http://cotweet.com/?utm_source=sp1" rel="nofollow"&gt;CoTweet&lt;/a&gt;</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>14755163715</in_reply_to_status_id>
+    <in_reply_to_user_id>131885166</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>geluidforumnl</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+<user>
+  <id>37570179</id>
+  <name>Michael Arrington</name>
+  <screen_name>arrington</screen_name>
+  <location>Palo Alto, CA</location>
+  <description>TechCrunch founder. Dog Lover.</description>
+  <profile_image_url>http://a1.twimg.com/profile_images/780055594/no_earth_normal.jpg</profile_image_url>
+  <url>http://www.techcrunch.com</url>
+  <protected>false</protected>
+  <followers_count>29997</followers_count>
+  <profile_background_color>9ae4e8</profile_background_color>
+  <profile_text_color>000000</profile_text_color>
+  <profile_link_color>0000ff</profile_link_color>
+  <profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
+  <profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
+  <friends_count>848</friends_count>
+  <created_at>Mon May 04 02:20:17 +0000 2009</created_at>
+  <favourites_count>16</favourites_count>
+  <utc_offset>-28800</utc_offset>
+  <time_zone>Pacific Time (US &amp; Canada)</time_zone>
+  <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme1/bg.png</profile_background_image_url>
+  <profile_background_tile>false</profile_background_tile>
+  <notifications>false</notifications>
+  <geo_enabled>false</geo_enabled>
+  <verified>true</verified>
+  <following>true</following>
+  <statuses_count>4383</statuses_count>
+  <lang>en</lang>
+  <contributors_enabled>false</contributors_enabled>
+  <status>
+    <created_at>Sun May 30 01:42:06 +0000 2010</created_at>
+    <id>15011195415</id>
+    <text>@kn0thing putting clone issue aside, digg lost 25% of uniques last yr, reddit lost 38%, don't know how u criticize them trying something new</text>
+    <source>web</source>
+    <truncated>false</truncated>
+    <in_reply_to_status_id>15010625553</in_reply_to_status_id>
+    <in_reply_to_user_id>811350</in_reply_to_user_id>
+    <favorited>false</favorited>
+    <in_reply_to_screen_name>kn0thing</in_reply_to_screen_name>
+    <geo/>
+    <coordinates/>
+    <place/>
+    <contributors/>
+  </status>
+</user>
+</users>

+ 46 - 0
tests/Zend/Service/Twitter/_files/statuses.show.xml

@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>false</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>847</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>20</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5929</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>

+ 46 - 0
tests/Zend/Service/Twitter/_files/statuses.update.xml

@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<status>
+  <created_at>Sun May 30 13:48:40 +0000 2010</created_at>
+  <id>15042159587</id>
+  <text>Test Message 1</text>
+  <source>&lt;a href="http://apiwiki.twitter.com/" rel="nofollow"&gt;API&lt;/a&gt;</source>
+  <truncated>false</truncated>
+  <in_reply_to_status_id/>
+  <in_reply_to_user_id/>
+  <favorited>false</favorited>
+  <in_reply_to_screen_name/>
+  <user>
+    <id>9075802</id>
+    <name>Pádraic Brady</name>
+    <screen_name>padraicb</screen_name>
+    <location>Dublin, Ireland, Europe!</location>
+    <description>PHP Developer, Open Source Contributor, and FS Audit Consultant</description>
+    <profile_image_url>http://a1.twimg.com/profile_images/374757042/twitterProfilePhoto_normal.jpg</profile_image_url>
+    <url>http://blog.astrumfutura.com</url>
+    <protected>false</protected>
+    <followers_count>847</followers_count>
+    <profile_background_color>022330</profile_background_color>
+    <profile_text_color>333333</profile_text_color>
+    <profile_link_color>0084B4</profile_link_color>
+    <profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
+    <profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
+    <friends_count>469</friends_count>
+    <created_at>Mon Sep 24 19:35:22 +0000 2007</created_at>
+    <favourites_count>20</favourites_count>
+    <utc_offset>0</utc_offset>
+    <time_zone>Dublin</time_zone>
+    <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme15/bg.png</profile_background_image_url>
+    <profile_background_tile>false</profile_background_tile>
+    <notifications>false</notifications>
+    <geo_enabled>false</geo_enabled>
+    <verified>false</verified>
+    <following>false</following>
+    <statuses_count>5929</statuses_count>
+    <lang>en</lang>
+    <contributors_enabled>false</contributors_enabled>
+  </user>
+  <geo/>
+  <coordinates/>
+  <place/>
+  <contributors/>
+</status>

+ 3 - 3
tests/Zend/Service/Twitter/_files/users.show.twitter.xml

@@ -8,7 +8,7 @@
   <profile_image_url>http://a1.twimg.com/profile_images/878669694/twitter_bird_normal.jpg</profile_image_url>
   <url>http://twitter.com</url>
   <protected>false</protected>
-  <followers_count>3227326</followers_count>
+  <followers_count>3229178</followers_count>
   <profile_background_color>ACDED6</profile_background_color>
   <profile_text_color>333333</profile_text_color>
   <profile_link_color>038543</profile_link_color>
@@ -21,10 +21,10 @@
   <time_zone>Pacific Time (US &amp; Canada)</time_zone>
   <profile_background_image_url>http://s.twimg.com/a/1274899949/images/themes/theme18/bg.gif</profile_background_image_url>
   <profile_background_tile>false</profile_background_tile>
-  <notifications/>
+  <notifications>false</notifications>
   <geo_enabled>false</geo_enabled>
   <verified>true</verified>
-  <following/>
+  <following>true</following>
   <statuses_count>745</statuses_count>
   <lang>en</lang>
   <contributors_enabled>true</contributors_enabled>