diff --git a/lib/faraday/multipart.rb b/lib/faraday/multipart.rb index 6c1e456d3..aae244e93 100644 --- a/lib/faraday/multipart.rb +++ b/lib/faraday/multipart.rb @@ -1,7 +1,7 @@ require 'faraday' +# @api private module Faraday - # @api private class Request::Multipart < Faraday::Middleware def call(env) if env[:body].is_a?(Hash) diff --git a/lib/faraday/oauth.rb b/lib/faraday/oauth.rb index e68b2462a..9dff6f7ec 100644 --- a/lib/faraday/oauth.rb +++ b/lib/faraday/oauth.rb @@ -1,8 +1,8 @@ require 'faraday' require 'simple_oauth' +# @api private module Faraday - # @api private class Request::OAuth < Faraday::Middleware def call(env) params = env[:body].is_a?(Hash) ? env[:body] : {} diff --git a/lib/faraday/raise_http_4xx.rb b/lib/faraday/raise_http_4xx.rb index 25dd6146b..7231034cd 100644 --- a/lib/faraday/raise_http_4xx.rb +++ b/lib/faraday/raise_http_4xx.rb @@ -1,7 +1,7 @@ require 'faraday' +# @api private module Faraday - # @api private class Response::RaiseHttp4xx < Response::Middleware def self.register_on_complete(env) env[:response].on_complete do |response| diff --git a/lib/faraday/raise_http_5xx.rb b/lib/faraday/raise_http_5xx.rb index ba73963af..12e843db0 100644 --- a/lib/faraday/raise_http_5xx.rb +++ b/lib/faraday/raise_http_5xx.rb @@ -1,7 +1,7 @@ require 'faraday' +# @api private module Faraday - # @api private class Response::RaiseHttp5xx < Response::Middleware def self.register_on_complete(env) env[:response].on_complete do |response| diff --git a/lib/twitter/base.rb b/lib/twitter/base.rb index d37ca0ff7..10992339a 100644 --- a/lib/twitter/base.rb +++ b/lib/twitter/base.rb @@ -2,7 +2,7 @@ module Twitter class Base # Alias for Twitter::Client.new # - # @deprecated {Twitter::Base} is deprecated and will be permanently removed in the next major version. Please use {Twitter::Client} instead." + # @deprecated {Twitter::Base#client} is deprecated and will be permanently removed in the next major version. Please use Twitter::Client.new instead. # @return [Twitter::Client] def client(options={}) Twitter::Client.new(options) @@ -10,7 +10,7 @@ def client(options={}) # Delegate to Twitter::Client # - # @deprecated {Twitter::Base} is deprecated and will be permanently removed in the next major version. Please use {Twitter::Client} instead." + # @deprecated {Twitter::Base} is deprecated and will be permanently removed in the next major version. Please use {Twitter::Client} instead. def method_missing(method, *args, &block) return super unless client.respond_to?(method) warn "#{Kernel.caller.first}: [DEPRECATION] Twitter::Base##{method} is deprecated and will be permanently removed in the next major version. Please use Twitter::Client##{method} instead." diff --git a/lib/twitter/client/account.rb b/lib/twitter/client/account.rb index c2866e790..b54fa24e9 100644 --- a/lib/twitter/client/account.rb +++ b/lib/twitter/client/account.rb @@ -1,41 +1,143 @@ module Twitter class Client module Account + # Returns the requesting user if authentication was successful, otherwise raises {Twitter::Unauthorized} + # + # @format :json, :xml + # @authenticated true + # @rate_limited true + # @param options [Hash] A customizable set of options. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @raise [Twitter::Unauthorized] Error raised when supplied user credentials are not valid. + # @see http://dev.twitter.com/doc/get/account/verify_credentials + # @example Return the requesting user if authentication was successful + # Twitter.verify_credentials def verify_credentials(options={}) response = get('account/verify_credentials', options) format.to_s.downcase == 'xml' ? response['user'] : response end + # Returns the remaining number of API requests available to the requesting user + # + # @format :json, :xml + # @authenticated [false] This will return the requesting IP's rate limit status. If you want the authenticating user's rate limit status you must authenticate. + # @rate_limited true + # @param options [Hash] A customizable set of options. + # @return [Hashie::Mash] + # @see http://dev.twitter.com/doc/get/account/rate_limit_status + # @example Return the remaining number of API requests available to the requesting user + # Twitter.rate_limit_status def rate_limit_status(options={}) response = get('account/rate_limit_status', options) format.to_s.downcase == 'xml' ? response['hash'] : response end + # Ends the session of the authenticating user + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param options [Hash] A customizable set of options. + # @return [Hashie::Mash] + # @see http://dev.twitter.com/doc/post/account/end_session + # @example End the sessions of the authenticating user + # Twitter.end_session def end_session(options={}) response = post('account/end_session', options) format.to_s.downcase == 'xml' ? response['hash'] : response end + # Sets which device Twitter delivers updates to for the authenticating user + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param device [String] Must be one of: 'sms', 'none'. + # @param options [Hash] A customizable set of options. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @see http://dev.twitter.com/doc/post/account/update_delivery_device + # @example Turn SMS updates on for the authenticating user + # Twitter.update_delivery_device('sms') def update_delivery_device(device, options={}) response = post('account/update_delivery_device', options.merge(:device => device)) format.to_s.downcase == 'xml' ? response['user'] : response end + # Sets one or more hex values that control the color scheme of the authenticating user's profile + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param options [Hash] A customizable set of options. + # @option options [String] :profile_background_color Profile background color. + # @option options [String] :profile_text_color Profile text color. + # @option options [String] :profile_link_color Profile link color. + # @option options [String] :profile_sidebar_fill_color Profile sidebar's background color. + # @option options [String] :profile_sidebar_border_color Profile sidebar's border color. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @see http://dev.twitter.com/doc/post/account/update_profile_colors + # @example Set authenticating user's profile background to black + # Twitter.update_profile_colors(:profile_background_color => '000000') def update_profile_colors(options={}) response = post('account/update_profile_colors', options) format.to_s.downcase == 'xml' ? response['user'] : response end - def update_profile_image(file, options={}) - response = post('account/update_profile_image', options.merge(:image => file)) + # Updates the authenticating user's profile image + # @note This method asynchronously processes the uploaded file before updating the user's profile image URL. You can either update your local cache the next time you request the user's information, or, at least 5 seconds after uploading the image, ask for the updated URL using {Twitter::Client::User#profile_image}. + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param image [String] The avatar image for the profile. Must be a valid GIF, JPG, or PNG image of less than 700 kilobytes in size. Images with width larger than 500 pixels will be scaled down. Animated GIFs will be converted to a static GIF of the first frame, removing the animation. + # @param options [Hash] A customizable set of options. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @see http://dev.twitter.com/doc/post/account/update_profile_image + # @example Update the authenticating user's profile image + # Twitter.update_profile_image(File.new("me.jpeg")) + def update_profile_image(image, options={}) + response = post('account/update_profile_image', options.merge(:image => image)) format.to_s.downcase == 'xml' ? response['user'] : response end - def update_profile_background_image(file, options={}) - response = post('account/update_profile_background_image', options.merge(:image => file)) + # Updates the authenticating user's profile background image + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param image [String] The background image for the profile. Must be a valid GIF, JPG, or PNG image of less than 800 kilobytes in size. Images with width larger than 2048 pixels will be forceably scaled down. + # @param options [Hash] A customizable set of options. + # @option options [Boolean] :tile Whether or not to tile the background image. If set to true the background image will be displayed tiled. The image will not be tiled otherwise. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @see http://dev.twitter.com/doc/post/account/update_profile_background_image + # @example Update the authenticating user's profile background image + # Twitter.update_profile_background_image(File.new("we_concept_bg2.png")) + def update_profile_background_image(image, options={}) + response = post('account/update_profile_background_image', options.merge(:image => image)) format.to_s.downcase == 'xml' ? response['user'] : response end + # Sets values that users are able to set under the "Account" tab of their settings page + # @note Only the options specified will be updated. + # + # @format :json, :xml + # @authenticated true + # @rate_limited false + # @param options [Hash] A customizable set of options. + # @option options [String] :name Full name associated with the profile. Maximum of 20 characters. + # @option options [String] :url URL associated with the profile. Will be prepended with "http://" if not present. Maximum of 100 characters. + # @option options [String] :location The city or country describing where the user of the account is located. The contents are not normalized or geocoded in any way. Maximum of 30 characters. + # @option options [String] :description A description of the user owning the account. Maximum of 160 characters. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The authenticated user. + # @see http://dev.twitter.com/doc/post/account/update_profile + # @example Set authenticating user's name to Erik Michaels-Ober + # Twitter.update_profile(:name => "Erik Michaels-Ober") def update_profile(options={}) response = post('account/update_profile', options) format.to_s.downcase == 'xml' ? response['user'] : response diff --git a/lib/twitter/client/geo.rb b/lib/twitter/client/geo.rb index 8d8e29f27..de3b7c044 100644 --- a/lib/twitter/client/geo.rb +++ b/lib/twitter/client/geo.rb @@ -79,7 +79,7 @@ def reverse_geocode(options={}) # @rate_limited true # @param place_id [String] A place in the world. These IDs can be retrieved from {Twitter::Client::Geo#reverse_geocode}. # @param options [Hash] A customizable set of options. - # @return [Hashie::Mash] The requested place object. + # @return [Hashie::Mash] The requested place. # @see http://dev.twitter.com/doc/get/geo/id/:place_id # @example Return all the information about Twitter HQ # Twitter.place("247f43d441defc03") @@ -99,7 +99,7 @@ def place(place_id, options={}) # @option options [Float] :lat The latitude to search around. This option will be ignored unless it is inside the range -90.0 to +90.0 (North is positive) inclusive. It will also be ignored if there isn't a corresponding :long option. # @option options [Float] :long The longitude to search around. The valid ranges for longitude is -180.0 to +180.0 (East is positive) inclusive. This option will be ignored if outside that range, if it is not a number, if geo_enabled is disabled, or if there not a corresponding :lat option. # @option options [String] :"attribute:street_address" This option searches for places which have this given street address. There are other well-known, and application specific attributes available. Custom attributes are also permitted. - # @return [Hashie::Mash] The created place object. + # @return [Hashie::Mash] The created place. # @see http://dev.twitter.com/doc/post/geo/place # @example Create a new place # Twitter.place_create(:name => "@sferik's Apartment", :token => "22ff5b1f7159032cf69218c4d8bb78bc", :contained_within => "41bcb736f84a799e", :lat => "37.783699", :long => "-122.393581") diff --git a/lib/twitter/client/user.rb b/lib/twitter/client/user.rb index 8749606a5..cadcb1642 100644 --- a/lib/twitter/client/user.rb +++ b/lib/twitter/client/user.rb @@ -8,8 +8,8 @@ module User # @rate_limited true # @param user [String, Integer] A Twitter user ID or screen name. # @param options [Hash] A customizable set of options. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. - # @return [Hashie::Mash] The requested user object. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Hashie::Mash] The requested user. # @see http://dev.twitter.com/doc/get/users/show # @example Return extended information for @sferik # Twitter.user("sferik") @@ -20,7 +20,7 @@ def user(user, options={}) format.to_s.downcase == 'xml' ? response['user'] : response end - # Returns extended information of a given user + # Return up to 100 users worth of extended information # # @format :json, :xml # @authenticated true @@ -28,10 +28,10 @@ def user(user, options={}) # @overload users(*users, options={}) # @param users [String, Integer] Twitter users ID or screen names. # @param options [Hash] A customizable set of options. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. - # @return [Hashie::Mash] The requested user object. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @return [Array] The requested users. # @see http://dev.twitter.com/doc/get/users/lookup - # @example Return extended information for @sferik + # @example Return extended information for @sferik and @pengwynn # Twitter.user("sferik", "pengwynn") # Twitter.user("sferik", 14100886) # Same as above # Twitter.user(7505382, 14100886) # Same as above @@ -52,7 +52,7 @@ def users(*args) # @param options [Hash] A customizable set of options. # @option options [Integer] :per_page The number of people to retrieve. Maxiumum of 20 allowed per page. # @option options [Integer] :page Specifies the page of results to retrieve. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. # @return [Array] # @see http://dev.twitter.com/doc/get/users/search # @example Return users that match "Erik Michaels-Ober" @@ -112,7 +112,7 @@ def profile_image(screen_name, options={}) # @overload friends(options={}) # @param options [Hash] A customizable set of options. # @option options [String] :cursor (-1) Breaks the results into pages. This is recommended for users who are following many users. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. # @return [Hashie::Mash] # @example Return the authenticated user's friends # Twitter.freinds @@ -120,7 +120,7 @@ def profile_image(screen_name, options={}) # @param user [String, Integer] A Twitter user ID or screen name. # @param options [Hash] A customizable set of options. # @option options [String] :cursor (-1) Breaks the results into pages. This is recommended for users who are following many users. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. # @return [Hashie::Mash] # @example Return the @sferik's friends # Twitter.friends("sferik") @@ -147,7 +147,7 @@ def friends(*args) # @overload followers(options={}) # @param options [Hash] A customizable set of options. # @option options [String] :cursor (-1) Breaks the results into pages. Provide values as returned in the response object's next_cursor and previous_cursor attributes to page back and forth in the list. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. # @return [Hashie::Mash] # @example Return the authenticated user's followers # Twitter.freinds @@ -155,7 +155,7 @@ def friends(*args) # @param user [String, Integer] A Twitter user ID or screen name. # @param options [Hash] A customizable set of options. # @option options [String] :cursor (-1) Breaks the results into pages. Provide values as returned in the response objects's next_cursor and previous_cursor attributes to page back and forth in the list. - # @option options [String] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. + # @option options [Boolean, String, Integer] :include_entities Include {http://dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, 't' or 1. # @return [Hashie::Mash] # @example Return the @sferik's followers # Twitter.followers("sferik") diff --git a/spec/fixtures/followers.json b/spec/fixtures/followers.json index 509fe38a2..a996ace00 100644 --- a/spec/fixtures/followers.json +++ b/spec/fixtures/followers.json @@ -1 +1 @@ -{"users":[{"favourites_count":0,"friends_count":642,"profile_sidebar_border_color":"86A4A6","description":"","screen_name":"CherylParkerWVD","geo_enabled":false,"time_zone":"Alaska","follow_request_sent":false,"profile_background_color":"709397","id_str":"202975981","verified":false,"followers_count":200,"url":null,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Oct 15 07:14:51 +0000 2010","location":"Truckee, CA","listed_count":3,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme6\/bg.gif","profile_link_color":"FF3300","protected":false,"statuses_count":0,"name":"Cheryl Parker","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1145958368\/1679945837928436q20114_normal.jpg","id":202975981,"contributors_enabled":false,"notifications":false,"utc_offset":-32400},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Just a dude with an iPhone that likes stuff from Apple. I'm a technology\/gadgets enthusiast. Sharing cool things about technology, iphone, apps \u2026","screen_name":"cooliphone","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29566090093","source":"\u003Ca href=\"http:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003ESocialOomph\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 12:27:10 +0000 2010","retweeted":false,"geo":null,"id":29566090093,"truncated":false,"text":"Hands On: Motorola Droid smartphone http:\/\/bit.ly\/ctW1iu"},"time_zone":null,"profile_background_color":"C0DEED","id_str":"153113191","listed_count":41,"followers_count":1875,"url":null,"statuses_count":1201,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Mon Jun 07 18:29:10 +0000 2010","friends_count":2064,"location":"New York, NY","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/109621965\/cooliphonebackground.jpg","profile_link_color":"0084B4","protected":false,"geo_enabled":false,"name":"cool iphone","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/968722035\/cooliphonephoto_normal.jpg","id":153113191,"verified":false,"notifications":false,"utc_offset":null},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"joelmahoney","listed_count":1,"time_zone":"Pacific Time (US & Canada)","statuses_count":0,"profile_background_color":"C0DEED","id_str":"61074651","followers_count":12,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Wed Jul 29 01:16:32 +0000 2009","location":"Santa Fe, NM","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":22,"name":"Joel Mahoney","show_all_inline_media":false,"follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/558760034\/riochama_normal.jpg","id":61074651,"verified":false,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"contributors_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"5ED4DC","description":"developer | open source | drupal | drawing | teaching | foodie | nature geek | participation | code for america 2011 | twitter hater | typical sagittarius","screen_name":"chachasikes","geo_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29488826994","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29469747712","source":"web","retweet_count":null,"created_at":"Tue Nov 02 13:31:48 +0000 2010","retweeted":false,"geo":null,"id":29469747712,"truncated":false,"text":"Mozilla #drumbeat looks great. Happy to be participating. https:\/\/wiki.mozilla.org\/Drumbeat\/events\/Festival\/program\/schedule"},"retweet_count":null,"created_at":"Tue Nov 02 17:11:41 +0000 2010","retweeted":false,"geo":null,"id":29488826994,"truncated":true,"text":"RT @MitchellBaker: Mozilla #drumbeat looks great. Happy to be participating. https:\/\/wiki.mozilla.org\/Drumbeat\/events\/Festival\/program\/s ..."},"time_zone":"Central Time (US & Canada)","verified":false,"profile_background_color":"0099B9","id_str":"14353952","follow_request_sent":false,"followers_count":366,"url":"http:\/\/chachaville.com","profile_use_background_image":true,"profile_text_color":"3C3940","lang":"en","created_at":"Thu Apr 10 18:47:41 +0000 2008","location":"Minneapolis, MN","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":false,"listed_count":48,"name":"chachasikes","statuses_count":1243,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1156044662\/chachagaga_normal.jpg","id":14353952,"show_all_inline_media":false,"notifications":false,"utc_offset":-21600,"friends_count":605},{"show_all_inline_media":false,"favourites_count":2,"friends_count":80,"profile_sidebar_border_color":"D9B17E","description":"","screen_name":"mjumbewu","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29246412952","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29236552990","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 01:56:08 +0000 2010","retweeted":false,"id":29236552990,"truncated":false,"text":"I'm really loving the videos being produced by RSA. Latest by Sir Ken Robinson. http:\/\/bit.ly\/bDTCjl \/ht @tobi"},"retweet_count":null,"created_at":"Sun Oct 31 04:21:13 +0000 2010","retweeted":false,"id":29246412952,"truncated":false,"text":"RT @alexknowshtml: I'm really loving the videos being produced by RSA. Latest by Sir Ken Robinson. http:\/\/bit.ly\/bDTCjl \/ht @tobi"},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"8B542B","id_str":"35782202","verified":false,"notifications":false,"followers_count":58,"url":"http:\/\/kwawatu.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Apr 27 16:17:21 +0000 2009","location":"Philadelphia, PA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme8\/bg.gif","profile_link_color":"9D582E","protected":false,"name":"Mjumbe Poe","listed_count":7,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"EADEAA","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1101892515\/dreadlocked_browntwitterbird-248x270_normal.png","id":35782202,"statuses_count":254,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"You can perform these anywhere all over the world. You're not just an laboring man, you can begin building your own financial future.","screen_name":"DeberaTannehill","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29537856298","source":"\u003Ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003Etwitterfeed\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 03:44:34 +0000 2010","retweeted":false,"geo":null,"id":29537856298,"truncated":false,"text":"How to Boost a Websites Traffic http:\/\/tinyurl.com\/29727km"},"time_zone":"Alaska","listed_count":5,"profile_background_color":"C0DEED","id_str":"166168781","statuses_count":149,"followers_count":324,"url":"http:\/\/j.mp\/aUQCAu?=oty3","show_all_inline_media":false,"profile_use_background_image":true,"friends_count":765,"profile_text_color":"333333","contributors_enabled":false,"lang":"en","created_at":"Tue Jul 13 14:12:28 +0000 2010","location":"Nebraska","geo_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/122713814\/449189563mlbk053.jpg","profile_link_color":"0084B4","protected":false,"name":"Debera Tannehill","following":false,"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1076204546\/86733813122_normal.jpg","id":166168781,"follow_request_sent":false,"notifications":false,"utc_offset":-32400},{"favourites_count":1,"friends_count":562,"profile_sidebar_border_color":"DFDFDF","description":"We recruit top web professionals to give a year of service building web 2.0 apps for city governments.","screen_name":"CodeforAmerica","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29495840464","source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 18:47:37 +0000 2010","retweeted":false,"geo":null,"id":29495840464,"truncated":false,"text":"RT @zzolo: I am really excited about my @codeforamerica fellowship! It will be a unique opportunity to get involved with city government."},"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","follow_request_sent":false,"profile_background_color":"EBEBEB","id_str":"64482503","verified":false,"followers_count":2961,"url":"http:\/\/www.codeforamerica.org","profile_use_background_image":false,"profile_text_color":"333333","lang":"en","created_at":"Mon Aug 10 18:59:29 +0000 2009","location":"San Francisco, California","listed_count":366,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme7\/bg.gif","profile_link_color":"990000","protected":false,"statuses_count":538,"name":"Code for America","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F3F3F3","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1118630094\/logosquare_bigger_normal.jpg","id":64482503,"contributors_enabled":false,"notifications":false,"utc_offset":-28800},{"favourites_count":510,"profile_sidebar_border_color":"BDDCAD","description":"Interactive Developer","screen_name":"jpdevries","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":35683,"favorited":false,"in_reply_to_user_id_str":"35683","contributors":null,"in_reply_to_screen_name":"nateb","id_str":"29527285412","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:30:26 +0000 2010","retweeted":false,"geo":null,"id":29527285412,"truncated":false,"text":"@nateb after all this #css compression work, i'm realizing yet another reason i should kick my habit of overly-specific selectors: file size"},"follow_request_sent":false,"time_zone":"Alaska","profile_background_color":"9AE4E8","id_str":"17331901","followers_count":511,"url":"http:\/\/jpdevries.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":49,"lang":"en","created_at":"Wed Nov 12 04:46:03 +0000 2008","location":"Portland, Or","statuses_count":2807,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/120756699\/webtreats_wood-pattern8-512.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":643,"name":"jpdevries","contributors_enabled":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/64828125\/Photo_4_normal.jpg","id":17331901,"geo_enabled":false,"notifications":false,"utc_offset":-32400},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"SharePoint Architect, geek, developer, outdoorsy, family, reader, writer, photographer, student, gamer, infinitely curious...and much much more","screen_name":"nick_zimmerman","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29539385226","place":null,"coordinates":null,"in_reply_to_status_id":29539385226,"in_reply_to_user_id":15020935,"favorited":false,"in_reply_to_user_id_str":"15020935","contributors":null,"in_reply_to_screen_name":"stacyDraper","id_str":"29539750211","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 04:12:07 +0000 2010","retweeted":false,"geo":null,"id":29539750211,"truncated":false,"text":"@stacyDraper @scottsingleton I was thinking more like the tinfoil hat wearing cynic that hates everything. But old walmart guy is good too."},"time_zone":null,"friends_count":89,"profile_background_color":"C0DEED","id_str":"94093501","geo_enabled":false,"followers_count":23,"url":"http:\/\/www.nick-zimmerman.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Wed Dec 02 13:51:31 +0000 2009","location":"Davenport, IA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288039940\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Nick Zimmerman","listed_count":3,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1151587561\/SNC00005_normal.jpg","id":94093501,"statuses_count":92,"notifications":false,"utc_offset":null},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"ATT Share is an official Twitter site for ATT. We want to learn more\r\nabout you and give you exclusive offers.","screen_name":"ATTshare","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29507336963","source":"web","retweet_count":null,"created_at":"Tue Nov 02 21:33:45 +0000 2010","retweeted":false,"geo":null,"id":29507336963,"truncated":false,"text":"DAILY TIP (Sony Ericsson Xperia X10): Check out this tip to improve battery life on your Xperia X10. More here: http:\/\/go-att.us\/as2k"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","id_str":"117532856","listed_count":33,"followers_count":1009,"url":"http:\/\/www.att.com","statuses_count":53,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Thu Feb 25 21:17:37 +0000 2010","location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/167820806\/Share-FB-1-2-3_edit05.jpg","profile_link_color":"0084B4","protected":false,"friends_count":1807,"name":"ATT Share","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1011617731\/images-1_normal.jpg","id":117532856,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"favourites_count":35,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"ebryn","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":14955528,"favorited":false,"in_reply_to_user_id_str":"14955528","contributors":null,"in_reply_to_screen_name":"patmaddox","id_str":"29533188546","source":"web","retweet_count":null,"created_at":"Wed Nov 03 02:42:03 +0000 2010","retweeted":false,"geo":null,"id":29533188546,"truncated":false,"text":"@patmaddox still have a rubyconf ticket?"},"listed_count":6,"time_zone":"Pacific Time (US & Canada)","statuses_count":138,"profile_background_color":"C0DEED","id_str":"3594","show_all_inline_media":false,"friends_count":176,"followers_count":108,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Tue Aug 01 16:58:55 +0000 2006","location":"iPhone: 37.763550,-122.479309","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"verified":false,"name":"Erik B","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1129175248\/41663_30800013_6853_q_normal.jpg","id":3594,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":true,"favourites_count":758,"friends_count":2028,"profile_sidebar_border_color":"bb0e79","description":"Reality Technician, Developer Advocate at Twitter, at Disneyland","screen_name":"episod","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","attributes":{},"country":"The United States of America","full_name":"Mission Bay, San Francisco","name":"Mission Bay","id":"41bcb736f84a799e"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29569508995","source":"web","retweet_count":null,"created_at":"Wed Nov 03 13:10:29 +0000 2010","retweeted":false,"geo":null,"id":29569508995,"truncated":false,"text":"Hoping to see World of Color today. Especially with the TRON fixins: http:\/\/t.co\/3VRgkU3"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","id_str":"819797","verified":false,"followers_count":2341,"url":"http:\/\/bit.ly\/5w7P88","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Wed Mar 07 22:23:19 +0000 2007","location":"iPhone: 37.778274,-122.397939","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19651315\/fiberoptics.jpg","profile_link_color":"731673","protected":false,"name":"Taylor Singletary","listed_count":180,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"cba4eb","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1158784218\/pinnochio-disneyland_normal.png","id":819797,"statuses_count":8289,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":2,"profile_sidebar_border_color":"181A1E","description":"","screen_name":"wtnelson","contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","friends_count":69,"profile_background_color":"1A1B1F","id_str":"14828579","geo_enabled":false,"followers_count":24,"url":"http:\/\/www.statsblitz.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"666666","lang":"en","verified":false,"created_at":"Mon May 19 04:31:09 +0000 2008","location":"United States","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5233689\/Ryan_Field.jpg","profile_link_color":"742fef","protected":true,"name":"William T Nelson","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/428828892\/Untitled_normal.png","id":14828579,"statuses_count":199,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":13,"profile_sidebar_border_color":"DFDFDF","description":"A good guy, no doubt","screen_name":"MFedoseev","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29562334035","source":"web","retweet_count":null,"created_at":"Wed Nov 03 11:32:43 +0000 2010","retweeted":false,"geo":null,"id":29562334035,"truncated":false,"text":"Got rid of Buzz, was a long time coming"},"time_zone":"Moscow","friends_count":79,"profile_background_color":"EBEBEB","id_str":"786017","geo_enabled":true,"followers_count":135,"url":"http:\/\/mishafedoseev.com","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Wed Feb 21 10:26:10 +0000 2007","location":"Ufa, Russia","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/80333940\/LEGO-stud-white.gif","profile_link_color":"a98914","protected":false,"name":"Misha Fedoseev","listed_count":7,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F3F3F3","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/51802097\/n507634436_21222_normal.jpg","id":786017,"statuses_count":2457,"notifications":false,"utc_offset":10800},{"favourites_count":0,"profile_sidebar_border_color":"a8c7f7","description":"To traditional tours what The Daily Show is to CNN \r\n -The New York Times","screen_name":"HahvahdTour","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29482654424","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:57:18 +0000 2010","retweeted":false,"geo":null,"id":29482654424,"truncated":false,"text":"What do Keith Richards and Greg Mankiw have in common? http:\/\/tiny.cc\/pec6x"},"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","id_str":"136849177","followers_count":213,"url":"http:\/\/www.harvardtour.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":15,"lang":"en","created_at":"Sun Apr 25 03:16:00 +0000 2010","location":"Cambridge, MA","statuses_count":115,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":611,"name":"The Hahvahd Tour","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1147074970\/Mem_Hall_normal.png","id":136849177,"geo_enabled":false,"notifications":false,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"a8c7f7","description":"I am a real human being & you can follow my secret diary at the above address - Feel free to leave comments and interact with me. If you don't like then block!","screen_name":"alpha_twenty","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29185555659","source":"\u003Ca href=\"http:\/\/futuretweets.com\" rel=\"nofollow\"\u003E Futuretweets V2\u003C\/a\u003E","retweet_count":null,"created_at":"Sat Oct 30 14:00:05 +0000 2010","retweeted":false,"geo":null,"id":29185555659,"truncated":false,"text":"#secretdiary I'd love to hear from you so please comment on my blog at www.secretdiaryofatwentysomething.co.uk 30OCT2010-15"},"follow_request_sent":false,"time_zone":"London","profile_background_color":"022330","id_str":"197961441","followers_count":219,"url":"http:\/\/www.secretdiaryofatwentysomething.co.uk","profile_use_background_image":true,"profile_text_color":"333333","listed_count":22,"lang":"en","created_at":"Sat Oct 02 23:35:16 +0000 2010","location":"UK","statuses_count":34,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288202850\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":1353,"name":"Alpha","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1136168924\/alpha-symbol_normal.jpg","id":197961441,"geo_enabled":false,"notifications":false,"utc_offset":0},{"favourites_count":0,"profile_sidebar_border_color":"eeeeee","description":"Me.","screen_name":"tiite_fiille","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29480576662","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:33:48 +0000 2010","retweeted":false,"id":29480576662,"truncated":false,"text":"http:\/\/www.facebook.com\/photo.php?fbid=155572251146121&set=a.155567564479923.24280.100000800417761 black butler"},"listed_count":0,"time_zone":null,"statuses_count":156,"profile_background_color":"B2DFDA","id_str":"151840121","show_all_inline_media":false,"notifications":false,"friends_count":1011,"followers_count":74,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"fr","geo_enabled":false,"created_at":"Fri Jun 04 11:20:52 +0000 2010","location":"France","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288720170\/images\/themes\/theme13\/bg.gif","profile_link_color":"93A644","protected":false,"verified":false,"name":"johanna lauria","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1158111097\/Snapshot_20101102_normal.JPG","id":151840121,"utc_offset":null},{"favourites_count":1,"profile_sidebar_border_color":"87bc44","description":"","screen_name":"bensie","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":14148091,"favorited":false,"in_reply_to_user_id_str":"14148091","contributors":null,"in_reply_to_screen_name":"chriseppstein","id_str":"27967131406","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Oct 20 21:47:16 +0000 2010","retweeted":false,"geo":null,"id":27967131406,"truncated":false,"text":"@chriseppstein Best resources for getting started with Compass? Video on home page is SASS-focused, very familiar with HAML\/SASS already."},"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"2C2F30","id_str":"15394959","followers_count":89,"url":"http:\/\/bensie.com","profile_use_background_image":false,"profile_text_color":"000000","listed_count":3,"lang":"en","created_at":"Fri Jul 11 18:34:06 +0000 2008","location":"San Diego","statuses_count":386,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287763590\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"show_all_inline_media":false,"friends_count":213,"name":"James Miller","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/59062402\/IMG_0736_normal.JPG","id":15394959,"geo_enabled":true,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":7,"friends_count":229,"profile_sidebar_border_color":"87bc44","description":"Principal Software Engineer for Disruptor Beam. Berkman Center Technologist. Founding editor of htttp:\/\/www.playaslife.com. Facebook app and game developer. ","screen_name":"jcallina","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29252419528","source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 06:04:25 +0000 2010","retweeted":false,"geo":null,"id":29252419528,"truncated":false,"text":"Our two new dogs are quiet. I think they are planning something."},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","id_str":"1246481","verified":false,"followers_count":425,"url":"http:\/\/www.playaslife.com","follow_request_sent":null,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Thu Mar 15 20:51:14 +0000 2007","location":"Southcoast, MA","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/501482\/The_Lost_Gardens_1600.jpg","profile_link_color":"0000ff","protected":false,"name":"Jason Callina","listed_count":15,"following":null,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/924770848\/profile_normal.jpg","id":1246481,"statuses_count":6377,"notifications":null,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"samz_uciha","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27916617911","source":"web","retweet_count":null,"created_at":"Wed Oct 20 09:55:01 +0000 2010","retweeted":false,"geo":null,"id":27916617911,"truncated":false,"text":"gmana cra ngoprasiin twitter....\n\nagak sulit ne..."},"time_zone":"Jakarta","friends_count":34,"profile_background_color":"C0DEED","id_str":"113199625","geo_enabled":true,"followers_count":0,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Feb 11 01:23:07 +0000 2010","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"samz sasuke","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1132382619\/40168_1252733178872_1845834892_494358_2944417_n_normal.jpg","id":113199625,"statuses_count":3,"notifications":false,"utc_offset":25200},{"favourites_count":1,"profile_sidebar_border_color":"C6E2EE","description":"Former design student turned world traveler.","screen_name":"theobermeister","listed_count":1,"statuses_count":360,"time_zone":"Eastern Time (US & Canada)","show_all_inline_media":false,"friends_count":90,"profile_background_color":"C6E2EE","id_str":"18470183","contributors_enabled":false,"followers_count":58,"url":"http:\/\/wefollow.com\/franzobermeier","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"663B12","lang":"en","created_at":"Tue Dec 30 04:45:48 +0000 2008","location":"Toronto","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme2\/bg.gif","profile_link_color":"1F98C7","protected":false,"follow_request_sent":false,"name":"Franz Obermeier","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112758336\/Pinto_Lake_normal.jpg","id":18470183,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"eeeeee","description":"down to earth kind of girl love hanging out with friends looking for new ones, single right now, to chat msg me on yahoo at natashacampbell987 not email ","screen_name":"CollegeChick988","contributors_enabled":false,"time_zone":"Central Time (US & Canada)","friends_count":1994,"profile_background_color":"B2DFDA","id_str":"200262115","geo_enabled":true,"followers_count":222,"url":"http:\/\/thereptiliansnworldconspiracies.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Fri Oct 08 21:20:18 +0000 2010","location":"united states","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme13\/bg.gif","profile_link_color":"93A644","protected":true,"name":"Jessica Langley","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1140269578\/1.01_normal.jpeg","id":200262115,"statuses_count":5,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Web Product Guy, Internet Entrepreneur, Co-Founder Sportsvite.com & LeagueApps.com","screen_name":"stevelparker","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29044735479","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 01:42:12 +0000 2010","retweeted":false,"geo":null,"id":29044735479,"truncated":false,"text":"Great startup stories last night from @technotheory @paulsingh @Tawheed @hoomanradfar @abatalion at #bootstrapmd - thanks guys"},"time_zone":"Eastern Time (US & Canada)","friends_count":126,"profile_background_color":"C0DEED","id_str":"40695414","geo_enabled":false,"followers_count":49,"url":"http:\/\/sportsvite.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Sun May 17 17:16:22 +0000 2009","location":"Washington DC","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Steve Parker","listed_count":3,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/339473964\/stevep_normal.jpg","id":40695414,"statuses_count":62,"notifications":false,"utc_offset":-18000},{"statuses_count":3073,"favourites_count":733,"profile_sidebar_border_color":"ffffff","description":"A Polish man in Los Angeles carving his own path through life, tech, marketing, entertainment and media... while working tirelessly behind the scenes.","screen_name":"janowski","show_all_inline_media":true,"friends_count":2442,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29046986240","source":"web","retweet_count":null,"created_at":"Fri Oct 29 02:10:30 +0000 2010","retweeted":false,"geo":null,"id":29046986240,"truncated":false,"text":"\u201cIdealism is what precedes experience.\u201d \u2014 David T. Wolf"},"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"profile_background_color":"C0DEED","id_str":"15382522","followers_count":2277,"url":"http:\/\/www.linkedin.com\/in\/marcinjanowski","verified":false,"profile_use_background_image":true,"profile_text_color":"000000","follow_request_sent":false,"lang":"en","created_at":"Thu Jul 10 20:08:42 +0000 2008","location":"Pasadena, CA","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/47338197\/DSCF0267_1.jpg","profile_link_color":"125beb","protected":false,"name":"Marcin Janowski","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"d4d4d4","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/999600957\/IMG_18-web_normal.jpg","id":15382522,"listed_count":32,"notifications":false,"utc_offset":-28800},{"favourites_count":1315,"friends_count":1563,"profile_sidebar_border_color":"5ED4DC","description":"-TITULAR.-","screen_name":"a4mfightinghawk","geo_enabled":true,"time_zone":"Buenos Aires","follow_request_sent":false,"profile_background_color":"0099B9","id_str":"166736569","verified":false,"followers_count":38,"url":null,"profile_use_background_image":true,"profile_text_color":"3C3940","lang":"es","created_at":"Wed Jul 14 21:57:45 +0000 2010","location":"ARGENTINA","listed_count":4,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":true,"statuses_count":5209,"name":"M Giletta Marconi","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_6_normal.png","id":166736569,"contributors_enabled":false,"notifications":false,"utc_offset":-10800},{"contributors_enabled":false,"favourites_count":8,"profile_sidebar_border_color":"eeeeee","description":"Writer. Extently musician. Dedicated to political campaigning, civil rights and individualism, atheism and humanism, literature, philosophy and culture.","screen_name":"jjarichardson","friends_count":1588,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29531462802","source":"web","retweeted_status":{"in_reply_to_status_id_str":"29514030228","place":null,"coordinates":null,"in_reply_to_status_id":29514030228,"in_reply_to_user_id":24447643,"favorited":false,"in_reply_to_user_id_str":"24447643","contributors":null,"in_reply_to_screen_name":"eddieizzard","id_str":"29514559017","source":"web","retweet_count":null,"created_at":"Tue Nov 02 23:03:35 +0000 2010","retweeted":false,"geo":null,"id":29514559017,"truncated":false,"text":"@eddieizzard Eddie will you retweet his please ?? peace xxx http:\/\/www.avaaz.org\/en\/24h_to_save_sakineh"},"retweet_count":null,"created_at":"Wed Nov 03 02:20:02 +0000 2010","retweeted":false,"geo":null,"id":29531462802,"truncated":false,"text":"RT @Digital_Devils: @eddieizzard Eddie will you retweet his please ?? peace xxx http:\/\/www.avaaz.org\/en\/24h_to_save_sakineh"},"time_zone":"London","verified":false,"profile_background_color":"131516","id_str":"47625700","follow_request_sent":false,"followers_count":516,"url":"http:\/\/jjarichardson.tumblr.com\/","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Tue Jun 16 13:41:00 +0000 2009","location":"East Yorkshire, England","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/165752853\/005.JPG","profile_link_color":"009999","protected":false,"listed_count":18,"name":"Jacob Richardson","statuses_count":5370,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1157672351\/38516_147566095256327_100000088118511_431519_7709287_n_normal.jpg","id":47625700,"show_all_inline_media":true,"notifications":false,"utc_offset":0},{"listed_count":455,"favourites_count":85,"profile_sidebar_border_color":"87bc44","description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","screen_name":"technoweenie","statuses_count":11556,"status":{"in_reply_to_status_id_str":"29546073529","place":null,"coordinates":null,"in_reply_to_status_id":29546073529,"in_reply_to_user_id":10038,"favorited":false,"in_reply_to_user_id_str":"10038","contributors":null,"in_reply_to_screen_name":"jasonwatkinspdx","id_str":"29546313496","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 06:09:20 +0000 2010","retweeted":false,"geo":null,"id":29546313496,"truncated":false,"text":"@jasonwatkinspdx yea we'll be blogging and releasing as much OSS as we can"},"show_all_inline_media":false,"time_zone":"Central Time (US & Canada)","friends_count":190,"contributors_enabled":false,"profile_background_color":"FFFFFF","id_str":"780561","geo_enabled":true,"followers_count":4019,"url":"http:\/\/techno-weenie.net","profile_use_background_image":true,"profile_text_color":"000000","lang":"en","verified":false,"created_at":"Mon Feb 19 17:12:49 +0000 2007","location":"sf","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","profile_link_color":"0000ff","protected":false,"name":"rick","following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1153550035\/rick-rar-talk-1_normal.png","id":780561,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":false,"favourites_count":0,"friends_count":1999,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"_lucky_96_","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29077935039","source":"\u003Ca href=\"http:\/\/www.google.com\/support\/youtube\/bin\/answer.py?hl=en&answer=164577\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 11:25:00 +0000 2010","retweeted":false,"geo":null,"id":29077935039,"truncated":false,"text":"Ich mag ein YouTube-Video. -- Lets Play Bioshock 2 [Blind] #50 Deutsch - Viel Viel ADAM http:\/\/youtu.be\/c6LBvKkgFe8?a"},"geo_enabled":false,"time_zone":"Berlin","profile_background_color":"C0DEED","id_str":"194640716","verified":false,"followers_count":132,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"de","created_at":"Fri Sep 24 16:48:04 +0000 2010","location":"Miltenberg","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288217225\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Lucas Renz","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1131778295\/denker_normal.jpg","id":194640716,"statuses_count":200,"notifications":false,"utc_offset":3600},{"contributors_enabled":false,"time_zone":null,"description":"","favourites_count":0,"profile_sidebar_fill_color":"EADEAA","followers_count":2,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"created_at":"Fri Oct 15 20:46:51 +0000 2010","in_reply_to_user_id":64483364,"favorited":false,"contributors":null,"coordinates":null,"in_reply_to_screen_name":"DebraJOnline","id":27476762875,"text":"@DebraJOnline http:\/\/is.gd\/g3G7O Tax relief on pensions is reduced"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"D9B17E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme8\/bg.gif","lang":"en","created_at":"Mon Oct 11 01:03:53 +0000 2010","profile_background_color":"8B542B","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1141884688\/1317_normal.jpg","listed_count":0,"profile_text_color":"333333","name":"Tambra","statuses_count":3,"following":false,"screen_name":"ktambravo2s","id":201076260,"show_all_inline_media":false,"utc_offset":null,"friends_count":20,"profile_link_color":"9D582E"},{"favourites_count":3,"profile_sidebar_border_color":"eeeeee","description":"It is what it is...","screen_name":"crm11four","listed_count":2,"time_zone":"Atlantic Time (Canada)","statuses_count":3508,"profile_background_color":"131516","id_str":"86057721","show_all_inline_media":false,"friends_count":98,"followers_count":43,"url":"http:\/\/claritty.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Thu Oct 29 12:44:53 +0000 2009","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme14\/bg.gif","profile_link_color":"009999","protected":true,"verified":false,"name":"Jose","follow_request_sent":null,"following":null,"profile_background_tile":true,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1143420743\/CRM114_normal.jpg","id":86057721,"notifications":null,"utc_offset":-14400},{"contributors_enabled":false,"favourites_count":1,"profile_sidebar_border_color":"86A4A6","description":"\u307e\u3060\u5922\u3092\u63a2\u3057\u3066\u307e\u3059\u3002\r\n\u6700\u8fd1\u3001\u6687\u306a\u306e\u306f\u4eba\u751f\u306e\u76ee\u7684\u3092\u5931\u3063\u3066\u3044\u308b\u304b\u3089\u3060\u3068\u304a\u3082\u3044\u307e\u3059\u3002\r\n\u5168\u90e8\u3001\u5618\u3067\u3082\u69cb\u308f\u306a\u3044\u30fb\u30fb\u81ea\u4fe1\u3082\u306a\u304f\u3001\u6c17\u6301\u3061\u304c\u5b9a\u307e\u3089\u306a\u3044\u3001\u3044\u3044\u52a0\u6e1b\u306a\u751f\u304d\u69d8\u3060\u3002\r\n\u3068\u306b\u304b\u304f\u3001\u6687\u3002","screen_name":"deblocking","geo_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29575538623","source":"\u003Ca href=\"http:\/\/www.hatena.ne.jp\/guide\/twitter\" rel=\"nofollow\"\u003EHatena\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:21:30 +0000 2010","retweeted":false,"geo":null,"id":29575538623,"truncated":false,"text":"\u4eca\u304b\u3089 F# \u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3088\u3046\u3002 \/ Visual F# Express Edition \u306e\u5165\u624b\u65b9\u6cd5 - (hatena (diary \u2019Nobuhisa)) http:\/\/htn.to\/Jeb2kL"},"time_zone":"Osaka","verified":false,"profile_background_color":"709397","id_str":"15045494","follow_request_sent":false,"followers_count":172,"url":"http:\/\/d.hatena.ne.jp\/DEBLOCKING\/","profile_use_background_image":true,"profile_text_color":"333333","lang":"ja","created_at":"Sun Jun 08 08:49:56 +0000 2008","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288726349\/images\/themes\/theme6\/bg.gif","profile_link_color":"FF3300","protected":false,"listed_count":2,"name":"deblocking","statuses_count":126,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1145055437\/Test_normal.png","id":15045494,"show_all_inline_media":false,"notifications":false,"utc_offset":32400,"friends_count":951},{"show_all_inline_media":false,"favourites_count":900,"profile_sidebar_border_color":"BDDCAD","description":"Incubator","screen_name":"ClarendonCare","contributors_enabled":false,"geo_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29381112596","source":"web","retweet_count":null,"created_at":"Mon Nov 01 15:15:53 +0000 2010","retweeted":false,"geo":null,"id":29381112596,"truncated":false,"text":"Mid-morning run."},"time_zone":"Quito","profile_background_color":"9AE4E8","id_str":"53227554","friends_count":1999,"followers_count":319,"url":"http:\/\/www.clarendoncaregroup.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Jul 02 23:41:23 +0000 2009","location":"Tribeca, Boston, DC, Palo Alto","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28732562\/CommunalRed.jpg","profile_link_color":"0084B4","protected":false,"name":"ClarendonMediaGroup","listed_count":8,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/357400492\/CommunalRed_normal.jpg","id":53227554,"statuses_count":569,"notifications":false,"utc_offset":-18000},{"follow_request_sent":false,"favourites_count":725,"profile_sidebar_border_color":"a8c7f7","description":"CEO Twimbow.com | Sitofono.com, blogger, mac, geek, early adopter, italian, san francisco lover, twitter addict. I love gadgets.","screen_name":"filos","status":{"in_reply_to_status_id_str":"29569875973","place":null,"coordinates":null,"in_reply_to_status_id":29569875973,"in_reply_to_user_id":6513952,"favorited":false,"in_reply_to_user_id_str":"6513952","contributors":null,"in_reply_to_screen_name":"florianseroussi","id_str":"29574353218","source":"\u003Ca href=\"http:\/\/tweetsride.com\/\" rel=\"nofollow\"\u003ETweetsRide\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:07:48 +0000 2010","retweeted":false,"geo":null,"id":29574353218,"truncated":false,"text":"@florianseroussi Simone :-) can't believe it's already four years..."},"time_zone":"Rome","profile_background_color":"022330","id_str":"788994","listed_count":254,"followers_count":3937,"url":"http:\/\/about.me\/filos","statuses_count":31543,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Thu Feb 22 16:56:15 +0000 2007","friends_count":3379,"location":"\u00dcT: 39.294344,9.02292","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/130496372\/twimbowback-filos.png","profile_link_color":"0084B4","protected":false,"geo_enabled":true,"name":"Luca Filigheddu","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/803884118\/primopiano_normal.png","id":788994,"verified":false,"notifications":false,"utc_offset":3600},{"favourites_count":0,"friends_count":239,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"jhcesi","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29567192251","source":"\u003Ca href=\"http:\/\/www.newarkadvocate.com\" rel=\"nofollow\"\u003ENewarkAdvocate Login\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 12:41:32 +0000 2010","retweeted":false,"geo":null,"id":29567192251,"truncated":false,"text":"Thank you for taking the time to study and understand the First Amendment with your students. What a wonderful... http:\/\/tinyurl.com\/24alb23"},"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"93227995","verified":false,"followers_count":37,"url":"http:\/\/columiacountypc.org","profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat Nov 28 17:54:46 +0000 2009","location":"Lake City, FL","listed_count":0,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":86,"name":"Janet Horton","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1121068940\/My_Head_shot_bw_normal.jpg","id":93227995,"contributors_enabled":false,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Estudante de Bacharelado em Ci\u00eancia e Tecnologia - UFERSA\r\n","screen_name":"ARKANZO","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29537798690","source":"web","retweet_count":null,"created_at":"Wed Nov 03 03:43:47 +0000 2010","retweeted":false,"geo":null,"id":29537798690,"truncated":false,"text":"mais de mil vagas para a #UFERSA \u00e9 s\u00f3 fazer o #ENEM"},"time_zone":"Brasilia","friends_count":1234,"profile_background_color":"C0DEED","id_str":"76032505","geo_enabled":true,"followers_count":109,"url":"http:\/\/www.engsouza.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"es","verified":false,"created_at":"Mon Sep 21 13:53:00 +0000 2009","location":"Rio Grande do Norte","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/151393182\/air_show.jpg","profile_link_color":"0084B4","protected":false,"name":"ANDR\u00c9 FELIPE","listed_count":1,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1108670414\/p_normal.jpg","id":76032505,"statuses_count":216,"notifications":false,"utc_offset":-10800},{"favourites_count":0,"profile_sidebar_border_color":"ff9d5c","description":"UI\/UX consulting, interactive and application design, marketing and campaign execution, analytics and analysis.","screen_name":"GestaltLabs","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29502700203","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29467133255","source":"\u003Ca href=\"http:\/\/www.lomalogue.com\" rel=\"nofollow\"\u003Enewsycombinator\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 13:00:06 +0000 2010","retweeted":false,"id":29467133255,"truncated":false,"text":"Expedia on how one extra data field can cost $12m http:\/\/j.mp\/ac1LCp"},"retweet_count":null,"created_at":"Tue Nov 02 20:29:17 +0000 2010","retweeted":false,"id":29502700203,"truncated":false,"text":"RT @newsycombinator: Expedia on how one extra data field can cost $12m http:\/\/j.mp\/ac1LCp"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"ffffff","id_str":"154389687","notifications":false,"followers_count":46,"url":"http:\/\/gestaltlabs.com","profile_use_background_image":true,"profile_text_color":"212121","listed_count":3,"lang":"en","created_at":"Fri Jun 11 03:23:02 +0000 2010","location":"Dallas, TX","statuses_count":36,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/157217230\/gestalt-twitter.gif","profile_link_color":"ed9600","protected":false,"show_all_inline_media":false,"friends_count":148,"name":"Gestalt Labs","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ebebeb","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1136608040\/gestalt-twit-avatar_normal.png","id":154389687,"geo_enabled":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"EEEEEE","description":"Code For America, chatreach, gov 2.0, startups, Coding, HomoPower, Swim, Run, Food, Cooking, StartupWeekend","screen_name":"danmelton","verified":false,"status":{"in_reply_to_status_id_str":"29513186153","place":null,"coordinates":null,"in_reply_to_status_id":29513186153,"in_reply_to_user_id":9429332,"favorited":false,"in_reply_to_user_id_str":"9429332","contributors":null,"in_reply_to_screen_name":"tylergillies","id_str":"29519503759","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 00:00:03 +0000 2010","retweeted":false,"geo":null,"id":29519503759,"truncated":false,"text":"@tylergillies balsmiq is awesome"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"ACDED6","id_str":"14239131","followers_count":852,"url":null,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":49,"lang":"en","created_at":"Thu Mar 27 22:02:01 +0000 2008","location":"San Francisco","statuses_count":943,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme18\/bg.gif","profile_link_color":"038543","protected":false,"show_all_inline_media":false,"friends_count":864,"name":"danmelton","contributors_enabled":false,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"F6F6F6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1083055627\/dan_normal.jpeg","id":14239131,"geo_enabled":false,"notifications":false,"utc_offset":-21600},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Relish allows you to browse, search, and organize your Cucumber features on the web. Made by @justinko and @mattwynne","screen_name":"relishapp","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29116181170","source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":189057495,"favorited":false,"in_reply_to_user_id_str":"189057495","contributors":null,"in_reply_to_screen_name":"relishapp","id_str":"29110632935","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 18:04:34 +0000 2010","retweeted":false,"geo":null,"id":29110632935,"truncated":false,"text":"@relishapp Plugged you guys in my article on the future of documentation http:\/\/bit.ly\/dp-docs"},"retweet_count":null,"created_at":"Fri Oct 29 19:25:51 +0000 2010","retweeted":false,"geo":null,"id":29116181170,"truncated":false,"text":"RT @joefiorini: @relishapp Plugged you guys in my article on the future of documentation http:\/\/bit.ly\/dp-docs"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"189057495","listed_count":13,"followers_count":164,"url":"http:\/\/relishapp.com","statuses_count":6,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Fri Sep 10 08:00:29 +0000 2010","friends_count":1177,"location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288031688\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"geo_enabled":false,"name":"Relish","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1127263854\/twitter-logo_normal.png","id":189057495,"verified":false,"notifications":false,"utc_offset":-18000},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"rspec","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29414943182","source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Nov 01 23:05:39 +0000 2010","retweeted":false,"geo":null,"id":29414943182,"truncated":false,"text":"Did you know RSpec can generate instances of a class for you? http:\/\/cot.ag\/aQnVNe ^JK"},"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","id_str":"29239854","listed_count":37,"followers_count":547,"url":"http:\/\/rspec.info","statuses_count":71,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Apr 06 16:56:09 +0000 2009","location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"RSpec - BDD for Ruby","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_0_normal.png","id":29239854,"geo_enabled":false,"notifications":false,"utc_offset":-21600,"friends_count":1458},{"geo_enabled":false,"description":"","screen_name":"laserlemon","time_zone":"Eastern Time (US & Canada)","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 17:04:19 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29488235270,"in_reply_to_status_id_str":null,"id_str":"29488235270","text":"Have you ever caught a leaf in your hand as it fell from a tree? Well as of today, I have."},"verified":false,"profile_background_color":"efeeeb","follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_text_color":"343330","url":"http:\/\/github.com\/laserlemon","lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","created_at":"Thu Jun 18 17:59:32 +0000 2009","profile_link_color":"339933","location":"Holland, Michigan","listed_count":4,"protected":false,"statuses_count":384,"profile_background_tile":false,"profile_sidebar_fill_color":"deddda","name":"Steve Richert","show_all_inline_media":true,"following":true,"friends_count":94,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/269521476\/Lemon_normal.jpg","id":48431692,"id_str":"48431692","contributors_enabled":false,"utc_offset":-18000,"favourites_count":0,"profile_sidebar_border_color":"deddda","followers_count":58},{"follow_request_sent":false,"favourites_count":188,"profile_sidebar_border_color":"fff8ad","description":"ruby, rails, node, nosql, husband, father, golfer. not necessarily in that order. (personal: @steveagalloco) if you gotta ask, you ain't got it","screen_name":"anno","verified":false,"status":{"in_reply_to_status_id_str":"29478662567","place":null,"coordinates":null,"in_reply_to_status_id":29478662567,"in_reply_to_user_id":2064111,"favorited":false,"in_reply_to_user_id_str":"2064111","contributors":null,"in_reply_to_screen_name":"gregnewman","id_str":"29480622189","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:34:19 +0000 2010","retweeted":false,"geo":null,"id":29480622189,"truncated":false,"text":"@gregnewman Cheeseburger in Paradise"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"e0ddc3","id_str":"4618","listed_count":11,"followers_count":293,"url":"http:\/\/www.beforeitwasround.com","statuses_count":1291,"profile_use_background_image":false,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Wed Aug 23 01:12:20 +0000 2006","location":"Charlotte, NC","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/140563920\/116775_0147_ful.jpg","profile_link_color":"ab321d","protected":false,"friends_count":337,"name":"Steve Agalloco","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"abbf50","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099062107\/perry_the_platypus_normal.png","id":4618,"geo_enabled":true,"notifications":false,"utc_offset":-18000},{"favourites_count":1,"friends_count":42,"profile_sidebar_border_color":"C0DEED","description":"fighting movies are the greatest!Van Damme,Bruce Lee,etc...33333","screen_name":"NickytheRocky","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29293750114","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 16:57:49 +0000 2010","retweeted":false,"geo":null,"id":29293750114,"truncated":false,"text":"CS Chat - A Small Chat Application http:\/\/t.co\/XwzcrCA via @AddThis"},"geo_enabled":false,"time_zone":null,"follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"200087716","verified":false,"followers_count":14,"url":null,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Oct 08 12:26:08 +0000 2010","location":"Srbac","listed_count":1,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":13,"name":"Nicky Tatic","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1139973527\/matura2_normal.jpg","id":200087716,"contributors_enabled":false,"notifications":false,"utc_offset":null},{"follow_request_sent":false,"description":"Operations Director, Code for America. Wife and Mommy too! ","screen_name":"mfreilly","time_zone":"Pacific Time (US & Canada)","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"created_at":"Mon Nov 01 22:06:06 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29410324193,"in_reply_to_status_id_str":null,"id_str":"29410324193","text":"SO exciting! RT @CodeforAmerica: Introducing the Inaugural Class of @CodeforAmerica Fellows: http:\/\/bit.ly\/aJysDj #gov20 #opengov"},"profile_background_color":"C6E2EE","listed_count":7,"notifications":false,"profile_use_background_image":true,"profile_text_color":"663B12","url":"http:\/\/www.codeforamerica.org","statuses_count":244,"show_all_inline_media":false,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287437169\/images\/themes\/theme2\/bg.gif","created_at":"Fri Aug 15 19:27:20 +0000 2008","friends_count":136,"profile_link_color":"1F98C7","location":"Mill Valley, CA","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","name":"meghan","following":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/60795320\/Reilly_Photo_normal.JPG","id":15866539,"id_str":"15866539","verified":false,"utc_offset":-28800,"favourites_count":0,"profile_sidebar_border_color":"C6E2EE","followers_count":221},{"favourites_count":2,"profile_sidebar_border_color":"70D4F3","description":"hacking the perpetual gibson","screen_name":"maxogden","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29546877531","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 06:20:59 +0000 2010","retweeted":false,"geo":null,"id":29546877531,"truncated":false,"text":"Way to go @urbanairship. Pdx rules lately"},"listed_count":64,"time_zone":"Alaska","statuses_count":966,"profile_background_color":"000000","id_str":"12241752","show_all_inline_media":false,"friends_count":166,"followers_count":563,"url":"http:\/\/www.maxogden.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":true,"created_at":"Mon Jan 14 23:11:21 +0000 2008","location":"portland oregon","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2527748\/tiling.gif","profile_link_color":"17c6ee","protected":false,"verified":false,"name":"max ogden","follow_request_sent":false,"following":true,"profile_background_tile":true,"profile_sidebar_fill_color":"b5e8fc","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1089502710\/maxcropped_normal.png","id":12241752,"notifications":false,"utc_offset":-32400},{"show_all_inline_media":false,"favourites_count":37,"profile_sidebar_border_color":"C0DEED","description":null,"screen_name":"zuzmo","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29573946209","source":"\u003Ca href=\"http:\/\/www.ubuntu.com\" rel=\"nofollow\"\u003EUbuntu\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:03:10 +0000 2010","retweeted":false,"geo":null,"id":29573946209,"truncated":false,"text":"m\u00e9g keresek php+wordpress programoz\u00f3t! f\u0151\u00e1ll\u00e1s, bp. azonnal :)"},"time_zone":"Budapest","friends_count":454,"profile_background_color":"C0DEED","id_str":"24946423","verified":false,"followers_count":168,"url":null,"follow_request_sent":false,"geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Tue Mar 17 20:20:27 +0000 2009","location":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"G\u00e1bor Nagymajt\u00e9nyi","listed_count":2,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_5_normal.png","id":24946423,"statuses_count":3172,"notifications":false,"utc_offset":3600},{"description":"I like to build startups from scratch","screen_name":"aKlizzy","listed_count":0,"time_zone":null,"status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 02:32:33 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29431494952,"in_reply_to_status_id_str":null,"id_str":"29431494952","text":"GIANTS!!! Who's getting MVP? I'd love to hear what everyone thinks"},"statuses_count":107,"profile_background_color":"ACDED6","show_all_inline_media":false,"friends_count":65,"contributors_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"705f5f","url":"http:\/\/www.linkedin.com\/in\/anthonykline1\/","geo_enabled":false,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","created_at":"Tue Dec 15 03:56:01 +0000 2009","profile_link_color":"038543","location":"\u00dcT: 37.77433,-122.399143","verified":false,"protected":false,"follow_request_sent":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F6F6F6","name":"Anthony Kline","following":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1129237991\/twitter_normal.jpg","id":96907689,"id_str":"96907689","utc_offset":null,"favourites_count":0,"profile_sidebar_border_color":"EEEEEE","followers_count":14},{"statuses_count":1655,"favourites_count":2580,"profile_sidebar_border_color":"181A1E","description":"Cloud Architect @Dell and Founder of Cloud Co.s @Surgient & @Hyper9 Interests #Cloud #Ruby #VMware #NodeJS #Azure #Erlang #Networking #Virtualization #DevOps","screen_name":"mccrory","show_all_inline_media":false,"friends_count":1263,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29564298419","source":"\u003Ca href=\"http:\/\/www.osfoora.com\" rel=\"nofollow\"\u003EOsfoora for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 12:02:25 +0000 2010","retweeted":false,"geo":null,"id":29564298419,"truncated":false,"text":"I don't buy the reason of backup & recov.>RT @ZeusTechnology: report shows orgs reluct. to virt business critical apps: http:\/\/cot.ag\/bPQd2p"},"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"profile_background_color":"1A1B1F","id_str":"16468695","followers_count":493,"url":"http:\/\/blog.mccrory.me","verified":false,"profile_use_background_image":true,"profile_text_color":"666666","follow_request_sent":false,"lang":"en","created_at":"Fri Sep 26 14:59:36 +0000 2008","location":"Austin, Texas","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288026948\/images\/themes\/theme9\/bg.gif","profile_link_color":"2FC2EF","protected":false,"name":"Dave McCrory","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/76084835\/web-profile_normal.jpg","id":16468695,"listed_count":35,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":false,"favourites_count":0,"friends_count":971,"profile_sidebar_border_color":"86A4A6","description":"Founder and CEO of the Brechtmann International Corporation, specialized society in nanotechnologies.","screen_name":"Brechtmann","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"26479396378","source":"web","retweet_count":null,"created_at":"Tue Oct 05 18:19:40 +0000 2010","retweeted":false,"geo":null,"id":26479396378,"truncated":false,"text":"I'm speaking in Chicago this Thursday !"},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"709397","id_str":"193752912","verified":false,"followers_count":258,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"fr","created_at":"Wed Sep 22 16:15:06 +0000 2010","location":"New-York, Paris, Everywhere.","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288660386\/images\/themes\/theme6\/bg.gif","profile_link_color":"01527d","protected":false,"name":"Nathaniel Brechtmann","listed_count":5,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"97c5c7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1131512877\/brechtmann_normal.png","id":193752912,"statuses_count":18,"notifications":false,"utc_offset":-18000},{"description":"","screen_name":"puuj","verified":false,"profile_sidebar_border_color":"a8c7f7","follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":0,"notifications":false,"profile_background_color":"022330","url":null,"listed_count":3,"lang":"en","profile_use_background_image":true,"created_at":"Wed Aug 29 23:00:18 +0000 2007","profile_text_color":"333333","location":"Berwyn Heights, MD","statuses_count":30,"protected":true,"show_all_inline_media":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme15\/bg.png","friends_count":125,"profile_link_color":"0084B4","name":"puuj","contributors_enabled":false,"following":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/89711717\/jayroll_normal.jpg","id":8521632,"id_str":"8521632","geo_enabled":true,"profile_background_tile":false,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC","followers_count":46},{"contributors_enabled":false,"time_zone":null,"description":null,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":2,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Sep 30 16:23:07 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":25994611269,"id_str":"25994611269","text":"Free Gifts http:\/\/tinyurl.com\/2g5u5hm"},"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","follow_request_sent":false,"url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Wed Sep 29 15:31:11 +0000 2010","profile_background_color":"C0DEED","location":null,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_2_normal.png","listed_count":0,"friends_count":124,"profile_text_color":"333333","name":"Adolph Leopold","statuses_count":1,"following":false,"screen_name":"Tulvgatoeey","id":196635483,"id_str":"196635483","show_all_inline_media":false,"utc_offset":null,"favourites_count":0,"profile_link_color":"0084B4"},{"profile_background_color":"000000","description":"His voice sounds like a melding of trey songz and chris brown. Injected with our island flavour of course.\r\nChec him out cause he will be the healer u need.","screen_name":"reyoungprince","status":{"contributors":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"106andpark","retweet_count":null,"geo":null,"retweeted":false,"source":"web","in_reply_to_status_id":29387588670,"created_at":"Mon Nov 01 16:38:22 +0000 2010","in_reply_to_user_id":30309979,"truncated":false,"in_reply_to_status_id_str":"29387588670","favorited":false,"id":29387850370,"in_reply_to_user_id_str":"30309979","id_str":"29387850370","text":"@106andpark @reyoungprince I feel like taking my girl shopping for the first time lol. Thats what i feel like doing."},"listed_count":0,"profile_use_background_image":true,"profile_text_color":"0013e6","statuses_count":40,"show_all_inline_media":false,"notifications":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/155759187\/denville.jpg","friends_count":92,"profile_link_color":"b30009","url":null,"contributors_enabled":false,"lang":"en","geo_enabled":false,"profile_background_tile":true,"favourites_count":24,"created_at":"Thu Sep 30 02:09:40 +0000 2010","profile_sidebar_fill_color":"080808","location":"World","protected":false,"verified":false,"profile_sidebar_border_color":"3a9c3d","name":"Denville","follow_request_sent":false,"following":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1134152886\/denville_normal.jpg","id":196858370,"id_str":"196858370","time_zone":"Quito","utc_offset":-18000,"followers_count":21},{"favourites_count":11,"profile_sidebar_border_color":"C0DEED","description":"Actor, Scriptwriter & Voiceover Specialist, Martial Art Freak, Laptop Nerd and Good Teeth SPARDA ARCHANGEL...LOL","screen_name":"ARKYHAEL","listed_count":0,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29373714787","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Nov 01 13:51:10 +0000 2010","retweeted":false,"id":29373714787,"truncated":false,"text":"darth maul(seven dust) http:\/\/t.co\/M37taT0 via @youtube\r\nall my life O;-]"},"statuses_count":284,"time_zone":"London","show_all_inline_media":false,"friends_count":111,"profile_background_color":"C0DEED","id_str":"175127322","contributors_enabled":false,"notifications":null,"followers_count":11,"url":"http:\/\/fivezs.com","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Thu Aug 05 18:19:27 +0000 2010","location":"CHELSEA","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/147013040\/ArchAngel_Arkhael_The_Descerning_Heart_MY_SPIRIT.jpg","profile_link_color":"0084B4","protected":false,"follow_request_sent":null,"name":"Stephen Awaritefe","following":null,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1109476688\/ArchAngel_Arkhael_The_Descerning_Heart_MY_SPIRIT_normal.jpg","id":175127322,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":0,"friends_count":211,"profile_sidebar_border_color":"a8c7f7","description":"Globetrotting web developer and loving every minute of it","screen_name":"brettgoulder","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":2514731,"favorited":false,"in_reply_to_user_id_str":"2514731","contributors":null,"in_reply_to_screen_name":"toolmantim","id_str":"29568036194","source":"web","retweet_count":null,"created_at":"Wed Nov 03 12:52:19 +0000 2010","retweeted":false,"geo":null,"id":29568036194,"truncated":false,"text":"@toolmantim which hotel are you staying at for #sxsw"},"geo_enabled":false,"time_zone":"Sydney","profile_background_color":"022330","id_str":"16257828","verified":false,"followers_count":124,"url":"http:\/\/www.brettgoulder.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Sep 12 15:35:11 +0000 2008","location":"Sydney, Australia","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"brettgoulder","listed_count":16,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/389356905\/calvin_and_hobbes_normal.jpg","id":16257828,"statuses_count":1156,"notifications":false,"utc_offset":36000},{"favourites_count":0,"friends_count":40,"profile_sidebar_border_color":"CC3366","description":"soltera soy cristiana evangelicapentecostaltengo 25a\u00f1os soy educadora y misionera para alcanzar a los inalcanzables por jesucristo el anelo de dios pommmmmmmmmm","screen_name":"FZUJKL","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"25814772082","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"16084112660","source":"web","retweet_count":null,"created_at":"Sun Jun 13 16:58:44 +0000 2010","retweeted":false,"geo":null,"id":16084112660,"truncated":false,"text":"Ronaldo>>>>>>>>>>"},"retweet_count":null,"created_at":"Tue Sep 28 19:52:12 +0000 2010","retweeted":false,"geo":null,"id":25814772082,"truncated":false,"text":"RT @AnthonnyLucas: Ronaldo>>>>>>>>>>"},"geo_enabled":false,"time_zone":null,"follow_request_sent":false,"profile_background_color":"FF6699","id_str":"196276727","verified":false,"followers_count":0,"url":null,"profile_use_background_image":true,"profile_text_color":"362720","lang":"es","created_at":"Tue Sep 28 19:03:49 +0000 2010","location":"venezuela","listed_count":0,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme11\/bg.gif","profile_link_color":"B40B43","protected":false,"statuses_count":1,"name":"JENNIFER MARGARITA","show_all_inline_media":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"E5507E","profile_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/default_profile_3_normal.png","id":196276727,"contributors_enabled":false,"notifications":false,"utc_offset":null},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Tweeting about how we are helping web start ups to go faster!","screen_name":"ohstudio","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29015537856","source":"\u003Ca href=\"http:\/\/wefollow.com\" rel=\"nofollow\"\u003EWeFollow\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Oct 28 19:09:15 +0000 2010","retweeted":false,"geo":null,"id":29015537856,"truncated":false,"text":"Just added myself to the http:\/\/wefollow.com twitter directory under: #rosario_argentina #tech #entrepreneur #startup #web #op"},"follow_request_sent":false,"time_zone":"Buenos Aires","profile_background_color":"969696","id_str":"83521076","followers_count":225,"url":"http:\/\/wefollow.com\/ohstudio","profile_use_background_image":true,"profile_text_color":"333333","listed_count":10,"lang":"en","created_at":"Mon Oct 19 04:23:02 +0000 2009","location":"Argentina","statuses_count":274,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70298842\/Oh_TWITTER2.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":957,"name":"Oh!STUDIO's Team","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/735633540\/0e2cf89_normal.png","id":83521076,"geo_enabled":true,"notifications":false,"utc_offset":-10800},{"follow_request_sent":false,"favourites_count":3,"profile_sidebar_border_color":"829D5E","description":"Ninja web developer. Lovin' CakePHP, Rails, jQuery, and other funtastic stuffs!","screen_name":"joelmoss","status":{"in_reply_to_status_id_str":"29502703296","place":null,"coordinates":null,"in_reply_to_status_id":29502703296,"in_reply_to_user_id":21300475,"favorited":false,"in_reply_to_user_id_str":"21300475","contributors":null,"in_reply_to_screen_name":"bhnoll","id_str":"29514806387","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 23:06:29 +0000 2010","retweeted":false,"geo":null,"id":29514806387,"truncated":false,"text":"@bhnoll Was that a tweet I just saw from you? ;)"},"time_zone":"London","profile_background_color":"352726","id_str":"867511","listed_count":52,"followers_count":544,"url":"http:\/\/developwithstyle.com","statuses_count":3678,"profile_use_background_image":true,"profile_text_color":"3E4415","show_all_inline_media":false,"lang":"en","created_at":"Sat Mar 10 11:31:53 +0000 2007","friends_count":227,"location":"iPhone: 53.687012,-2.624039","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","profile_link_color":"D02B55","protected":false,"geo_enabled":true,"name":"Joel Moss","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"99CC33","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/585776954\/pocoyo_avatar_normal.png","id":867511,"verified":false,"notifications":false,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":574,"friends_count":676,"profile_sidebar_border_color":"ffffff","description":"rubyist, coffeescripter, jsonista, clojurian, cyclist, boulderite. starting @DocuSwarm. often thinks the old fashioned way, with a pen & a paper notebook","screen_name":"benatkin","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29525858949","source":"web","retweet_count":null,"created_at":"Wed Nov 03 01:14:26 +0000 2010","retweeted":false,"geo":null,"id":29525858949,"truncated":false,"text":"Class Action Suits: a way for lawyers to spam zillions of people about crap they don't care about. (90%+ of the time) #GoogleBuzz"},"geo_enabled":true,"time_zone":"Mountain Time (US & Canada)","profile_background_color":"ffffff","id_str":"64218381","verified":false,"followers_count":672,"url":"http:\/\/benatkin.com\/","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"000000","lang":"en","created_at":"Sun Aug 09 17:58:37 +0000 2009","location":"Boulder & Denver","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/152793567\/nwblackbird_520_51.jpg","profile_link_color":"0900ff","protected":false,"name":"Ben A\u03c4kin","listed_count":75,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1140175662\/jsonista_normal.jpg","id":64218381,"statuses_count":4419,"notifications":false,"utc_offset":-25200},{"favourites_count":17,"profile_sidebar_border_color":"bfbfbf","description":"Brought to you by @adamstac and @pengwynn, The Changelog is a blog and weekly podcast about what's fresh and new in open source.","screen_name":"changelogshow","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29552985229","source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 08:35:05 +0000 2010","retweeted":false,"geo":null,"id":29552985229,"truncated":false,"text":"RT @smashingmag: Is IE9 really the most HTML5 Compatible Browser? http:\/\/is.gd\/gCFDh and http:\/\/is.gd\/gEw1I (thanks, @tomantonis)"},"time_zone":"Mountain Time (US & Canada)","listed_count":171,"profile_background_color":"ffffff","id_str":"90286855","statuses_count":1020,"followers_count":1546,"url":"http:\/\/thechangelog.com\/","show_all_inline_media":false,"profile_use_background_image":false,"friends_count":60,"profile_text_color":"171717","contributors_enabled":false,"lang":"en","created_at":"Mon Nov 16 00:47:38 +0000 2009","location":"Texas!","geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","profile_link_color":"225588","protected":false,"name":"The Changelog","following":false,"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/544002721\/Album-Art_normal.png","id":90286855,"follow_request_sent":false,"notifications":false,"utc_offset":-25200},{"statuses_count":249,"favourites_count":0,"profile_sidebar_border_color":"87bc44","description":"","screen_name":"drogus","show_all_inline_media":false,"friends_count":151,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29512794369","source":"web","retweet_count":null,"created_at":"Tue Nov 02 22:42:49 +0000 2010","retweeted":false,"id":29512794369,"truncated":false,"text":"Just installed cyanogen 6.1.0 mod for HTC Dream, surprisingly it's pretty fast. I love the new features and finally I can use multitouch! :D"},"contributors_enabled":false,"time_zone":"Warsaw","geo_enabled":false,"profile_background_color":"9ae4e8","id_str":"6412082","notifications":false,"followers_count":268,"url":null,"verified":false,"profile_use_background_image":true,"profile_text_color":"000000","follow_request_sent":false,"lang":"en","created_at":"Tue May 29 11:23:25 +0000 2007","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"name":"Piotr Sarnacki","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1059196060\/ja1_normal.jpg","id":6412082,"listed_count":20,"utc_offset":3600},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C6E2EE","description":"Brian Tracy is a leading self development author and coach in the United States of America. Tracy is a best selling writer with more than 40 books published...","screen_name":"brian_Tracy_44","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"25573386110","source":"web","retweet_count":null,"created_at":"Sun Sep 26 08:23:06 +0000 2010","retweeted":false,"geo":null,"id":25573386110,"truncated":false,"text":"Microsoft is \"lost\" with Windows Mobile?"},"time_zone":null,"profile_background_color":"C6E2EE","id_str":"188014230","listed_count":4,"followers_count":487,"url":"http:\/\/briantracy.com","statuses_count":52,"profile_use_background_image":true,"profile_text_color":"663B12","show_all_inline_media":false,"lang":"en","created_at":"Tue Sep 07 18:34:21 +0000 2010","location":"canada","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/152237986\/images.jpg","profile_link_color":"1F98C7","protected":false,"friends_count":1694,"name":"Brian Tracy","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1119230274\/brain_tracy_normal.jpg","id":188014230,"geo_enabled":false,"notifications":false,"utc_offset":null},{"favourites_count":32,"profile_sidebar_border_color":"cccccc","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","screen_name":"pengwynn","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29427626177","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 01:45:29 +0000 2010","retweeted":false,"geo":null,"id":29427626177,"truncated":false,"text":"Beautiful typography in these #dribbble rebounds http:\/\/wynn.fm\/7o"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"efefef","id_str":"14100886","followers_count":2788,"url":"http:\/\/wynnnetherland.com","profile_use_background_image":true,"profile_text_color":"666666","listed_count":186,"lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","location":"Dallas, TX","statuses_count":3949,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","profile_link_color":"35abe9","protected":false,"show_all_inline_media":false,"friends_count":1913,"name":"Wynn Netherland","contributors_enabled":false,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"dddddd","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","id":14100886,"geo_enabled":true,"notifications":false,"utc_offset":-21600},{"favourites_count":2,"profile_sidebar_border_color":"f2a4f2","description":"if you want to know me,you have to talk with me\/ much you talk,better you know...","screen_name":"dgourab93","listed_count":2,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29285743720","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"22479649934","source":"\u003Ca href=\"http:\/\/alexking.org\/projects\/wordpress\" rel=\"nofollow\"\u003ETwitter Tools\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Aug 30 00:18:02 +0000 2010","retweeted":false,"geo":null,"id":22479649934,"truncated":false,"text":"Woof! New bone!: Training A Dog To Jump Chairs And Retrieve http:\/\/puppytizers.info\/dogpile\/training-a-dog-to-jump-chairs-and-retrieve\/"},"retweet_count":null,"created_at":"Sun Oct 31 15:15:10 +0000 2010","retweeted":false,"geo":null,"id":29285743720,"truncated":true,"text":"RT @PuppyPrizes: Woof! New bone!: Training A Dog To Jump Chairs And Retrieve http:\/\/puppytizers.info\/dogpile\/training-a-dog-to-jump-chai ..."},"statuses_count":49,"time_zone":"Hawaii","show_all_inline_media":false,"friends_count":2001,"profile_background_color":"d687a4","id_str":"191446268","contributors_enabled":false,"followers_count":129,"url":"http:\/\/www.google.com\/profiles\/gourab,d2010","geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"1966cc","lang":"en","created_at":"Thu Sep 16 13:42:17 +0000 2010","location":"Bankura,West Bengal,India","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/152203536\/images__1_lo.jpg","profile_link_color":"36752d","protected":false,"follow_request_sent":false,"name":"Gourab Debnath","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"61b382","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1130886589\/47169_109855525739057_100001438311047_95088_6352536_n_normal.jpg","id":191446268,"notifications":false,"utc_offset":-36000},{"favourites_count":635,"profile_sidebar_border_color":"ffffff","description":"Left-handed and born on Halloween in 1983! Founded #genychat held Wed. 9pm EDT. Disliker of chocolate. *Career Seeker*. My resume: http:\/\/bit.ly\/9rpXif","screen_name":"WriterChanelle","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29573493138","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 13:57:59 +0000 2010","retweeted":false,"geo":null,"id":29573493138,"truncated":false,"text":"Probably time to change my pic back, huh?"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"ffffff","id_str":"53454621","friends_count":1855,"followers_count":2062,"url":"http:\/\/www.officialtherefromhere.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"210626","lang":"en","verified":false,"created_at":"Fri Jul 03 18:10:32 +0000 2009","location":"Washington, D.C.","show_all_inline_media":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/156478334\/TFHtwitterBack.png","profile_link_color":"000000","protected":false,"geo_enabled":false,"name":"Chanelle Schneider","listed_count":236,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"3c9bef","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1152516944\/birthday_cake_normal.jpg","id":53454621,"statuses_count":32822,"notifications":false,"utc_offset":-18000},{"favourites_count":10482,"profile_sidebar_border_color":"87bc44","description":"Favstar.fm founder, Husband, Father, collector of tower statuettes, lover of grilled cheese. Mmm!","screen_name":"timhaines","status":{"in_reply_to_status_id_str":"29556072689","place":null,"coordinates":null,"in_reply_to_status_id":29556072689,"in_reply_to_user_id":77009486,"favorited":false,"in_reply_to_user_id_str":"77009486","contributors":null,"in_reply_to_screen_name":"tnm8","id_str":"29556348955","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 09:46:09 +0000 2010","retweeted":false,"geo":null,"id":29556348955,"truncated":false,"text":"@tnm8 book?"},"listed_count":366,"time_zone":"Wellington","statuses_count":17325,"profile_background_color":"9ae4e8","id_str":"14341663","show_all_inline_media":false,"friends_count":643,"followers_count":3062,"url":"http:\/\/favstar.fm\/users\/timhaines","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":true,"created_at":"Wed Apr 09 13:39:15 +0000 2008","location":"Wellington, New Zealand","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2447849\/black-wallpaper-bg.gif","profile_link_color":"0000ff","protected":false,"verified":false,"name":"Tim Haines","follow_request_sent":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/929258068\/TimWeekend_bigger2_normal.png","id":14341663,"notifications":false,"utc_offset":43200},{"follow_request_sent":null,"description":"","screen_name":"nerded","time_zone":"Hawaii","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 16:10:59 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29483833352,"in_reply_to_status_id_str":null,"id_str":"29483833352","text":"Beer? Nerds? Ruby? Yep, the bmore on rails pub night has it all, come join us! http:\/\/bit.ly\/bBG2tZ"},"profile_background_color":"1A1B1F","listed_count":26,"notifications":null,"profile_use_background_image":true,"profile_text_color":"666666","url":"http:\/\/www.EdSchmalzle.com","statuses_count":462,"show_all_inline_media":true,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288632582\/images\/themes\/theme9\/bg.gif","created_at":"Sun Jul 13 12:01:50 +0000 2008","friends_count":212,"profile_link_color":"2FC2EF","location":"Baltimore, MD","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","name":"Ed Schmalzle","following":null,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/965494658\/PirateFace_normal.jpg","id":15414199,"id_str":"15414199","verified":false,"utc_offset":-36000,"favourites_count":2,"profile_sidebar_border_color":"181A1E","followers_count":172},{"follow_request_sent":false,"favourites_count":433,"profile_sidebar_border_color":"181A1E","description":"Open source developer interested in Software Craftsmanship, Distributed Computing, Linux, Startups and the Web.","screen_name":"himanshuc","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29531587581","source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 02:21:35 +0000 2010","retweeted":false,"geo":null,"id":29531587581,"truncated":false,"text":"Code monkey : http:\/\/bit.ly\/a6x77a"},"time_zone":"Central Time (US & Canada)","profile_background_color":"1A1B1F","id_str":"12474212","listed_count":44,"followers_count":598,"url":"http:\/\/nepcoder.com","statuses_count":3221,"profile_use_background_image":true,"profile_text_color":"666666","show_all_inline_media":false,"lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","friends_count":1809,"location":"Mountain View, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme9\/bg.gif","profile_link_color":"2FC2EF","protected":false,"geo_enabled":true,"name":"Himanshu Chhetri","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1156063402\/profile-head_normal.jpg","id":12474212,"verified":false,"notifications":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Software engineer, entrepreneur, musician. Founder of Ideaffect.com.","screen_name":"JamesRyanATX","listed_count":0,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"28473113400","source":"web","retweet_count":null,"created_at":"Sat Oct 23 04:57:16 +0000 2010","retweeted":false,"geo":null,"id":28473113400,"truncated":false,"text":"been to quite a few texas wineries by now, and @SolaroEstate ranks #1. they've figured something out that the rest of tx wineries haven't."},"statuses_count":6,"time_zone":"Central Time (US & Canada)","show_all_inline_media":false,"friends_count":11,"profile_background_color":"C0DEED","id_str":"125584201","contributors_enabled":false,"followers_count":5,"url":"http:\/\/www.ideaffect.com\/","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Tue Mar 23 07:22:18 +0000 2010","location":"Austin, TX","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"follow_request_sent":false,"name":"James Ryan","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1145634559\/me_normal.jpg","id":125584201,"notifications":false,"utc_offset":-21600},{"favourites_count":1,"profile_sidebar_border_color":"ffffff","description":"Researching for next project on how people, companies and organizations reinvent themselves. Published Author, Recruiter, USMC 2nd Force Recon alumni.","screen_name":"BillVick","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29569512631","source":"\u003Ca href=\"http:\/\/www.google.com\/support\/youtube\/bin\/answer.py?hl=en&answer=164577\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 13:10:32 +0000 2010","retweeted":false,"geo":null,"id":29569512631,"truncated":false,"text":"Writing A Cover Letter For Your Resume http:\/\/goo.gl\/fb\/7hAKg #careers #coverletters"},"listed_count":649,"time_zone":"Central Time (US & Canada)","statuses_count":5562,"profile_background_color":"ffffff","id_str":"7789652","show_all_inline_media":false,"friends_count":9728,"followers_count":10938,"url":"http:\/\/www.BillVick.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":false,"created_at":"Sat Jul 28 19:54:24 +0000 2007","location":"","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/140368336\/bw_twitter_background.jpg","profile_link_color":"0000ff","protected":false,"verified":false,"name":"Bill Vick","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1119772826\/Bill_Vick_flag_normal.jpg","id":7789652,"notifications":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"5ED4DC","description":"Hacker, Entrepreneur : Build stuff in Rails, Python : Develop Squid plugins : Used to develop stuff using Drupal : Love Open Source : Fedora, My Favorite Distro","screen_name":"_kulbir","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29491155917","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-71.07299604,42.34279698],[-71.04959496,42.34279698],[-71.04959496,42.36839703],[-71.07299604,42.36839703]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/8f8d3175736b75d4.json","attributes":{},"country":"The United States of America","full_name":"Downtown, Boston","name":"Downtown","id":"8f8d3175736b75d4"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29489234652","source":"web","retweet_count":null,"created_at":"Tue Nov 02 17:16:49 +0000 2010","retweeted":false,"geo":null,"id":29489234652,"truncated":false,"text":"Perhaps the future of on-screen keyboards for mobile devices: http:\/\/www.the8pen.com\/"},"retweet_count":null,"created_at":"Tue Nov 02 17:42:10 +0000 2010","retweeted":false,"geo":null,"id":29491155917,"truncated":false,"text":"RT @qrush: Perhaps the future of on-screen keyboards for mobile devices: http:\/\/www.the8pen.com\/"},"follow_request_sent":false,"time_zone":"New Delhi","profile_background_color":"0099B9","id_str":"192492245","followers_count":41,"url":"http:\/\/saini.co.in","profile_use_background_image":true,"profile_text_color":"3C3940","listed_count":0,"lang":"en","created_at":"Sun Sep 19 09:11:56 +0000 2010","location":"Hyderabad, India","statuses_count":198,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":false,"show_all_inline_media":false,"friends_count":165,"name":"Kulbir Saini","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1126769760\/avatar4_normal.jpg","id":192492245,"geo_enabled":true,"notifications":false,"utc_offset":19800},{"follow_request_sent":false,"favourites_count":5,"profile_sidebar_border_color":"87bc44","description":"internet tube plumber","screen_name":"tony","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27199959923","source":"web","retweet_count":null,"created_at":"Wed Oct 13 02:18:09 +0000 2010","retweeted":false,"geo":null,"id":27199959923,"truncated":false,"text":"Anyone want a free ticket to see Jeff Potter in 15 min at 876 Hampshire? http:\/\/bit.ly\/avRpIe"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","id_str":"7693","listed_count":13,"followers_count":513,"url":"http:\/\/ponderer.org\/","statuses_count":415,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Sat Oct 07 05:04:45 +0000 2006","location":"san francisco, ca","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"name":"tony","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/14256172\/red_glasses64_normal.jpg","id":7693,"geo_enabled":true,"notifications":false,"utc_offset":-28800,"friends_count":136},{"statuses_count":9625,"favourites_count":3,"profile_sidebar_border_color":"493736","description":"CEO \/ Co-Founder of @KISSmetrics. Previously started @crazyegg and @acs. Passionate about helping other entrepreneurs and startup people.","screen_name":"hnshah","show_all_inline_media":false,"friends_count":21149,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29527528454","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29526207114","source":"\u003Ca href=\"http:\/\/vip.wordpress.com\/hosting\" rel=\"nofollow\"\u003EWordPress.com VIP\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:18:19 +0000 2010","retweeted":false,"geo":null,"id":29526207114,"truncated":false,"text":"KissInsights: Gather Customer Feedback Exactly When You Want It http:\/\/tcrn.ch\/askUYz by @jasonkincaid"},"retweet_count":null,"created_at":"Wed Nov 03 01:33:15 +0000 2010","retweeted":false,"geo":null,"id":29527528454,"truncated":false,"text":"RT @TechCrunch: KissInsights: Gather Customer Feedback Exactly When You Want It http:\/\/tcrn.ch\/askUYz by @jasonkincaid"},"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"profile_background_color":"668284","id_str":"3382","followers_count":25715,"url":"http:\/\/about.me\/hiten\/bio","verified":false,"profile_use_background_image":true,"profile_text_color":"2A2829","follow_request_sent":null,"lang":"en","created_at":"Sat Jul 29 09:04:30 +0000 2006","location":"","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/105891142\/bg.jpg","profile_link_color":"7B3B3B","protected":false,"name":"Hiten Shah","following":null,"profile_background_tile":true,"profile_sidebar_fill_color":"B9D7D9","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/581820664\/profilepic_normal.jpg","id":3382,"listed_count":1807,"notifications":null,"utc_offset":-28800},{"favourites_count":1,"friends_count":1997,"profile_sidebar_border_color":"C0DEED","description":"HARRY MILLER IS RUNNING FOR SAN FRANCISCO'S MAYOR IN NOV 2011","screen_name":"miller4SFmayor","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29575640360","source":"web","retweet_count":null,"created_at":"Wed Nov 03 14:22:42 +0000 2010","retweeted":false,"geo":null,"id":29575640360,"truncated":false,"text":"NEXT TIME DEAN"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"99536042","verified":false,"followers_count":279,"url":"http:\/\/www.haroldmiller4mayor.com","profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat Dec 26 16:51:39 +0000 2009","location":"SAN FRANCISCO","listed_count":5,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288217225\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":153,"name":"haroldmiller4sfmayor","show_all_inline_media":true,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1131239252\/49711_100000531985945_4159_q_normal.jpg","id":99536042,"contributors_enabled":false,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":8,"friends_count":107,"profile_sidebar_border_color":"FFFFFF","description":"Tweet tweet.","screen_name":"richsinn","contributors_enabled":false,"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","id_str":"45038375","verified":false,"followers_count":49,"url":"http:\/\/www.twitter.com\/richsinn","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Sat Jun 06 00:18:11 +0000 2009","location":"Bay Area, CA","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/110350760\/bg.jpg","profile_link_color":"CC3300","protected":false,"name":"Richard Sinn","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F7DA93","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1098922069\/Amazon_Archive_082_normal.jpg","id":45038375,"statuses_count":313,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":53,"profile_sidebar_border_color":"a8c7f7","description":"Software developer, JavaScript ninja, GIS geek, walkability advocate, @CodeforAmerica fellow.","screen_name":"atogle","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29570639160","source":"web","retweet_count":null,"created_at":"Wed Nov 03 13:24:05 +0000 2010","retweeted":false,"geo":null,"id":29570639160,"truncated":false,"text":"Digging into the @prototypejs source for the first time - clean and very readable. #veryimpressed"},"time_zone":"Eastern Time (US & Canada)","friends_count":242,"profile_background_color":"022330","id_str":"21866144","geo_enabled":false,"followers_count":228,"url":"http:\/\/walkshed.org","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Wed Feb 25 13:43:06 +0000 2009","location":"Philadelphia, PA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Aaron Ogle","listed_count":40,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1083144513\/walkshed_twitter_icon_normal.jpeg","id":21866144,"statuses_count":938,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":8,"profile_sidebar_border_color":"0054AD","description":"business, web, technology, college, racquetball, golf, books, verbict.com","screen_name":"tylerstalder","contributors_enabled":false,"geo_enabled":false,"status":{"in_reply_to_status_id_str":"29502183455","place":null,"coordinates":null,"in_reply_to_status_id":29502183455,"in_reply_to_user_id":15157985,"favorited":false,"in_reply_to_user_id_str":"15157985","contributors":null,"in_reply_to_screen_name":"rico_w","id_str":"29520238748","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 00:08:25 +0000 2010","retweeted":false,"geo":null,"id":29520238748,"truncated":false,"text":"@rico_w what, really? Latest I'd heard on the preppy radar was that we got a polo club."},"time_zone":"Central Time (US & Canada)","profile_background_color":"303B41","id_str":"823408","friends_count":329,"followers_count":558,"url":"http:\/\/tylerstalder.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"808080","lang":"en","verified":false,"created_at":"Thu Mar 08 23:08:04 +0000 2007","location":"Wichita, KS","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/75622\/twitter_bg.jpg","profile_link_color":"07508C","protected":false,"name":"Tyler Stalder","listed_count":26,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"D1E4F3","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/728961989\/tylerstalder_normal.png","id":823408,"statuses_count":4908,"notifications":false,"utc_offset":-21600},{"contributors_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"000000","description":"tech + communications + media","screen_name":"scottsil","geo_enabled":true,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.045672,37.124503],[-121.589153,37.124503],[-121.589153,37.469163],[-122.045672,37.469163]]],"type":"Polygon"},"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/7d62cffe6f98f349.json","attributes":{},"country":"The United States of America","full_name":"San Jose, CA","name":"San Jose","id":"7d62cffe6f98f349"},"coordinates":{"coordinates":[-121.9263044,37.36662498],"type":"Point"},"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29532976712","source":"\u003Ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003Efoursquare\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 02:39:16 +0000 2010","retweeted":false,"geo":{"coordinates":[37.36662498,-121.9263044],"type":"Point"},"id":29532976712,"truncated":false,"text":"Back to the bay... (@ Mineta San Jos\u00e9 International Airport (SJC) \u2708 w\/ 6 others) http:\/\/4sq.com\/43y2Rz"},"time_zone":"Pacific Time (US & Canada)","verified":false,"profile_background_color":"CCCCCC","id_str":"721623","follow_request_sent":false,"followers_count":118,"url":"http:\/\/www.scottsil.com","profile_use_background_image":true,"profile_text_color":"666666","lang":"en","created_at":"Sun Jan 28 21:26:47 +0000 2007","location":"New York, NY","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/148927784\/NYC-at-Night1.jpg","profile_link_color":"999999","protected":false,"listed_count":2,"name":"Scott Silverman","statuses_count":489,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"333333","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1112802042\/scott-live-trace-twitter-transparent_normal.png","id":721623,"show_all_inline_media":true,"notifications":false,"utc_offset":-28800,"friends_count":118},{"follow_request_sent":false,"favourites_count":237,"profile_sidebar_border_color":"BDDCAD","description":"Engineer at Twitter. Obsessed with running. In a past life I was a member of the Rails Core team & 37signals.","screen_name":"noradio","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29544587015","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 05:34:46 +0000 2010","retweeted":false,"geo":null,"id":29544587015,"truncated":false,"text":"Interesting visualizations of mid-term election voter sentiment in tweets by @cnn at http:\/\/t.co\/dN0nOi5"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","id_str":"3191321","listed_count":827,"followers_count":279523,"url":"http:\/\/project.ioni.st","statuses_count":4733,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Mon Apr 02 07:47:28 +0000 2007","friends_count":661,"location":"San Francisco, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","profile_link_color":"0084B4","protected":false,"geo_enabled":true,"name":"Marcel Molina","following":true,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","id":3191321,"verified":false,"notifications":false,"utc_offset":-28800},{"favourites_count":126,"profile_sidebar_border_color":"BDDCAD","description":"I'm a Photographer based in Southern California and around Santa Clarita. I love hockey and the LA Kings - follow @ryanatwork for Gov20 related","screen_name":"RyanResella","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29528309631","source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:42:30 +0000 2010","retweeted":false,"geo":null,"id":29528309631,"truncated":false,"text":"Leaving work at 6:40 pm, for some reason this seems like it will be an early time to leave next year"},"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","id_str":"14781485","followers_count":423,"url":"http:\/\/ryanresella.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":23,"lang":"en","created_at":"Thu May 15 03:45:11 +0000 2008","location":"Santa Clarita, California","statuses_count":3668,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/108590004\/TwitterBackground.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":507,"name":"Ryan Resella","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1154550303\/68466_10150288185610314_741105313_15077950_2884620_n_normal.jpg","id":14781485,"geo_enabled":true,"notifications":false,"utc_offset":-28800},{"profile_use_background_image":false,"profile_sidebar_border_color":"ffffff","followers_count":317,"description":"A Force for Good \r\n\r\n\r\nSan Fransocialite","listed_count":28,"verified":false,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"Posterous","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Mon Oct 18 19:58:02 +0000 2010","favorited":false,"coordinates":null,"id":27764654087,"text":"Untitled http://post.ly/15PqK"},"follow_request_sent":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/81241384/TWITBACK.png","profile_background_color":"ffffff","profile_background_tile":true,"url":null,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Tue Dec 19 23:36:35 +0000 2006","friends_count":330,"profile_image_url":"http://a1.twimg.com/profile_images/737922229/n500013650_1278945_96_normal.jpg","location":"San Francisco","statuses_count":533,"profile_link_color":"cc4100","protected":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":16,"screen_name":"aynne","name":"Aynne","contributors_enabled":false,"following":true,"profile_sidebar_fill_color":"ffffff","id":80983,"geo_enabled":true,"utc_offset":-28800},{"favourites_count":10,"friends_count":834,"profile_sidebar_border_color":"87bc44","description":"Founder of letsannotate.com","screen_name":"MSch","status":{"in_reply_to_status_id_str":"29509574588","place":null,"coordinates":null,"in_reply_to_status_id":29509574588,"in_reply_to_user_id":6927562,"favorited":false,"in_reply_to_user_id_str":"6927562","contributors":null,"in_reply_to_screen_name":"thomasfuchs","id_str":"29509726364","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 22:04:52 +0000 2010","retweeted":false,"geo":null,"id":29509726364,"truncated":false,"text":"@thomasfuchs ohhh shiny :) didn't know people put the manual online. thanks"},"geo_enabled":true,"time_zone":"Vienna","follow_request_sent":false,"profile_background_color":"9ae4e8","id_str":"6621712","verified":false,"followers_count":311,"url":"http:\/\/blog.schuerrer.org","profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Wed Jun 06 16:01:34 +0000 2007","location":"Vienna, Austria","listed_count":38,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"statuses_count":1766,"name":"Martin S","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/764214217\/diglas_normal.jpg","id":6621712,"contributors_enabled":false,"notifications":false,"utc_offset":3600},{"geo_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"87bc44","description":"Ruby on Rails Developer, iPhone Developer, @codecuisine","screen_name":"csmuc","follow_request_sent":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29460350200","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 11:21:29 +0000 2010","retweeted":false,"id":29460350200,"truncated":false,"text":"If you're joining a riot, don't forget to check in at foursquare http:\/\/gaw.kr\/9xWb3l #fb"},"verified":false,"time_zone":"Berlin","profile_background_color":"9ae4e8","id_str":"6417922","notifications":false,"followers_count":119,"url":"http:\/\/www.codecuisine.de","listed_count":5,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","statuses_count":716,"created_at":"Tue May 29 15:34:51 +0000 2007","location":"Munich","show_all_inline_media":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52244683\/CIMG3236_2.JPG","profile_link_color":"0000ff","protected":false,"contributors_enabled":false,"name":"Christian Seiler","following":false,"profile_background_tile":false,"friends_count":97,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/517407458\/20091109-pjkfw9198c374tra8dh36imhbq_normal.png","id":6417922,"utc_offset":3600},{"show_all_inline_media":false,"favourites_count":31,"friends_count":1229,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"GaryCulliss","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29512831384","place":null,"coordinates":null,"in_reply_to_status_id":29512831384,"in_reply_to_user_id":17471849,"favorited":false,"in_reply_to_user_id_str":"17471849","contributors":null,"in_reply_to_screen_name":"DavidMarkowitz","id_str":"29513795174","source":"\u003Ca href=\"http:\/\/frf.ly\" rel=\"nofollow\"\u003EFirefly for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 22:54:38 +0000 2010","retweeted":false,"geo":null,"id":29513795174,"truncated":false,"text":"@DavidMarkowitz what, no #NYTM ? http:\/\/frf.ly\/7x5+"},"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"25443413","verified":false,"followers_count":154,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Mar 20 02:42:07 +0000 2009","location":"New York, NY","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Gary Culliss","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/856113793\/gculliss_avatar_2_1__normal.jpg","id":25443413,"statuses_count":348,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":true,"favourites_count":76,"profile_sidebar_border_color":"86A4A6","description":"Technical Co-Founder of @floatapp, Web Developer, Problem Solver.","screen_name":"philip_roberts","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29568829334","place":null,"coordinates":null,"in_reply_to_status_id":29568829334,"in_reply_to_user_id":21803,"favorited":false,"in_reply_to_user_id_str":"21803","contributors":null,"in_reply_to_screen_name":"sneeu","id_str":"29569249256","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 13:07:20 +0000 2010","retweeted":false,"geo":null,"id":29569249256,"truncated":false,"text":"@sneeu haha that sounds like a great plan!"},"time_zone":"Edinburgh","friends_count":281,"profile_background_color":"709397","id_str":"15810455","geo_enabled":true,"followers_count":239,"url":"http:\/\/www.latentflip.com\/blog","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Mon Aug 11 17:04:40 +0000 2008","location":"iPhone: 56.188159,-4.778769","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme6\/bg.gif","profile_link_color":"FF3300","protected":false,"name":"Philip Roberts","listed_count":21,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/562293718\/twitterProfilePhoto_normal.jpg","id":15810455,"statuses_count":1793,"notifications":false,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":91,"friends_count":276,"profile_sidebar_border_color":"86A4A6","description":"Programming for fun and profit!","screen_name":"robolson","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.42288196,37.74303],[-122.408946,37.74303],[-122.408946,37.77052896],[-122.42288196,37.77052896]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/597463acf7f062a9.json","attributes":{},"country":"The United States of America","full_name":"Mission, San Francisco","name":"Mission","id":"597463acf7f062a9"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29523025741","source":"web","retweet_count":null,"created_at":"Wed Nov 03 00:40:20 +0000 2010","retweeted":false,"geo":null,"id":29523025741,"truncated":false,"text":"#ivoted #YesOnEverything #YayTaxes #JustKidding"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"DDDDDD","id_str":"14635845","verified":false,"followers_count":466,"url":"http:\/\/thinkingdigitally.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat May 03 07:10:13 +0000 2008","location":"San Francisco","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/71274087\/x323c1fdb6a85ffddd7e55a5d8359730.png","profile_link_color":"FF3300","protected":false,"name":"Rob Olson","listed_count":16,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/423630849\/rolson_profile_pic_sm_normal.png","id":14635845,"statuses_count":1749,"notifications":false,"utc_offset":-28800},{"statuses_count":2406,"favourites_count":46,"profile_sidebar_border_color":"a8c7f7","description":"Ruby developer, entrepreneur, husband, father. PeopleAdmin by day, TweetRiver by night.","screen_name":"bdainton","show_all_inline_media":true,"friends_count":674,"status":{"in_reply_to_status_id_str":"29564414885","place":null,"coordinates":null,"in_reply_to_status_id":29564414885,"in_reply_to_user_id":14086134,"favorited":false,"in_reply_to_user_id_str":"14086134","contributors":null,"in_reply_to_screen_name":"MarissaSays","id_str":"29574618138","source":"web","retweet_count":null,"created_at":"Wed Nov 03 14:10:51 +0000 2010","retweeted":false,"geo":null,"id":29574618138,"truncated":false,"text":"@MarissaSays Huge thanks, Marissa!"},"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"profile_background_color":"022330","id_str":"8033832","followers_count":675,"url":"http:\/\/briandainton.com","verified":false,"profile_use_background_image":true,"profile_text_color":"333333","follow_request_sent":false,"lang":"en","created_at":"Tue Aug 07 17:16:03 +0000 2007","location":"Austin, TX","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Brian Dainton","following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/60792043\/bdainton_normal.jpg","id":8033832,"listed_count":70,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":null,"screen_name":"Nmo711","contributors_enabled":false,"time_zone":null,"friends_count":7,"profile_background_color":"C0DEED","id_str":"188880546","geo_enabled":false,"followers_count":4,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Sep 09 20:29:59 +0000 2010","location":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Natalie Orr","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/default_profile_1_normal.png","id":188880546,"statuses_count":0,"notifications":false,"utc_offset":null},{"follow_request_sent":false,"favourites_count":3,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"jfire","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29427863515","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 01:48:20 +0000 2010","retweeted":false,"geo":null,"id":29427863515,"truncated":false,"text":"If your .csv file starts with \"ID\", excel will try to open it as a SYLK file. Awesome! http:\/\/bit.ly\/97g0be"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","id_str":"16693852","listed_count":0,"followers_count":33,"url":null,"statuses_count":185,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Sat Oct 11 06:37:58 +0000 2008","location":"San Francisco, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":48,"name":"John Firebaugh","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/494874392\/Photo_on_2009-10-28_at_10.12__2_normal.jpg","id":16693852,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"contributors_enabled":false,"profile_background_color":"022330","description":"Estudiante de la Maestr\u00eda en Derecho Penal de la Universidad Nacional y es una de las promesas para el mundo jur\u00eddico nacional e internacional..","screen_name":"afmarinr","status":{"contributors":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"retweet_count":null,"geo":null,"retweeted":false,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Sep 23 15:33:39 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"favorited":false,"id":25317453131,"in_reply_to_user_id_str":null,"id_str":"25317453131","text":"Mi pa\u00eds est\u00e1 conmocionado por la muerte de uno de los guerrilleros m\u00e1s famoso... el Mono Jojoy... esperemos que Colombia encuentre la paz.."},"profile_use_background_image":true,"profile_text_color":"242fd4","friends_count":992,"follow_request_sent":false,"notifications":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","url":"http:\/\/www.facebook.com\/home.php#!\/andres.fernando.marin.rodriguez","verified":false,"geo_enabled":false,"lang":"es","profile_background_tile":false,"favourites_count":0,"created_at":"Wed Sep 08 03:16:34 +0000 2010","profile_sidebar_fill_color":"C0DFEC","location":"Bogot\u00e1","protected":false,"listed_count":6,"profile_sidebar_border_color":"a8c7f7","name":"Andr\u00e9s Mar\u00edn","statuses_count":11,"following":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1119500808\/ANDRES2_normal.JPG","id":188184146,"id_str":"188184146","show_all_inline_media":false,"time_zone":null,"utc_offset":null,"followers_count":299},{"profile_use_background_image":true,"profile_text_color":"333333","description":null,"screen_name":"Lqboren","status":{"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"geo":null,"id_str":"23174338321","favorited":false,"source":"web","in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Sep 06 20:17:57 +0000 2010","retweet_count":null,"id":23174338321,"retweeted":false,"text":"Wow I just watched a great new video. www.dreamsintorealityvideo.com let me know what you think of it please."},"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme8\/bg.gif","profile_link_color":"9D582E","listed_count":0,"id_str":"107554604","statuses_count":9,"notifications":false,"profile_background_tile":false,"profile_sidebar_fill_color":"EADEAA","followers_count":35,"url":null,"show_all_inline_media":false,"friends_count":109,"contributors_enabled":false,"lang":"en","created_at":"Fri Jan 22 23:42:46 +0000 2010","profile_sidebar_border_color":"D9B17E","location":null,"geo_enabled":false,"protected":false,"time_zone":null,"favourites_count":0,"name":"LaQuetta Boren","following":false,"verified":false,"profile_background_color":"8B542B","profile_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/default_profile_3_normal.png","id":107554604,"follow_request_sent":false,"utc_offset":null},{"follow_request_sent":false,"favourites_count":54,"profile_sidebar_border_color":"C0DEED","description":"Product designer. Spend my days with the great @momentdesign folks.","screen_name":"trueitalic","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":13537172,"favorited":false,"in_reply_to_user_id_str":"13537172","contributors":null,"in_reply_to_screen_name":"momentdesign","id_str":"22085226029","source":"web","retweet_count":null,"created_at":"Wed Aug 25 12:45:50 +0000 2010","retweeted":false,"geo":null,"id":22085226029,"truncated":false,"text":"@momentdesign is hiring two user experience designers! come work with us! http:\/\/bit.ly\/9PH9L9"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"65602565","listed_count":12,"followers_count":127,"url":"http:\/\/www.trueitalic.com","statuses_count":1,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Fri Aug 14 09:43:24 +0000 2009","location":"Brooklyn, NY","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":1554,"name":"Rob Hunter","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/398556224\/profile_square_normal.jpg","id":65602565,"geo_enabled":false,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":true,"favourites_count":122,"profile_sidebar_border_color":"4ACF9C","description":"Benjamin Kudria: web coder, engineer at Quid, and all-around cool cat.","screen_name":"bkudria","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29504227240","place":{"bounding_box":{"coordinates":[[[-122.40638388,37.79262801],[-122.39639892,37.79262801],[-122.39639892,37.79887401],[-122.40638388,37.79887401]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4936c7bb522bb31c.json","attributes":{},"country":"The United States of America","full_name":"Financial District, San Francisco","name":"Financial District","id":"4936c7bb522bb31c"},"coordinates":null,"in_reply_to_status_id":29504227240,"in_reply_to_user_id":8566812,"favorited":false,"in_reply_to_user_id_str":"8566812","contributors":null,"in_reply_to_screen_name":"dankaplan","id_str":"29504394324","source":"web","retweet_count":null,"created_at":"Tue Nov 02 20:53:29 +0000 2010","retweeted":false,"geo":null,"id":29504394324,"truncated":false,"text":"@dankaplan I think there might be a few percentage points there that represent not screwing over people working for you."},"time_zone":"Pacific Time (US & Canada)","friends_count":503,"profile_background_color":"61877C","id_str":"969311","geo_enabled":true,"followers_count":437,"url":"http:\/\/ben.kudria.net","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"118579","lang":"en","verified":false,"created_at":"Mon Mar 12 00:29:44 +0000 2007","location":"San Francisco","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/154688472\/brandmark.jpg","profile_link_color":"0098c2","protected":false,"name":"Benjamin Kudria","listed_count":25,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"24323F","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1139792466\/gs-f-1_normal.jpg","id":969311,"statuses_count":3406,"notifications":false,"utc_offset":-28800},{"favourites_count":0,"profile_sidebar_border_color":"b0dded","description":"The top stories from the TechCrunch 50 event.","screen_name":"TC50Conf","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29554184544","source":"\u003Ca href=\"http:\/\/tweetmeme.com\" rel=\"nofollow\"\u003ETweetMeme\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 09:00:41 +0000 2010","retweeted":false,"geo":null,"id":29554184544,"truncated":false,"text":"How Singapore Could Become the Most Important City in the Emerging World http:\/\/retwt.me\/1PuyO (via @TechCrunch)"},"follow_request_sent":false,"time_zone":"London","profile_background_color":"45b5da","id_str":"111632535","followers_count":166,"url":"http:\/\/tc50tweets.tweetmeme.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":4,"lang":"en","created_at":"Fri Feb 05 16:24:05 +0000 2010","location":"Worldwide","statuses_count":3457,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/72697165\/TweetMeme_background_main.png","profile_link_color":"0084b4","protected":false,"show_all_inline_media":false,"friends_count":313,"name":"TechCrunch50","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"b0dded","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/677548934\/TweetMeme_icon_main_normal.png","id":111632535,"geo_enabled":false,"notifications":false,"utc_offset":0},{"contributors_enabled":false,"favourites_count":57,"profile_sidebar_border_color":"D9B17E","description":"MISSION: To provide a list of strong legitimate arguments for voting Democratic candidates into office & supporting their causes. #VoteDem #WhyIVote #Dems #p2","screen_name":"VoteNaked","friends_count":2036,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":23718933,"favorited":false,"in_reply_to_user_id_str":"23718933","contributors":null,"in_reply_to_screen_name":"HippyChick613","id_str":"24570389541","source":"web","retweet_count":null,"created_at":"Wed Sep 15 13:39:11 +0000 2010","retweeted":false,"geo":null,"id":24570389541,"truncated":false,"text":"@HippyChick613 @sscoop4 Thank you for your well wishes. I'm heading back to the hospital later today, but I'll be back stronger than ever."},"time_zone":"Eastern Time (US & Canada)","verified":false,"profile_background_color":"ffffff","id_str":"23474111","follow_request_sent":false,"followers_count":2170,"url":null,"geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Mon Mar 09 18:18:13 +0000 2009","location":"America","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/125414596\/votenakedback1-760.jpg","profile_link_color":"0000ff","protected":false,"listed_count":194,"name":"Vote Naked","statuses_count":980,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1083226537\/votenaked200_normal.jpg","id":23474111,"show_all_inline_media":false,"notifications":false,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"3DF197","description":"If you don't have a strong mind...you will not make it. Only the strong survive. Different breed.","screen_name":"twiyews2b","contributors_enabled":false,"time_zone":null,"profile_background_color":"9ae4e8","id_str":"183324947","friends_count":439,"followers_count":48,"url":"http:\/\/tinyurl.com\/39yugpe","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"A7EAAF","lang":"en","verified":false,"created_at":"Thu Aug 26 18:39:10 +0000 2010","location":"ATL","show_all_inline_media":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"639AB7","protected":false,"geo_enabled":false,"name":"Alecia C.","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"52F23C","profile_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/default_profile_1_normal.png","id":183324947,"statuses_count":0,"notifications":false,"utc_offset":null},{"favourites_count":5,"profile_sidebar_border_color":"BDDCAD","description":"Partner at Sterling Cooper Draper Pryce","screen_name":"_DonDraper","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27768799850","source":"web","retweet_count":null,"created_at":"Mon Oct 18 20:59:17 +0000 2010","retweeted":false,"geo":null,"id":27768799850,"truncated":false,"text":"They say as soon you have to cut down on your drinking, you have a drinking problem."},"listed_count":992,"time_zone":"Pacific Time (US & Canada)","statuses_count":325,"profile_background_color":"000000","id_str":"17584594","followers_count":22427,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"050a42","lang":"en","created_at":"Mon Nov 24 03:42:02 +0000 2008","location":"Madison Avenue, New York 1965","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/31174390\/whichmadman-389.jpg","profile_link_color":"266aab","protected":false,"friends_count":24150,"name":"_DonDraper","show_all_inline_media":false,"follow_request_sent":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"0b8e8e","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/98891783\/DONFACE_normal.jpg","id":17584594,"verified":false,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"favourites_count":6,"profile_sidebar_border_color":"BDDCAD","description":"strategy, branding + marketing for new ventures. \r\nwww.launchcontrolgroup.com ","screen_name":"launch_control","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29530182217","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29530093147","source":"web","retweet_count":null,"created_at":"Wed Nov 03 02:03:21 +0000 2010","retweeted":false,"geo":null,"id":29530093147,"truncated":false,"text":"excited we just pushed brand new @launch_control site live - check out www.launchcontrolgroup.com + tell us what you think!"},"retweet_count":null,"created_at":"Wed Nov 03 02:04:26 +0000 2010","retweeted":false,"geo":null,"id":29530182217,"truncated":false,"text":"RT @davidknies: excited we just pushed brand new @launch_control site live - check out www.launchcontrolgroup.com + tell us what you think!"},"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","id_str":"65389893","followers_count":301,"url":"http:\/\/www.launchcontrolgroup.com","geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":25,"lang":"en","created_at":"Thu Aug 13 15:35:14 +0000 2009","location":"boston MA USA","statuses_count":340,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/29907113\/lc_icon.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"name":"launch control","contributors_enabled":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/366343600\/lc_icon_normal.png","id":65389893,"notifications":false,"utc_offset":-18000,"friends_count":605},{"follow_request_sent":false,"favourites_count":2,"profile_sidebar_border_color":"829D5E","description":"software developer\r\nSO: Debian GNU\/linux squeeze\r\nOpenSources.\r\nLinux-kernel 2.6.32-5-686-bigmem.\r\nShow romanization\r\nCaracas, Venezuela","screen_name":"cesulbaran","status":{"in_reply_to_status_id_str":"29562297994","place":null,"coordinates":null,"in_reply_to_status_id":29562297994,"in_reply_to_user_id":58703917,"favorited":false,"in_reply_to_user_id_str":"58703917","contributors":null,"in_reply_to_screen_name":"foursixnine","id_str":"29562468632","source":"web","retweet_count":null,"created_at":"Wed Nov 03 11:34:55 +0000 2010","retweeted":false,"geo":null,"id":29562468632,"truncated":false,"text":"@foursixnine : Epale chamo una pregunta que paso con la comunidad postgres de venezuela\n?"},"time_zone":"Caracas","profile_background_color":"352726","id_str":"47106499","listed_count":8,"followers_count":284,"url":"http:\/\/www.google.com\/profiles\/cesulbaran","statuses_count":1334,"profile_use_background_image":true,"profile_text_color":"3E4415","show_all_inline_media":true,"lang":"es","created_at":"Sun Jun 14 15:06:09 +0000 2009","friends_count":1618,"location":"Caracas-Venezuela","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/101790371\/Kendo07-5160-3.jpg","profile_link_color":"D02B55","protected":false,"geo_enabled":true,"name":"Cesar A. Sulbaran P.","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"99CC33","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1134519857\/ladillado_normal.jpg","id":47106499,"verified":false,"notifications":false,"utc_offset":-16200},{"description":"","screen_name":"lkupchanko","listed_count":0,"profile_sidebar_border_color":"C0DEED","status":{"in_reply_to_user_id_str":null,"place":null,"coordinates":null,"contributors":null,"in_reply_to_screen_name":null,"retweeted_status":{"in_reply_to_user_id_str":null,"place":null,"coordinates":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Sep 21 14:35:14 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"id":25123847709,"id_str":"25123847709","favorited":false,"text":"Vo almo\u00e7ar."},"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Sep 21 14:58:50 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"id":25125767893,"id_str":"25125767893","favorited":false,"text":"RT @romulosz: Vo almo\u00e7ar."},"statuses_count":2,"show_all_inline_media":false,"time_zone":null,"favourites_count":1,"friends_count":139,"contributors_enabled":false,"notifications":null,"profile_background_color":"C0DEED","url":null,"geo_enabled":false,"lang":"en","profile_use_background_image":true,"created_at":"Thu May 21 23:39:48 +0000 2009","profile_text_color":"333333","location":"Edmonton","verified":false,"protected":false,"follow_request_sent":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","name":"Lloyd Kupchanko","following":null,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/862233006\/ginger2_normal.jpg","id":41703333,"id_str":"41703333","profile_background_tile":false,"utc_offset":null,"profile_sidebar_fill_color":"DDEEF6","followers_count":13},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"iPhone Game donates 10% of proceeds to ecosystem restoration, next release includes Gulf Oil Spill level.","screen_name":"PuffPuffG","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":128093057,"favorited":false,"in_reply_to_user_id_str":"128093057","contributors":null,"in_reply_to_screen_name":"6thmega","id_str":"23026688581","source":"web","retweet_count":null,"created_at":"Sun Sep 05 03:08:31 +0000 2010","retweeted":false,"geo":null,"id":23026688581,"truncated":false,"text":"@6thmega just entered Puff Puff September Mega Madness http:\/\/bit.ly\/db8bus, love this game http:\/\/bit.ly\/aHburISeptMad"},"time_zone":null,"profile_background_color":"C0DEED","id_str":"173231651","listed_count":3,"followers_count":408,"url":"http:\/\/6thmega.com\/puff-puff","statuses_count":26,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Sat Jul 31 20:17:21 +0000 2010","friends_count":1186,"location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"geo_enabled":false,"name":"Puff Puff & Give","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1092532875\/badge_small_normal.jpg","id":173231651,"verified":false,"notifications":false,"utc_offset":null},{"show_all_inline_media":false,"favourites_count":4,"friends_count":1880,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"lu3276","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"26662521240","source":"web","retweet_count":null,"created_at":"Thu Oct 07 16:14:04 +0000 2010","retweeted":false,"geo":null,"id":26662521240,"truncated":false,"text":"Earn Your First $100 to $500 Within the Next Hour.... Without Spending a Dime!\nhttp:\/\/tinyurl.com\/26lm7nh"},"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"51260966","verified":false,"followers_count":813,"url":"http:\/\/lurena.mydealscenter.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Jun 26 22:47:04 +0000 2009","location":"New York","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Luis Urena","listed_count":2,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/default_profile_1_normal.png","id":51260966,"statuses_count":107,"notifications":false,"utc_offset":-18000}], "next_cursor":1344705575776646761, "previous_cursor":0, "next_cursor_str":"1344705575776646761", "previous_cursor_str":"0"} \ No newline at end of file +{"users":[{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"joelmahoney","listed_count":1,"time_zone":"Pacific Time (US & Canada)","statuses_count":0,"profile_background_color":"C0DEED","id_str":"61074651","followers_count":12,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Wed Jul 29 01:16:32 +0000 2009","location":"Santa Fe, NM","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":22,"name":"Joel Mahoney","show_all_inline_media":false,"follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/558760034\/riochama_normal.jpg","id":61074651,"verified":false,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"contributors_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"5ED4DC","description":"developer | open source | drupal | drawing | teaching | foodie | nature geek | participation | code for america 2011 | twitter hater | typical sagittarius","screen_name":"chachasikes","geo_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29488826994","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29469747712","source":"web","retweet_count":null,"created_at":"Tue Nov 02 13:31:48 +0000 2010","retweeted":false,"geo":null,"id":29469747712,"truncated":false,"text":"Mozilla #drumbeat looks great. Happy to be participating. https:\/\/wiki.mozilla.org\/Drumbeat\/events\/Festival\/program\/schedule"},"retweet_count":null,"created_at":"Tue Nov 02 17:11:41 +0000 2010","retweeted":false,"geo":null,"id":29488826994,"truncated":true,"text":"RT @MitchellBaker: Mozilla #drumbeat looks great. Happy to be participating. https:\/\/wiki.mozilla.org\/Drumbeat\/events\/Festival\/program\/s ..."},"time_zone":"Central Time (US & Canada)","verified":false,"profile_background_color":"0099B9","id_str":"14353952","follow_request_sent":false,"followers_count":366,"url":"http:\/\/chachaville.com","profile_use_background_image":true,"profile_text_color":"3C3940","lang":"en","created_at":"Thu Apr 10 18:47:41 +0000 2008","location":"Minneapolis, MN","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":false,"listed_count":48,"name":"chachasikes","statuses_count":1243,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1156044662\/chachagaga_normal.jpg","id":14353952,"show_all_inline_media":false,"notifications":false,"utc_offset":-21600,"friends_count":605},{"show_all_inline_media":false,"favourites_count":2,"friends_count":80,"profile_sidebar_border_color":"D9B17E","description":"","screen_name":"mjumbewu","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29246412952","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29236552990","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 01:56:08 +0000 2010","retweeted":false,"id":29236552990,"truncated":false,"text":"I'm really loving the videos being produced by RSA. Latest by Sir Ken Robinson. http:\/\/bit.ly\/bDTCjl \/ht @tobi"},"retweet_count":null,"created_at":"Sun Oct 31 04:21:13 +0000 2010","retweeted":false,"id":29246412952,"truncated":false,"text":"RT @alexknowshtml: I'm really loving the videos being produced by RSA. Latest by Sir Ken Robinson. http:\/\/bit.ly\/bDTCjl \/ht @tobi"},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"8B542B","id_str":"35782202","verified":false,"notifications":false,"followers_count":58,"url":"http:\/\/kwawatu.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Apr 27 16:17:21 +0000 2009","location":"Philadelphia, PA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme8\/bg.gif","profile_link_color":"9D582E","protected":false,"name":"Mjumbe Poe","listed_count":7,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"EADEAA","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1101892515\/dreadlocked_browntwitterbird-248x270_normal.png","id":35782202,"statuses_count":254,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"You can perform these anywhere all over the world. You're not just an laboring man, you can begin building your own financial future.","screen_name":"DeberaTannehill","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29537856298","source":"\u003Ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003Etwitterfeed\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 03:44:34 +0000 2010","retweeted":false,"geo":null,"id":29537856298,"truncated":false,"text":"How to Boost a Websites Traffic http:\/\/tinyurl.com\/29727km"},"time_zone":"Alaska","listed_count":5,"profile_background_color":"C0DEED","id_str":"166168781","statuses_count":149,"followers_count":324,"url":"http:\/\/j.mp\/aUQCAu?=oty3","show_all_inline_media":false,"profile_use_background_image":true,"friends_count":765,"profile_text_color":"333333","contributors_enabled":false,"lang":"en","created_at":"Tue Jul 13 14:12:28 +0000 2010","location":"Nebraska","geo_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/122713814\/449189563mlbk053.jpg","profile_link_color":"0084B4","protected":false,"name":"Debera Tannehill","following":false,"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1076204546\/86733813122_normal.jpg","id":166168781,"follow_request_sent":false,"notifications":false,"utc_offset":-32400},{"favourites_count":1,"friends_count":562,"profile_sidebar_border_color":"DFDFDF","description":"We recruit top web professionals to give a year of service building web 2.0 apps for city governments.","screen_name":"CodeforAmerica","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29495840464","source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 18:47:37 +0000 2010","retweeted":false,"geo":null,"id":29495840464,"truncated":false,"text":"RT @zzolo: I am really excited about my @codeforamerica fellowship! It will be a unique opportunity to get involved with city government."},"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","follow_request_sent":false,"profile_background_color":"EBEBEB","id_str":"64482503","verified":false,"followers_count":2961,"url":"http:\/\/www.codeforamerica.org","profile_use_background_image":false,"profile_text_color":"333333","lang":"en","created_at":"Mon Aug 10 18:59:29 +0000 2009","location":"San Francisco, California","listed_count":366,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme7\/bg.gif","profile_link_color":"990000","protected":false,"statuses_count":538,"name":"Code for America","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F3F3F3","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1118630094\/logosquare_bigger_normal.jpg","id":64482503,"contributors_enabled":false,"notifications":false,"utc_offset":-28800},{"favourites_count":510,"profile_sidebar_border_color":"BDDCAD","description":"Interactive Developer","screen_name":"jpdevries","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":35683,"favorited":false,"in_reply_to_user_id_str":"35683","contributors":null,"in_reply_to_screen_name":"nateb","id_str":"29527285412","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:30:26 +0000 2010","retweeted":false,"geo":null,"id":29527285412,"truncated":false,"text":"@nateb after all this #css compression work, i'm realizing yet another reason i should kick my habit of overly-specific selectors: file size"},"follow_request_sent":false,"time_zone":"Alaska","profile_background_color":"9AE4E8","id_str":"17331901","followers_count":511,"url":"http:\/\/jpdevries.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":49,"lang":"en","created_at":"Wed Nov 12 04:46:03 +0000 2008","location":"Portland, Or","statuses_count":2807,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/120756699\/webtreats_wood-pattern8-512.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":643,"name":"jpdevries","contributors_enabled":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/64828125\/Photo_4_normal.jpg","id":17331901,"geo_enabled":false,"notifications":false,"utc_offset":-32400},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"SharePoint Architect, geek, developer, outdoorsy, family, reader, writer, photographer, student, gamer, infinitely curious...and much much more","screen_name":"nick_zimmerman","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29539385226","place":null,"coordinates":null,"in_reply_to_status_id":29539385226,"in_reply_to_user_id":15020935,"favorited":false,"in_reply_to_user_id_str":"15020935","contributors":null,"in_reply_to_screen_name":"stacyDraper","id_str":"29539750211","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 04:12:07 +0000 2010","retweeted":false,"geo":null,"id":29539750211,"truncated":false,"text":"@stacyDraper @scottsingleton I was thinking more like the tinfoil hat wearing cynic that hates everything. But old walmart guy is good too."},"time_zone":null,"friends_count":89,"profile_background_color":"C0DEED","id_str":"94093501","geo_enabled":false,"followers_count":23,"url":"http:\/\/www.nick-zimmerman.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Wed Dec 02 13:51:31 +0000 2009","location":"Davenport, IA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288039940\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Nick Zimmerman","listed_count":3,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1151587561\/SNC00005_normal.jpg","id":94093501,"statuses_count":92,"notifications":false,"utc_offset":null},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"ATT Share is an official Twitter site for ATT. We want to learn more\r\nabout you and give you exclusive offers.","screen_name":"ATTshare","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29507336963","source":"web","retweet_count":null,"created_at":"Tue Nov 02 21:33:45 +0000 2010","retweeted":false,"geo":null,"id":29507336963,"truncated":false,"text":"DAILY TIP (Sony Ericsson Xperia X10): Check out this tip to improve battery life on your Xperia X10. More here: http:\/\/go-att.us\/as2k"},"listed_count":33,"time_zone":"Pacific Time (US & Canada)","statuses_count":53,"profile_background_color":"ffffff","id_str":"117532856","show_all_inline_media":false,"friends_count":1813,"followers_count":1009,"url":"http:\/\/www.att.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","geo_enabled":false,"created_at":"Thu Feb 25 21:17:37 +0000 2010","location":"","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/167820806\/Share-FB-1-2-3_edit05.jpg","profile_link_color":"0084B4","protected":false,"verified":false,"name":"ATT Share","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1011617731\/images-1_normal.jpg","id":117532856,"notifications":false,"utc_offset":-28800},{"favourites_count":35,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"ebryn","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":14955528,"favorited":false,"in_reply_to_user_id_str":"14955528","contributors":null,"in_reply_to_screen_name":"patmaddox","id_str":"29533188546","source":"web","retweet_count":null,"created_at":"Wed Nov 03 02:42:03 +0000 2010","retweeted":false,"geo":null,"id":29533188546,"truncated":false,"text":"@patmaddox still have a rubyconf ticket?"},"listed_count":6,"time_zone":"Pacific Time (US & Canada)","statuses_count":138,"profile_background_color":"C0DEED","id_str":"3594","show_all_inline_media":false,"friends_count":176,"followers_count":108,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Tue Aug 01 16:58:55 +0000 2006","location":"iPhone: 37.763550,-122.479309","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"verified":false,"name":"Erik B","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1129175248\/41663_30800013_6853_q_normal.jpg","id":3594,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":true,"favourites_count":758,"friends_count":2028,"profile_sidebar_border_color":"bb0e79","description":"Reality Technician, Developer Advocate at Twitter, at Disneyland","screen_name":"episod","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","attributes":{},"country":"The United States of America","full_name":"Mission Bay, San Francisco","name":"Mission Bay","id":"41bcb736f84a799e"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29569508995","source":"web","retweet_count":null,"created_at":"Wed Nov 03 13:10:29 +0000 2010","retweeted":false,"geo":null,"id":29569508995,"truncated":false,"text":"Hoping to see World of Color today. Especially with the TRON fixins: http:\/\/t.co\/3VRgkU3"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","id_str":"819797","verified":false,"followers_count":2341,"url":"http:\/\/bit.ly\/5w7P88","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Wed Mar 07 22:23:19 +0000 2007","location":"iPhone: 37.778274,-122.397939","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19651315\/fiberoptics.jpg","profile_link_color":"731673","protected":false,"name":"Taylor Singletary","listed_count":180,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"cba4eb","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1158784218\/pinnochio-disneyland_normal.png","id":819797,"statuses_count":8289,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":2,"profile_sidebar_border_color":"181A1E","description":"","screen_name":"wtnelson","contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","friends_count":69,"profile_background_color":"1A1B1F","id_str":"14828579","geo_enabled":false,"followers_count":24,"url":"http:\/\/www.statsblitz.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"666666","lang":"en","verified":false,"created_at":"Mon May 19 04:31:09 +0000 2008","location":"United States","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5233689\/Ryan_Field.jpg","profile_link_color":"742fef","protected":true,"name":"William T Nelson","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/428828892\/Untitled_normal.png","id":14828579,"statuses_count":199,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":13,"profile_sidebar_border_color":"DFDFDF","description":"A good guy, no doubt","screen_name":"MFedoseev","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29562334035","source":"web","retweet_count":null,"created_at":"Wed Nov 03 11:32:43 +0000 2010","retweeted":false,"geo":null,"id":29562334035,"truncated":false,"text":"Got rid of Buzz, was a long time coming"},"time_zone":"Moscow","friends_count":79,"profile_background_color":"EBEBEB","id_str":"786017","geo_enabled":true,"followers_count":135,"url":"http:\/\/mishafedoseev.com","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Wed Feb 21 10:26:10 +0000 2007","location":"Ufa, Russia","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/80333940\/LEGO-stud-white.gif","profile_link_color":"a98914","protected":false,"name":"Misha Fedoseev","listed_count":7,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F3F3F3","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/51802097\/n507634436_21222_normal.jpg","id":786017,"statuses_count":2457,"notifications":false,"utc_offset":10800},{"favourites_count":0,"profile_sidebar_border_color":"a8c7f7","description":"To traditional tours what The Daily Show is to CNN \r\n -The New York Times","screen_name":"HahvahdTour","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29482654424","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:57:18 +0000 2010","retweeted":false,"geo":null,"id":29482654424,"truncated":false,"text":"What do Keith Richards and Greg Mankiw have in common? http:\/\/tiny.cc\/pec6x"},"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","id_str":"136849177","followers_count":213,"url":"http:\/\/www.harvardtour.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":15,"lang":"en","created_at":"Sun Apr 25 03:16:00 +0000 2010","location":"Cambridge, MA","statuses_count":115,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":611,"name":"The Hahvahd Tour","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1147074970\/Mem_Hall_normal.png","id":136849177,"geo_enabled":false,"notifications":false,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"a8c7f7","description":"I am a real human being & you can follow my secret diary at the above address - Feel free to leave comments and interact with me. If you don't like then block!","screen_name":"alpha_twenty","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29185555659","source":"\u003Ca href=\"http:\/\/futuretweets.com\" rel=\"nofollow\"\u003E Futuretweets V2\u003C\/a\u003E","retweet_count":null,"created_at":"Sat Oct 30 14:00:05 +0000 2010","retweeted":false,"geo":null,"id":29185555659,"truncated":false,"text":"#secretdiary I'd love to hear from you so please comment on my blog at www.secretdiaryofatwentysomething.co.uk 30OCT2010-15"},"follow_request_sent":false,"time_zone":"London","profile_background_color":"022330","id_str":"197961441","followers_count":219,"url":"http:\/\/www.secretdiaryofatwentysomething.co.uk","profile_use_background_image":true,"profile_text_color":"333333","listed_count":22,"lang":"en","created_at":"Sat Oct 02 23:35:16 +0000 2010","location":"UK","statuses_count":34,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288202850\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":1353,"name":"Alpha","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1136168924\/alpha-symbol_normal.jpg","id":197961441,"geo_enabled":false,"notifications":false,"utc_offset":0},{"favourites_count":0,"profile_sidebar_border_color":"eeeeee","description":"Me.","screen_name":"tiite_fiille","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29480576662","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:33:48 +0000 2010","retweeted":false,"id":29480576662,"truncated":false,"text":"http:\/\/www.facebook.com\/photo.php?fbid=155572251146121&set=a.155567564479923.24280.100000800417761 black butler"},"listed_count":0,"time_zone":null,"statuses_count":156,"profile_background_color":"B2DFDA","id_str":"151840121","show_all_inline_media":false,"notifications":false,"friends_count":1011,"followers_count":74,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"fr","geo_enabled":false,"created_at":"Fri Jun 04 11:20:52 +0000 2010","location":"France","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288720170\/images\/themes\/theme13\/bg.gif","profile_link_color":"93A644","protected":false,"verified":false,"name":"johanna lauria","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1158111097\/Snapshot_20101102_normal.JPG","id":151840121,"utc_offset":null},{"favourites_count":1,"profile_sidebar_border_color":"87bc44","description":"","screen_name":"bensie","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":14148091,"favorited":false,"in_reply_to_user_id_str":"14148091","contributors":null,"in_reply_to_screen_name":"chriseppstein","id_str":"27967131406","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Oct 20 21:47:16 +0000 2010","retweeted":false,"geo":null,"id":27967131406,"truncated":false,"text":"@chriseppstein Best resources for getting started with Compass? Video on home page is SASS-focused, very familiar with HAML\/SASS already."},"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"2C2F30","id_str":"15394959","followers_count":89,"url":"http:\/\/bensie.com","profile_use_background_image":false,"profile_text_color":"000000","listed_count":3,"lang":"en","created_at":"Fri Jul 11 18:34:06 +0000 2008","location":"San Diego","statuses_count":386,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287763590\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"show_all_inline_media":false,"friends_count":213,"name":"James Miller","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/59062402\/IMG_0736_normal.JPG","id":15394959,"geo_enabled":true,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":7,"friends_count":229,"profile_sidebar_border_color":"87bc44","description":"Principal Software Engineer for Disruptor Beam. Berkman Center Technologist. Founding editor of htttp:\/\/www.playaslife.com. Facebook app and game developer. ","screen_name":"jcallina","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29252419528","source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 06:04:25 +0000 2010","retweeted":false,"geo":null,"id":29252419528,"truncated":false,"text":"Our two new dogs are quiet. I think they are planning something."},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","id_str":"1246481","verified":false,"followers_count":425,"url":"http:\/\/www.playaslife.com","follow_request_sent":null,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Thu Mar 15 20:51:14 +0000 2007","location":"Southcoast, MA","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/501482\/The_Lost_Gardens_1600.jpg","profile_link_color":"0000ff","protected":false,"name":"Jason Callina","listed_count":15,"following":null,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/924770848\/profile_normal.jpg","id":1246481,"statuses_count":6377,"notifications":null,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"samz_uciha","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27916617911","source":"web","retweet_count":null,"created_at":"Wed Oct 20 09:55:01 +0000 2010","retweeted":false,"geo":null,"id":27916617911,"truncated":false,"text":"gmana cra ngoprasiin twitter....\n\nagak sulit ne..."},"time_zone":"Jakarta","friends_count":34,"profile_background_color":"C0DEED","id_str":"113199625","geo_enabled":true,"followers_count":0,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Feb 11 01:23:07 +0000 2010","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"samz sasuke","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1132382619\/40168_1252733178872_1845834892_494358_2944417_n_normal.jpg","id":113199625,"statuses_count":3,"notifications":false,"utc_offset":25200},{"favourites_count":1,"profile_sidebar_border_color":"C6E2EE","description":"Former design student turned world traveler.","screen_name":"theobermeister","listed_count":1,"statuses_count":360,"time_zone":"Eastern Time (US & Canada)","show_all_inline_media":false,"friends_count":90,"profile_background_color":"C6E2EE","id_str":"18470183","contributors_enabled":false,"followers_count":58,"url":"http:\/\/wefollow.com\/franzobermeier","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"663B12","lang":"en","created_at":"Tue Dec 30 04:45:48 +0000 2008","location":"Toronto","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme2\/bg.gif","profile_link_color":"1F98C7","protected":false,"follow_request_sent":false,"name":"Franz Obermeier","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112758336\/Pinto_Lake_normal.jpg","id":18470183,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"eeeeee","description":"down to earth kind of girl love hanging out with friends looking for new ones, single right now, to chat msg me on yahoo at natashacampbell987 not email ","screen_name":"CollegeChick988","contributors_enabled":false,"time_zone":"Central Time (US & Canada)","friends_count":1994,"profile_background_color":"B2DFDA","id_str":"200262115","geo_enabled":true,"followers_count":222,"url":"http:\/\/thereptiliansnworldconspiracies.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Fri Oct 08 21:20:18 +0000 2010","location":"united states","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme13\/bg.gif","profile_link_color":"93A644","protected":true,"name":"Jessica Langley","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1140269578\/1.01_normal.jpeg","id":200262115,"statuses_count":5,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Web Product Guy, Internet Entrepreneur, Co-Founder Sportsvite.com & LeagueApps.com","screen_name":"stevelparker","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29044735479","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 01:42:12 +0000 2010","retweeted":false,"geo":null,"id":29044735479,"truncated":false,"text":"Great startup stories last night from @technotheory @paulsingh @Tawheed @hoomanradfar @abatalion at #bootstrapmd - thanks guys"},"time_zone":"Eastern Time (US & Canada)","friends_count":126,"profile_background_color":"C0DEED","id_str":"40695414","geo_enabled":false,"followers_count":49,"url":"http:\/\/sportsvite.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Sun May 17 17:16:22 +0000 2009","location":"Washington DC","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Steve Parker","listed_count":3,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/339473964\/stevep_normal.jpg","id":40695414,"statuses_count":62,"notifications":false,"utc_offset":-18000},{"statuses_count":3073,"favourites_count":733,"profile_sidebar_border_color":"ffffff","description":"A Polish man in Los Angeles carving his own path through life, tech, marketing, entertainment and media... while working tirelessly behind the scenes.","screen_name":"janowski","show_all_inline_media":true,"friends_count":2442,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29046986240","source":"web","retweet_count":null,"created_at":"Fri Oct 29 02:10:30 +0000 2010","retweeted":false,"geo":null,"id":29046986240,"truncated":false,"text":"\u201cIdealism is what precedes experience.\u201d \u2014 David T. Wolf"},"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"profile_background_color":"C0DEED","id_str":"15382522","followers_count":2277,"url":"http:\/\/www.linkedin.com\/in\/marcinjanowski","verified":false,"profile_use_background_image":true,"profile_text_color":"000000","follow_request_sent":false,"lang":"en","created_at":"Thu Jul 10 20:08:42 +0000 2008","location":"Pasadena, CA","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/47338197\/DSCF0267_1.jpg","profile_link_color":"125beb","protected":false,"name":"Marcin Janowski","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"d4d4d4","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/999600957\/IMG_18-web_normal.jpg","id":15382522,"listed_count":32,"notifications":false,"utc_offset":-28800},{"favourites_count":1315,"friends_count":1563,"profile_sidebar_border_color":"5ED4DC","description":"-TITULAR.-","screen_name":"a4mfightinghawk","geo_enabled":true,"time_zone":"Buenos Aires","follow_request_sent":false,"profile_background_color":"0099B9","id_str":"166736569","verified":false,"followers_count":38,"url":null,"profile_use_background_image":true,"profile_text_color":"3C3940","lang":"es","created_at":"Wed Jul 14 21:57:45 +0000 2010","location":"ARGENTINA","listed_count":4,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":true,"statuses_count":5209,"name":"M Giletta Marconi","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_6_normal.png","id":166736569,"contributors_enabled":false,"notifications":false,"utc_offset":-10800},{"follow_request_sent":false,"favourites_count":8,"profile_sidebar_border_color":"eeeeee","description":"Writer. Extently musician. Dedicated to political campaigning, civil rights and individualism, atheism and humanism, literature, philosophy and culture.","screen_name":"jjarichardson","time_zone":"London","profile_background_color":"131516","id_str":"47625700","listed_count":18,"followers_count":517,"url":"http:\/\/jjarichardson.tumblr.com\/","statuses_count":5370,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Tue Jun 16 13:41:00 +0000 2009","friends_count":1588,"location":"East Yorkshire, England","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/165752853\/005.JPG","profile_link_color":"009999","protected":false,"geo_enabled":true,"name":"Jacob Richardson","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1157672351\/38516_147566095256327_100000088118511_431519_7709287_n_normal.jpg","id":47625700,"verified":false,"notifications":false,"utc_offset":0},{"follow_request_sent":false,"favourites_count":85,"profile_sidebar_border_color":"87bc44","description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","screen_name":"technoweenie","verified":false,"status":{"in_reply_to_status_id_str":"29546073529","place":null,"coordinates":null,"in_reply_to_status_id":29546073529,"in_reply_to_user_id":10038,"favorited":false,"in_reply_to_user_id_str":"10038","contributors":null,"in_reply_to_screen_name":"jasonwatkinspdx","id_str":"29546313496","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 06:09:20 +0000 2010","retweeted":false,"geo":null,"id":29546313496,"truncated":false,"text":"@jasonwatkinspdx yea we'll be blogging and releasing as much OSS as we can"},"time_zone":"Central Time (US & Canada)","profile_background_color":"FFFFFF","id_str":"780561","listed_count":455,"followers_count":4019,"url":"http:\/\/techno-weenie.net","statuses_count":11556,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Mon Feb 19 17:12:49 +0000 2007","location":"sf","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","profile_link_color":"0000ff","protected":false,"name":"rick","show_all_inline_media":false,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1153550035\/rick-rar-talk-1_normal.png","id":780561,"geo_enabled":true,"notifications":false,"utc_offset":-21600,"friends_count":190},{"show_all_inline_media":false,"favourites_count":0,"friends_count":1999,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"_lucky_96_","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29077935039","source":"\u003Ca href=\"http:\/\/www.google.com\/support\/youtube\/bin\/answer.py?hl=en&answer=164577\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 11:25:00 +0000 2010","retweeted":false,"geo":null,"id":29077935039,"truncated":false,"text":"Ich mag ein YouTube-Video. -- Lets Play Bioshock 2 [Blind] #50 Deutsch - Viel Viel ADAM http:\/\/youtu.be\/c6LBvKkgFe8?a"},"geo_enabled":false,"time_zone":"Berlin","profile_background_color":"C0DEED","id_str":"194640716","verified":false,"followers_count":132,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"de","created_at":"Fri Sep 24 16:48:04 +0000 2010","location":"Miltenberg","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288217225\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Lucas Renz","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1131778295\/denker_normal.jpg","id":194640716,"statuses_count":200,"notifications":false,"utc_offset":3600},{"contributors_enabled":false,"time_zone":null,"description":"","favourites_count":0,"profile_sidebar_fill_color":"EADEAA","followers_count":2,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"created_at":"Fri Oct 15 20:46:51 +0000 2010","in_reply_to_user_id":64483364,"favorited":false,"contributors":null,"coordinates":null,"in_reply_to_screen_name":"DebraJOnline","id":27476762875,"text":"@DebraJOnline http:\/\/is.gd\/g3G7O Tax relief on pensions is reduced"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"D9B17E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme8\/bg.gif","lang":"en","created_at":"Mon Oct 11 01:03:53 +0000 2010","profile_background_color":"8B542B","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1141884688\/1317_normal.jpg","listed_count":0,"profile_text_color":"333333","name":"Tambra","statuses_count":3,"following":false,"screen_name":"ktambravo2s","id":201076260,"show_all_inline_media":false,"utc_offset":null,"friends_count":20,"profile_link_color":"9D582E"},{"favourites_count":3,"profile_sidebar_border_color":"eeeeee","description":"It is what it is...","screen_name":"crm11four","listed_count":2,"time_zone":"Atlantic Time (Canada)","statuses_count":3508,"profile_background_color":"131516","id_str":"86057721","show_all_inline_media":false,"friends_count":98,"followers_count":43,"url":"http:\/\/claritty.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Thu Oct 29 12:44:53 +0000 2009","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme14\/bg.gif","profile_link_color":"009999","protected":true,"verified":false,"name":"Jose","follow_request_sent":null,"following":null,"profile_background_tile":true,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1143420743\/CRM114_normal.jpg","id":86057721,"notifications":null,"utc_offset":-14400},{"favourites_count":1,"profile_sidebar_border_color":"86A4A6","description":"\u307e\u3060\u5922\u3092\u63a2\u3057\u3066\u307e\u3059\u3002\r\n\u6700\u8fd1\u3001\u6687\u306a\u306e\u306f\u4eba\u751f\u306e\u76ee\u7684\u3092\u5931\u3063\u3066\u3044\u308b\u304b\u3089\u3060\u3068\u304a\u3082\u3044\u307e\u3059\u3002\r\n\u5168\u90e8\u3001\u5618\u3067\u3082\u69cb\u308f\u306a\u3044\u30fb\u30fb\u81ea\u4fe1\u3082\u306a\u304f\u3001\u6c17\u6301\u3061\u304c\u5b9a\u307e\u3089\u306a\u3044\u3001\u3044\u3044\u52a0\u6e1b\u306a\u751f\u304d\u69d8\u3060\u3002\r\n\u3068\u306b\u304b\u304f\u3001\u6687\u3002","screen_name":"deblocking","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29577664929","source":"\u003Ca href=\"http:\/\/www.hatena.ne.jp\/guide\/twitter\" rel=\"nofollow\"\u003EHatena\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:45:49 +0000 2010","retweeted":false,"geo":null,"id":29577664929,"truncated":false,"text":"F# \u5165\u9580\u306e\u30da\u30fc\u30b8(\u3053\u308c\u306f\u3044\u3044) \/ F#\u5165\u9580 http:\/\/htn.to\/GVgZCx"},"listed_count":2,"time_zone":"Osaka","statuses_count":127,"profile_background_color":"709397","id_str":"15045494","show_all_inline_media":false,"friends_count":951,"followers_count":172,"url":"http:\/\/d.hatena.ne.jp\/DEBLOCKING\/","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"ja","geo_enabled":false,"created_at":"Sun Jun 08 08:49:56 +0000 2008","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288726349\/images\/themes\/theme6\/bg.gif","profile_link_color":"FF3300","protected":false,"verified":false,"name":"deblocking","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1145055437\/Test_normal.png","id":15045494,"notifications":false,"utc_offset":32400},{"show_all_inline_media":false,"favourites_count":900,"profile_sidebar_border_color":"BDDCAD","description":"Incubator","screen_name":"ClarendonCare","contributors_enabled":false,"geo_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29381112596","source":"web","retweet_count":null,"created_at":"Mon Nov 01 15:15:53 +0000 2010","retweeted":false,"geo":null,"id":29381112596,"truncated":false,"text":"Mid-morning run."},"time_zone":"Quito","profile_background_color":"9AE4E8","id_str":"53227554","friends_count":1999,"followers_count":319,"url":"http:\/\/www.clarendoncaregroup.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Jul 02 23:41:23 +0000 2009","location":"Tribeca, Boston, DC, Palo Alto","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28732562\/CommunalRed.jpg","profile_link_color":"0084B4","protected":false,"name":"ClarendonMediaGroup","listed_count":8,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/357400492\/CommunalRed_normal.jpg","id":53227554,"statuses_count":569,"notifications":false,"utc_offset":-18000},{"follow_request_sent":false,"favourites_count":725,"profile_sidebar_border_color":"a8c7f7","description":"CEO Twimbow.com | Sitofono.com, blogger, mac, geek, early adopter, italian, san francisco lover, twitter addict. I love gadgets.","screen_name":"filos","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29577224423","source":"\u003Ca href=\"http:\/\/reader2twitter.appspot.com\/\" rel=\"nofollow\"\u003EGoogle2Tweet\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:41:00 +0000 2010","retweeted":false,"geo":null,"id":29577224423,"truncated":false,"text":"An Open Source, HTML5 Framework for iPad E-books http:\/\/j.mp\/aO70Aj"},"time_zone":"Rome","profile_background_color":"022330","id_str":"788994","listed_count":254,"followers_count":3937,"url":"http:\/\/about.me\/filos","statuses_count":31547,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Thu Feb 22 16:56:15 +0000 2007","location":"\u00dcT: 39.294344,9.02292","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/130496372\/twimbowback-filos.png","profile_link_color":"0084B4","protected":false,"name":"Luca Filigheddu","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/803884118\/primopiano_normal.png","id":788994,"geo_enabled":true,"notifications":false,"utc_offset":3600,"friends_count":3379},{"favourites_count":0,"friends_count":239,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"jhcesi","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29567192251","source":"\u003Ca href=\"http:\/\/www.newarkadvocate.com\" rel=\"nofollow\"\u003ENewarkAdvocate Login\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 12:41:32 +0000 2010","retweeted":false,"geo":null,"id":29567192251,"truncated":false,"text":"Thank you for taking the time to study and understand the First Amendment with your students. What a wonderful... http:\/\/tinyurl.com\/24alb23"},"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"93227995","verified":false,"followers_count":37,"url":"http:\/\/columiacountypc.org","profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat Nov 28 17:54:46 +0000 2009","location":"Lake City, FL","listed_count":0,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":86,"name":"Janet Horton","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1121068940\/My_Head_shot_bw_normal.jpg","id":93227995,"contributors_enabled":false,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Estudante de Bacharelado em Ci\u00eancia e Tecnologia - UFERSA\r\n","screen_name":"ARKANZO","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29537798690","source":"web","retweet_count":null,"created_at":"Wed Nov 03 03:43:47 +0000 2010","retweeted":false,"geo":null,"id":29537798690,"truncated":false,"text":"mais de mil vagas para a #UFERSA \u00e9 s\u00f3 fazer o #ENEM"},"time_zone":"Brasilia","friends_count":1234,"profile_background_color":"C0DEED","id_str":"76032505","geo_enabled":true,"followers_count":109,"url":"http:\/\/www.engsouza.blogspot.com\/","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"es","verified":false,"created_at":"Mon Sep 21 13:53:00 +0000 2009","location":"Rio Grande do Norte","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/151393182\/air_show.jpg","profile_link_color":"0084B4","protected":false,"name":"ANDR\u00c9 FELIPE","listed_count":1,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1108670414\/p_normal.jpg","id":76032505,"statuses_count":216,"notifications":false,"utc_offset":-10800},{"favourites_count":0,"profile_sidebar_border_color":"ff9d5c","description":"UI\/UX consulting, interactive and application design, marketing and campaign execution, analytics and analysis.","screen_name":"GestaltLabs","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29502700203","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29467133255","source":"\u003Ca href=\"http:\/\/www.lomalogue.com\" rel=\"nofollow\"\u003Enewsycombinator\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 13:00:06 +0000 2010","retweeted":false,"id":29467133255,"truncated":false,"text":"Expedia on how one extra data field can cost $12m http:\/\/j.mp\/ac1LCp"},"retweet_count":null,"created_at":"Tue Nov 02 20:29:17 +0000 2010","retweeted":false,"id":29502700203,"truncated":false,"text":"RT @newsycombinator: Expedia on how one extra data field can cost $12m http:\/\/j.mp\/ac1LCp"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"ffffff","id_str":"154389687","notifications":false,"followers_count":46,"url":"http:\/\/gestaltlabs.com","profile_use_background_image":true,"profile_text_color":"212121","listed_count":3,"lang":"en","created_at":"Fri Jun 11 03:23:02 +0000 2010","location":"Dallas, TX","statuses_count":36,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/157217230\/gestalt-twitter.gif","profile_link_color":"ed9600","protected":false,"show_all_inline_media":false,"friends_count":148,"name":"Gestalt Labs","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ebebeb","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1136608040\/gestalt-twit-avatar_normal.png","id":154389687,"geo_enabled":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"EEEEEE","description":"Code For America, chatreach, gov 2.0, startups, Coding, HomoPower, Swim, Run, Food, Cooking, StartupWeekend","screen_name":"danmelton","verified":false,"status":{"in_reply_to_status_id_str":"29513186153","place":null,"coordinates":null,"in_reply_to_status_id":29513186153,"in_reply_to_user_id":9429332,"favorited":false,"in_reply_to_user_id_str":"9429332","contributors":null,"in_reply_to_screen_name":"tylergillies","id_str":"29519503759","source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 00:00:03 +0000 2010","retweeted":false,"geo":null,"id":29519503759,"truncated":false,"text":"@tylergillies balsmiq is awesome"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"ACDED6","id_str":"14239131","followers_count":852,"url":null,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":49,"lang":"en","created_at":"Thu Mar 27 22:02:01 +0000 2008","location":"San Francisco","statuses_count":943,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme18\/bg.gif","profile_link_color":"038543","protected":false,"show_all_inline_media":false,"friends_count":864,"name":"danmelton","contributors_enabled":false,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"F6F6F6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1083055627\/dan_normal.jpeg","id":14239131,"geo_enabled":false,"notifications":false,"utc_offset":-21600},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Relish allows you to browse, search, and organize your Cucumber features on the web. Made by @justinko and @mattwynne","screen_name":"relishapp","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29116181170","source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":189057495,"favorited":false,"in_reply_to_user_id_str":"189057495","contributors":null,"in_reply_to_screen_name":"relishapp","id_str":"29110632935","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 29 18:04:34 +0000 2010","retweeted":false,"geo":null,"id":29110632935,"truncated":false,"text":"@relishapp Plugged you guys in my article on the future of documentation http:\/\/bit.ly\/dp-docs"},"retweet_count":null,"created_at":"Fri Oct 29 19:25:51 +0000 2010","retweeted":false,"geo":null,"id":29116181170,"truncated":false,"text":"RT @joefiorini: @relishapp Plugged you guys in my article on the future of documentation http:\/\/bit.ly\/dp-docs"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"189057495","listed_count":13,"followers_count":164,"url":"http:\/\/relishapp.com","statuses_count":6,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Fri Sep 10 08:00:29 +0000 2010","friends_count":1177,"location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288031688\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"geo_enabled":false,"name":"Relish","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1127263854\/twitter-logo_normal.png","id":189057495,"verified":false,"notifications":false,"utc_offset":-18000},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"rspec","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29414943182","source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Nov 01 23:05:39 +0000 2010","retweeted":false,"geo":null,"id":29414943182,"truncated":false,"text":"Did you know RSpec can generate instances of a class for you? http:\/\/cot.ag\/aQnVNe ^JK"},"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","id_str":"29239854","listed_count":37,"followers_count":547,"url":"http:\/\/rspec.info","statuses_count":71,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Apr 06 16:56:09 +0000 2009","location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"RSpec - BDD for Ruby","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_0_normal.png","id":29239854,"geo_enabled":false,"notifications":false,"utc_offset":-21600,"friends_count":1458},{"geo_enabled":false,"description":"","screen_name":"laserlemon","time_zone":"Eastern Time (US & Canada)","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 17:04:19 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29488235270,"in_reply_to_status_id_str":null,"id_str":"29488235270","text":"Have you ever caught a leaf in your hand as it fell from a tree? Well as of today, I have."},"verified":false,"profile_background_color":"efeeeb","follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_text_color":"343330","url":"http:\/\/github.com\/laserlemon","lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","created_at":"Thu Jun 18 17:59:32 +0000 2009","profile_link_color":"339933","location":"Holland, Michigan","listed_count":4,"protected":false,"statuses_count":384,"profile_background_tile":false,"profile_sidebar_fill_color":"deddda","name":"Steve Richert","show_all_inline_media":true,"following":true,"friends_count":94,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/269521476\/Lemon_normal.jpg","id":48431692,"id_str":"48431692","contributors_enabled":false,"utc_offset":-18000,"favourites_count":0,"profile_sidebar_border_color":"deddda","followers_count":58},{"follow_request_sent":false,"favourites_count":188,"profile_sidebar_border_color":"fff8ad","description":"ruby, rails, node, nosql, husband, father, golfer. not necessarily in that order. (personal: @steveagalloco) if you gotta ask, you ain't got it","screen_name":"anno","verified":false,"status":{"in_reply_to_status_id_str":"29478662567","place":null,"coordinates":null,"in_reply_to_status_id":29478662567,"in_reply_to_user_id":2064111,"favorited":false,"in_reply_to_user_id_str":"2064111","contributors":null,"in_reply_to_screen_name":"gregnewman","id_str":"29480622189","source":"web","retweet_count":null,"created_at":"Tue Nov 02 15:34:19 +0000 2010","retweeted":false,"geo":null,"id":29480622189,"truncated":false,"text":"@gregnewman Cheeseburger in Paradise"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"e0ddc3","id_str":"4618","listed_count":11,"followers_count":293,"url":"http:\/\/www.beforeitwasround.com","statuses_count":1291,"profile_use_background_image":false,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Wed Aug 23 01:12:20 +0000 2006","location":"Charlotte, NC","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/140563920\/116775_0147_ful.jpg","profile_link_color":"ab321d","protected":false,"friends_count":337,"name":"Steve Agalloco","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"abbf50","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099062107\/perry_the_platypus_normal.png","id":4618,"geo_enabled":true,"notifications":false,"utc_offset":-18000},{"favourites_count":1,"friends_count":42,"profile_sidebar_border_color":"C0DEED","description":"fighting movies are the greatest!Van Damme,Bruce Lee,etc...33333","screen_name":"NickytheRocky","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29293750114","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 31 16:57:49 +0000 2010","retweeted":false,"geo":null,"id":29293750114,"truncated":false,"text":"CS Chat - A Small Chat Application http:\/\/t.co\/XwzcrCA via @AddThis"},"geo_enabled":false,"time_zone":null,"follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"200087716","verified":false,"followers_count":14,"url":null,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Oct 08 12:26:08 +0000 2010","location":"Srbac","listed_count":1,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":13,"name":"Nicky Tatic","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1139973527\/matura2_normal.jpg","id":200087716,"contributors_enabled":false,"notifications":false,"utc_offset":null},{"follow_request_sent":false,"description":"Operations Director, Code for America. Wife and Mommy too! ","screen_name":"mfreilly","time_zone":"Pacific Time (US & Canada)","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"created_at":"Mon Nov 01 22:06:06 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29410324193,"in_reply_to_status_id_str":null,"id_str":"29410324193","text":"SO exciting! RT @CodeforAmerica: Introducing the Inaugural Class of @CodeforAmerica Fellows: http:\/\/bit.ly\/aJysDj #gov20 #opengov"},"profile_background_color":"C6E2EE","listed_count":7,"notifications":false,"profile_use_background_image":true,"profile_text_color":"663B12","url":"http:\/\/www.codeforamerica.org","statuses_count":244,"show_all_inline_media":false,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287437169\/images\/themes\/theme2\/bg.gif","created_at":"Fri Aug 15 19:27:20 +0000 2008","friends_count":136,"profile_link_color":"1F98C7","location":"Mill Valley, CA","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","name":"meghan","following":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/60795320\/Reilly_Photo_normal.JPG","id":15866539,"id_str":"15866539","verified":false,"utc_offset":-28800,"favourites_count":0,"profile_sidebar_border_color":"C6E2EE","followers_count":221},{"favourites_count":2,"profile_sidebar_border_color":"70D4F3","description":"hacking the perpetual gibson","screen_name":"maxogden","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29546877531","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 06:20:59 +0000 2010","retweeted":false,"geo":null,"id":29546877531,"truncated":false,"text":"Way to go @urbanairship. Pdx rules lately"},"listed_count":64,"time_zone":"Alaska","statuses_count":966,"profile_background_color":"000000","id_str":"12241752","show_all_inline_media":false,"friends_count":166,"followers_count":563,"url":"http:\/\/www.maxogden.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":true,"created_at":"Mon Jan 14 23:11:21 +0000 2008","location":"portland oregon","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2527748\/tiling.gif","profile_link_color":"17c6ee","protected":false,"verified":false,"name":"max ogden","follow_request_sent":false,"following":true,"profile_background_tile":true,"profile_sidebar_fill_color":"b5e8fc","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1089502710\/maxcropped_normal.png","id":12241752,"notifications":false,"utc_offset":-32400},{"show_all_inline_media":false,"favourites_count":37,"profile_sidebar_border_color":"C0DEED","description":null,"screen_name":"zuzmo","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29573946209","source":"\u003Ca href=\"http:\/\/www.ubuntu.com\" rel=\"nofollow\"\u003EUbuntu\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:03:10 +0000 2010","retweeted":false,"geo":null,"id":29573946209,"truncated":false,"text":"m\u00e9g keresek php+wordpress programoz\u00f3t! f\u0151\u00e1ll\u00e1s, bp. azonnal :)"},"time_zone":"Budapest","friends_count":454,"profile_background_color":"C0DEED","id_str":"24946423","verified":false,"followers_count":168,"url":null,"follow_request_sent":false,"geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Tue Mar 17 20:20:27 +0000 2009","location":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"G\u00e1bor Nagymajt\u00e9nyi","listed_count":2,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_5_normal.png","id":24946423,"statuses_count":3172,"notifications":false,"utc_offset":3600},{"description":"I like to build startups from scratch","screen_name":"aKlizzy","listed_count":0,"time_zone":null,"status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 02:32:33 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29431494952,"in_reply_to_status_id_str":null,"id_str":"29431494952","text":"GIANTS!!! Who's getting MVP? I'd love to hear what everyone thinks"},"statuses_count":107,"profile_background_color":"ACDED6","show_all_inline_media":false,"friends_count":65,"contributors_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"705f5f","url":"http:\/\/www.linkedin.com\/in\/anthonykline1\/","geo_enabled":false,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","created_at":"Tue Dec 15 03:56:01 +0000 2009","profile_link_color":"038543","location":"\u00dcT: 37.77433,-122.399143","verified":false,"protected":false,"follow_request_sent":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F6F6F6","name":"Anthony Kline","following":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1129237991\/twitter_normal.jpg","id":96907689,"id_str":"96907689","utc_offset":null,"favourites_count":0,"profile_sidebar_border_color":"EEEEEE","followers_count":14},{"statuses_count":1655,"favourites_count":2580,"profile_sidebar_border_color":"181A1E","description":"Cloud Architect @Dell and Founder of Cloud Co.s @Surgient & @Hyper9 Interests #Cloud #Ruby #VMware #NodeJS #Azure #Erlang #Networking #Virtualization #DevOps","screen_name":"mccrory","show_all_inline_media":false,"friends_count":1263,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29564298419","source":"\u003Ca href=\"http:\/\/www.osfoora.com\" rel=\"nofollow\"\u003EOsfoora for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 12:02:25 +0000 2010","retweeted":false,"geo":null,"id":29564298419,"truncated":false,"text":"I don't buy the reason of backup & recov.>RT @ZeusTechnology: report shows orgs reluct. to virt business critical apps: http:\/\/cot.ag\/bPQd2p"},"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"profile_background_color":"1A1B1F","id_str":"16468695","followers_count":493,"url":"http:\/\/blog.mccrory.me","verified":false,"profile_use_background_image":true,"profile_text_color":"666666","follow_request_sent":false,"lang":"en","created_at":"Fri Sep 26 14:59:36 +0000 2008","location":"Austin, Texas","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288026948\/images\/themes\/theme9\/bg.gif","profile_link_color":"2FC2EF","protected":false,"name":"Dave McCrory","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/76084835\/web-profile_normal.jpg","id":16468695,"listed_count":35,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":false,"favourites_count":0,"friends_count":971,"profile_sidebar_border_color":"86A4A6","description":"Founder and CEO of the Brechtmann International Corporation, specialized society in nanotechnologies.","screen_name":"Brechtmann","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"26479396378","source":"web","retweet_count":null,"created_at":"Tue Oct 05 18:19:40 +0000 2010","retweeted":false,"geo":null,"id":26479396378,"truncated":false,"text":"I'm speaking in Chicago this Thursday !"},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"709397","id_str":"193752912","verified":false,"followers_count":258,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"fr","created_at":"Wed Sep 22 16:15:06 +0000 2010","location":"New-York, Paris, Everywhere.","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288660386\/images\/themes\/theme6\/bg.gif","profile_link_color":"01527d","protected":false,"name":"Nathaniel Brechtmann","listed_count":5,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"97c5c7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1131512877\/brechtmann_normal.png","id":193752912,"statuses_count":18,"notifications":false,"utc_offset":-18000},{"description":"","screen_name":"puuj","verified":false,"profile_sidebar_border_color":"a8c7f7","follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":0,"notifications":false,"profile_background_color":"022330","url":null,"listed_count":3,"lang":"en","profile_use_background_image":true,"created_at":"Wed Aug 29 23:00:18 +0000 2007","profile_text_color":"333333","location":"Berwyn Heights, MD","statuses_count":30,"protected":true,"show_all_inline_media":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme15\/bg.png","friends_count":125,"profile_link_color":"0084B4","name":"puuj","contributors_enabled":false,"following":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/89711717\/jayroll_normal.jpg","id":8521632,"id_str":"8521632","geo_enabled":true,"profile_background_tile":false,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC","followers_count":46},{"contributors_enabled":false,"time_zone":null,"description":null,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":2,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Sep 30 16:23:07 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":25994611269,"id_str":"25994611269","text":"Free Gifts http:\/\/tinyurl.com\/2g5u5hm"},"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","follow_request_sent":false,"url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Wed Sep 29 15:31:11 +0000 2010","profile_background_color":"C0DEED","location":null,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/default_profile_2_normal.png","listed_count":0,"friends_count":124,"profile_text_color":"333333","name":"Adolph Leopold","statuses_count":1,"following":false,"screen_name":"Tulvgatoeey","id":196635483,"id_str":"196635483","show_all_inline_media":false,"utc_offset":null,"favourites_count":0,"profile_link_color":"0084B4"},{"profile_background_color":"000000","description":"His voice sounds like a melding of trey songz and chris brown. Injected with our island flavour of course.\r\nChec him out cause he will be the healer u need.","screen_name":"reyoungprince","status":{"contributors":null,"place":null,"coordinates":null,"in_reply_to_screen_name":"106andpark","retweet_count":null,"geo":null,"retweeted":false,"source":"web","in_reply_to_status_id":29387588670,"created_at":"Mon Nov 01 16:38:22 +0000 2010","in_reply_to_user_id":30309979,"truncated":false,"in_reply_to_status_id_str":"29387588670","favorited":false,"id":29387850370,"in_reply_to_user_id_str":"30309979","id_str":"29387850370","text":"@106andpark @reyoungprince I feel like taking my girl shopping for the first time lol. Thats what i feel like doing."},"listed_count":0,"profile_use_background_image":true,"profile_text_color":"0013e6","statuses_count":40,"show_all_inline_media":false,"notifications":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/155759187\/denville.jpg","friends_count":92,"profile_link_color":"b30009","url":null,"contributors_enabled":false,"lang":"en","geo_enabled":false,"profile_background_tile":true,"favourites_count":24,"created_at":"Thu Sep 30 02:09:40 +0000 2010","profile_sidebar_fill_color":"080808","location":"World","protected":false,"verified":false,"profile_sidebar_border_color":"3a9c3d","name":"Denville","follow_request_sent":false,"following":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1134152886\/denville_normal.jpg","id":196858370,"id_str":"196858370","time_zone":"Quito","utc_offset":-18000,"followers_count":21},{"favourites_count":11,"profile_sidebar_border_color":"C0DEED","description":"Actor, Scriptwriter & Voiceover Specialist, Martial Art Freak, Laptop Nerd and Good Teeth SPARDA ARCHANGEL...LOL","screen_name":"ARKYHAEL","listed_count":0,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29373714787","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Nov 01 13:51:10 +0000 2010","retweeted":false,"id":29373714787,"truncated":false,"text":"darth maul(seven dust) http:\/\/t.co\/M37taT0 via @youtube\r\nall my life O;-]"},"statuses_count":284,"time_zone":"London","show_all_inline_media":false,"friends_count":111,"profile_background_color":"C0DEED","id_str":"175127322","contributors_enabled":false,"notifications":null,"followers_count":11,"url":"http:\/\/fivezs.com","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Thu Aug 05 18:19:27 +0000 2010","location":"CHELSEA","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/147013040\/ArchAngel_Arkhael_The_Descerning_Heart_MY_SPIRIT.jpg","profile_link_color":"0084B4","protected":false,"follow_request_sent":null,"name":"Stephen Awaritefe","following":null,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1109476688\/ArchAngel_Arkhael_The_Descerning_Heart_MY_SPIRIT_normal.jpg","id":175127322,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":0,"friends_count":211,"profile_sidebar_border_color":"a8c7f7","description":"Globetrotting web developer and loving every minute of it","screen_name":"brettgoulder","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":2514731,"favorited":false,"in_reply_to_user_id_str":"2514731","contributors":null,"in_reply_to_screen_name":"toolmantim","id_str":"29568036194","source":"web","retweet_count":null,"created_at":"Wed Nov 03 12:52:19 +0000 2010","retweeted":false,"geo":null,"id":29568036194,"truncated":false,"text":"@toolmantim which hotel are you staying at for #sxsw"},"geo_enabled":false,"time_zone":"Sydney","profile_background_color":"022330","id_str":"16257828","verified":false,"followers_count":124,"url":"http:\/\/www.brettgoulder.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Sep 12 15:35:11 +0000 2008","location":"Sydney, Australia","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"brettgoulder","listed_count":16,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/389356905\/calvin_and_hobbes_normal.jpg","id":16257828,"statuses_count":1156,"notifications":false,"utc_offset":36000},{"favourites_count":0,"friends_count":40,"profile_sidebar_border_color":"CC3366","description":"soltera soy cristiana evangelicapentecostaltengo 25a\u00f1os soy educadora y misionera para alcanzar a los inalcanzables por jesucristo el anelo de dios pommmmmmmmmm","screen_name":"FZUJKL","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"25814772082","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"16084112660","source":"web","retweet_count":null,"created_at":"Sun Jun 13 16:58:44 +0000 2010","retweeted":false,"geo":null,"id":16084112660,"truncated":false,"text":"Ronaldo>>>>>>>>>>"},"retweet_count":null,"created_at":"Tue Sep 28 19:52:12 +0000 2010","retweeted":false,"geo":null,"id":25814772082,"truncated":false,"text":"RT @AnthonnyLucas: Ronaldo>>>>>>>>>>"},"geo_enabled":false,"time_zone":null,"follow_request_sent":false,"profile_background_color":"FF6699","id_str":"196276727","verified":false,"followers_count":0,"url":null,"profile_use_background_image":true,"profile_text_color":"362720","lang":"es","created_at":"Tue Sep 28 19:03:49 +0000 2010","location":"venezuela","listed_count":0,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme11\/bg.gif","profile_link_color":"B40B43","protected":false,"statuses_count":1,"name":"JENNIFER MARGARITA","show_all_inline_media":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"E5507E","profile_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/default_profile_3_normal.png","id":196276727,"contributors_enabled":false,"notifications":false,"utc_offset":null},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Tweeting about how we are helping web start ups to go faster!","screen_name":"ohstudio","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29015537856","source":"\u003Ca href=\"http:\/\/wefollow.com\" rel=\"nofollow\"\u003EWeFollow\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Oct 28 19:09:15 +0000 2010","retweeted":false,"geo":null,"id":29015537856,"truncated":false,"text":"Just added myself to the http:\/\/wefollow.com twitter directory under: #rosario_argentina #tech #entrepreneur #startup #web #op"},"follow_request_sent":false,"time_zone":"Buenos Aires","profile_background_color":"969696","id_str":"83521076","followers_count":225,"url":"http:\/\/wefollow.com\/ohstudio","profile_use_background_image":true,"profile_text_color":"333333","listed_count":10,"lang":"en","created_at":"Mon Oct 19 04:23:02 +0000 2009","location":"Argentina","statuses_count":274,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70298842\/Oh_TWITTER2.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":957,"name":"Oh!STUDIO's Team","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/735633540\/0e2cf89_normal.png","id":83521076,"geo_enabled":true,"notifications":false,"utc_offset":-10800},{"follow_request_sent":false,"favourites_count":3,"profile_sidebar_border_color":"829D5E","description":"Ninja web developer. Lovin' CakePHP, Rails, jQuery, and other funtastic stuffs!","screen_name":"joelmoss","status":{"in_reply_to_status_id_str":"29502703296","place":null,"coordinates":null,"in_reply_to_status_id":29502703296,"in_reply_to_user_id":21300475,"favorited":false,"in_reply_to_user_id_str":"21300475","contributors":null,"in_reply_to_screen_name":"bhnoll","id_str":"29514806387","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 23:06:29 +0000 2010","retweeted":false,"geo":null,"id":29514806387,"truncated":false,"text":"@bhnoll Was that a tweet I just saw from you? ;)"},"time_zone":"London","profile_background_color":"352726","id_str":"867511","listed_count":52,"followers_count":544,"url":"http:\/\/developwithstyle.com","statuses_count":3678,"profile_use_background_image":true,"profile_text_color":"3E4415","show_all_inline_media":false,"lang":"en","created_at":"Sat Mar 10 11:31:53 +0000 2007","friends_count":227,"location":"iPhone: 53.687012,-2.624039","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","profile_link_color":"D02B55","protected":false,"geo_enabled":true,"name":"Joel Moss","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"99CC33","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/585776954\/pocoyo_avatar_normal.png","id":867511,"verified":false,"notifications":false,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":574,"friends_count":676,"profile_sidebar_border_color":"ffffff","description":"rubyist, coffeescripter, jsonista, clojurian, cyclist, boulderite. starting @DocuSwarm. often thinks the old fashioned way, with a pen & a paper notebook","screen_name":"benatkin","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29525858949","source":"web","retweet_count":null,"created_at":"Wed Nov 03 01:14:26 +0000 2010","retweeted":false,"geo":null,"id":29525858949,"truncated":false,"text":"Class Action Suits: a way for lawyers to spam zillions of people about crap they don't care about. (90%+ of the time) #GoogleBuzz"},"geo_enabled":true,"time_zone":"Mountain Time (US & Canada)","profile_background_color":"ffffff","id_str":"64218381","verified":false,"followers_count":672,"url":"http:\/\/benatkin.com\/","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"000000","lang":"en","created_at":"Sun Aug 09 17:58:37 +0000 2009","location":"Boulder & Denver","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/152793567\/nwblackbird_520_51.jpg","profile_link_color":"0900ff","protected":false,"name":"Ben A\u03c4kin","listed_count":75,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1140175662\/jsonista_normal.jpg","id":64218381,"statuses_count":4419,"notifications":false,"utc_offset":-25200},{"follow_request_sent":null,"favourites_count":17,"profile_sidebar_border_color":"bfbfbf","description":"Brought to you by @adamstac and @pengwynn, The Changelog is a blog and weekly podcast about what's fresh and new in open source.","screen_name":"changelogshow","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29575997875","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:26:53 +0000 2010","retweeted":false,"geo":null,"id":29575997875,"truncated":false,"text":"Paython: Python payment processing module http:\/\/lg.gd\/3m"},"time_zone":"Mountain Time (US & Canada)","profile_background_color":"ffffff","id_str":"90286855","listed_count":171,"followers_count":1546,"url":"http:\/\/thechangelog.com\/","statuses_count":1021,"profile_use_background_image":false,"profile_text_color":"171717","lang":"en","created_at":"Mon Nov 16 00:47:38 +0000 2009","location":"Texas!","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","profile_link_color":"225588","protected":false,"name":"The Changelog","show_all_inline_media":false,"following":null,"profile_background_tile":false,"profile_sidebar_fill_color":"efefef","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/544002721\/Album-Art_normal.png","id":90286855,"geo_enabled":true,"notifications":null,"utc_offset":-25200,"friends_count":60},{"statuses_count":249,"favourites_count":0,"profile_sidebar_border_color":"87bc44","description":"","screen_name":"drogus","show_all_inline_media":false,"friends_count":151,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29512794369","source":"web","retweet_count":null,"created_at":"Tue Nov 02 22:42:49 +0000 2010","retweeted":false,"id":29512794369,"truncated":false,"text":"Just installed cyanogen 6.1.0 mod for HTC Dream, surprisingly it's pretty fast. I love the new features and finally I can use multitouch! :D"},"contributors_enabled":false,"time_zone":"Warsaw","geo_enabled":false,"profile_background_color":"9ae4e8","id_str":"6412082","notifications":false,"followers_count":268,"url":null,"verified":false,"profile_use_background_image":true,"profile_text_color":"000000","follow_request_sent":false,"lang":"en","created_at":"Tue May 29 11:23:25 +0000 2007","location":"","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"name":"Piotr Sarnacki","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1059196060\/ja1_normal.jpg","id":6412082,"listed_count":20,"utc_offset":3600},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C6E2EE","description":"Brian Tracy is a leading self development author and coach in the United States of America. Tracy is a best selling writer with more than 40 books published...","screen_name":"brian_Tracy_44","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"25573386110","source":"web","retweet_count":null,"created_at":"Sun Sep 26 08:23:06 +0000 2010","retweeted":false,"geo":null,"id":25573386110,"truncated":false,"text":"Microsoft is \"lost\" with Windows Mobile?"},"time_zone":null,"profile_background_color":"C6E2EE","id_str":"188014230","listed_count":4,"followers_count":487,"url":"http:\/\/briantracy.com","statuses_count":52,"profile_use_background_image":true,"profile_text_color":"663B12","show_all_inline_media":false,"lang":"en","created_at":"Tue Sep 07 18:34:21 +0000 2010","location":"canada","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/152237986\/images.jpg","profile_link_color":"1F98C7","protected":false,"friends_count":1694,"name":"Brian Tracy","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DAECF4","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1119230274\/brain_tracy_normal.jpg","id":188014230,"geo_enabled":false,"notifications":false,"utc_offset":null},{"favourites_count":32,"profile_sidebar_border_color":"cccccc","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","screen_name":"pengwynn","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29427626177","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 01:45:29 +0000 2010","retweeted":false,"geo":null,"id":29427626177,"truncated":false,"text":"Beautiful typography in these #dribbble rebounds http:\/\/wynn.fm\/7o"},"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","profile_background_color":"efefef","id_str":"14100886","followers_count":2788,"url":"http:\/\/wynnnetherland.com","profile_use_background_image":true,"profile_text_color":"666666","listed_count":186,"lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","location":"Dallas, TX","statuses_count":3949,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","profile_link_color":"35abe9","protected":false,"show_all_inline_media":false,"friends_count":1913,"name":"Wynn Netherland","contributors_enabled":false,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"dddddd","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","id":14100886,"geo_enabled":true,"notifications":false,"utc_offset":-21600},{"favourites_count":2,"profile_sidebar_border_color":"f2a4f2","description":"if you want to know me,you have to talk with me\/ much you talk,better you know...","screen_name":"dgourab93","listed_count":2,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29285743720","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"22479649934","source":"\u003Ca href=\"http:\/\/alexking.org\/projects\/wordpress\" rel=\"nofollow\"\u003ETwitter Tools\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Aug 30 00:18:02 +0000 2010","retweeted":false,"geo":null,"id":22479649934,"truncated":false,"text":"Woof! New bone!: Training A Dog To Jump Chairs And Retrieve http:\/\/puppytizers.info\/dogpile\/training-a-dog-to-jump-chairs-and-retrieve\/"},"retweet_count":null,"created_at":"Sun Oct 31 15:15:10 +0000 2010","retweeted":false,"geo":null,"id":29285743720,"truncated":true,"text":"RT @PuppyPrizes: Woof! New bone!: Training A Dog To Jump Chairs And Retrieve http:\/\/puppytizers.info\/dogpile\/training-a-dog-to-jump-chai ..."},"statuses_count":49,"time_zone":"Hawaii","show_all_inline_media":false,"friends_count":2001,"profile_background_color":"d687a4","id_str":"191446268","contributors_enabled":false,"followers_count":129,"url":"http:\/\/www.google.com\/profiles\/gourab,d2010","geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"1966cc","lang":"en","created_at":"Thu Sep 16 13:42:17 +0000 2010","location":"Bankura,West Bengal,India","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/152203536\/images__1_lo.jpg","profile_link_color":"36752d","protected":false,"follow_request_sent":false,"name":"Gourab Debnath","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"61b382","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1130886589\/47169_109855525739057_100001438311047_95088_6352536_n_normal.jpg","id":191446268,"notifications":false,"utc_offset":-36000},{"show_all_inline_media":false,"profile_background_tile":false,"profile_sidebar_fill_color":"3c9bef","description":"Left-handed and born on Halloween in 1983! Founded #genychat held Wed. 9pm EDT. Disliker of chocolate. *Career Seeker*. My resume: http:\/\/bit.ly\/9rpXif","screen_name":"WriterChanelle","geo_enabled":false,"status":{"place":null,"coordinates":null,"truncated":false,"in_reply_to_status_id_str":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","contributors":null,"in_reply_to_screen_name":null,"id_str":"29573493138","created_at":"Wed Nov 03 13:57:59 +0000 2010","retweet_count":null,"geo":null,"retweeted":false,"id":29573493138,"text":"Probably time to change my pic back, huh?"},"listed_count":236,"favourites_count":635,"profile_sidebar_border_color":"ffffff","statuses_count":32822,"time_zone":"Eastern Time (US & Canada)","url":"http:\/\/www.officialtherefromhere.com","contributors_enabled":false,"profile_background_color":"ffffff","id_str":"53454621","lang":"en","created_at":"Fri Jul 03 18:10:32 +0000 2009","followers_count":2061,"location":"Washington, D.C.","profile_use_background_image":true,"profile_text_color":"210626","protected":false,"friends_count":1855,"name":"Chanelle Schneider","follow_request_sent":false,"following":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/156478334\/TFHtwitterBack.png","profile_link_color":"000000","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1152516944\/birthday_cake_normal.jpg","id":53454621,"verified":false,"notifications":false,"utc_offset":-18000},{"favourites_count":10482,"profile_sidebar_border_color":"87bc44","description":"Favstar.fm founder, Husband, Father, collector of tower statuettes, lover of grilled cheese. Mmm!","screen_name":"timhaines","status":{"in_reply_to_status_id_str":"29556072689","place":null,"coordinates":null,"in_reply_to_status_id":29556072689,"in_reply_to_user_id":77009486,"favorited":false,"in_reply_to_user_id_str":"77009486","contributors":null,"in_reply_to_screen_name":"tnm8","id_str":"29556348955","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 09:46:09 +0000 2010","retweeted":false,"geo":null,"id":29556348955,"truncated":false,"text":"@tnm8 book?"},"listed_count":366,"time_zone":"Wellington","statuses_count":17325,"profile_background_color":"9ae4e8","id_str":"14341663","show_all_inline_media":false,"friends_count":643,"followers_count":3062,"url":"http:\/\/favstar.fm\/users\/timhaines","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":true,"created_at":"Wed Apr 09 13:39:15 +0000 2008","location":"Wellington, New Zealand","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2447849\/black-wallpaper-bg.gif","profile_link_color":"0000ff","protected":false,"verified":false,"name":"Tim Haines","follow_request_sent":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/929258068\/TimWeekend_bigger2_normal.png","id":14341663,"notifications":false,"utc_offset":43200},{"follow_request_sent":null,"description":"","screen_name":"nerded","time_zone":"Hawaii","status":{"place":null,"coordinates":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Nov 02 16:10:59 +0000 2010","in_reply_to_user_id":null,"truncated":false,"id":29483833352,"in_reply_to_status_id_str":null,"id_str":"29483833352","text":"Beer? Nerds? Ruby? Yep, the bmore on rails pub night has it all, come join us! http:\/\/bit.ly\/bBG2tZ"},"profile_background_color":"1A1B1F","listed_count":26,"notifications":null,"profile_use_background_image":true,"profile_text_color":"666666","url":"http:\/\/www.EdSchmalzle.com","statuses_count":462,"show_all_inline_media":true,"lang":"en","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288632582\/images\/themes\/theme9\/bg.gif","created_at":"Sun Jul 13 12:01:50 +0000 2008","friends_count":212,"profile_link_color":"2FC2EF","location":"Baltimore, MD","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","name":"Ed Schmalzle","following":null,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/965494658\/PirateFace_normal.jpg","id":15414199,"id_str":"15414199","verified":false,"utc_offset":-36000,"favourites_count":2,"profile_sidebar_border_color":"181A1E","followers_count":172},{"follow_request_sent":false,"favourites_count":433,"profile_sidebar_border_color":"181A1E","description":"Open source developer interested in Software Craftsmanship, Distributed Computing, Linux, Startups and the Web.","screen_name":"himanshuc","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29531587581","source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 02:21:35 +0000 2010","retweeted":false,"geo":null,"id":29531587581,"truncated":false,"text":"Code monkey : http:\/\/bit.ly\/a6x77a"},"time_zone":"Central Time (US & Canada)","profile_background_color":"1A1B1F","id_str":"12474212","listed_count":44,"followers_count":598,"url":"http:\/\/nepcoder.com","statuses_count":3221,"profile_use_background_image":true,"profile_text_color":"666666","show_all_inline_media":false,"lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","friends_count":1809,"location":"Mountain View, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme9\/bg.gif","profile_link_color":"2FC2EF","protected":false,"geo_enabled":true,"name":"Himanshu Chhetri","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1156063402\/profile-head_normal.jpg","id":12474212,"verified":false,"notifications":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Software engineer, entrepreneur, musician. Founder of Ideaffect.com.","screen_name":"JamesRyanATX","listed_count":0,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"28473113400","source":"web","retweet_count":null,"created_at":"Sat Oct 23 04:57:16 +0000 2010","retweeted":false,"geo":null,"id":28473113400,"truncated":false,"text":"been to quite a few texas wineries by now, and @SolaroEstate ranks #1. they've figured something out that the rest of tx wineries haven't."},"statuses_count":6,"time_zone":"Central Time (US & Canada)","show_all_inline_media":false,"friends_count":11,"profile_background_color":"C0DEED","id_str":"125584201","contributors_enabled":false,"followers_count":5,"url":"http:\/\/www.ideaffect.com\/","geo_enabled":true,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Tue Mar 23 07:22:18 +0000 2010","location":"Austin, TX","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"follow_request_sent":false,"name":"James Ryan","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1145634559\/me_normal.jpg","id":125584201,"notifications":false,"utc_offset":-21600},{"favourites_count":1,"profile_sidebar_border_color":"ffffff","description":"Researching for next project on how people, companies and organizations reinvent themselves. Published Author, Recruiter, USMC 2nd Force Recon alumni.","screen_name":"BillVick","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29569512631","source":"\u003Ca href=\"http:\/\/www.google.com\/support\/youtube\/bin\/answer.py?hl=en&answer=164577\" rel=\"nofollow\"\u003EGoogle\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 13:10:32 +0000 2010","retweeted":false,"geo":null,"id":29569512631,"truncated":false,"text":"Writing A Cover Letter For Your Resume http:\/\/goo.gl\/fb\/7hAKg #careers #coverletters"},"listed_count":649,"time_zone":"Central Time (US & Canada)","statuses_count":5562,"profile_background_color":"ffffff","id_str":"7789652","show_all_inline_media":false,"friends_count":9728,"followers_count":10938,"url":"http:\/\/www.BillVick.com","contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","geo_enabled":false,"created_at":"Sat Jul 28 19:54:24 +0000 2007","location":"","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/140368336\/bw_twitter_background.jpg","profile_link_color":"0000ff","protected":false,"verified":false,"name":"Bill Vick","follow_request_sent":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"ffffff","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1119772826\/Bill_Vick_flag_normal.jpg","id":7789652,"notifications":false,"utc_offset":-21600},{"favourites_count":0,"profile_sidebar_border_color":"5ED4DC","description":"Hacker, Entrepreneur : Build stuff in Rails, Python : Develop Squid plugins : Used to develop stuff using Drupal : Love Open Source : Fedora, My Favorite Distro","screen_name":"_kulbir","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29491155917","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-71.07299604,42.34279698],[-71.04959496,42.34279698],[-71.04959496,42.36839703],[-71.07299604,42.36839703]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/8f8d3175736b75d4.json","attributes":{},"country":"The United States of America","full_name":"Downtown, Boston","name":"Downtown","id":"8f8d3175736b75d4"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29489234652","source":"web","retweet_count":null,"created_at":"Tue Nov 02 17:16:49 +0000 2010","retweeted":false,"geo":null,"id":29489234652,"truncated":false,"text":"Perhaps the future of on-screen keyboards for mobile devices: http:\/\/www.the8pen.com\/"},"retweet_count":null,"created_at":"Tue Nov 02 17:42:10 +0000 2010","retweeted":false,"geo":null,"id":29491155917,"truncated":false,"text":"RT @qrush: Perhaps the future of on-screen keyboards for mobile devices: http:\/\/www.the8pen.com\/"},"follow_request_sent":false,"time_zone":"New Delhi","profile_background_color":"0099B9","id_str":"192492245","followers_count":41,"url":"http:\/\/saini.co.in","profile_use_background_image":true,"profile_text_color":"3C3940","listed_count":0,"lang":"en","created_at":"Sun Sep 19 09:11:56 +0000 2010","location":"Hyderabad, India","statuses_count":198,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme4\/bg.gif","profile_link_color":"0099B9","protected":false,"show_all_inline_media":false,"friends_count":165,"name":"Kulbir Saini","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"95E8EC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1126769760\/avatar4_normal.jpg","id":192492245,"geo_enabled":true,"notifications":false,"utc_offset":19800},{"follow_request_sent":false,"favourites_count":5,"profile_sidebar_border_color":"87bc44","description":"internet tube plumber","screen_name":"tony","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27199959923","source":"web","retweet_count":null,"created_at":"Wed Oct 13 02:18:09 +0000 2010","retweeted":false,"geo":null,"id":27199959923,"truncated":false,"text":"Anyone want a free ticket to see Jeff Potter in 15 min at 876 Hampshire? http:\/\/bit.ly\/avRpIe"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","id_str":"7693","listed_count":13,"followers_count":513,"url":"http:\/\/ponderer.org\/","statuses_count":415,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Sat Oct 07 05:04:45 +0000 2006","location":"san francisco, ca","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"name":"tony","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/14256172\/red_glasses64_normal.jpg","id":7693,"geo_enabled":true,"notifications":false,"utc_offset":-28800,"friends_count":136},{"favourites_count":3,"profile_sidebar_border_color":"493736","description":"CEO \/ Co-Founder of @KISSmetrics. Previously started @crazyegg and @acs. Passionate about helping other entrepreneurs and startup people.","screen_name":"hnshah","listed_count":1807,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29527528454","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29526207114","source":"\u003Ca href=\"http:\/\/vip.wordpress.com\/hosting\" rel=\"nofollow\"\u003EWordPress.com VIP\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:18:19 +0000 2010","retweeted":false,"geo":null,"id":29526207114,"truncated":false,"text":"KissInsights: Gather Customer Feedback Exactly When You Want It http:\/\/tcrn.ch\/askUYz by @jasonkincaid"},"retweet_count":null,"created_at":"Wed Nov 03 01:33:15 +0000 2010","retweeted":false,"geo":null,"id":29527528454,"truncated":false,"text":"RT @TechCrunch: KissInsights: Gather Customer Feedback Exactly When You Want It http:\/\/tcrn.ch\/askUYz by @jasonkincaid"},"statuses_count":9625,"time_zone":"Pacific Time (US & Canada)","show_all_inline_media":false,"friends_count":21149,"profile_background_color":"668284","id_str":"3382","contributors_enabled":false,"followers_count":25716,"url":"http:\/\/about.me\/hiten\/bio","geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"2A2829","lang":"en","created_at":"Sat Jul 29 09:04:30 +0000 2006","location":"","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/105891142\/bg.jpg","profile_link_color":"7B3B3B","protected":false,"follow_request_sent":false,"name":"Hiten Shah","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"B9D7D9","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/581820664\/profilepic_normal.jpg","id":3382,"notifications":false,"utc_offset":-28800},{"favourites_count":1,"friends_count":1997,"profile_sidebar_border_color":"C0DEED","description":"HARRY MILLER IS RUNNING FOR SAN FRANCISCO'S MAYOR IN NOV 2011","screen_name":"miller4SFmayor","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29575640360","source":"web","retweet_count":null,"created_at":"Wed Nov 03 14:22:42 +0000 2010","retweeted":false,"geo":null,"id":29575640360,"truncated":false,"text":"NEXT TIME DEAN"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","follow_request_sent":false,"profile_background_color":"C0DEED","id_str":"99536042","verified":false,"followers_count":279,"url":"http:\/\/www.haroldmiller4mayor.com","profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat Dec 26 16:51:39 +0000 2009","location":"SAN FRANCISCO","listed_count":5,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288217225\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"statuses_count":153,"name":"haroldmiller4sfmayor","show_all_inline_media":true,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1131239252\/49711_100000531985945_4159_q_normal.jpg","id":99536042,"contributors_enabled":false,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":8,"friends_count":107,"profile_sidebar_border_color":"FFFFFF","description":"Tweet tweet.","screen_name":"richsinn","contributors_enabled":false,"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","id_str":"45038375","verified":false,"followers_count":49,"url":"http:\/\/www.twitter.com\/richsinn","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Sat Jun 06 00:18:11 +0000 2009","location":"Bay Area, CA","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/110350760\/bg.jpg","profile_link_color":"CC3300","protected":false,"name":"Richard Sinn","listed_count":1,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"F7DA93","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1098922069\/Amazon_Archive_082_normal.jpg","id":45038375,"statuses_count":313,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":53,"friends_count":242,"profile_sidebar_border_color":"a8c7f7","description":"Software developer, JavaScript ninja, GIS geek, walkability advocate, @CodeforAmerica fellow.","screen_name":"atogle","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29569434096","place":null,"coordinates":null,"in_reply_to_status_id":29569434096,"in_reply_to_user_id":103888318,"favorited":false,"in_reply_to_user_id_str":"103888318","contributors":null,"in_reply_to_screen_name":"VideoMinutes","id_str":"29577628939","source":"web","retweet_count":null,"created_at":"Wed Nov 03 14:45:26 +0000 2010","retweeted":false,"geo":null,"id":29577628939,"truncated":false,"text":"@VideoMinutes You too! Edit me well. =)"},"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","id_str":"21866144","verified":false,"followers_count":228,"url":"http:\/\/walkshed.org","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Wed Feb 25 13:43:06 +0000 2009","location":"Philadelphia, PA","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288742912\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Aaron Ogle","listed_count":40,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1083144513\/walkshed_twitter_icon_normal.jpeg","id":21866144,"statuses_count":940,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":false,"favourites_count":8,"profile_sidebar_border_color":"0054AD","description":"business, web, technology, college, racquetball, golf, books, verbict.com","screen_name":"tylerstalder","contributors_enabled":false,"geo_enabled":false,"status":{"in_reply_to_status_id_str":"29502183455","place":null,"coordinates":null,"in_reply_to_status_id":29502183455,"in_reply_to_user_id":15157985,"favorited":false,"in_reply_to_user_id_str":"15157985","contributors":null,"in_reply_to_screen_name":"rico_w","id_str":"29520238748","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/app\/twitter\/id333903271?mt=8\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 00:08:25 +0000 2010","retweeted":false,"geo":null,"id":29520238748,"truncated":false,"text":"@rico_w what, really? Latest I'd heard on the preppy radar was that we got a polo club."},"time_zone":"Central Time (US & Canada)","profile_background_color":"303B41","id_str":"823408","friends_count":329,"followers_count":558,"url":"http:\/\/tylerstalder.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"808080","lang":"en","verified":false,"created_at":"Thu Mar 08 23:08:04 +0000 2007","location":"Wichita, KS","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/75622\/twitter_bg.jpg","profile_link_color":"07508C","protected":false,"name":"Tyler Stalder","listed_count":26,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"D1E4F3","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/728961989\/tylerstalder_normal.png","id":823408,"statuses_count":4908,"notifications":false,"utc_offset":-21600},{"contributors_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"000000","description":"tech + communications + media","screen_name":"scottsil","geo_enabled":true,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.045672,37.124503],[-121.589153,37.124503],[-121.589153,37.469163],[-122.045672,37.469163]]],"type":"Polygon"},"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/7d62cffe6f98f349.json","attributes":{},"country":"The United States of America","full_name":"San Jose, CA","name":"San Jose","id":"7d62cffe6f98f349"},"coordinates":{"coordinates":[-121.9263044,37.36662498],"type":"Point"},"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29532976712","source":"\u003Ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003Efoursquare\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 02:39:16 +0000 2010","retweeted":false,"geo":{"coordinates":[37.36662498,-121.9263044],"type":"Point"},"id":29532976712,"truncated":false,"text":"Back to the bay... (@ Mineta San Jos\u00e9 International Airport (SJC) \u2708 w\/ 6 others) http:\/\/4sq.com\/43y2Rz"},"time_zone":"Pacific Time (US & Canada)","verified":false,"profile_background_color":"CCCCCC","id_str":"721623","follow_request_sent":false,"followers_count":118,"url":"http:\/\/www.scottsil.com","profile_use_background_image":true,"profile_text_color":"666666","lang":"en","created_at":"Sun Jan 28 21:26:47 +0000 2007","location":"New York, NY","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/148927784\/NYC-at-Night1.jpg","profile_link_color":"999999","protected":false,"listed_count":2,"name":"Scott Silverman","statuses_count":489,"following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"333333","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1112802042\/scott-live-trace-twitter-transparent_normal.png","id":721623,"show_all_inline_media":true,"notifications":false,"utc_offset":-28800,"friends_count":118},{"follow_request_sent":false,"favourites_count":237,"profile_sidebar_border_color":"BDDCAD","description":"Engineer at Twitter. Obsessed with running. In a past life I was a member of the Rails Core team & 37signals.","screen_name":"noradio","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29544587015","source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 05:34:46 +0000 2010","retweeted":false,"geo":null,"id":29544587015,"truncated":false,"text":"Interesting visualizations of mid-term election voter sentiment in tweets by @cnn at http:\/\/t.co\/dN0nOi5"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","id_str":"3191321","listed_count":827,"followers_count":279523,"url":"http:\/\/project.ioni.st","statuses_count":4733,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Mon Apr 02 07:47:28 +0000 2007","friends_count":661,"location":"San Francisco, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","profile_link_color":"0084B4","protected":false,"geo_enabled":true,"name":"Marcel Molina","following":true,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","id":3191321,"verified":false,"notifications":false,"utc_offset":-28800},{"favourites_count":126,"profile_sidebar_border_color":"BDDCAD","description":"I'm a Photographer based in Southern California and around Santa Clarita. I love hockey and the LA Kings - follow @ryanatwork for Gov20 related","screen_name":"RyanResella","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29528309631","source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 01:42:30 +0000 2010","retweeted":false,"geo":null,"id":29528309631,"truncated":false,"text":"Leaving work at 6:40 pm, for some reason this seems like it will be an early time to leave next year"},"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","id_str":"14781485","followers_count":423,"url":"http:\/\/ryanresella.com","profile_use_background_image":true,"profile_text_color":"333333","listed_count":23,"lang":"en","created_at":"Thu May 15 03:45:11 +0000 2008","location":"Santa Clarita, California","statuses_count":3668,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/108590004\/TwitterBackground.jpg","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"friends_count":507,"name":"Ryan Resella","contributors_enabled":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1154550303\/68466_10150288185610314_741105313_15077950_2884620_n_normal.jpg","id":14781485,"geo_enabled":true,"notifications":false,"utc_offset":-28800},{"profile_use_background_image":false,"profile_sidebar_border_color":"ffffff","followers_count":317,"description":"A Force for Good \r\n\r\n\r\nSan Fransocialite","listed_count":28,"verified":false,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"Posterous","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Mon Oct 18 19:58:02 +0000 2010","favorited":false,"coordinates":null,"id":27764654087,"text":"Untitled http://post.ly/15PqK"},"follow_request_sent":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/81241384/TWITBACK.png","profile_background_color":"ffffff","profile_background_tile":true,"url":null,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Tue Dec 19 23:36:35 +0000 2006","friends_count":330,"profile_image_url":"http://a1.twimg.com/profile_images/737922229/n500013650_1278945_96_normal.jpg","location":"San Francisco","statuses_count":533,"profile_link_color":"cc4100","protected":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":16,"screen_name":"aynne","name":"Aynne","contributors_enabled":false,"following":true,"profile_sidebar_fill_color":"ffffff","id":80983,"geo_enabled":true,"utc_offset":-28800},{"favourites_count":10,"friends_count":834,"profile_sidebar_border_color":"87bc44","description":"Founder of letsannotate.com","screen_name":"MSch","status":{"in_reply_to_status_id_str":"29509574588","place":null,"coordinates":null,"in_reply_to_status_id":29509574588,"in_reply_to_user_id":6927562,"favorited":false,"in_reply_to_user_id_str":"6927562","contributors":null,"in_reply_to_screen_name":"thomasfuchs","id_str":"29509726364","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 22:04:52 +0000 2010","retweeted":false,"geo":null,"id":29509726364,"truncated":false,"text":"@thomasfuchs ohhh shiny :) didn't know people put the manual online. thanks"},"geo_enabled":true,"time_zone":"Vienna","follow_request_sent":false,"profile_background_color":"9ae4e8","id_str":"6621712","verified":false,"followers_count":311,"url":"http:\/\/blog.schuerrer.org","profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Wed Jun 06 16:01:34 +0000 2007","location":"Vienna, Austria","listed_count":38,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","protected":false,"statuses_count":1766,"name":"Martin S","show_all_inline_media":false,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/764214217\/diglas_normal.jpg","id":6621712,"contributors_enabled":false,"notifications":false,"utc_offset":3600},{"geo_enabled":false,"favourites_count":0,"profile_sidebar_border_color":"87bc44","description":"Ruby on Rails Developer, iPhone Developer, @codecuisine","screen_name":"csmuc","follow_request_sent":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"geo":null,"in_reply_to_screen_name":null,"id_str":"29460350200","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 11:21:29 +0000 2010","retweeted":false,"id":29460350200,"truncated":false,"text":"If you're joining a riot, don't forget to check in at foursquare http:\/\/gaw.kr\/9xWb3l #fb"},"verified":false,"time_zone":"Berlin","profile_background_color":"9ae4e8","id_str":"6417922","notifications":false,"followers_count":119,"url":"http:\/\/www.codecuisine.de","listed_count":5,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","statuses_count":716,"created_at":"Tue May 29 15:34:51 +0000 2007","location":"Munich","show_all_inline_media":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52244683\/CIMG3236_2.JPG","profile_link_color":"0000ff","protected":false,"contributors_enabled":false,"name":"Christian Seiler","following":false,"profile_background_tile":false,"friends_count":97,"profile_sidebar_fill_color":"e0ff92","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/517407458\/20091109-pjkfw9198c374tra8dh36imhbq_normal.png","id":6417922,"utc_offset":3600},{"statuses_count":349,"favourites_count":31,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"GaryCulliss","show_all_inline_media":false,"friends_count":1229,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-74.042112,40.489794],[-73.700272,40.489794],[-73.700272,40.812242],[-74.042112,40.812242]]],"type":"Polygon"},"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/b6ea2e341ba4356f.json","attributes":{},"country":"The United States of America","full_name":"Queens, NY","name":"Queens","id":"b6ea2e341ba4356f"},"coordinates":{"coordinates":[-73.8597,40.7704],"type":"Point"},"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29576228129","source":"\u003Ca href=\"http:\/\/frf.ly\" rel=\"nofollow\"\u003EFirefly for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:29:32 +0000 2010","retweeted":false,"geo":{"coordinates":[40.7704,-73.8597],"type":"Point"},"id":29576228129,"truncated":false,"text":"I'm at LGA - Delta Terminal in Queens, New York http:\/\/frf.ly\/7DE+"},"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"profile_background_color":"C0DEED","id_str":"25443413","followers_count":154,"url":null,"verified":false,"profile_use_background_image":true,"profile_text_color":"333333","follow_request_sent":false,"lang":"en","created_at":"Fri Mar 20 02:42:07 +0000 2009","location":"New York, NY","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Gary Culliss","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/856113793\/gculliss_avatar_2_1__normal.jpg","id":25443413,"listed_count":1,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":true,"favourites_count":76,"profile_sidebar_border_color":"86A4A6","description":"Technical Co-Founder of @floatapp, Web Developer, Problem Solver.","screen_name":"philip_roberts","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29568829334","place":null,"coordinates":null,"in_reply_to_status_id":29568829334,"in_reply_to_user_id":21803,"favorited":false,"in_reply_to_user_id_str":"21803","contributors":null,"in_reply_to_screen_name":"sneeu","id_str":"29569249256","source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 13:07:20 +0000 2010","retweeted":false,"geo":null,"id":29569249256,"truncated":false,"text":"@sneeu haha that sounds like a great plan!"},"time_zone":"Edinburgh","friends_count":281,"profile_background_color":"709397","id_str":"15810455","geo_enabled":true,"followers_count":239,"url":"http:\/\/www.latentflip.com\/blog","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Mon Aug 11 17:04:40 +0000 2008","location":"iPhone: 56.188159,-4.778769","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme6\/bg.gif","profile_link_color":"FF3300","protected":false,"name":"Philip Roberts","listed_count":21,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/562293718\/twitterProfilePhoto_normal.jpg","id":15810455,"statuses_count":1793,"notifications":false,"utc_offset":0},{"show_all_inline_media":false,"favourites_count":91,"friends_count":276,"profile_sidebar_border_color":"86A4A6","description":"Programming for fun and profit!","screen_name":"robolson","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":{"bounding_box":{"coordinates":[[[-122.42288196,37.74303],[-122.408946,37.74303],[-122.408946,37.77052896],[-122.42288196,37.77052896]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/597463acf7f062a9.json","attributes":{},"country":"The United States of America","full_name":"Mission, San Francisco","name":"Mission","id":"597463acf7f062a9"},"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29523025741","source":"web","retweet_count":null,"created_at":"Wed Nov 03 00:40:20 +0000 2010","retweeted":false,"geo":null,"id":29523025741,"truncated":false,"text":"#ivoted #YesOnEverything #YayTaxes #JustKidding"},"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"DDDDDD","id_str":"14635845","verified":false,"followers_count":466,"url":"http:\/\/thinkingdigitally.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Sat May 03 07:10:13 +0000 2008","location":"San Francisco","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/71274087\/x323c1fdb6a85ffddd7e55a5d8359730.png","profile_link_color":"FF3300","protected":false,"name":"Rob Olson","listed_count":16,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"A0C5C7","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/423630849\/rolson_profile_pic_sm_normal.png","id":14635845,"statuses_count":1749,"notifications":false,"utc_offset":-28800},{"statuses_count":2406,"favourites_count":46,"profile_sidebar_border_color":"a8c7f7","description":"Ruby developer, entrepreneur, husband, father. PeopleAdmin by day, TweetRiver by night.","screen_name":"bdainton","show_all_inline_media":true,"friends_count":674,"status":{"in_reply_to_status_id_str":"29564414885","place":null,"coordinates":null,"in_reply_to_status_id":29564414885,"in_reply_to_user_id":14086134,"favorited":false,"in_reply_to_user_id_str":"14086134","contributors":null,"in_reply_to_screen_name":"MarissaSays","id_str":"29574618138","source":"web","retweet_count":null,"created_at":"Wed Nov 03 14:10:51 +0000 2010","retweeted":false,"geo":null,"id":29574618138,"truncated":false,"text":"@MarissaSays Huge thanks, Marissa!"},"contributors_enabled":false,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"profile_background_color":"022330","id_str":"8033832","followers_count":675,"url":"http:\/\/briandainton.com","verified":false,"profile_use_background_image":true,"profile_text_color":"333333","follow_request_sent":false,"lang":"en","created_at":"Tue Aug 07 17:16:03 +0000 2007","location":"Austin, TX","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme15\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Brian Dainton","following":true,"profile_background_tile":false,"profile_sidebar_fill_color":"C0DFEC","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/60792043\/bdainton_normal.jpg","id":8033832,"listed_count":70,"notifications":false,"utc_offset":-21600},{"show_all_inline_media":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":null,"screen_name":"Nmo711","contributors_enabled":false,"time_zone":null,"friends_count":7,"profile_background_color":"C0DEED","id_str":"188880546","geo_enabled":false,"followers_count":4,"url":null,"follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","verified":false,"created_at":"Thu Sep 09 20:29:59 +0000 2010","location":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Natalie Orr","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/default_profile_1_normal.png","id":188880546,"statuses_count":0,"notifications":false,"utc_offset":null},{"follow_request_sent":false,"favourites_count":3,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"jfire","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29427863515","source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","retweet_count":null,"created_at":"Tue Nov 02 01:48:20 +0000 2010","retweeted":false,"geo":null,"id":29427863515,"truncated":false,"text":"If your .csv file starts with \"ID\", excel will try to open it as a SYLK file. Awesome! http:\/\/bit.ly\/97g0be"},"time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","id_str":"16693852","listed_count":0,"followers_count":33,"url":null,"statuses_count":185,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":true,"lang":"en","created_at":"Sat Oct 11 06:37:58 +0000 2008","location":"San Francisco, CA","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":48,"name":"John Firebaugh","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/494874392\/Photo_on_2009-10-28_at_10.12__2_normal.jpg","id":16693852,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"contributors_enabled":false,"profile_background_color":"022330","description":"Estudiante de la Maestr\u00eda en Derecho Penal de la Universidad Nacional y es una de las promesas para el mundo jur\u00eddico nacional e internacional..","screen_name":"afmarinr","status":{"contributors":null,"place":null,"coordinates":null,"in_reply_to_screen_name":null,"retweet_count":null,"geo":null,"retweeted":false,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Sep 23 15:33:39 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"favorited":false,"id":25317453131,"in_reply_to_user_id_str":null,"id_str":"25317453131","text":"Mi pa\u00eds est\u00e1 conmocionado por la muerte de uno de los guerrilleros m\u00e1s famoso... el Mono Jojoy... esperemos que Colombia encuentre la paz.."},"profile_use_background_image":true,"profile_text_color":"242fd4","friends_count":992,"follow_request_sent":false,"notifications":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","url":"http:\/\/www.facebook.com\/home.php#!\/andres.fernando.marin.rodriguez","verified":false,"geo_enabled":false,"lang":"es","profile_background_tile":false,"favourites_count":0,"created_at":"Wed Sep 08 03:16:34 +0000 2010","profile_sidebar_fill_color":"C0DFEC","location":"Bogot\u00e1","protected":false,"listed_count":6,"profile_sidebar_border_color":"a8c7f7","name":"Andr\u00e9s Mar\u00edn","statuses_count":11,"following":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1119500808\/ANDRES2_normal.JPG","id":188184146,"id_str":"188184146","show_all_inline_media":false,"time_zone":null,"utc_offset":null,"followers_count":299},{"profile_use_background_image":true,"profile_text_color":"333333","description":null,"screen_name":"Lqboren","status":{"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"geo":null,"id_str":"23174338321","favorited":false,"source":"web","in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Sep 06 20:17:57 +0000 2010","retweet_count":null,"id":23174338321,"retweeted":false,"text":"Wow I just watched a great new video. www.dreamsintorealityvideo.com let me know what you think of it please."},"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme8\/bg.gif","profile_link_color":"9D582E","listed_count":0,"id_str":"107554604","statuses_count":9,"notifications":false,"profile_background_tile":false,"profile_sidebar_fill_color":"EADEAA","followers_count":35,"url":null,"show_all_inline_media":false,"friends_count":109,"contributors_enabled":false,"lang":"en","created_at":"Fri Jan 22 23:42:46 +0000 2010","profile_sidebar_border_color":"D9B17E","location":null,"geo_enabled":false,"protected":false,"time_zone":null,"favourites_count":0,"name":"LaQuetta Boren","following":false,"verified":false,"profile_background_color":"8B542B","profile_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/default_profile_3_normal.png","id":107554604,"follow_request_sent":false,"utc_offset":null},{"follow_request_sent":false,"favourites_count":54,"profile_sidebar_border_color":"C0DEED","description":"Product designer. Spend my days with the great @momentdesign folks.","screen_name":"trueitalic","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":13537172,"favorited":false,"in_reply_to_user_id_str":"13537172","contributors":null,"in_reply_to_screen_name":"momentdesign","id_str":"22085226029","source":"web","retweet_count":null,"created_at":"Wed Aug 25 12:45:50 +0000 2010","retweeted":false,"geo":null,"id":22085226029,"truncated":false,"text":"@momentdesign is hiring two user experience designers! come work with us! http:\/\/bit.ly\/9PH9L9"},"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"65602565","listed_count":12,"followers_count":127,"url":"http:\/\/www.trueitalic.com","statuses_count":1,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Fri Aug 14 09:43:24 +0000 2009","location":"Brooklyn, NY","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288305442\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"friends_count":1554,"name":"Rob Hunter","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/398556224\/profile_square_normal.jpg","id":65602565,"geo_enabled":false,"notifications":false,"utc_offset":-18000},{"show_all_inline_media":true,"favourites_count":122,"profile_sidebar_border_color":"4ACF9C","description":"Benjamin Kudria: web coder, engineer at Quid, and all-around cool cat.","screen_name":"bkudria","contributors_enabled":false,"status":{"in_reply_to_status_id_str":"29504227240","place":{"bounding_box":{"coordinates":[[[-122.40638388,37.79262801],[-122.39639892,37.79262801],[-122.39639892,37.79887401],[-122.40638388,37.79887401]]],"type":"Polygon"},"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4936c7bb522bb31c.json","attributes":{},"country":"The United States of America","full_name":"Financial District, San Francisco","name":"Financial District","id":"4936c7bb522bb31c"},"coordinates":null,"in_reply_to_status_id":29504227240,"in_reply_to_user_id":8566812,"favorited":false,"in_reply_to_user_id_str":"8566812","contributors":null,"in_reply_to_screen_name":"dankaplan","id_str":"29504394324","source":"web","retweet_count":null,"created_at":"Tue Nov 02 20:53:29 +0000 2010","retweeted":false,"geo":null,"id":29504394324,"truncated":false,"text":"@dankaplan I think there might be a few percentage points there that represent not screwing over people working for you."},"time_zone":"Pacific Time (US & Canada)","friends_count":503,"profile_background_color":"61877C","id_str":"969311","geo_enabled":true,"followers_count":437,"url":"http:\/\/ben.kudria.net","follow_request_sent":false,"profile_use_background_image":false,"profile_text_color":"118579","lang":"en","verified":false,"created_at":"Mon Mar 12 00:29:44 +0000 2007","location":"San Francisco","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/154688472\/brandmark.jpg","profile_link_color":"0098c2","protected":false,"name":"Benjamin Kudria","listed_count":25,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"24323F","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1139792466\/gs-f-1_normal.jpg","id":969311,"statuses_count":3406,"notifications":false,"utc_offset":-28800},{"show_all_inline_media":false,"favourites_count":0,"friends_count":313,"profile_sidebar_border_color":"b0dded","description":"The top stories from the TechCrunch 50 event.","screen_name":"TC50Conf","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29576169347","source":"\u003Ca href=\"http:\/\/tweetmeme.com\" rel=\"nofollow\"\u003ETweetMeme\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Nov 03 14:28:51 +0000 2010","retweeted":false,"geo":null,"id":29576169347,"truncated":false,"text":"Flash Sales Site For Indian Fashion Exclusively.in Raises $2.8 Million From Accel http:\/\/retwt.me\/1PuLS (via @blogshot)"},"geo_enabled":false,"time_zone":"London","profile_background_color":"45b5da","id_str":"111632535","verified":false,"followers_count":166,"url":"http:\/\/tc50tweets.tweetmeme.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Feb 05 16:24:05 +0000 2010","location":"Worldwide","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/72697165\/TweetMeme_background_main.png","profile_link_color":"0084b4","protected":false,"name":"TechCrunch50","listed_count":4,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"b0dded","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/677548934\/TweetMeme_icon_main_normal.png","id":111632535,"statuses_count":3458,"notifications":false,"utc_offset":0},{"contributors_enabled":false,"favourites_count":57,"profile_sidebar_border_color":"D9B17E","description":"MISSION: To provide a list of strong legitimate arguments for voting Democratic candidates into office & supporting their causes. #VoteDem #WhyIVote #Dems #p2","screen_name":"VoteNaked","friends_count":2036,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":23718933,"favorited":false,"in_reply_to_user_id_str":"23718933","contributors":null,"in_reply_to_screen_name":"HippyChick613","id_str":"24570389541","source":"web","retweet_count":null,"created_at":"Wed Sep 15 13:39:11 +0000 2010","retweeted":false,"geo":null,"id":24570389541,"truncated":false,"text":"@HippyChick613 @sscoop4 Thank you for your well wishes. I'm heading back to the hospital later today, but I'll be back stronger than ever."},"time_zone":"Eastern Time (US & Canada)","verified":false,"profile_background_color":"ffffff","id_str":"23474111","follow_request_sent":false,"followers_count":2170,"url":null,"geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"000000","lang":"en","created_at":"Mon Mar 09 18:18:13 +0000 2009","location":"America","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/125414596\/votenakedback1-760.jpg","profile_link_color":"0000ff","protected":false,"listed_count":194,"name":"Vote Naked","statuses_count":980,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1083226537\/votenaked200_normal.jpg","id":23474111,"show_all_inline_media":false,"notifications":false,"utc_offset":-18000},{"favourites_count":0,"profile_sidebar_border_color":"3DF197","description":"If you don't have a strong mind...you will not make it. Only the strong survive. Different breed.","screen_name":"twiyews2b","contributors_enabled":false,"time_zone":null,"profile_background_color":"9ae4e8","id_str":"183324947","friends_count":439,"followers_count":48,"url":"http:\/\/tinyurl.com\/39yugpe","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"A7EAAF","lang":"en","verified":false,"created_at":"Thu Aug 26 18:39:10 +0000 2010","location":"ATL","show_all_inline_media":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/themes\/theme1\/bg.png","profile_link_color":"639AB7","protected":false,"geo_enabled":false,"name":"Alecia C.","listed_count":0,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"52F23C","profile_image_url":"http:\/\/s.twimg.com\/a\/1288374569\/images\/default_profile_1_normal.png","id":183324947,"statuses_count":0,"notifications":false,"utc_offset":null},{"favourites_count":5,"profile_sidebar_border_color":"BDDCAD","description":"Partner at Sterling Cooper Draper Pryce","screen_name":"_DonDraper","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"27768799850","source":"web","retweet_count":null,"created_at":"Mon Oct 18 20:59:17 +0000 2010","retweeted":false,"geo":null,"id":27768799850,"truncated":false,"text":"They say as soon you have to cut down on your drinking, you have a drinking problem."},"listed_count":992,"time_zone":"Pacific Time (US & Canada)","statuses_count":325,"profile_background_color":"000000","id_str":"17584594","followers_count":22427,"url":null,"contributors_enabled":false,"profile_use_background_image":true,"profile_text_color":"050a42","lang":"en","created_at":"Mon Nov 24 03:42:02 +0000 2008","location":"Madison Avenue, New York 1965","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/31174390\/whichmadman-389.jpg","profile_link_color":"266aab","protected":false,"friends_count":24150,"name":"_DonDraper","show_all_inline_media":false,"follow_request_sent":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"0b8e8e","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/98891783\/DONFACE_normal.jpg","id":17584594,"verified":false,"geo_enabled":false,"notifications":false,"utc_offset":-28800},{"favourites_count":6,"profile_sidebar_border_color":"BDDCAD","description":"strategy, branding + marketing for new ventures. \r\nwww.launchcontrolgroup.com ","screen_name":"launch_control","verified":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29530182217","source":"web","retweeted_status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"29530093147","source":"web","retweet_count":null,"created_at":"Wed Nov 03 02:03:21 +0000 2010","retweeted":false,"geo":null,"id":29530093147,"truncated":false,"text":"excited we just pushed brand new @launch_control site live - check out www.launchcontrolgroup.com + tell us what you think!"},"retweet_count":null,"created_at":"Wed Nov 03 02:04:26 +0000 2010","retweeted":false,"geo":null,"id":29530182217,"truncated":false,"text":"RT @davidknies: excited we just pushed brand new @launch_control site live - check out www.launchcontrolgroup.com + tell us what you think!"},"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","id_str":"65389893","followers_count":301,"url":"http:\/\/www.launchcontrolgroup.com","geo_enabled":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":25,"lang":"en","created_at":"Thu Aug 13 15:35:14 +0000 2009","location":"boston MA USA","statuses_count":340,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/29907113\/lc_icon.png","profile_link_color":"0084B4","protected":false,"show_all_inline_media":false,"name":"launch control","contributors_enabled":false,"following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"DDFFCC","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/366343600\/lc_icon_normal.png","id":65389893,"notifications":false,"utc_offset":-18000,"friends_count":605},{"follow_request_sent":false,"favourites_count":2,"profile_sidebar_border_color":"829D5E","description":"software developer\r\nSO: Debian GNU\/linux squeeze\r\nOpenSources.\r\nLinux-kernel 2.6.32-5-686-bigmem.\r\nShow romanization\r\nCaracas, Venezuela","screen_name":"cesulbaran","status":{"in_reply_to_status_id_str":"29562297994","place":null,"coordinates":null,"in_reply_to_status_id":29562297994,"in_reply_to_user_id":58703917,"favorited":false,"in_reply_to_user_id_str":"58703917","contributors":null,"in_reply_to_screen_name":"foursixnine","id_str":"29562468632","source":"web","retweet_count":null,"created_at":"Wed Nov 03 11:34:55 +0000 2010","retweeted":false,"geo":null,"id":29562468632,"truncated":false,"text":"@foursixnine : Epale chamo una pregunta que paso con la comunidad postgres de venezuela\n?"},"time_zone":"Caracas","profile_background_color":"352726","id_str":"47106499","listed_count":8,"followers_count":284,"url":"http:\/\/www.google.com\/profiles\/cesulbaran","statuses_count":1334,"profile_use_background_image":true,"profile_text_color":"3E4415","show_all_inline_media":true,"lang":"es","created_at":"Sun Jun 14 15:06:09 +0000 2009","friends_count":1618,"location":"Caracas-Venezuela","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/101790371\/Kendo07-5160-3.jpg","profile_link_color":"D02B55","protected":false,"geo_enabled":true,"name":"Cesar A. Sulbaran P.","following":false,"profile_background_tile":true,"profile_sidebar_fill_color":"99CC33","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1134519857\/ladillado_normal.jpg","id":47106499,"verified":false,"notifications":false,"utc_offset":-16200},{"description":"","screen_name":"lkupchanko","listed_count":0,"profile_sidebar_border_color":"C0DEED","status":{"in_reply_to_user_id_str":null,"place":null,"coordinates":null,"contributors":null,"in_reply_to_screen_name":null,"retweeted_status":{"in_reply_to_user_id_str":null,"place":null,"coordinates":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Sep 21 14:35:14 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"id":25123847709,"id_str":"25123847709","favorited":false,"text":"Vo almo\u00e7ar."},"geo":null,"retweet_count":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"created_at":"Tue Sep 21 14:58:50 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"id":25125767893,"id_str":"25125767893","favorited":false,"text":"RT @romulosz: Vo almo\u00e7ar."},"statuses_count":2,"show_all_inline_media":false,"time_zone":null,"favourites_count":1,"friends_count":139,"contributors_enabled":false,"notifications":null,"profile_background_color":"C0DEED","url":null,"geo_enabled":false,"lang":"en","profile_use_background_image":true,"created_at":"Thu May 21 23:39:48 +0000 2009","profile_text_color":"333333","location":"Edmonton","verified":false,"protected":false,"follow_request_sent":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","name":"Lloyd Kupchanko","following":null,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/862233006\/ginger2_normal.jpg","id":41703333,"id_str":"41703333","profile_background_tile":false,"utc_offset":null,"profile_sidebar_fill_color":"DDEEF6","followers_count":13},{"follow_request_sent":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"iPhone Game donates 10% of proceeds to ecosystem restoration, next release includes Gulf Oil Spill level.","screen_name":"PuffPuffG","status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":128093057,"favorited":false,"in_reply_to_user_id_str":"128093057","contributors":null,"in_reply_to_screen_name":"6thmega","id_str":"23026688581","source":"web","retweet_count":null,"created_at":"Sun Sep 05 03:08:31 +0000 2010","retweeted":false,"geo":null,"id":23026688581,"truncated":false,"text":"@6thmega just entered Puff Puff September Mega Madness http:\/\/bit.ly\/db8bus, love this game http:\/\/bit.ly\/aHburISeptMad"},"time_zone":null,"profile_background_color":"C0DEED","id_str":"173231651","listed_count":3,"followers_count":408,"url":"http:\/\/6thmega.com\/puff-puff","statuses_count":26,"profile_use_background_image":true,"profile_text_color":"333333","show_all_inline_media":false,"lang":"en","created_at":"Sat Jul 31 20:17:21 +0000 2010","friends_count":1186,"location":"","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288470193\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"geo_enabled":false,"name":"Puff Puff & Give","following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1092532875\/badge_small_normal.jpg","id":173231651,"verified":false,"notifications":false,"utc_offset":null},{"show_all_inline_media":false,"favourites_count":4,"friends_count":1880,"profile_sidebar_border_color":"C0DEED","description":"","screen_name":"lu3276","contributors_enabled":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"26662521240","source":"web","retweet_count":null,"created_at":"Thu Oct 07 16:14:04 +0000 2010","retweeted":false,"geo":null,"id":26662521240,"truncated":false,"text":"Earn Your First $100 to $500 Within the Next Hour.... Without Spending a Dime!\nhttp:\/\/tinyurl.com\/26lm7nh"},"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","id_str":"51260966","verified":false,"followers_count":813,"url":"http:\/\/lurena.mydealscenter.com","follow_request_sent":false,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","created_at":"Fri Jun 26 22:47:04 +0000 2009","location":"New York","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","protected":false,"name":"Luis Urena","listed_count":2,"following":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/default_profile_1_normal.png","id":51260966,"statuses_count":107,"notifications":false,"utc_offset":-18000},{"verified":false,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","description":"Day trader - Forex, options, stocks, futures\r\n","screen_name":"protradesgal","follow_request_sent":false,"status":{"in_reply_to_status_id_str":null,"place":null,"coordinates":null,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"id_str":"25151868279","source":"web","retweet_count":null,"created_at":"Tue Sep 21 21:10:39 +0000 2010","retweeted":false,"geo":null,"id":25151868279,"truncated":false,"text":"http:\/\/tinyurl.com\/335ug5x Interview on specific trading methodology with traderinterviews.com $$ #trading #stocks #mkt"},"time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","id_str":"180959939","followers_count":301,"url":null,"listed_count":6,"profile_use_background_image":true,"profile_text_color":"333333","lang":"en","statuses_count":47,"created_at":"Fri Aug 20 23:09:02 +0000 2010","location":"","show_all_inline_media":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288660386\/images\/themes\/theme1\/bg.png","friends_count":988,"profile_link_color":"0084B4","protected":false,"contributors_enabled":false,"name":"protradesgal","following":false,"geo_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1107441847\/k0709470_normal.jpg","id":180959939,"notifications":false,"utc_offset":-21600},{"listed_count":4,"description":"Rather Chad-like, and currently a Ruby developer","screen_name":"ratherchad","statuses_count":14,"profile_sidebar_border_color":"C6E2EE","status":{"in_reply_to_user_id_str":null,"place":null,"coordinates":null,"contributors":null,"in_reply_to_screen_name":null,"geo":null,"retweet_count":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"created_at":"Thu Oct 28 01:03:24 +0000 2010","in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"id":28943301790,"id_str":"28943301790","favorited":false,"text":"Cliff Lee's first post season loss will be tonight! Sanchez, Buster and Huff have his number. #sfgiants"},"show_all_inline_media":false,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","favourites_count":0,"notifications":false,"friends_count":44,"profile_background_color":"C6E2EE","url":null,"lang":"en","geo_enabled":false,"profile_use_background_image":true,"created_at":"Fri Aug 20 22:58:09 +0000 2010","profile_text_color":"663B12","location":"San Francisco","follow_request_sent":false,"protected":false,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288039940\/images\/themes\/theme2\/bg.gif","profile_link_color":"1F98C7","name":"Chad K","following":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1107413683\/n605431196_2079896_558_normal.jpg","id":180956634,"id_str":"180956634","profile_background_tile":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DAECF4","followers_count":18}], "next_cursor":1344637399602463196, "previous_cursor":0, "next_cursor_str":"1344637399602463196", "previous_cursor_str":"0"} \ No newline at end of file diff --git a/spec/fixtures/followers.xml b/spec/fixtures/followers.xml index be019be64..7c36aa5cc 100644 --- a/spec/fixtures/followers.xml +++ b/spec/fixtures/followers.xml @@ -1,91 +1,6 @@ - - 202975981 - Cheryl Parker - CherylParkerWVD - Truckee, CA - - http://a0.twimg.com/profile_images/1145958368/1679945837928436q20114_normal.jpg - - false - 200 - 709397 - 333333 - FF3300 - A0C5C7 - 86A4A6 - 642 - Fri Oct 15 07:14:51 +0000 2010 - 0 - -32400 - Alaska - http://s.twimg.com/a/1287523226/images/themes/theme6/bg.gif - false - true - false - false - false - false - 0 - en - false - false - 3 - false - - - 153113191 - cool iphone - cooliphone - New York, NY - Just a dude with an iPhone that likes stuff from Apple. I'm a technology/gadgets enthusiast. Sharing cool things about technology, iphone, apps … - http://a3.twimg.com/profile_images/968722035/cooliphonephoto_normal.jpg - - false - 1875 - C0DEED - 333333 - 0084B4 - DDEEF6 - C0DEED - 2064 - Mon Jun 07 18:29:10 +0000 2010 - 0 - - - http://a3.twimg.com/profile_background_images/109621965/cooliphonebackground.jpg - true - true - false - false - false - false - 1201 - en - false - false - 41 - false - - Wed Nov 03 12:27:10 +0000 2010 - 29566090093 - Hands On: Motorola Droid smartphone http://bit.ly/ctW1iu - <a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a> - false - false - - - - - false - - - - - - 61074651 Joel Mahoney @@ -476,7 +391,7 @@ about you and give you exclusive offers. 0084B4 DDEEF6 C0DEED - 1806 + 1813 Thu Feb 25 21:17:37 +0000 2010 0 -28800 @@ -1249,7 +1164,7 @@ agak sulit ne... http://a3.twimg.com/profile_images/1157672351/38516_147566095256327_100000088118511_431519_7709287_n_normal.jpg http://jjarichardson.tumblr.com/ false - 516 + 517 131516 333333 009999 @@ -1317,7 +1232,7 @@ agak sulit ne... http://a3.twimg.com/profile_images/1153550035/rick-rar-talk-1_normal.png http://techno-weenie.net false - 4018 + 4019 FFFFFF 000000 0000ff @@ -1525,16 +1440,16 @@ agak sulit ne... false false false - 126 + 127 ja false false 2 false - Wed Nov 03 14:21:30 +0000 2010 - 29575538623 - 今から F# をインストールしよう。 / Visual F# Express Edition の入手方法 - (hatena (diary ’Nobuhisa)) http://htn.to/Jeb2kL + Wed Nov 03 14:45:49 +0000 2010 + 29577664929 + F# 入門のページ(これはいい) / F#入門 http://htn.to/GVgZCx <a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a> false false @@ -1627,22 +1542,22 @@ agak sulit ne... true false false - 31543 + 31547 en false false 254 false - Wed Nov 03 14:07:48 +0000 2010 - 29574353218 - @florianseroussi Simone :-) can't believe it's already four years... - <a href="http://tweetsride.com/" rel="nofollow">TweetsRide</a> + Wed Nov 03 14:41:00 +0000 2010 + 29577224423 + An Open Source, HTML5 Framework for iPad E-books http://j.mp/aO70Aj + <a href="http://reader2twitter.appspot.com/" rel="nofollow">Google2Tweet</a> false false - 29569875973 - 6513952 - florianseroussi + + + false @@ -2939,17 +2854,17 @@ all my life O;-] true false false - 1020 + 1021 en false false 171 false - Wed Nov 03 08:35:05 +0000 2010 - 29552985229 - RT @smashingmag: Is IE9 really the most HTML5 Compatible Browser? http://is.gd/gCFDh and http://is.gd/gEw1I (thanks, @tomantonis) - <a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a> + Wed Nov 03 14:26:53 +0000 2010 + 29575997875 + Paython: Python payment processing module http://lg.gd/3m + <a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a> false false @@ -3193,7 +3108,7 @@ all my life O;-] http://a0.twimg.com/profile_images/1152516944/birthday_cake_normal.jpg http://www.officialtherefromhere.com false - 2062 + 2061 ffffff 210626 000000 @@ -3630,7 +3545,7 @@ all my life O;-] http://a0.twimg.com/profile_images/581820664/profilepic_normal.jpg http://about.me/hiten/bio false - 25715 + 25716 668284 2A2829 7B3B3B @@ -3835,22 +3750,22 @@ all my life O;-] false false false - 938 + 940 en false false 40 false - Wed Nov 03 13:24:05 +0000 2010 - 29570639160 - Digging into the @prototypejs source for the first time - clean and very readable. #veryimpressed + Wed Nov 03 14:45:26 +0000 2010 + 29577628939 + @VideoMinutes You too! Edit me well. =) web false false - - - + 29569434096 + 103888318 + VideoMinutes false @@ -3985,7 +3900,7 @@ all my life O;-] http://a3.twimg.com/profile_images/53473799/marcel-euro-rails-conf_normal.jpg http://project.ioni.st false - 279523 + 279522 9AE4E8 333333 0084B4 @@ -4261,27 +4176,42 @@ San Fransocialite true false false - 348 + 349 en false false 1 false - Tue Nov 02 22:54:38 +0000 2010 - 29513795174 - @DavidMarkowitz what, no #NYTM ? http://frf.ly/7x5+ + Wed Nov 03 14:29:32 +0000 2010 + 29576228129 + I'm at LGA - Delta Terminal in Queens, New York http://frf.ly/7DE+ <a href="http://frf.ly" rel="nofollow">Firefly for iPhone</a> false false - 29512831384 - 17471849 - DavidMarkowitz + + + false - - - + + 40.7704 -73.8597 + + + 40.7704 -73.8597 + + + b6ea2e341ba4356f + Queens + Queens, NY + city + http://api.twitter.com/1/geo/id/b6ea2e341ba4356f.json + + + 40.489794 -74.042112 40.489794 -73.700272 40.812242 -73.700272 40.812242 -74.042112 + + The United States of America + @@ -4776,16 +4706,16 @@ San Fransocialite false false false - 3457 + 3458 en false false 4 false - Wed Nov 03 09:00:41 +0000 2010 - 29554184544 - How Singapore Could Become the Most Important City in the Emerging World http://retwt.me/1PuyO (via @TechCrunch) + Wed Nov 03 14:28:51 +0000 2010 + 29576169347 + Flash Sales Site For Indian Fashion Exclusively.in Raises $2.8 Million From Accel http://retwt.me/1PuLS (via @blogshot) <a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a> false false @@ -5199,7 +5129,110 @@ http://tinyurl.com/26lm7nh + + 180959939 + protradesgal + protradesgal + + Day trader - Forex, options, stocks, futures + + http://a3.twimg.com/profile_images/1107441847/k0709470_normal.jpg + + false + 301 + C0DEED + 333333 + 0084B4 + DDEEF6 + C0DEED + 988 + Fri Aug 20 23:09:02 +0000 2010 + 0 + -21600 + Central Time (US & Canada) + http://s.twimg.com/a/1288660386/images/themes/theme1/bg.png + false + true + false + false + false + false + 47 + en + false + false + 6 + false + + Tue Sep 21 21:10:39 +0000 2010 + 25151868279 + http://tinyurl.com/335ug5x Interview on specific trading methodology with traderinterviews.com $$ #trading #stocks #mkt + web + false + false + + + + + false + + + + + + + + 180956634 + Chad K + ratherchad + San Francisco + Rather Chad-like, and currently a Ruby developer + http://a3.twimg.com/profile_images/1107413683/n605431196_2079896_558_normal.jpg + + false + 18 + C6E2EE + 663B12 + 1F98C7 + DAECF4 + C6E2EE + 44 + Fri Aug 20 22:58:09 +0000 2010 + 0 + -28800 + Pacific Time (US & Canada) + http://s.twimg.com/a/1288039940/images/themes/theme2/bg.gif + false + true + + false + false + + 14 + en + false + + 4 + false + + Thu Oct 28 01:03:24 +0000 2010 + 28943301790 + Cliff Lee's first post season loss will be tonight! Sanchez, Buster and Huff have his number. #sfgiants + <a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a> + false + false + + + + + false + + + + + + -1344705575776646761 +1344637399602463196 0 diff --git a/spec/twitter/client/user_spec.rb b/spec/twitter/client/user_spec.rb index 930277d9c..25b411b3c 100644 --- a/spec/twitter/client/user_spec.rb +++ b/spec/twitter/client/user_spec.rb @@ -334,7 +334,7 @@ it "should return a user's followers, each with current status inline" do followers = @client.followers("sferik") followers.users.should be_a Array - followers.users.first.name.should == "Cheryl Parker" + followers.users.first.name.should == "Joel Mahoney" end end @@ -357,7 +357,7 @@ it "should return a user's followers, each with current status inline" do followers = @client.followers followers.users.should be_a Array - followers.users.first.name.should == "Cheryl Parker" + followers.users.first.name.should == "Joel Mahoney" end end end