twitter 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. data/CHANGELOG.md +673 -0
  2. data/LICENSE.md +20 -0
  3. data/README.md +415 -0
  4. data/Rakefile +11 -0
  5. data/lib/twitter.rb +29 -0
  6. data/lib/twitter/action/favorite.rb +19 -0
  7. data/lib/twitter/action/follow.rb +31 -0
  8. data/lib/twitter/action/list_member_added.rb +41 -0
  9. data/lib/twitter/action/mention.rb +48 -0
  10. data/lib/twitter/action/reply.rb +27 -0
  11. data/lib/twitter/action/retweet.rb +27 -0
  12. data/lib/twitter/action/tweet.rb +22 -0
  13. data/lib/twitter/action_factory.rb +22 -0
  14. data/lib/twitter/api.rb +2442 -0
  15. data/lib/twitter/base.rb +119 -0
  16. data/lib/twitter/basic_user.rb +8 -0
  17. data/lib/twitter/client.rb +96 -0
  18. data/lib/twitter/configurable.rb +67 -0
  19. data/lib/twitter/configuration.rb +20 -0
  20. data/lib/twitter/core_ext/array.rb +7 -0
  21. data/lib/twitter/core_ext/enumerable.rb +11 -0
  22. data/lib/twitter/core_ext/hash.rb +100 -0
  23. data/lib/twitter/core_ext/kernel.rb +15 -0
  24. data/lib/twitter/core_ext/string.rb +10 -0
  25. data/lib/twitter/creatable.rb +20 -0
  26. data/lib/twitter/cursor.rb +87 -0
  27. data/lib/twitter/default.rb +101 -0
  28. data/lib/twitter/direct_message.rb +21 -0
  29. data/lib/twitter/entity.rb +7 -0
  30. data/lib/twitter/entity/hashtag.rb +9 -0
  31. data/lib/twitter/entity/url.rb +9 -0
  32. data/lib/twitter/entity/user_mention.rb +9 -0
  33. data/lib/twitter/error.rb +34 -0
  34. data/lib/twitter/error/bad_gateway.rb +11 -0
  35. data/lib/twitter/error/bad_request.rb +10 -0
  36. data/lib/twitter/error/client_error.rb +35 -0
  37. data/lib/twitter/error/decode_error.rb +9 -0
  38. data/lib/twitter/error/forbidden.rb +10 -0
  39. data/lib/twitter/error/gateway_timeout.rb +11 -0
  40. data/lib/twitter/error/identity_map_key_error.rb +9 -0
  41. data/lib/twitter/error/internal_server_error.rb +11 -0
  42. data/lib/twitter/error/not_acceptable.rb +10 -0
  43. data/lib/twitter/error/not_found.rb +10 -0
  44. data/lib/twitter/error/rate_limited.rb +11 -0
  45. data/lib/twitter/error/server_error.rb +28 -0
  46. data/lib/twitter/error/service_unavailable.rb +11 -0
  47. data/lib/twitter/error/unauthorized.rb +10 -0
  48. data/lib/twitter/factory.rb +21 -0
  49. data/lib/twitter/geo.rb +15 -0
  50. data/lib/twitter/geo/point.rb +22 -0
  51. data/lib/twitter/geo/polygon.rb +8 -0
  52. data/lib/twitter/geo_factory.rb +18 -0
  53. data/lib/twitter/identity.rb +50 -0
  54. data/lib/twitter/identity_map.rb +22 -0
  55. data/lib/twitter/language.rb +7 -0
  56. data/lib/twitter/list.rb +18 -0
  57. data/lib/twitter/media/photo.rb +22 -0
  58. data/lib/twitter/media_factory.rb +17 -0
  59. data/lib/twitter/metadata.rb +7 -0
  60. data/lib/twitter/oembed.rb +8 -0
  61. data/lib/twitter/place.rb +34 -0
  62. data/lib/twitter/rate_limit.rb +45 -0
  63. data/lib/twitter/relationship.rb +36 -0
  64. data/lib/twitter/request/multipart_with_file.rb +41 -0
  65. data/lib/twitter/response/parse_json.rb +25 -0
  66. data/lib/twitter/response/raise_error.rb +30 -0
  67. data/lib/twitter/saved_search.rb +9 -0
  68. data/lib/twitter/search_results.rb +48 -0
  69. data/lib/twitter/settings.rb +17 -0
  70. data/lib/twitter/size.rb +24 -0
  71. data/lib/twitter/source_user.rb +15 -0
  72. data/lib/twitter/suggestion.rb +22 -0
  73. data/lib/twitter/target_user.rb +8 -0
  74. data/lib/twitter/trend.rb +14 -0
  75. data/lib/twitter/tweet.rb +145 -0
  76. data/lib/twitter/user.rb +97 -0
  77. data/lib/twitter/version.rb +18 -0
  78. data/spec/fixtures/about_me.json +1 -0
  79. data/spec/fixtures/activity_summary.json +1 -0
  80. data/spec/fixtures/all.json +1 -0
  81. data/spec/fixtures/bad_gateway.json +1 -0
  82. data/spec/fixtures/bad_request.json +1 -0
  83. data/spec/fixtures/by_friends.json +1 -0
  84. data/spec/fixtures/category.json +1 -0
  85. data/spec/fixtures/configuration.json +1 -0
  86. data/spec/fixtures/contributees.json +1 -0
  87. data/spec/fixtures/contributors.json +1 -0
  88. data/spec/fixtures/direct_message.json +1 -0
  89. data/spec/fixtures/direct_messages.json +1 -0
  90. data/spec/fixtures/end_session.json +1 -0
  91. data/spec/fixtures/enhance_your_calm.text +11 -0
  92. data/spec/fixtures/favorites.json +1 -0
  93. data/spec/fixtures/following.json +1 -0
  94. data/spec/fixtures/forbidden.json +1 -0
  95. data/spec/fixtures/friendships.json +1 -0
  96. data/spec/fixtures/ids.json +1 -0
  97. data/spec/fixtures/ids_list.json +1 -0
  98. data/spec/fixtures/ids_list2.json +1 -0
  99. data/spec/fixtures/image_facets.json +1 -0
  100. data/spec/fixtures/internal_server_error.json +1 -0
  101. data/spec/fixtures/languages.json +1 -0
  102. data/spec/fixtures/list.json +1 -0
  103. data/spec/fixtures/lists.json +1 -0
  104. data/spec/fixtures/locations.json +1 -0
  105. data/spec/fixtures/matching_trends.json +1 -0
  106. data/spec/fixtures/me.jpeg +0 -0
  107. data/spec/fixtures/media_timeline.json +1 -0
  108. data/spec/fixtures/members.json +1 -0
  109. data/spec/fixtures/no_user_matches.json +1 -0
  110. data/spec/fixtures/not_acceptable.json +1 -0
  111. data/spec/fixtures/not_following.json +1 -0
  112. data/spec/fixtures/not_found.json +1 -0
  113. data/spec/fixtures/oembed.json +1 -0
  114. data/spec/fixtures/pbjt.gif +0 -0
  115. data/spec/fixtures/pengwynn.json +1 -0
  116. data/spec/fixtures/phoenix_search.phoenix +1 -0
  117. data/spec/fixtures/place.json +1 -0
  118. data/spec/fixtures/places.json +1 -0
  119. data/spec/fixtures/privacy.json +1 -0
  120. data/spec/fixtures/profile_image.text +24 -0
  121. data/spec/fixtures/rate_limit_status.json +1 -0
  122. data/spec/fixtures/recommendations.json +1 -0
  123. data/spec/fixtures/related_results.json +1 -0
  124. data/spec/fixtures/resolve.json +1 -0
  125. data/spec/fixtures/retweet.json +1 -0
  126. data/spec/fixtures/retweeted_status.json +1 -0
  127. data/spec/fixtures/retweeters_of.json +1 -0
  128. data/spec/fixtures/retweets.json +1 -0
  129. data/spec/fixtures/saved_search.json +1 -0
  130. data/spec/fixtures/saved_searches.json +1 -0
  131. data/spec/fixtures/search.json +1 -0
  132. data/spec/fixtures/search_malformed.json +1 -0
  133. data/spec/fixtures/service_unavailable.json +1 -0
  134. data/spec/fixtures/settings.json +1 -0
  135. data/spec/fixtures/sferik.json +1 -0
  136. data/spec/fixtures/status.json +1 -0
  137. data/spec/fixtures/status_with_media.json +104 -0
  138. data/spec/fixtures/statuses.json +1 -0
  139. data/spec/fixtures/suggestions.json +1 -0
  140. data/spec/fixtures/tos.json +1 -0
  141. data/spec/fixtures/totals.json +1 -0
  142. data/spec/fixtures/trends.json +1 -0
  143. data/spec/fixtures/trends_current.json +1 -0
  144. data/spec/fixtures/trends_daily.json +1 -0
  145. data/spec/fixtures/trends_weekly.json +1 -0
  146. data/spec/fixtures/unauthorized.json +1 -0
  147. data/spec/fixtures/user_search.json +1 -0
  148. data/spec/fixtures/user_timeline.json +1 -0
  149. data/spec/fixtures/users.json +1 -0
  150. data/spec/fixtures/users_list.json +1 -0
  151. data/spec/fixtures/video_facets.json +1 -0
  152. data/spec/fixtures/we_concept_bg2.png +0 -0
  153. data/spec/fixtures/wildcomet2.jpe +0 -0
  154. data/spec/helper.rb +53 -0
  155. data/spec/twitter/action/favorite_spec.rb +29 -0
  156. data/spec/twitter/action/follow_spec.rb +29 -0
  157. data/spec/twitter/action/list_member_added_spec.rb +41 -0
  158. data/spec/twitter/action/mention_spec.rb +52 -0
  159. data/spec/twitter/action/reply_spec.rb +41 -0
  160. data/spec/twitter/action/retweet_spec.rb +41 -0
  161. data/spec/twitter/action_factory_spec.rb +37 -0
  162. data/spec/twitter/action_spec.rb +16 -0
  163. data/spec/twitter/api/account_spec.rb +148 -0
  164. data/spec/twitter/api/activity_spec.rb +41 -0
  165. data/spec/twitter/api/blocks_spec.rb +167 -0
  166. data/spec/twitter/api/direct_messages_spec.rb +142 -0
  167. data/spec/twitter/api/friendships_spec.rb +567 -0
  168. data/spec/twitter/api/geo_spec.rb +100 -0
  169. data/spec/twitter/api/help_spec.rb +76 -0
  170. data/spec/twitter/api/lists_spec.rb +900 -0
  171. data/spec/twitter/api/report_spam_spec.rb +29 -0
  172. data/spec/twitter/api/saved_searches_spec.rb +100 -0
  173. data/spec/twitter/api/search_spec.rb +68 -0
  174. data/spec/twitter/api/statuses_spec.rb +559 -0
  175. data/spec/twitter/api/trends_spec.rb +80 -0
  176. data/spec/twitter/api/users_spec.rb +419 -0
  177. data/spec/twitter/base_spec.rb +113 -0
  178. data/spec/twitter/basic_user_spec.rb +23 -0
  179. data/spec/twitter/client_spec.rb +175 -0
  180. data/spec/twitter/configuration_spec.rb +17 -0
  181. data/spec/twitter/cursor_spec.rb +102 -0
  182. data/spec/twitter/direct_message_spec.rb +56 -0
  183. data/spec/twitter/error/client_error_spec.rb +40 -0
  184. data/spec/twitter/error/server_error_spec.rb +24 -0
  185. data/spec/twitter/error_spec.rb +20 -0
  186. data/spec/twitter/geo/point_spec.rb +41 -0
  187. data/spec/twitter/geo/polygon_spec.rb +29 -0
  188. data/spec/twitter/geo_factory_spec.rb +21 -0
  189. data/spec/twitter/geo_spec.rb +29 -0
  190. data/spec/twitter/identifiable_spec.rb +54 -0
  191. data/spec/twitter/list_spec.rb +45 -0
  192. data/spec/twitter/media/photo_spec.rb +35 -0
  193. data/spec/twitter/media_factory_spec.rb +17 -0
  194. data/spec/twitter/oembed_spec.rb +146 -0
  195. data/spec/twitter/place_spec.rb +75 -0
  196. data/spec/twitter/rate_limit_spec.rb +76 -0
  197. data/spec/twitter/relationship_spec.rb +35 -0
  198. data/spec/twitter/saved_search_spec.rb +34 -0
  199. data/spec/twitter/search_results_spec.rb +89 -0
  200. data/spec/twitter/settings_spec.rb +16 -0
  201. data/spec/twitter/size_spec.rb +38 -0
  202. data/spec/twitter/source_user_spec.rb +23 -0
  203. data/spec/twitter/suggestion_spec.rb +50 -0
  204. data/spec/twitter/target_user_spec.rb +23 -0
  205. data/spec/twitter/trend_spec.rb +38 -0
  206. data/spec/twitter/tweet_spec.rb +307 -0
  207. data/spec/twitter/user_spec.rb +127 -0
  208. data/spec/twitter_spec.rb +93 -0
  209. data/twitter.gemspec +30 -0
  210. metadata +584 -0
@@ -0,0 +1,18 @@
1
+ module Twitter
2
+ class Version
3
+ MAJOR = 4 unless defined? Twitter::MAJOR
4
+ MINOR = 0 unless defined? Twitter::MINOR
5
+ PATCH = 0 unless defined? Twitter::PATCH
6
+ PRE = nil unless defined? Twitter::PRE
7
+
8
+ class << self
9
+
10
+ # @return [String]
11
+ def to_s
12
+ [MAJOR, MINOR, PATCH, PRE].compact.join('.')
13
+ end
14
+
15
+ end
16
+
17
+ end
18
+ end
@@ -0,0 +1 @@
1
+ [{"action":"mention","max_position":"1320765311071","min_position":"1320765311071","created_at":"Tue Nov 08 15:15:11 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:15:11 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133925537742729216","truncated":false,"id":133925537742729216,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I'm happy to document all the great work in Bundler 1.1 from @carllerche @hone02 @indirect @sferik wagenet and @wycats and many others!"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"}],"sources_size":1},{"action":"favorite","max_position":"1320705284779","min_position":"1320705284779","created_at":"Mon Nov 07 22:34:44 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"twitterapi","created_at":"Mon Nov 07 22:34:09 +0000 2011","retweeted":false,"in_reply_to_status_id":133640144317198338,"in_reply_to_status_id_str":"133640144317198338","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133673622358331392","truncated":false,"id":133673622358331392,"in_reply_to_user_id_str":"6253282","in_reply_to_user_id":6253282,"text":"@twitterapi good riddance! \/cc @episod"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"FA8459","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1624563418\/image_normal.jpg","screen_name":"episod","listed_count":286,"url":"http:\/\/t.co\/iiwkNTP","name":"Taylor Singletary","time_zone":"Pacific Time (US & Canada)","profile_background_color":"030103","expanded_url":"http:\/\/about.me\/taylorsingletary","follow_request_sent":false,"statuses_count":14689,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4858,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1624563418\/image_normal.jpg","description":"Reality Technician, Twitter API & platform team, synthesizer enthusiast, narrator in question. Whales all the way down.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Wed Mar 07 22:23:19 +0000 2007","friends_count":4638,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:47:12 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","id_str":"134024194206867458","truncated":false,"id":134024194206867458,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"And then everyone else on the email thread spontaneously caught aflame."},"profile_sidebar_border_color":"ADF1FC","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/345129955\/x05ef6d74efea85d14b911260eebb025.jpg","favourites_count":9152,"id_str":"819797","default_profile":false,"contributors_enabled":false,"profile_text_color":"947974","id":819797,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/taylorsingleta\u2026","lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/345129955\/x05ef6d74efea85d14b911260eebb025.jpg","location":"San Francisco, CA"}],"sources_size":1},{"action":"mention","max_position":"1320701426039","min_position":"1320701426039","created_at":"Mon Nov 07 21:30:26 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"},"retweet_count":0,"in_reply_to_screen_name":"anno","created_at":"Mon Nov 07 21:30:26 +0000 2011","retweeted":false,"in_reply_to_status_id":133656779140759552,"in_reply_to_status_id_str":"133656779140759552","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133657584489082882","truncated":false,"id":133657584489082882,"in_reply_to_user_id_str":"4618","in_reply_to_user_id":4618,"text":"@anno @sferik Thanks guys. Will be mashing http:\/\/t.co\/WqrKjF5z up with Twitter Bootstrap tonight."}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:10:27 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133999843784933376","truncated":false,"id":133999843784933376,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Developing HTML emails is like traveling 10 years back in time."},"default_profile":false,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"}],"sources_size":1},{"action":"follow","max_position":"1320699200179","min_position":"1320663942826","created_at":"Mon Nov 07 20:53:20 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"B40B43","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619686233\/moms18_1__normal.gif","screen_name":"MommyEntourage","listed_count":6,"url":"http:\/\/www.mommyentourage.blogspot.com","name":"Mommy Entourage","time_zone":"Eastern Time (US & Canada)","profile_background_color":"FF6699","follow_request_sent":false,"statuses_count":307,"profile_background_tile":true,"utc_offset":-18000,"followers_count":83,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1619686233\/moms18_1__normal.gif","description":"Mom of 2 who loves to be in the know of all things fun in Philly & beyond. Armed with coffee & chocolate; sometimes found knee-deep in play doh & glitter. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E5507E","default_profile_image":false,"verified":false,"created_at":"Fri Aug 05 21:26:31 +0000 2011","friends_count":123,"profile_sidebar_border_color":"CC3366","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme11\/bg.gif","favourites_count":0,"id_str":"349285093","contributors_enabled":false,"profile_text_color":"362720","id":349285093,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme11\/bg.gif","location":"Philadelphia, PA"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1618120966\/blackcattat2_normal.jpg","screen_name":"mrsrkfj","listed_count":17,"url":"http:\/\/mrsrkfj.blogspot.com","name":"mrsrkfj","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":null,"statuses_count":8143,"profile_background_tile":true,"utc_offset":-18000,"followers_count":507,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1618120966\/blackcattat2_normal.jpg","description":"Mahna, mahna. Views expressed here are solely my own.","following":null,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Aug 12 15:48:16 +0000 2008","friends_count":510,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 12:14:55 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.twentyfeet.com\" rel=\"nofollow\"\u003ETwentyFeet\u003C\/a\u003E","id_str":"133880172905635840","truncated":false,"id":133880172905635840,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"My week on twitter: 1 retweets received, 9 new followers, 24 mentions. Via: http:\/\/t.co\/4o34bGef"},"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/306086799\/mrsrkfj2.jpg","favourites_count":15,"id_str":"15823881","contributors_enabled":false,"profile_text_color":"333333","id":15823881,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/306086799\/mrsrkfj2.jpg","location":"Upper Darby"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1233379940\/179466_10150153007740761_503605760_8361901_1733217_n_normal.jpg","screen_name":"ZachAAbbott","listed_count":1,"url":null,"name":"Zach Abbott","time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":625,"profile_background_tile":false,"utc_offset":-21600,"followers_count":53,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1233379940\/179466_10150153007740761_503605760_8361901_1733217_n_normal.jpg","description":"Computer scientist, rubyist, grad student, and science enthusiast. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jan 16 03:29:24 +0000 2011","friends_count":176,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"238816780","contributors_enabled":false,"profile_text_color":"333333","id":238816780,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Iowa"},{"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1627500016\/Me_work_normal.jpg","screen_name":"Cathy_Short","listed_count":0,"url":null,"name":"Cathy Short","time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","follow_request_sent":false,"statuses_count":14,"profile_background_tile":true,"utc_offset":-28800,"followers_count":16,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1627500016\/Me_work_normal.jpg","description":"Technical Recruiter with 14yrs experience always looking to network and lend a helping hand","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"7AC3EE","default_profile_image":false,"verified":false,"created_at":"Mon Sep 26 18:44:43 +0000 2011","friends_count":155,"default_profile":false,"profile_sidebar_border_color":"65B0DA","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","favourites_count":0,"id_str":"380487133","contributors_enabled":false,"profile_text_color":"3D1957","id":380487133,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme10\/bg.gif","location":"San Jose, CA"}],"sources_size":4},{"action":"reply","max_position":"1320687668601","min_position":"1320687668601","created_at":"Mon Nov 07 17:41:08 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:15:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366983218565120","truncated":false,"id":133366983218565120,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"That said, Alan Benjamin is a pretty good pseudonym. I might have to start using that."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","screen_name":"SeeBBen","listed_count":0,"url":"http:\/\/b-benjamin.tumblr.com","name":"Brittany Benjamin","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":28,"profile_background_tile":false,"utc_offset":-18000,"followers_count":13,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","description":"","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Sep 23 01:37:43 +0000 2009","friends_count":12,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"76521248","contributors_enabled":false,"profile_text_color":"333333","id":76521248,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 17:41:08 +0000 2011","retweeted":false,"in_reply_to_status_id":133366983218565120,"in_reply_to_status_id_str":"133366983218565120","source":"web","id_str":"133599881620242432","truncated":false,"id":133599881620242432,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik you have expressed interest in the benjamin clan..."}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","screen_name":"SeeBBen","listed_count":0,"url":"http:\/\/b-benjamin.tumblr.com","name":"Brittany Benjamin","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":28,"profile_background_tile":false,"utc_offset":-18000,"followers_count":13,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","description":"","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Sep 23 01:37:43 +0000 2009","friends_count":12,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"76521248","contributors_enabled":false,"profile_text_color":"333333","id":76521248,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""}],"sources_size":1},{"action":"reply","max_position":"1320684449549","min_position":"1320684449549","created_at":"Mon Nov 07 16:47:29 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"qrush","created_at":"Mon Nov 07 16:46:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133586205219631105","truncated":false,"id":133586205219631105,"in_reply_to_user_id_str":"5743852","in_reply_to_user_id":5743852,"text":"@qrush Can you please merge this http:\/\/t.co\/8WGibtc2? I don't have write access to the rubygems\/contribute repo. \/cc @bryckbost @laserlemon"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 16:47:29 +0000 2011","retweeted":false,"in_reply_to_status_id":133586205219631105,"in_reply_to_status_id_str":"133586205219631105","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133586379933368321","truncated":false,"id":133586379933368321,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik Thanks!"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:10:27 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133999843784933376","truncated":false,"id":133999843784933376,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Developing HTML emails is like traveling 10 years back in time."},"default_profile":false,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"}],"sources_size":1},{"action":"mention","max_position":"1320642577140","min_position":"1320642577140","created_at":"Mon Nov 07 05:09:37 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1260338912\/image_normal.jpg","screen_name":"Right2BHeard","listed_count":7,"url":"http:\/\/www.therighttobeheard.org","name":"Right to be Heard","time_zone":"Arizona","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":359,"profile_background_tile":false,"utc_offset":-25200,"followers_count":232,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1260338912\/image_normal.jpg","description":"Encouraging conversations that bridge the ideological divide. Inspiring civil dialogue and deliberation.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 22 23:58:33 +0000 2011","friends_count":496,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1,"id_str":"256253666","contributors_enabled":false,"profile_text_color":"333333","id":256253666,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Tucson, Arizona"},"retweet_count":0,"in_reply_to_screen_name":"AndrewGreenhill","created_at":"Mon Nov 07 05:09:37 +0000 2011","retweeted":false,"in_reply_to_status_id":133404931427270656,"in_reply_to_status_id_str":"133404931427270656","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133410754316599296","truncated":false,"id":133410754316599296,"in_reply_to_user_id_str":"15784319","in_reply_to_user_id":15784319,"text":"@AndrewGreenhill @civichack @sferik @civcoms Do you mean they do NOT use the Internet to organize citizen volunteers? I agree it is a must."}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1260338912\/image_normal.jpg","screen_name":"Right2BHeard","listed_count":7,"url":"http:\/\/www.therighttobeheard.org","name":"Right to be Heard","time_zone":"Arizona","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":359,"profile_background_tile":false,"utc_offset":-25200,"followers_count":232,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1260338912\/image_normal.jpg","description":"Encouraging conversations that bridge the ideological divide. Inspiring civil dialogue and deliberation.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 22 23:58:33 +0000 2011","friends_count":496,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1,"id_str":"256253666","contributors_enabled":false,"profile_text_color":"333333","id":256253666,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Tucson, Arizona"}],"sources_size":1},{"action":"mention","max_position":"1320641188855","min_position":"1320641188855","created_at":"Mon Nov 07 04:46:28 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","screen_name":"AndrewGreenhill","listed_count":76,"url":null,"name":"Andrew Greenhill","time_zone":"Arizona","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2316,"profile_background_tile":false,"utc_offset":-25200,"followers_count":1148,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","description":"Mayor's Chief of Staff interested in how technology can help communities solve problems, save money, serve citizens and improve government","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 23:23:07 +0000 2008","friends_count":530,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":64,"id_str":"15784319","contributors_enabled":false,"profile_text_color":"634047","id":15784319,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Tucson, Arizona"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 04:46:28 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"133404931427270656","truncated":false,"id":133404931427270656,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @civichack What if cities started using internet to organize citizen volunteers? @sferik c4a.me\/u2bmDY #gov20 #urbanism MT @CivComs"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","screen_name":"AndrewGreenhill","listed_count":76,"url":null,"name":"Andrew Greenhill","time_zone":"Arizona","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2316,"profile_background_tile":false,"utc_offset":-25200,"followers_count":1148,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","description":"Mayor's Chief of Staff interested in how technology can help communities solve problems, save money, serve citizens and improve government","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 23:23:07 +0000 2008","friends_count":530,"default_profile":false,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":64,"id_str":"15784319","contributors_enabled":false,"profile_text_color":"634047","id":15784319,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Tucson, Arizona"}],"sources_size":1},{"action":"reply","max_position":"1320639583731","min_position":"1320639583731","created_at":"Mon Nov 07 04:19:43 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"j3","created_at":"Mon Nov 07 02:27:03 +0000 2011","retweeted":false,"in_reply_to_status_id":133369618726273024,"in_reply_to_status_id_str":"133369618726273024","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133369846078513152","truncated":false,"id":133369846078513152,"in_reply_to_user_id_str":"1133971","in_reply_to_user_id":1133971,"text":"@j3 Google Search by Image http:\/\/t.co\/L9bXXvZU"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Pittsburgh","url":"http:\/\/api.twitter.com\/1\/geo\/id\/946ccd22e1c9cda1.json","attributes":{},"full_name":"Pittsburgh, PA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-80.095509,40.36152],[-79.865728,40.36152],[-79.865728,40.501201],[-80.095509,40.501201]]]},"place_type":"city","id":"946ccd22e1c9cda1"},"geo":{"type":"Point","coordinates":[40.44120021,-79.95673674]},"coordinates":{"type":"Point","coordinates":[-79.95673674,40.44120021]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","screen_name":"sethvargo","listed_count":5,"url":"http:\/\/sethvargo.com\/","name":"Seth Vargo","time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":1614,"profile_background_tile":false,"utc_offset":-18000,"followers_count":115,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","description":"student. developer. designer. entrepreneur.\r\n\r\nI'm a student at Carnegie Mellon University studying Information Systems.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Wed Mar 09 00:54:05 +0000 2011","friends_count":149,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":2,"id_str":"262914828","contributors_enabled":false,"profile_text_color":"333333","id":262914828,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Pittsburgh, PA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 04:19:43 +0000 2011","retweeted":false,"in_reply_to_status_id":133369846078513152,"in_reply_to_status_id_str":"133369846078513152","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133398199045062656","truncated":false,"id":133398199045062656,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wait. Did you google image search yourself?"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","screen_name":"sethvargo","listed_count":5,"url":"http:\/\/sethvargo.com\/","name":"Seth Vargo","time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","follow_request_sent":null,"statuses_count":1614,"profile_background_tile":false,"utc_offset":-18000,"followers_count":115,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","description":"student. developer. designer. entrepreneur.\r\n\r\nI'm a student at Carnegie Mellon University studying Information Systems.","following":null,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Wed Mar 09 00:54:05 +0000 2011","friends_count":149,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":null,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":2,"id_str":"262914828","contributors_enabled":false,"profile_text_color":"333333","id":262914828,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Pittsburgh, PA"}],"sources_size":1},{"action":"follow","max_position":"1320637807687","min_position":"1320615513669","created_at":"Mon Nov 07 03:50:07 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314168429\/image_normal.jpg","screen_name":"curphey","listed_count":61,"url":"http:\/\/www.curphey.com","name":"Mark Curphey","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":5325,"profile_background_tile":true,"utc_offset":-28800,"followers_count":814,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1314168429\/image_normal.jpg","description":"Software, distance runner and .....","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Mon May 04 01:38:13 +0000 2009","friends_count":128,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"37560547","contributors_enabled":false,"profile_text_color":"333333","id":37560547,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"Seattle, WA, USA"},{"show_all_inline_media":true,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1624677802\/AcZZf1DCMAAERiJ__copy__normal.jpg","screen_name":"Nomad145","listed_count":1,"url":null,"name":"Michael Phillips","time_zone":"Central Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":381,"profile_background_tile":false,"utc_offset":-21600,"followers_count":83,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1624677802\/AcZZf1DCMAAERiJ__copy__normal.jpg","description":"Programmer. Musician.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Wed Apr 07 18:46:11 +0000 2010","friends_count":59,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","favourites_count":0,"id_str":"130586917","contributors_enabled":false,"profile_text_color":"666666","id":130586917,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","location":"Anywhere and Everywhere"},{"show_all_inline_media":true,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/348245069\/Stacy_normal.jpg","screen_name":"RandomCoolChick","listed_count":57,"url":"http:\/\/stacyuncorked.com\/","name":"Stacy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2490,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2741,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/348245069\/Stacy_normal.jpg","description":"Sassy Mama to the Princess Nagger. Enjoy making grapes and various fruits into wine. Experiments with water currently underway.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Sat Nov 15 21:55:52 +0000 2008","friends_count":2921,"default_profile":false,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/138720867\/NewTwitterBkgd.jpg","favourites_count":5,"id_str":"17413580","contributors_enabled":false,"profile_text_color":"634047","id":17413580,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/138720867\/NewTwitterBkgd.jpg","location":"Small Town, PA"},{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1119353844\/IMG_0022-1_normal.JPG","screen_name":"jbentleyNJ","default_profile":true,"listed_count":4,"url":null,"name":"James Bentley","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":117,"profile_background_tile":false,"utc_offset":-18000,"followers_count":101,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1119353844\/IMG_0022-1_normal.JPG","description":"GIS and Political Science student at Rutgers University","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Sep 07 22:51:28 +0000 2010","friends_count":314,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"johnjreiser","created_at":"Tue Nov 08 01:55:41 +0000 2011","retweeted":false,"in_reply_to_status_id":133723038305878016,"in_reply_to_status_id_str":"133723038305878016","source":"web","id_str":"133724337034371072","truncated":false,"id":133724337034371072,"in_reply_to_user_id_str":"15356309","in_reply_to_user_id":15356309,"text":"@johnjreiser I'd be interested if you had room"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1319,"id_str":"188100615","contributors_enabled":false,"profile_text_color":"333333","id":188100615,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Lawrenceville, NJ"}],"sources_size":4},{"action":"mention","max_position":"1320637738475","min_position":"1320637738475","created_at":"Mon Nov 07 03:48:58 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","screen_name":"hacooney","listed_count":11,"url":null,"name":"Haynes Cooney","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":945,"profile_background_tile":true,"utc_offset":-18000,"followers_count":143,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","description":"IBM public sector strategy consultant. Let's make our cities more sustainable and enjoyable. Books, bikes, baseball, and travel make me happy.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jan 11 04:04:19 +0000 2010","friends_count":344,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","favourites_count":0,"id_str":"103750901","contributors_enabled":false,"profile_text_color":"333333","id":103750901,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","location":"Arlington, VA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 03:48:58 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133390459484643330","truncated":false,"id":133390459484643330,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Adopt a Hydrant RT @civichack What if #cities started using internet to organize citizen volunteers? @sferik http:\/\/t.co\/3cjvkdcz #gov20"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","screen_name":"hacooney","listed_count":11,"url":null,"name":"Haynes Cooney","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":945,"profile_background_tile":true,"utc_offset":-18000,"followers_count":143,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","description":"IBM public sector strategy consultant. Let's make our cities more sustainable and enjoyable. Books, bikes, baseball, and travel make me happy.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jan 11 04:04:19 +0000 2010","friends_count":344,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:36:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133961165696024576","truncated":false,"id":133961165696024576,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Today, for the first time since 1923, the public will decide Portland, ME's mayor http:\/\/t.co\/fQxa8H73 @pressherald"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","favourites_count":0,"id_str":"103750901","contributors_enabled":false,"profile_text_color":"333333","id":103750901,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","location":"Arlington, VA"}],"sources_size":1},{"action":"reply","max_position":"1320636819188","min_position":"1320636819188","created_at":"Mon Nov 07 03:33:39 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"goldman","created_at":"Mon Nov 07 03:32:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133385192596443136,"in_reply_to_status_id_str":"133385192596443136","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133386199002923010","truncated":false,"id":133386199002923010,"in_reply_to_user_id_str":"291","in_reply_to_user_id":291,"text":"@goldman Agreed. I got to meet him after he busted out at the final table of the Player's Championship (WSOP #55). He played like a champ."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308109,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:33:39 +0000 2011","retweeted":false,"in_reply_to_status_id":133386199002923010,"in_reply_to_status_id_str":"133386199002923010","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133386603715497984","truncated":false,"id":133386603715497984,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik did you see the 4-bet bluff right before the dinner break? I don't have that gear :("}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308098,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"anildash","created_at":"Tue Nov 08 03:40:12 +0000 2011","retweeted":false,"in_reply_to_status_id":133737786120470529,"in_reply_to_status_id_str":"133737786120470529","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133750639707684864","truncated":false,"id":133750639707684864,"in_reply_to_user_id_str":"36823","in_reply_to_user_id":36823,"text":"@anildash @beyonce knows its cool to lurk."},"default_profile":false,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"}],"sources_size":1},{"action":"reply","max_position":"1320636677798","min_position":"1320636677798","created_at":"Mon Nov 07 03:31:17 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:15:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366983218565120","truncated":false,"id":133366983218565120,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"That said, Alan Benjamin is a pretty good pseudonym. I might have to start using that."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"8a7302","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","screen_name":"smathy","listed_count":12,"url":"http:\/\/flow.handle.it\/","name":"Jason King","time_zone":"Pacific Time (US & Canada)","profile_background_color":"0f0a02","follow_request_sent":false,"statuses_count":3350,"profile_background_tile":false,"utc_offset":-28800,"followers_count":250,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","description":"I code, I roll, I laugh, I love.\n\nIt's better to regret something you did, than something you didn't do.\n\nGame on.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"171106","default_profile_image":false,"verified":false,"created_at":"Tue Oct 30 01:10:42 +0000 2007","friends_count":61,"profile_sidebar_border_color":"bcb302","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","favourites_count":7,"id_str":"9786912","contributors_enabled":false,"profile_text_color":"87623e","id":9786912,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","location":"San Diego, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:31:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133366983218565120,"in_reply_to_status_id_str":"133366983218565120","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133386010678673408","truncated":false,"id":133386010678673408,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wait, you're not Alan Benjamin? Damnit! I've been following the wrong guy!"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"8a7302","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","screen_name":"smathy","listed_count":12,"url":"http:\/\/flow.handle.it\/","name":"Jason King","time_zone":"Pacific Time (US & Canada)","profile_background_color":"0f0a02","follow_request_sent":false,"statuses_count":3350,"profile_background_tile":false,"utc_offset":-28800,"followers_count":250,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","description":"I code, I roll, I laugh, I love.\n\nIt's better to regret something you did, than something you didn't do.\n\nGame on.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"171106","default_profile_image":false,"verified":false,"created_at":"Tue Oct 30 01:10:42 +0000 2007","friends_count":61,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"codeofficer","created_at":"Tue Nov 08 19:21:43 +0000 2011","retweeted":false,"in_reply_to_status_id":133971609861111808,"in_reply_to_status_id_str":"133971609861111808","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987581443588097","truncated":false,"id":133987581443588097,"in_reply_to_user_id_str":"8828952","in_reply_to_user_id":8828952,"text":"@codeofficer worth giving it a serious crack in a real project. I was a doubter too, not a big \"end-less\" fan at all. I'm a convert now."},"default_profile":false,"profile_sidebar_border_color":"bcb302","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","favourites_count":7,"id_str":"9786912","contributors_enabled":false,"profile_text_color":"87623e","id":9786912,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","location":"San Diego, CA"}],"sources_size":1},{"action":"reply","max_position":"1320636482750","min_position":"1320636482750","created_at":"Mon Nov 07 03:28:02 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"goldman","created_at":"Mon Nov 07 03:05:07 +0000 2011","retweeted":false,"in_reply_to_status_id":133378340353613824,"in_reply_to_status_id_str":"133378340353613824","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133379422463066112","truncated":false,"id":133379422463066112,"in_reply_to_user_id_str":"291","in_reply_to_user_id":291,"text":"@goldman Who are you pulling for? Ben Lamb?"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308109,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:28:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133379422463066112,"in_reply_to_status_id_str":"133379422463066112","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133385192596443136","truncated":false,"id":133385192596443136,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik i think he's playing the best in the last few levels."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308098,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"anildash","created_at":"Tue Nov 08 03:40:12 +0000 2011","retweeted":false,"in_reply_to_status_id":133737786120470529,"in_reply_to_status_id_str":"133737786120470529","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133750639707684864","truncated":false,"id":133750639707684864,"in_reply_to_user_id_str":"36823","in_reply_to_user_id":36823,"text":"@anildash @beyonce knows its cool to lurk."},"default_profile":false,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320633737444","min_position":"1320632248602","created_at":"Mon Nov 07 02:42:17 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","default_profile":false,"follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"},{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"3aa8e8","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/763033286\/avatar2010_normal.png","screen_name":"willw","listed_count":396,"url":"http:\/\/williamwilkinson.com","name":"William Wilkinson","time_zone":"Pacific Time (US & Canada)","profile_background_color":"f2f4f7","follow_request_sent":false,"statuses_count":10593,"profile_background_tile":false,"utc_offset":-28800,"followers_count":3615,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/763033286\/avatar2010_normal.png","description":"A designer at @MetaLab. I made @EverydayApp.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Mon Jan 15 01:40:54 +0000 2007","friends_count":328,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:38:04 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134036995059101696","truncated":false,"id":134036995059101696,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"No more late-night impulse buying on eBay for me, just had the paper manual for what I wanted show up."},"profile_sidebar_border_color":"33b8b1","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/99054782\/pattern.png","favourites_count":14891,"id_str":"634163","contributors_enabled":false,"profile_text_color":"1d1f24","id":634163,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/99054782\/pattern.png","location":"Victoria, Canada"}],"sources_size":2},{"action":"reply","max_position":"1320633734910","min_position":"1320633734910","created_at":"Mon Nov 07 02:42:14 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Oakland","url":"http:\/\/api.twitter.com\/1\/geo\/id\/ab2f2fac83aa388d.json","attributes":{},"full_name":"Oakland, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.355881,37.632226],[-122.114672,37.632226],[-122.114672,37.885255],[-122.355881,37.885255]]]},"place_type":"city","id":"ab2f2fac83aa388d"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:42:14 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"web","id_str":"133373667320139776","truncated":false,"id":133373667320139776,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik That's the best thing I've seen all weekend."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","default_profile":false,"follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"}],"sources_size":1},{"action":"reply","max_position":"1320633467866","min_position":"1320633467866","created_at":"Mon Nov 07 02:37:47 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","screen_name":"danparsons","listed_count":19,"url":null,"name":"Dan Parsons","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":9855,"profile_background_tile":false,"utc_offset":-28800,"followers_count":245,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","description":"root@mozilla. Lasers. Yeah, it's an angry world, and no doubt everything will go as planned.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Sun Apr 08 22:56:39 +0000 2007","friends_count":211,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":50,"id_str":"3827111","contributors_enabled":false,"profile_text_color":"000000","id":3827111,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Diego & Mountain View, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:37:47 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133372547256434688","truncated":false,"id":133372547256434688,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wow, how did you find that?"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","screen_name":"danparsons","listed_count":19,"url":null,"name":"Dan Parsons","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":9855,"profile_background_tile":false,"utc_offset":-28800,"followers_count":245,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","description":"root@mozilla. Lasers. Yeah, it's an angry world, and no doubt everything will go as planned.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Sun Apr 08 22:56:39 +0000 2007","friends_count":211,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":50,"id_str":"3827111","contributors_enabled":false,"profile_text_color":"000000","id":3827111,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Diego & Mountain View, CA"}],"sources_size":1},{"action":"reply","max_position":"1320633257491","min_position":"1320633257491","created_at":"Mon Nov 07 02:34:17 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"qrush","created_at":"Mon Nov 07 02:23:14 +0000 2011","retweeted":false,"in_reply_to_status_id":133368782453346304,"in_reply_to_status_id_str":"133368782453346304","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133368882894340096","truncated":false,"id":133368882894340096,"in_reply_to_user_id_str":"5743852","in_reply_to_user_id":5743852,"text":"@qrush I don't want to be a meme."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"8a6e4e","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","screen_name":"qrush","listed_count":358,"url":"http:\/\/quaran.to","name":"Nick Quaranto","time_zone":"Eastern Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":10867,"profile_background_tile":true,"utc_offset":-18000,"followers_count":3697,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","description":"Husky wrangler, RIT Alum, http:\/\/rubygems.org Mechanic. Supposedly, I coined 'failwhale' too.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f0e2c0","default_profile_image":false,"verified":false,"created_at":"Thu May 03 15:49:55 +0000 2007","friends_count":932,"profile_sidebar_border_color":"a88965","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48504038\/pattern.png","favourites_count":1095,"id_str":"5743852","contributors_enabled":false,"profile_text_color":"000000","id":5743852,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/48504038\/pattern.png","location":"Buffalo, NY"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:34:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133368882894340096,"in_reply_to_status_id_str":"133368882894340096","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133371664871325696","truncated":false,"id":133371664871325696,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik maybe someone from your HS works for collegehumor? Could ask them to....reface it"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"8a6e4e","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","screen_name":"qrush","listed_count":358,"url":"http:\/\/quaran.to","name":"Nick Quaranto","default_profile":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":10867,"profile_background_tile":true,"utc_offset":-18000,"followers_count":3697,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","description":"Husky wrangler, RIT Alum, http:\/\/rubygems.org Mechanic. Supposedly, I coined 'failwhale' too.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f0e2c0","default_profile_image":false,"verified":false,"created_at":"Thu May 03 15:49:55 +0000 2007","friends_count":932,"profile_sidebar_border_color":"a88965","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48504038\/pattern.png","favourites_count":1095,"id_str":"5743852","contributors_enabled":false,"profile_text_color":"000000","id":5743852,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/48504038\/pattern.png","location":"Buffalo, NY"}],"sources_size":1},{"action":"reply","max_position":"1320633054000","min_position":"1320633054000","created_at":"Mon Nov 07 02:30:54 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Manhattan","url":"http:\/\/api.twitter.com\/1\/geo\/id\/086752cb03de1d5d.json","attributes":{},"full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.047249,40.679548],[-73.907104,40.679548],[-73.907104,40.882214],[-74.047249,40.882214]]]},"place_type":"city","id":"086752cb03de1d5d"},"geo":{"type":"Point","coordinates":[40.70969229,-74.00702857]},"coordinates":{"type":"Point","coordinates":[-74.00702857,40.70969229]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","screen_name":"darrellsilver","listed_count":37,"url":"http:\/\/darrellsilver.com","name":"Darrell Silver","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":2423,"profile_background_tile":false,"utc_offset":-18000,"followers_count":483,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","description":"Founder of @perpetually and organizer of @JellyNYC","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Jun 15 13:58:04 +0000 2007","friends_count":251,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":88,"id_str":"6834002","contributors_enabled":false,"profile_text_color":"000000","id":6834002,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"NY NY in google maps"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:30:54 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133370814706880513","truncated":false,"id":133370814706880513,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik is that your actual quote? You're such a badass."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","screen_name":"darrellsilver","listed_count":37,"url":"http:\/\/darrellsilver.com","name":"Darrell Silver","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":2423,"profile_background_tile":false,"utc_offset":-18000,"followers_count":483,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","description":"Founder of @perpetually and organizer of @JellyNYC","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Jun 15 13:58:04 +0000 2007","friends_count":251,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:44:38 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134023548154019841","truncated":false,"id":134023548154019841,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Top news right now: Sex, rape, rape, Iran."},"default_profile":false,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":88,"id_str":"6834002","contributors_enabled":false,"profile_text_color":"000000","id":6834002,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"NY NY in google maps"}],"sources_size":1},{"action":"reply","max_position":"1320632769650","min_position":"1320632769650","created_at":"Mon Nov 07 02:26:09 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","screen_name":"j3","listed_count":138,"url":"http:\/\/jumpstartlab.com","name":"Jeff Casimir","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":8538,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1728,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","description":"I started Jumpstart Lab and travel the earth teaching Ruby, Rails, jQuery and speculating about my Ruby-scene gossip magazine The National Requirer","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Wed Mar 14 02:35:24 +0000 2007","friends_count":473,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","favourites_count":6,"id_str":"1133971","contributors_enabled":false,"profile_text_color":"000000","id":1133971,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:26:09 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133369618726273024","truncated":false,"id":133369618726273024,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik how did you find it?"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","screen_name":"j3","listed_count":138,"url":"http:\/\/jumpstartlab.com","name":"Jeff Casimir","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":8538,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1728,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","description":"I started Jumpstart Lab and travel the earth teaching Ruby, Rails, jQuery and speculating about my Ruby-scene gossip magazine The National Requirer","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Wed Mar 14 02:35:24 +0000 2007","friends_count":473,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"amyhoy","created_at":"Tue Nov 08 18:39:31 +0000 2011","retweeted":false,"in_reply_to_status_id":133976319527632896,"in_reply_to_status_id_str":"133976319527632896","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133976959788134400","truncated":false,"id":133976959788134400,"in_reply_to_user_id_str":"627213","in_reply_to_user_id":627213,"text":"@amyhoy that's not strictly a requirement. I wonder if they have any Prada leather pants? \/cc @thomasfuchs"},"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","favourites_count":6,"id_str":"1133971","contributors_enabled":false,"profile_text_color":"000000","id":1133971,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","location":"Washington, DC"}],"sources_size":1}]
@@ -0,0 +1 @@
1
+ {"retweeters_count":"1","repliers":[15395778],"retweeters":[5407632],"favoriters_count":"2","repliers_count":"1","favoriters":[5407632,15395778]}
@@ -0,0 +1 @@
1
+ [{"id_str":"1129440","created_at":"Fri Oct 30 14:39:25 +0000 2009","subscriber_count":36,"slug":"rubyists","name":"Rubyists","following":true,"full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/61741268\/twitter-small.png","protected":false,"id_str":"14100886","follow_request_sent":false,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":2576,"profile_background_color":"efefef","name":"Wynn Netherland","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1553476111\/logo-wynning_normal.png","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-21600,"profile_sidebar_fill_color":"dddddd","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1553476111\/logo-wynning_normal.png","description":"Christian husband and father. CTO at @PureCharity. Co-host of @changelogshow. Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","listed_count":303,"time_zone":"Central Time (US & Canada)","profile_sidebar_border_color":"cccccc","screen_name":"pengwynn","followers_count":4343,"location":"Dallas, TX","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"666666","url":"http:\/\/wynnnetherland.com","default_profile_image":false,"statuses_count":5290,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/61741268\/twitter-small.png","favourites_count":87,"id":14100886,"profile_link_color":"35abe9"},"uri":"\/pengwynn\/rubyists","member_count":492,"id":1129440},{"id_str":"574","created_at":"Wed Sep 23 01:18:01 +0000 2009","subscriber_count":76725,"slug":"team","name":"Team","following":true,"full_name":"@twitter\/team","description":"","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","protected":false,"id_str":"783214","follow_request_sent":false,"created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":677,"profile_background_color":"ACDED6","name":"Twitter","display_url":null,"following":true,"profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png","expanded_url":null,"default_profile":false,"show_all_inline_media":true,"contributors_enabled":true,"verified":true,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"F6F6F6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png","description":"Always wondering what's happening. ","listed_count":65312,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"EEEEEE","screen_name":"twitter","followers_count":6354255,"location":"San Francisco, CA","geo_enabled":true,"profile_use_background_image":true,"entities":{"urls":[],"hashtags":[],"user_mentions":[]},"lang":"en","profile_text_color":"333333","url":"http:\/\/blog.twitter.com\/","default_profile_image":false,"statuses_count":1213,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":16,"id":783214,"profile_link_color":"038543"},"uri":"\/twitter\/team","member_count":623,"id":574},{"id_str":"33851813","created_at":"Mon Jan 17 06:53:51 +0000 2011","subscriber_count":0,"slug":"faves","name":"faves","following":false,"full_name":"@sferik\/faves","description":"","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/faves","member_count":21,"id":33851813},{"id_str":"21718825","created_at":"Tue Sep 14 21:46:56 +0000 2010","subscriber_count":5,"slug":"code-for-america","name":"code for america","following":false,"full_name":"@sferik\/code-for-america","description":"Code for America","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/code-for-america","member_count":26,"id":21718825},{"id_str":"20817728","created_at":"Sat Sep 04 00:46:03 +0000 2010","subscriber_count":0,"slug":"interesting","name":"interesting","following":false,"full_name":"@sferik\/interesting","description":"People who are interesting.","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/interesting","member_count":5,"id":20817728},{"id_str":"20712515","created_at":"Thu Sep 02 18:29:24 +0000 2010","subscriber_count":0,"slug":"recommended","name":"recommended","following":false,"full_name":"@sferik\/recommended","description":"Users recommended to me by Twitter","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/recommended","member_count":84,"id":20712515},{"id_str":"8863586","created_at":"Mon Mar 15 06:10:13 +0000 2010","subscriber_count":1,"slug":"presidents","name":"presidents","following":false,"full_name":"@sferik\/presidents","description":"Presidents of the United States of America","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/presidents","member_count":2,"id":8863586}]
@@ -0,0 +1 @@
1
+ {"error":"Bad Gateway","request":"/1/statuses/show/1.json"}
@@ -0,0 +1 @@
1
+ {"error":"Bad Request","request":"/1/statuses/show/1.json"}
@@ -0,0 +1 @@
1
+ [{"action":"favorite","max_position":"1320794149280","min_position":"1320718679267","created_at":"Tue Nov 08 23:15:49 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ba26b7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","screen_name":"JoshConstine","listed_count":80,"url":"http:\/\/about.me\/joshconstine","name":"Josh Constine","time_zone":"Pacific Time (US & Canada)","profile_background_color":"469cfb","default_profile":false,"follow_request_sent":false,"statuses_count":2688,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1513,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","description":"Writer for TechCrunch, Stanford M.A. in Cybersociology, culture omnivorre. I bring the truth with swag. Subscribe on FB: http:\/\/www.facebook.com\/JoshConstine","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"fbc67e","default_profile_image":false,"verified":false,"created_at":"Mon Jan 26 22:41:23 +0000 2009","friends_count":388,"profile_sidebar_border_color":"c3f4d4","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","favourites_count":1929,"id_str":"19563366","contributors_enabled":false,"profile_text_color":"333333","id":19563366,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","location":"Mission SF, CA"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:45:29 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134023760025104385","truncated":false,"id":134023760025104385,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I hate percentage growth stats. They're like graphs without the axes labeled, something you'd use to fool children."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","screen_name":"kaitlyntrigger","listed_count":25,"url":"http:\/\/about.me\/kaitlyntrigger","name":"Kaitlyn Trigger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":519,"profile_background_tile":false,"utc_offset":-28800,"followers_count":475,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","description":"Marketing Director @Rally by day. Avid eater, reader, urban explorer, and metaphor maker by night.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"default_profile":true,"verified":false,"created_at":"Tue Mar 20 22:15:38 +0000 2007","friends_count":170,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":44,"id_str":"1678471","contributors_enabled":false,"profile_text_color":"333333","id":1678471,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 06:12:26 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133788952825036801","truncated":false,"id":133788952825036801,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Deciding who to vote for is like sampling wine from the barrel and trying to guess how it will taste in 2 years. #SFelections"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","screen_name":"kaitlyntrigger","listed_count":25,"url":"http:\/\/about.me\/kaitlyntrigger","name":"Kaitlyn Trigger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":519,"profile_background_tile":false,"utc_offset":-28800,"followers_count":475,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","description":"Marketing Director @Rally by day. Avid eater, reader, urban explorer, and metaphor maker by night.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Mar 20 22:15:38 +0000 2007","friends_count":170,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":44,"id_str":"1678471","contributors_enabled":false,"profile_text_color":"333333","id":1678471,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:42:13 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134022940969807873","truncated":false,"id":134022940969807873,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Feeling lucky to be eating spicy chicken with chana masala & arugula from @rally's in-office chef, instead of a smooshed sandwich. YUM!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","screen_name":"mrgan","listed_count":1167,"url":"http:\/\/mrgan.com","name":"Neven Mrgan","time_zone":"Eastern Time (US & Canada)","profile_background_color":"68def9","follow_request_sent":false,"statuses_count":23026,"profile_background_tile":true,"utc_offset":-18000,"followers_count":11820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","description":"One of the good ones.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Dec 01 23:44:52 +0000 2006","friends_count":180,"profile_sidebar_border_color":"ff0000","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/19582992\/glyphs1.png","favourites_count":12441,"id_str":"35293","contributors_enabled":false,"profile_text_color":"000000","id":35293,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19582992\/glyphs1.png","location":"Portland, OR"},"retweet_count":10,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:52:36 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"134025554637766656","truncated":false,"id":134025554637766656,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Trivia: \"The Final Countdown\" was originally called \"Countdown\" but a studio tech mistook the name of the attached file for the track title."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11934,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"default_profile":true,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10519,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 09:17:15 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133835464477114369","truncated":false,"id":133835464477114369,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Hello my friend... Gary"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1856CB","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/116196532\/Phillygirl_avatar_closer_normal.jpg","screen_name":"phillygirl","listed_count":152,"url":"http:\/\/www.therainforestsite.com","name":"phillygirl","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","default_profile":false,"follow_request_sent":false,"statuses_count":3382,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2446,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/116196532\/Phillygirl_avatar_closer_normal.jpg","description":"Feisty Redhead Who Wants More Cowbell!","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"83c3ec","default_profile_image":false,"verified":false,"created_at":"Thu May 17 17:19:48 +0000 2007","friends_count":167,"profile_sidebar_border_color":"1952d2","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1592222\/clouds2stretched.JPG","favourites_count":3531,"id_str":"6114492","contributors_enabled":false,"profile_text_color":"000000","id":6114492,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/1592222\/clouds2stretched.JPG","location":"Las am\u00e9ricas"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:49:03 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133767967933603840","truncated":false,"id":133767967933603840,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Hey, @Twitter Activity page! How do I poke somebody or throw a sheep?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11917,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10518,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"default_profile":true,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":19,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:28:14 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134004322257215488","truncated":false,"id":134004322257215488,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Don t Tell The Big-Name Gurus"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/557867779\/Me_normal.jpg","screen_name":"waferbaby","listed_count":86,"url":"http:\/\/usesthis.com\/","name":"Daniel Bogan","time_zone":"Pacific Time (US & Canada)","profile_background_color":"2e2e2e","follow_request_sent":false,"statuses_count":18187,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1328,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/557867779\/Me_normal.jpg","description":"Influential about unicorns.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Thu Mar 08 14:02:34 +0000 2007","friends_count":298,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","favourites_count":1209,"id_str":"821753","contributors_enabled":false,"profile_text_color":"333333","id":821753,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","location":"San Francisco, USA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 03:05:54 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"133742007809097728","truncated":false,"id":133742007809097728,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"She's napping on the couch, suddenly half-sits up, yells \"SHARKS!\", and goes back to sleep. Having scared the jesus fucking crap out of me."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","screen_name":"mikeyk","listed_count":1195,"url":"http:\/\/mkrieger.org\/","name":"Mike Krieger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"BADFCD","follow_request_sent":false,"statuses_count":6137,"profile_background_tile":false,"utc_offset":-28800,"followers_count":363563,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","description":"co-founder @ instagram. brasileiro by birth, now in SF.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFF7CC","default_profile_image":false,"verified":false,"created_at":"Fri Nov 17 12:39:47 +0000 2006","friends_count":222,"profile_sidebar_border_color":"F2E195","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","favourites_count":4541,"id_str":"12831","contributors_enabled":false,"profile_text_color":"0C3E53","id":12831,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme12\/bg.gif","location":"37.760571,-122.387567"},"retweet_count":1,"in_reply_to_screen_name":"JoshConstine","created_at":"Tue Nov 08 21:47:50 +0000 2011","retweeted":false,"in_reply_to_status_id":134023760025104385,"in_reply_to_status_id_str":"134023760025104385","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134024351329689600","truncated":false,"id":134024351329689600,"in_reply_to_user_id_str":"19563366","in_reply_to_user_id":19563366,"text":"@JoshConstine dude, you're killing it on TC. Love it"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11924,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10519,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 02:17:51 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133729916263993344","truncated":false,"id":133729916263993344,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Now I kayak all the time and love every minute of it."}],"targets_size":10,"sources":[{"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","screen_name":"mikeyk","listed_count":1195,"url":"http:\/\/mkrieger.org\/","name":"Mike Krieger","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"BADFCD","follow_request_sent":false,"statuses_count":6137,"profile_background_tile":false,"utc_offset":-28800,"followers_count":363561,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","description":"co-founder @ instagram. brasileiro by birth, now in SF.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFF7CC","default_profile_image":false,"verified":false,"created_at":"Fri Nov 17 12:39:47 +0000 2006","friends_count":222,"profile_sidebar_border_color":"F2E195","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","favourites_count":4542,"id_str":"12831","contributors_enabled":false,"profile_text_color":"0C3E53","id":12831,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme12\/bg.gif","location":"37.760571,-122.387567"}],"sources_size":1},{"action":"favorite","max_position":"1320794116771","min_position":"1320713308954","created_at":"Tue Nov 08 23:15:16 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084b4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1539676928\/whos_afraid_post_blackness_normal.jpg","screen_name":"Toure","listed_count":1653,"url":null,"name":"Tour\u00e9","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":61489,"profile_background_tile":false,"utc_offset":-18000,"followers_count":42769,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1539676928\/whos_afraid_post_blackness_normal.jpg","description":"My book Who's Afraid of Post-Blackness? is out now. Fuse (Hiphop Shop). MSNBC. Author: Never Drank the Kool-Aid. For speaking events\u2014rdavis@apbspeakers.com.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ddffcd","default_profile_image":false,"verified":false,"created_at":"Thu Jan 08 15:19:25 +0000 2009","friends_count":2161,"default_profile":false,"profile_sidebar_border_color":"bddcad","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/105323780\/2010-05-26_07-18-58_72.225.165.37.jpg","favourites_count":38,"id_str":"18766459","contributors_enabled":false,"profile_text_color":"333333","id":18766459,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/105323780\/2010-05-26_07-18-58_72.225.165.37.jpg","location":"In your mind"},"retweet_count":16,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:50:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133994835219714048","truncated":false,"id":133994835219714048,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"My new NY Times essay: \"Post-Racial\" is a meaningless term! Stop using it! http:\/\/t.co\/Z3yePfRA"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1364557668\/image_normal.jpg","screen_name":"anildash","listed_count":4044,"url":"http:\/\/anildash.com\/","name":"Anil Dash","default_profile":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":10317,"profile_background_tile":true,"utc_offset":-18000,"followers_count":386272,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1364557668\/image_normal.jpg","description":"Blogger at Dashes.com, Director of @expertlabs, Partner at Activate & lots of other things. I love NYC & funk. Reach me anil@dashes.com or 646 833-8659.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Sat Dec 02 09:15:15 +0000 2006","friends_count":938,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/87289771\/twitter-friends-background.jpg","favourites_count":24961,"id_str":"36823","contributors_enabled":false,"profile_text_color":"333333","id":36823,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/87289771\/twitter-friends-background.jpg","location":"NYC: 40.739069,-73.987082"}],"sources_size":1},{"action":"follow","max_position":"1320793985373","min_position":"1320716928823","created_at":"Tue Nov 08 23:13:05 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/756277454\/citylogo2_normal.gif","screen_name":"creativity_city","listed_count":70,"url":"http:\/\/creativity.city.ac.uk","name":"Creativity@CityUni","time_zone":"London","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1406,"profile_background_tile":false,"utc_offset":0,"followers_count":780,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/756277454\/citylogo2_normal.gif","description":"Interdisciplinary Centre for Creativity in Professional Practice @City University London. Research-Education-Consultancy in Creativity, Innovation & Leadership","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Tue Oct 27 09:50:25 +0000 2009","friends_count":338,"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"85537061","contributors_enabled":false,"profile_text_color":"333333","id":85537061,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"London, UK"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1424920726\/hrcfaceslogo_normal.jpg","screen_name":"SelfEvidentProj","listed_count":1,"url":"http:\/\/selfevidentproject.com","name":"Self Evident Truths","time_zone":null,"profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":null,"statuses_count":56,"profile_background_tile":false,"utc_offset":null,"followers_count":109,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1424920726\/hrcfaceslogo_normal.jpg","description":"","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jul 03 17:18:49 +0000 2011","friends_count":3,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 03:18:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","id_str":"133382914904821760","truncated":false,"id":133382914904821760,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I photographed NINETY SEVEN people today at Dolores Park!! I was sure yesterday couldn't be beat, but holy shit it... http:\/\/t.co\/gWRbHD9g"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/282817948\/Picture_1-1.png","favourites_count":0,"id_str":"328589120","contributors_enabled":false,"profile_text_color":"333333","id":328589120,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/282817948\/Picture_1-1.png","location":""},{"show_all_inline_media":false,"profile_link_color":"b3000f","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1394459080\/c5twitprofile_normal.jpg","screen_name":"columnfive","listed_count":317,"url":"http:\/\/www.columnfivemedia.com","name":"COLUMN FIVE","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ea8a8","follow_request_sent":false,"statuses_count":1133,"profile_background_tile":false,"utc_offset":-28800,"followers_count":8546,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1394459080\/c5twitprofile_normal.jpg","description":"Infographic Design\/Data Visualization. Content + Social Strategy. Founded by @jasonlankow, @joshritchie, and @rtcrooks. http:\/\/www.facebook.com\/columnfivemedia","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"cff6f7","default_profile_image":false,"verified":false,"created_at":"Thu Apr 23 21:23:01 +0000 2009","friends_count":5258,"profile_sidebar_border_color":"f7faf5","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/269440965\/c5twitbackg.jpg","favourites_count":12,"id_str":"34733652","contributors_enabled":false,"profile_text_color":"333333","id":34733652,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/269440965\/c5twitbackg.jpg","location":"Newport Beach CA"}],"targets_size":3,"sources":[{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1389416494\/Karla_normal.png","screen_name":"KMimagine","listed_count":15,"url":"http:\/\/karlamacedo.com\/","name":"Karla Macedo","time_zone":"Mountain Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":1519,"profile_background_tile":true,"utc_offset":-25200,"followers_count":281,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1389416494\/Karla_normal.png","description":"Artist at heart, designer by trade. Lets make things together @iconathon with us, I'm a Fellow @codeforamerica","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Sun Jun 28 16:04:54 +0000 2009","friends_count":509,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:55:49 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id_str":"134041463041433601","truncated":false,"id":134041463041433601,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"For all Typographic Lovers! Alas a kerning game, #KernType, http:\/\/t.co\/H17cEcVi #kerning"},"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/360089508\/roughcloth.png","favourites_count":111,"id_str":"51764038","contributors_enabled":false,"profile_text_color":"333333","id":51764038,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/360089508\/roughcloth.png","location":"SF BAY AREA"}],"sources_size":1},{"action":"favorite","max_position":"1320793982335","min_position":"1320788392647","created_at":"Tue Nov 08 23:13:02 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1622606834\/running_normal.jpg","screen_name":"abstractsunday","listed_count":566,"url":"http:\/\/www.christophniemann.com","name":"Christoph Niemann","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":450,"profile_background_tile":true,"utc_offset":-18000,"followers_count":13115,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1622606834\/running_normal.jpg","description":"Christoph Niemann is an illustrator, designer and author of Abstract Sunday, a column for the New York Times Magazine.\r\nhttp:\/\/niemann.blogs.nytimes.com\/","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Jan 21 13:03:54 +0000 2010","friends_count":60,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322104384\/animationc.png","favourites_count":1,"id_str":"107061895","contributors_enabled":false,"profile_text_color":"333333","id":107061895,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/322104384\/animationc.png","location":"Berlin\/New York"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 13:35:17 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133900400502910978","truncated":false,"id":133900400502910978,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Running and drawing the NYC Marathon. The whole series is up on my blog now: http:\/\/t.co\/Y9rBljd2"},{"contributors":null,"place":{"name":"Quantico","url":"http:\/\/api.twitter.com\/1\/geo\/id\/28392b731872a9ec.json","attributes":{},"full_name":"Quantico, VA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-77.293754,38.520321],[-77.286113,38.520321],[-77.286113,38.525908],[-77.293754,38.525908]]]},"place_type":"city","id":"28392b731872a9ec"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1615669531\/closer_normal.jpg","screen_name":"MikeBeeBurns","listed_count":1,"url":null,"name":"MB","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":4318,"profile_background_tile":false,"utc_offset":-18000,"followers_count":53,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1615669531\/closer_normal.jpg","description":"Probably the coolest person you'll never meet.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Sep 29 03:43:59 +0000 2008","friends_count":129,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/119725784\/cudi-603350.jpeg","favourites_count":12,"id_str":"16507244","contributors_enabled":false,"profile_text_color":"333333","id":16507244,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/119725784\/cudi-603350.jpeg","location":"Virginia, USA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:41:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134022769431154688","truncated":false,"id":134022769431154688,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This new activity thing on twitter is actually pretty useful and neat without cluttering my main feed"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1490843299\/image_normal.jpg","screen_name":"BrandoWarner","listed_count":13,"url":"http:\/\/flavors.me\/bwarner","name":"Brandon Warner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1871,"profile_background_tile":true,"utc_offset":-18000,"followers_count":512,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1490843299\/image_normal.jpg","description":"Knowledge enthusiast, humor afficionado, and gad fly.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Jun 12 14:47:25 +0000 2009","friends_count":290,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/326322923\/Safari_Desktop_Picture.jpg","favourites_count":4,"id_str":"46665981","contributors_enabled":false,"profile_text_color":"333333","id":46665981,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/326322923\/Safari_Desktop_Picture.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:38:48 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134022080709672961","truncated":false,"id":134022080709672961,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Not sure which is more interesting: Twitter's timeline tab or activity tab."}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","screen_name":"noradio","listed_count":929,"url":"http:\/\/t.co\/ll44zgy","name":"Marcel Molina","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","expanded_url":"http:\/\/project.ioni.st","follow_request_sent":false,"statuses_count":5786,"profile_background_tile":true,"utc_offset":-28800,"followers_count":52311,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","description":"Engineer at Twitter. In a past life I was a member of the Rails Core team & 37signals.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Mon Apr 02 07:47:28 +0000 2007","friends_count":766,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","favourites_count":826,"id_str":"3191321","contributors_enabled":true,"profile_text_color":"333333","id":3191321,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"project.ioni.st","lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","location":"San Francisco, CA"}],"sources_size":1},{"action":"follow","max_position":"1320793810158","min_position":"1320715848036","created_at":"Tue Nov 08 23:10:10 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1258715561\/linked_normal.jpg","screen_name":"Colleran","listed_count":21,"url":"http:\/\/www.quora.com\/Mitch-Colleran","name":"Mitch C","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":2746,"profile_background_tile":true,"utc_offset":-28800,"followers_count":708,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1258715561\/linked_normal.jpg","description":"Partnerships & channel acquisition at @Eventbrite. Seattle transplant, SF resident & wannabe world traveler. I like Cities; big Cities. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Wed Mar 24 05:23:11 +0000 2010","friends_count":236,"default_profile":false,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":213,"id_str":"125891671","contributors_enabled":false,"profile_text_color":"333333","id":125891671,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"d72414","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1402448274\/Iterate-light_normal.png","screen_name":"iteratetv","listed_count":34,"url":"http:\/\/www.iterate.tv","name":"Iterate Podcast","time_zone":"Quito","profile_background_color":"000000","default_profile":false,"follow_request_sent":false,"statuses_count":224,"profile_background_tile":true,"utc_offset":-18000,"followers_count":610,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1402448274\/Iterate-light_normal.png","description":"The new mobile app design podcast, hosted by @marcedwards, @sethclifford and @reneritchie.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Fri Jun 17 21:19:49 +0000 2011","friends_count":4,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/273101221\/Background_Texture.gif","favourites_count":0,"id_str":"319282164","contributors_enabled":false,"profile_text_color":"333333","id":319282164,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/273101221\/Background_Texture.gif","location":"Loop until done."},{"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/438077765\/Gina_with_headphones_normal.jpg","screen_name":"ginab","listed_count":494,"url":"http:\/\/www.mightybell.com","name":"Gina Bianchini","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":null,"statuses_count":3275,"profile_background_tile":true,"utc_offset":-28800,"followers_count":8027,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/438077765\/Gina_with_headphones_normal.jpg","description":"I just started something called Mightybell (http:\/\/www.mightybell.com). ","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Dec 15 22:30:27 +0000 2006","friends_count":282,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":49,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:51:02 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133994959454994432","truncated":false,"id":133994959454994432,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"John F. Kennedy \"Conformity is the jailer of freedom and the enemy of growth.\""},"geo":null,"coordinates":null,"favorited":false,"retweet_count":49,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:03:22 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134013164483391488","truncated":false,"id":134013164483391488,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @AlecJRoss: John F. Kennedy \"Conformity is the jailer of freedom and the enemy of growth.\""},"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"72403","contributors_enabled":false,"profile_text_color":"333333","id":72403,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"Palo Alto, CA"},{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1582126038\/png_normal.png","screen_name":"dcurtisfeed","listed_count":17,"url":"http:\/\/dcurt.is","name":"Dustin Curtis","time_zone":null,"profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":22,"profile_background_tile":false,"utc_offset":null,"followers_count":483,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1582126038\/png_normal.png","description":"Dustin Curtis is a superhero. This is the feed for things posted to dcurt.is.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Oct 10 20:21:29 +0000 2011","friends_count":1,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"388479404","contributors_enabled":false,"profile_text_color":"333333","id":388479404,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","screen_name":"vatortv","listed_count":137,"url":"http:\/\/vator.tv\/","name":"Vator","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6132,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2523,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","description":"Vator, one of the largest professional networks dedicated to entrepreneurs, is a place where startups connect and learn from one another. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Jul 16 20:00:26 +0000 2008","friends_count":273,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"15458880","contributors_enabled":false,"profile_text_color":"333333","id":15458880,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/211852939\/todphoto_normal.jpg","screen_name":"todfrancis","listed_count":40,"url":null,"name":"Tod Francis","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":181,"profile_background_tile":false,"utc_offset":-28800,"followers_count":941,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/211852939\/todphoto_normal.jpg","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 09 13:53:47 +0000 2007","friends_count":66,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"10098232","default_profile":true,"contributors_enabled":false,"profile_text_color":"333333","id":10098232,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Menlo Park, CA"},{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","screen_name":"SQQZY","listed_count":64,"url":"http:\/\/www.tampa.startupweekend.org","name":"Susie Steiner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":6296,"profile_background_tile":false,"utc_offset":-18000,"followers_count":714,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","description":"Serial Entrepreneur, Travel Addict, Smartass, Volunteer, and Dog Lover. I live by these words: The best way to predict the future is to invent it.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Aug 04 23:09:39 +0000 2008","friends_count":298,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","favourites_count":15,"id_str":"15729247","contributors_enabled":false,"profile_text_color":"333333","id":15729247,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","location":"http:\/\/www.fidoslaundry.com"},{"show_all_inline_media":false,"profile_link_color":"d1762c","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1602146980\/igi_profile_pic_normal.jpg","screen_name":"ignaziolaci","listed_count":6,"url":"http:\/\/ignaziolaci.com","name":"Ignazio Lacitignola","time_zone":"Pacific Time (US & Canada)","profile_background_color":"1a1a1a","default_profile":false,"follow_request_sent":false,"statuses_count":270,"profile_background_tile":false,"utc_offset":-28800,"followers_count":358,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1602146980\/igi_profile_pic_normal.jpg","description":"Sometimes I design things for the interwebs and sometimes not. http:\/\/ignaziolaci.com\/","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed May 13 22:02:29 +0000 2009","friends_count":1820,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"calebkimbrough","created_at":"Tue Nov 08 19:42:36 +0000 2011","retweeted":false,"in_reply_to_status_id":133992190903980032,"in_reply_to_status_id_str":"133992190903980032","source":"web","id_str":"133992838970089472","truncated":false,"id":133992838970089472,"in_reply_to_user_id_str":"7765462","in_reply_to_user_id":7765462,"text":"@calebkimbrough You are welcome! I'd love to see more wood textures! :)"},"profile_sidebar_border_color":"bababa","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/348599205\/bkg.jpg","favourites_count":2,"id_str":"39849032","contributors_enabled":false,"profile_text_color":"333333","id":39849032,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/348599205\/bkg.jpg","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"038543","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/999943917\/tomillustrated_normal.jpg","screen_name":"tomasaurusrex","listed_count":3,"url":"http:\/\/www.tomknabe.com","name":"Tom Knabe","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ACDED6","follow_request_sent":false,"statuses_count":282,"profile_background_tile":false,"utc_offset":-18000,"followers_count":154,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/999943917\/tomillustrated_normal.jpg","description":"web design, graphic design and builder of interactive elements for seasonal attractions. What what what! ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"verified":false,"created_at":"Thu Nov 06 07:55:22 +0000 2008","friends_count":221,"profile_sidebar_border_color":"EEEEEE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":0,"id_str":"17207637","contributors_enabled":false,"profile_text_color":"333333","id":17207637,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","location":"Philadelphia"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1511890803\/114Transparent_normal.png","screen_name":"CardCase","listed_count":22,"url":"https:\/\/squareup.com\/cardcase","name":"Square Card Case","time_zone":"Hawaii","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6,"profile_background_tile":false,"utc_offset":-36000,"followers_count":913,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1511890803\/114Transparent_normal.png","description":"Leave your wallet at home.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":true,"created_at":"Wed Aug 24 21:57:15 +0000 2011","friends_count":0,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"361502914","contributors_enabled":false,"profile_text_color":"333333","id":361502914,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Everywhere."},{"show_all_inline_media":false,"profile_link_color":"68b8be","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1474879083\/twitter_normal.png","screen_name":"skillshare","listed_count":285,"url":"http:\/\/skillshare.com","name":"Skillshare","time_zone":"Eastern Time (US & Canada)","profile_background_color":"f0f3f5","follow_request_sent":false,"statuses_count":1487,"profile_background_tile":false,"utc_offset":-18000,"followers_count":5842,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1474879083\/twitter_normal.png","description":"Community marketplace for offline classes. Learn anything from anyone. Follow @sksupport for help & general questions.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Tue Jul 27 19:20:57 +0000 2010","friends_count":42,"default_profile":false,"profile_sidebar_border_color":"ebebeb","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":17,"id_str":"171613435","contributors_enabled":false,"profile_text_color":"383738","id":171613435,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"New York, NY"},{"show_all_inline_media":true,"profile_link_color":"b40000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/556789661\/pigman_normal.jpg","screen_name":"Mike_FTW","listed_count":1806,"url":"http:\/\/mikemonteiro.com","name":"Mike Monteiro","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":17834,"profile_background_tile":true,"utc_offset":-28800,"followers_count":24716,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/556789661\/pigman_normal.jpg","description":"This is a personal account and does not reflect the opinions of my boss, who is an asshole.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"fdf6ec","default_profile_image":false,"verified":false,"created_at":"Tue Jul 18 21:14:20 +0000 2006","friends_count":488,"profile_sidebar_border_color":"f2ebde","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/168445743\/bea-arthur-john-currin1.jpeg","favourites_count":2337,"id_str":"2426","contributors_enabled":false,"profile_text_color":"333333","id":2426,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/168445743\/bea-arthur-john-currin1.jpeg","location":"SF"},{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1576383359\/53399307-906A-4947-B31E-618506020619_normal","screen_name":"erickreutz","listed_count":6,"url":"http:\/\/airkrft.com","name":"Eric","time_zone":"Mountain Time (US & Canada)","profile_background_color":"f2f2f2","follow_request_sent":false,"statuses_count":6,"profile_background_tile":true,"utc_offset":-25200,"followers_count":167,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1576383359\/53399307-906A-4947-B31E-618506020619_normal","description":"Programming, Motherfucker","default_profile":false,"following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Mar 13 04:06:19 +0000 2009","friends_count":406,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/270418116\/airkrft_logo.png","favourites_count":24,"id_str":"24124370","contributors_enabled":false,"profile_text_color":"333333","id":24124370,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/270418116\/airkrft_logo.png","location":""}],"targets_size":13,"sources":[{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","screen_name":"nrrrdcore","listed_count":12,"url":"http:\/\/cherry.com","name":"Julie Ann Horvath","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3413,"profile_background_tile":true,"utc_offset":-28800,"followers_count":352,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","description":"Developer & Designer. I like vectors, mat\u00e9, and @hshoff. Making your eyes bleed glitter and double-rainbows at\r\n","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fdf68f","default_profile_image":false,"verified":false,"created_at":"Wed Dec 31 02:39:14 +0000 2008","friends_count":622,"profile_sidebar_border_color":"0a0a09","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","favourites_count":48,"id_str":"18496432","default_profile":false,"contributors_enabled":false,"profile_text_color":"0d0d0c","id":18496432,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793797916","min_position":"1320717149880","created_at":"Tue Nov 08 23:09:57 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1562645599\/Screen_shot_2011-09-22_at_10.24.39_AM_normal.png","screen_name":"koopacetic","listed_count":2,"url":null,"name":"Geoff Koops","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":12,"profile_background_tile":true,"utc_offset":-28800,"followers_count":48,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1562645599\/Screen_shot_2011-09-22_at_10.24.39_AM_normal.png","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Tue Apr 24 06:24:27 +0000 2007","friends_count":99,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"5455782","contributors_enabled":false,"profile_text_color":"333333","id":5455782,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":""},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 01:24:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133716554935316480","truncated":false,"id":133716554935316480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just wrapping my first day at @Square \u2013 the best free restaurant in SOMA."},{"id_str":"134044905914908672","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"17596608","contributors_enabled":false,"profile_text_color":"571a57","protected":false,"screen_name":"KatieBaynes","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","url":null,"name":"KatieBaynes","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1504449958\/image_normal.jpg","default_profile":false,"listed_count":41,"utc_offset":-28800,"description":"PR @Square. frequent flyer. extroverted introvert. creative conformist. party of 1. l'art pour l'art.","following":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":9189,"profile_background_tile":false,"created_at":"Mon Nov 24 17:47:16 +0000 2008","followers_count":1319,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1504449958\/image_normal.jpg","geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"notifications":false,"friends_count":444,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"id":17596608,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":19,"location":""},"favorited":false,"created_at":"Tue Nov 08 23:09:30 +0000 2011","retweet_count":0,"in_reply_to_screen_name":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"id":134044905914908672,"in_reply_to_status_id_str":null,"text":"The only thing that soothes my vertigo is knowing that Charles Darwin, Vincent Van Gogh, and Julius Caeser also suffered from it."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"198499","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/861305460\/chrisashworth.1_normal.jpg","screen_name":"Chris_Ashworth","listed_count":103,"url":"http:\/\/chrisashworth.org","name":"Chris Ashworth","time_zone":"Eastern Time (US & Canada)","profile_background_color":"393939","follow_request_sent":false,"statuses_count":8265,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1106,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/861305460\/chrisashworth.1_normal.jpg","description":"Founder of @Figure53. Making things in Baltimore. Curiouser and curiouser.","default_profile":false,"following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e3e3e3","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 00:21:57 +0000 2008","friends_count":377,"profile_sidebar_border_color":"ffffff","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/95238782\/spiro.png","favourites_count":603,"id_str":"15771794","contributors_enabled":false,"profile_text_color":"663B12","id":15771794,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/95238782\/spiro.png","location":"Baltimore"},"retweet_count":0,"in_reply_to_screen_name":"rsa","created_at":"Tue Nov 08 19:18:10 +0000 2011","retweeted":false,"in_reply_to_status_id":133986316399542272,"in_reply_to_status_id_str":"133986316399542272","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133986687918419968","truncated":false,"id":133986687918419968,"in_reply_to_user_id_str":"6735","in_reply_to_user_id":6735,"text":"@rsa Speaking of marketing, I just drove by a billboard for Square. YOU KEEP BLOWING MY MIND."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"00b7ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/784976676\/xdm_normal.jpg","screen_name":"DanSines","listed_count":3,"url":"http:\/\/www.woofound.com","name":"Daniel Sines","time_zone":null,"profile_background_color":"000000","follow_request_sent":false,"statuses_count":1347,"profile_background_tile":false,"utc_offset":null,"followers_count":82,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/784976676\/xdm_normal.jpg","description":"CEO and Co-Founder at Woofound, Inc.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Mon Mar 29 17:09:26 +0000 2010","friends_count":181,"profile_sidebar_border_color":"00e1ff","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/87418566\/dan_site.jpg","favourites_count":10,"id_str":"127576942","contributors_enabled":false,"profile_text_color":"bdbdbd","id":127576942,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/87418566\/dan_site.jpg","location":"Baltimore"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 03:57:14 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133754927070707713","truncated":false,"id":133754927070707713,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I find it so cool that a company i like and believe in, @square has commercials on every time I turn the tv on!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"4255ae","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/51857279\/merlin_icon_184-1_normal.png","screen_name":"hotdogsladies","listed_count":7403,"url":"http:\/\/roderickontheline.com","name":"Merlin Mann","time_zone":"Pacific Time (US & Canada)","profile_background_color":"eeeeee","follow_request_sent":false,"statuses_count":8727,"profile_background_tile":false,"utc_offset":-28800,"followers_count":188209,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/51857279\/merlin_icon_184-1_normal.png","description":"This was a valued rug.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DFDFDF","default_profile_image":false,"verified":false,"created_at":"Sat Feb 03 01:39:53 +0000 2007","friends_count":388,"profile_sidebar_border_color":"999999","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3550461\/merlin_icon_184.png","favourites_count":8792,"id_str":"749863","contributors_enabled":false,"profile_text_color":"333333","id":749863,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/3550461\/merlin_icon_184.png","location":"San Francisco, Calif."},"retweet_count":61,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:45:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133963264412487681","truncated":false,"id":133963264412487681,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"You know who else could not complete my iTunes store request because an unknown error occurred (4100)?\n\nHitler."}],"targets_size":5,"sources":[{"show_all_inline_media":true,"profile_link_color":"696969","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1245681782\/photo_1_normal.jpg","screen_name":"rsa","listed_count":348,"url":"http:\/\/implodr.tumblr.com","name":"Robert S Andersen","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"181b1d","follow_request_sent":false,"statuses_count":6637,"profile_background_tile":false,"utc_offset":-28800,"followers_count":6654,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1245681782\/photo_1_normal.jpg","description":"Creative lead at @Square, former product designer at Apple. Musician. Merrr.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"bfbfbf","default_profile_image":false,"verified":false,"created_at":"Sat Sep 23 22:19:35 +0000 2006","friends_count":328,"profile_sidebar_border_color":"999999","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/90485885\/bg.png","favourites_count":5754,"id_str":"6735","contributors_enabled":false,"profile_text_color":"000000","id":6735,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/90485885\/bg.png","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793771977","min_position":"1320726351647","created_at":"Tue Nov 08 23:09:31 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","screen_name":"SQQZY","listed_count":64,"url":"http:\/\/www.tampa.startupweekend.org","name":"Susie Steiner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","default_profile":false,"follow_request_sent":false,"statuses_count":6296,"profile_background_tile":false,"utc_offset":-18000,"followers_count":714,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","description":"Serial Entrepreneur, Travel Addict, Smartass, Volunteer, and Dog Lover. I live by these words: The best way to predict the future is to invent it.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Aug 04 23:09:39 +0000 2008","friends_count":298,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","favourites_count":15,"id_str":"15729247","contributors_enabled":false,"profile_text_color":"333333","id":15729247,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","location":"http:\/\/www.fidoslaundry.com"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 20:47:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133646878062546945","truncated":false,"id":133646878062546945,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Let's bring this to Tampa! http:\/\/t.co\/Tyqx1EbG hmm hmm @cherry"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","screen_name":"vatortv","listed_count":137,"url":"http:\/\/vator.tv\/","name":"Vator","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","default_profile":true,"follow_request_sent":false,"statuses_count":6131,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2523,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","description":"Vator, one of the largest professional networks dedicated to entrepreneurs, is a place where startups connect and learn from one another. ","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Jul 16 20:00:26 +0000 2008","friends_count":273,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"15458880","contributors_enabled":false,"profile_text_color":"333333","id":15458880,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:38:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/vator.tv\/\" rel=\"nofollow\"\u003EVator.tv\u003C\/a\u003E","id_str":"134006963959889920","truncated":false,"id":134006963959889920,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"VatorNews - Cherry brings the carwash to you and gets $750K: The company is backed by Max Levchin, David Sacks, and.. http:\/\/t.co\/MAqzijsC"}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","screen_name":"nrrrdcore","listed_count":12,"url":"http:\/\/cherry.com","name":"Julie Ann Horvath","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3413,"profile_background_tile":true,"utc_offset":-28800,"followers_count":352,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","description":"Developer & Designer. I like vectors, mat\u00e9, and @hshoff. Making your eyes bleed glitter and double-rainbows at\r\n","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fdf68f","default_profile_image":false,"verified":false,"created_at":"Wed Dec 31 02:39:14 +0000 2008","friends_count":622,"profile_sidebar_border_color":"0a0a09","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","favourites_count":48,"id_str":"18496432","default_profile":false,"contributors_enabled":false,"profile_text_color":"0d0d0c","id":18496432,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793407866","min_position":"1320717570705","created_at":"Tue Nov 08 23:03:27 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189545828\/120_2004_IMG.thumb_normal.jpg","screen_name":"amac","listed_count":392,"url":"http:\/\/t.co\/vIbTNs6","name":"Alex Macgillivray","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","expanded_url":"http:\/\/www.bricoleur.org\/","follow_request_sent":false,"statuses_count":1901,"profile_background_tile":false,"utc_offset":-28800,"followers_count":14412,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/189545828\/120_2004_IMG.thumb_normal.jpg","description":"Twitter GC, policy and trust & safety (but views are my own, not necessarily Twitter's)","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Sun Nov 04 20:31:25 +0000 2007","friends_count":494,"profile_sidebar_border_color":"BDDCAD","is_translator":true,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/10651977\/IMG_0922-1.JPG","favourites_count":14,"id_str":"9946842","contributors_enabled":false,"profile_text_color":"333333","id":9946842,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"bricoleur.org","lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/10651977\/IMG_0922-1.JPG","location":""},"retweet_count":1,"in_reply_to_screen_name":"parislemon","created_at":"Tue Nov 08 22:40:58 +0000 2011","retweeted":false,"in_reply_to_status_id":134036205229719552,"in_reply_to_status_id_str":"134036205229719552","source":"web","id_str":"134037722565328896","truncated":false,"id":134037722565328896,"in_reply_to_user_id_str":"652193","in_reply_to_user_id":652193,"text":"@parislemon Couldn't happen. @SG would have to be ~insane~ to let @SG get up on stage and resign live. @SG wouldn't let @SG do that to @SG."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/289094908\/fail_whale_verdell_copy_normal.jpg","screen_name":"MissRFTC","listed_count":91,"url":"http:\/\/thisweekslook.com","name":"Verdell Wilson","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":12634,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1565,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/289094908\/fail_whale_verdell_copy_normal.jpg","description":"In flagrante delicto. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Thu Nov 01 00:36:03 +0000 2007","friends_count":316,"default_profile":false,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3127834\/88.jpg","favourites_count":646,"id_str":"9840472","contributors_enabled":false,"profile_text_color":"000000","id":9840472,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3127834\/88.jpg","location":"Los Angeles, CA"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 04:26:45 +0000 2011","retweeted":false,"in_reply_to_status_id":133730675726614528,"in_reply_to_status_id_str":"133730675726614528","source":"web","id_str":"133762356135215104","truncated":false,"id":133762356135215104,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell @alyankovic Trick question! Jupiter and its \"moons\" were created on a Hollywood sound stage by the Illuminati."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619559076\/poppymark_normal.png","screen_name":"shinypb","listed_count":52,"url":"http:\/\/t.co\/82m869z","name":"Mark","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","expanded_url":"http:\/\/markchristian.org\/","follow_request_sent":false,"statuses_count":6169,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2214,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1619559076\/poppymark_normal.png","description":"I'm a Canadian geek living in the Bay Area, trying to spread whimsy and glee wherever I go. I work at Twitter, and I think you're awesome. I heart @anathemalie.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Nov 20 02:08:17 +0000 2006","friends_count":833,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":126,"id_str":"13166","contributors_enabled":false,"profile_text_color":"333333","id":13166,"entities":{"hashtags":[],"user_mentions":[{"screen_name":"anathemalie","name":"Nathalie","indices":[147,159],"id_str":"192005257","id":192005257}],"urls":[]},"display_url":"markchristian.org","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco Bay Area"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:18:36 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133986795800109056","truncated":false,"id":133986795800109056,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"\u201cI only allow myself to eat McDonald's twice in one week at the most. I have to make time for BK, KFC, and Taco Bell.\u201d @chenosaurus wins."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"FF3300","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619055954\/mark-headshot-200_normal.png","screen_name":"mbelinsky","listed_count":203,"url":"http:\/\/4hours.wordpress.com\/","name":"Mark Belinsky","time_zone":"Eastern Time (US & Canada)","profile_background_color":"709397","follow_request_sent":false,"statuses_count":6018,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2417,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1619055954\/mark-headshot-200_normal.png","description":"A nomad exploring tech for civic engagement, digital literacy education, & interactive media around the world. Co-Founder of Digital Democracy (@DigiDem)","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"A0C5C7","default_profile_image":false,"verified":false,"created_at":"Thu Oct 25 06:21:51 +0000 2007","friends_count":1976,"profile_sidebar_border_color":"86A4A6","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/112206138\/DSC_0078.jpg","favourites_count":5150,"id_str":"9676812","contributors_enabled":false,"profile_text_color":"333333","id":9676812,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/112206138\/DSC_0078.jpg","location":"Digital Nomad"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:43:52 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134008254744367104","truncated":false,"id":134008254744367104,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Why are we wasting all our time wasting our time talking about the sex life of a man who'll never be president? @ariannahuff #cdm2011nyc"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"f91a33","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1252729102\/jakefogelnest_normal.jpeg","screen_name":"jakefogelnest","listed_count":393,"url":"http:\/\/www.jakefogelnest.com\/","name":"Jake Fogelnest","time_zone":"Eastern Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":17250,"profile_background_tile":false,"utc_offset":-18000,"followers_count":16171,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1252729102\/jakefogelnest_normal.jpeg","description":"Call me on my home phone number: (646) 484-5323.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":true,"created_at":"Sat Apr 26 15:20:23 +0000 2008","friends_count":865,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/21463461\/jftwitter.001.jpg","favourites_count":3068,"id_str":"14546414","contributors_enabled":false,"profile_text_color":"808080","id":14546414,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/21463461\/jftwitter.001.jpg","location":"New York"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:04:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/eardrop.fm\/app\" rel=\"nofollow\"\u003EEardrop Test\u003C\/a\u003E","id_str":"133998349182447616","truncated":false,"id":133998349182447616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is a thing I'm gonna do today: Don Pardo introducing SNL episodes hosted by various random animals. http:\/\/t.co\/2YBVwltk"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","screen_name":"beep","listed_count":1701,"url":"http:\/\/ethanmarcotte.com\/","name":"Ethan Marcotte","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","follow_request_sent":false,"statuses_count":11744,"profile_background_tile":true,"utc_offset":-18000,"followers_count":19739,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","description":"Designer, developer. Started that whole \u201cresponsive web design\u201d thing.\r\n\r\n\u201cEight? Who taught you math?\u201d","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"7D7D7D","default_profile_image":false,"verified":false,"created_at":"Wed Nov 15 15:59:51 +0000 2006","friends_count":436,"profile_sidebar_border_color":"7D7D7D","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/224737148\/clint.jpg","favourites_count":28912,"id_str":"12534","default_profile":false,"contributors_enabled":false,"profile_text_color":"000000","id":12534,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/224737148\/clint.jpg","location":"Cambridge, MA"},"retweet_count":0,"in_reply_to_screen_name":"kevinmhoffman","created_at":"Tue Nov 08 20:31:28 +0000 2011","retweeted":false,"in_reply_to_status_id":134004413290397697,"in_reply_to_status_id_str":"134004413290397697","source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","id_str":"134005133766963200","truncated":false,"id":134005133766963200,"in_reply_to_user_id_str":"783675","in_reply_to_user_id":783675,"text":"@kevinmhoffman I\u2019LL DRESS MYSELF THANK YOU"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":true,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/218936355\/TEMP-Image_1_3.jpg_normal.jpeg","screen_name":"GNU_RMS","listed_count":384,"url":null,"name":"Richard Stallman","time_zone":"Quito","profile_background_color":"d4d4d4","follow_request_sent":false,"statuses_count":11,"profile_background_tile":false,"utc_offset":-18000,"followers_count":6650,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/218936355\/TEMP-Image_1_3.jpg_normal.jpeg","description":"!Founder of GNU Project and Free Software Foundation, father and current maintainer of the One True Emacs.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Tue May 19 14:36:23 +0000 2009","friends_count":62,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/13562772\/The_GNU_logo.png","favourites_count":0,"id_str":"41126993","contributors_enabled":false,"profile_text_color":"333333","id":41126993,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/13562772\/The_GNU_logo.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Sun May 30 04:43:21 +0000 2010","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"15020628866","truncated":false,"id":15020628866,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just saw a YouTube video, not impressed at all."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"BF1238","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/866556637\/teatime__normal.JPG","screen_name":"pattonoswalt","listed_count":12982,"url":"http:\/\/www.pattonoswalt.com","name":"Patton Oswalt","time_zone":null,"profile_background_color":"1c5741","follow_request_sent":false,"statuses_count":5771,"profile_background_tile":false,"utc_offset":null,"followers_count":522571,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/866556637\/teatime__normal.JPG","description":"Mr. Oswalt is a former wedding deejay from Northern Virginia.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"EFEFEF","default_profile_image":false,"verified":true,"created_at":"Sat May 01 19:00:10 +0000 2010","friends_count":667,"profile_sidebar_border_color":"FFFFFF","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/97647521\/glow-y.jpg","favourites_count":2176,"id_str":"139162440","contributors_enabled":false,"profile_text_color":"333333","id":139162440,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/97647521\/glow-y.jpg","location":"Los Angeles"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 05:57:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133785264614162432","truncated":false,"id":133785264614162432,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Know who should be president in 2012? My balls. I'd put googly eyes on 'em & they'd defend this goddamn country. Thank you."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"226c87","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/290341431\/Palm_Beach_normal.JPG","screen_name":"zecherj","listed_count":4,"url":null,"name":"Joshua Zecher","time_zone":"Quito","profile_background_color":"021f3b","follow_request_sent":false,"statuses_count":85,"profile_background_tile":true,"utc_offset":-18000,"followers_count":66,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/290341431\/Palm_Beach_normal.JPG","description":"Corporate Communications professional focused on public sector and New York Yankees; Opinions are mine unless plagiarized.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"cce4ff","default_profile_image":false,"verified":false,"created_at":"Mon Jun 29 16:48:19 +0000 2009","friends_count":167,"default_profile":false,"profile_sidebar_border_color":"205c87","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/21930064\/Yankee_Stadium.jpg","favourites_count":2,"id_str":"52111377","contributors_enabled":false,"profile_text_color":"333333","id":52111377,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/21930064\/Yankee_Stadium.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":"SG","created_at":"Tue Nov 08 22:56:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134041526920675329","truncated":false,"id":134041526920675329,"in_reply_to_user_id_str":"822571","in_reply_to_user_id":822571,"text":"@SG you worked at Twitter?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1614094546\/dixon-riding-lawn-mower-21248633_normal.jpeg","screen_name":"CitizenDino","listed_count":39,"url":null,"name":"CitizenDino","time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":26149,"profile_background_tile":true,"utc_offset":-21600,"followers_count":988,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1614094546\/dixon-riding-lawn-mower-21248633_normal.jpeg","description":"","default_profile":false,"following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Apr 08 22:03:42 +0000 2008","friends_count":1510,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/336639573\/0134550350_frt_wmd_001.jpeg","favourites_count":6,"id_str":"14336640","contributors_enabled":false,"profile_text_color":"333333","id":14336640,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/336639573\/0134550350_frt_wmd_001.jpeg","location":"Wausau, Wi"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 07:08:40 +0000 2011","retweeted":false,"in_reply_to_status_id":133801379453083648,"in_reply_to_status_id_str":"133801379453083648","source":"web","id_str":"133803102355734529","truncated":false,"id":133803102355734529,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell I shook his hand once, and I cried. It was like meeting the Pope."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/65237906\/Picture_5_normal.png","screen_name":"strutteratlanta","listed_count":22,"url":null,"name":"James DiStefano","time_zone":"Eastern Time (US & Canada)","profile_background_color":"EDECE9","default_profile":false,"follow_request_sent":false,"statuses_count":1478,"profile_background_tile":false,"utc_offset":-18000,"followers_count":320,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/65237906\/Picture_5_normal.png","description":"I'm young and I have my health. What do I want with a job?","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Thu Mar 08 04:27:02 +0000 2007","friends_count":305,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":5,"id_str":"820867","contributors_enabled":false,"profile_text_color":"634047","id":820867,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Atlanta, GA"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 13:55:21 +0000 2011","retweeted":false,"in_reply_to_status_id":133801379453083648,"in_reply_to_status_id_str":"133801379453083648","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133905449312468993","truncated":false,"id":133905449312468993,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell Smokin' Joe punched me in the stomach at a book signing, in front of his son Marvis. Fave boxer of all time."}],"targets_size":11,"sources":[{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"162563","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1473630467\/trammell_square_by_dan_busta_normal.jpg","screen_name":"trammell","listed_count":888,"url":null,"name":"Trammell","time_zone":"Pacific Time (US & Canada)","profile_background_color":"465f59","expanded_url":null,"follow_request_sent":false,"statuses_count":8153,"profile_background_tile":false,"utc_offset":-28800,"followers_count":204842,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1473630467\/trammell_square_by_dan_busta_normal.jpg","description":"Young ragamuffin from the streets. A French duke lying about in hammocks eating soft cheese. Chimney sweep. Design Researcher at Twitter. Not Zach Galifianakis.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"aec7c3","default_profile_image":false,"verified":false,"created_at":"Fri Jan 19 17:21:42 +0000 2007","friends_count":776,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":7154,"id_str":"666073","contributors_enabled":false,"profile_text_color":"000000","id":666073,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Don't call it San Fran."}],"sources_size":1},{"action":"follow","max_position":"1320793290277","min_position":"1320785880161","created_at":"Tue Nov 08 23:01:30 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"5b6950","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1344643278\/jolie_normal.jpg","screen_name":"jolieodell","listed_count":3502,"url":"http:\/\/jolieodell.com","name":"Jolie O'Dell","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":15544,"profile_background_tile":true,"utc_offset":-28800,"followers_count":31223,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1344643278\/jolie_normal.jpg","description":"Tech journalist. Computer science student. Honey badger. Lover of books, nice people, rock & roll, life in general.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Fri Jan 23 22:29:07 +0000 2009","friends_count":431,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"AndrewKam","created_at":"Tue Nov 08 22:43:02 +0000 2011","retweeted":false,"in_reply_to_status_id":134035707160301568,"in_reply_to_status_id_str":"134035707160301568","source":"web","id_str":"134038245536313344","truncated":false,"id":134038245536313344,"in_reply_to_user_id_str":"17937641","in_reply_to_user_id":17937641,"text":"@AndrewKam Yeah, typos in heds are shameful, but they happen sometimes. =("},"profile_sidebar_border_color":"829D5E","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/239215856\/birdbird.jpg","favourites_count":33,"id_str":"19417850","contributors_enabled":false,"profile_text_color":"3E4415","id":19417850,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/239215856\/birdbird.jpg","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1157144902\/logo_hand_normal.png","screen_name":"littlebigdetail","listed_count":281,"url":"http:\/\/littlebigdetails.com","name":"Little Big Details","time_zone":null,"profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":1086,"profile_background_tile":false,"utc_offset":null,"followers_count":4263,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1157144902\/logo_hand_normal.png","description":"Your daily dose of UI inspiration. Curated by @floriz of @gidsynews.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Mon Nov 01 09:31:48 +0000 2010","friends_count":694,"profile_sidebar_border_color":"ffffff","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"210758676","contributors_enabled":false,"profile_text_color":"cccccc","id":210758676,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"In the details"}],"targets_size":2,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/520737576\/photo-3_normal.jpg","screen_name":"kevintwohy","listed_count":24,"url":"http:\/\/kevintwohy.com","name":"Kevin Twohy","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":3364,"profile_background_tile":false,"utc_offset":-28800,"followers_count":536,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/520737576\/photo-3_normal.jpg","description":"interested in good design, non-lame ideas. I'll probably deny that I said most of this.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Feb 11 04:17:15 +0000 2008","friends_count":714,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":1452,"id_str":"13334062","contributors_enabled":false,"profile_text_color":"333333","id":13334062,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320793272847","min_position":"1320722376942","created_at":"Tue Nov 08 23:01:12 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0f6985","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465412656\/userpic_normal.png","screen_name":"obra","listed_count":155,"url":"http:\/\/blog.fsck.com","name":"jesse","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":5673,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1319,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1465412656\/userpic_normal.png","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f5f5f5","default_profile_image":false,"verified":false,"created_at":"Wed Dec 27 16:52:30 +0000 2006","friends_count":501,"profile_sidebar_border_color":"f5f5f5","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":105,"id_str":"289403","contributors_enabled":false,"profile_text_color":"666666","id":289403,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 02:47:15 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133737316731723776","truncated":false,"id":133737316731723776,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"If twitter blocked as a spammer anybody you don't follow who replied to a tweet containing the word iPad, the world would be a better place."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/54587542\/full_icon_normal.png","screen_name":"davidascher","listed_count":126,"url":"http:\/\/ascher.ca\/blog","name":"David Ascher","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":3701,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1506,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/54587542\/full_icon_normal.png","description":"I work at Mozilla on making it easy for people to share safely. And random other things.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Tue Mar 27 03:06:06 +0000 2007","friends_count":546,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":68,"id_str":"2396891","contributors_enabled":false,"profile_text_color":"3E4415","id":2396891,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"Vancouver, BC"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:55:24 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133769567305613312","truncated":false,"id":133769567305613312,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I gave a lecture at UBC today and found myself saying \"you should ask your parents about the AOL\/Compuserve days\". Hmm."},{"contributors":null,"place":{"name":"SoMa","url":"http:\/\/api.twitter.com\/1\/geo\/id\/2b6ff8c22edd9576.json","attributes":{},"full_name":"SoMa, San Francisco","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.42284884,37.76893497],[-122.3964,37.76893497],[-122.3964,37.78752897],[-122.42284884,37.78752897]]]},"place_type":"neighborhood","id":"2b6ff8c22edd9576"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1509254355\/032.KarinaMarieDiaz_-_crop_normal.jpg","screen_name":"pandemona","listed_count":699,"url":"http:\/\/t.co\/xPqUlqq","name":"Sara Haider","time_zone":"Central Time (US & Canada)","profile_background_color":"022330","expanded_url":"http:\/\/pandemona.com","follow_request_sent":false,"statuses_count":6089,"profile_background_tile":false,"utc_offset":-21600,"followers_count":27046,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1509254355\/032.KarinaMarieDiaz_-_crop_normal.jpg","description":"engineer @ twitter. i love music, fashion, and food, but most of all, i love to dance.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Tue Dec 23 17:16:26 +0000 2008","friends_count":618,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":534,"id_str":"18337283","contributors_enabled":false,"profile_text_color":"333333","id":18337283,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"pandemona.com","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 23:00:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134042712944021504","truncated":false,"id":134042712944021504,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"OH: \"damn i saw your virgin tweet and got excited. wow that sounds weird.\" \/cc @dannyhertz"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"3E95F5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/67169723\/colin-square_normal.jpg","screen_name":"cbrumelle","listed_count":87,"url":"http:\/\/t.co\/H2cpT3K","name":"Colin Brumelle","time_zone":"Pacific Time (US & Canada)","profile_background_color":"FFFFFF","expanded_url":"http:\/\/mixedcontent.com","follow_request_sent":false,"statuses_count":1791,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2121,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/67169723\/colin-square_normal.jpg","description":"software engineer at Twitter and musician geek.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Oct 20 06:00:08 +0000 2006","friends_count":437,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4652\/tilewd3.jpg","favourites_count":81,"id_str":"9651","contributors_enabled":true,"profile_text_color":"2B2B2B","id":9651,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"mixedcontent.com","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4652\/tilewd3.jpg","location":"Vancouver, BC"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 05:03:19 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133771557972623361","truncated":false,"id":133771557972623361,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Perspective: The cutoff for the top 1% *globally* is $34,000\/year. Top 50% is $1,225\/year."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/57084631\/n20903342_33746840_708_normal.jpg","screen_name":"jmhodges","listed_count":145,"url":"http:\/\/t.co\/oAuQh6m","name":"Jeff Hodges","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","expanded_url":"http:\/\/somethingsimilar.com","default_profile":false,"follow_request_sent":false,"statuses_count":6446,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4943,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/57084631\/n20903342_33746840_708_normal.jpg","description":"I like playing with all sorts of nifty things.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Fri Oct 05 17:07:25 +0000 2007","friends_count":450,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":221,"id_str":"9267272","contributors_enabled":false,"profile_text_color":"3E4415","id":9267272,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"somethingsimilar.com","lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:38:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134037145643003904","truncated":false,"id":134037145643003904,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Gonna miss the hell out of @SG."}],"targets_size":5,"sources":[{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/48591172\/avibryant_normal.png","screen_name":"avibryant","listed_count":327,"url":"http:\/\/t.co\/cuS2TvD","name":"Avi Bryant","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","expanded_url":"http:\/\/avibryant.com\/","follow_request_sent":false,"statuses_count":5620,"profile_background_tile":false,"utc_offset":-28800,"followers_count":5568,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/48591172\/avibryant_normal.png","description":"Turning numbers into answers at Twitter Inc.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Mon Nov 20 05:40:10 +0000 2006","friends_count":443,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:05:25 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134028776811151360","truncated":false,"id":134028776811151360,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is really nicely done: http:\/\/t.co\/Qr8rsp5z @joinaroundtable"},"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":157,"id_str":"13192","contributors_enabled":true,"profile_text_color":"3E4415","id":13192,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"avibryant.com","default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320792686869","min_position":"1320765778156","created_at":"Tue Nov 08 22:51:26 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","screen_name":"mrgan","listed_count":1167,"url":"http:\/\/mrgan.com","name":"Neven Mrgan","time_zone":"Eastern Time (US & Canada)","profile_background_color":"68def9","follow_request_sent":false,"statuses_count":23026,"profile_background_tile":true,"utc_offset":-18000,"followers_count":11819,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","description":"One of the good ones.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Fri Dec 01 23:44:52 +0000 2006","friends_count":180,"default_profile":false,"profile_sidebar_border_color":"ff0000","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/19582992\/glyphs1.png","favourites_count":12441,"id_str":"35293","contributors_enabled":false,"profile_text_color":"000000","id":35293,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19582992\/glyphs1.png","location":"Portland, OR"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:35:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"134036243846672384","truncated":false,"id":134036243846672384,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Photoshop's 3D rendering adds a 1% black background on all my renderings. I AM THE 99% #occupyparkavenue"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/933969108\/IMG_9126_cropped_shrunk_normal.jpg","screen_name":"elliterate","listed_count":6,"url":"http:\/\/www.elliterate.com","name":"Ian","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":785,"profile_background_tile":false,"utc_offset":-28800,"followers_count":137,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/933969108\/IMG_9126_cropped_shrunk_normal.jpg","description":"Purveyor of Pivotal practices.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue May 22 00:04:33 +0000 2007","friends_count":105,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":34,"id_str":"6212742","contributors_enabled":false,"profile_text_color":"333333","id":6212742,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"puls","created_at":"Tue Nov 08 06:45:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133792554658430976,"in_reply_to_status_id_str":"133792554658430976","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133797157294710785","truncated":false,"id":133797157294710785,"in_reply_to_user_id_str":"14254927","in_reply_to_user_id":14254927,"text":"@puls When are you guys going for your interviews? Maybe we can get a good rate on a charter bus."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370051264\/IMG_0302_normal.jpg","screen_name":"puls","listed_count":45,"url":"http:\/\/puls.im","name":"Jim Puls","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6851,"profile_background_tile":false,"utc_offset":-28800,"followers_count":589,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1370051264\/IMG_0302_normal.jpg","description":"Eternally curious.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Mar 30 02:16:45 +0000 2008","friends_count":368,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":614,"id_str":"14254927","contributors_enabled":false,"profile_text_color":"333333","id":14254927,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320792062822","min_position":"1320742880298","created_at":"Tue Nov 08 22:41:02 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/103916961\/Picture_10_normal.png","screen_name":"robdelaney","listed_count":7673,"url":"http:\/\/www.robdelaney.com","name":"rob delaney","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9f9ae6","default_profile":false,"follow_request_sent":false,"statuses_count":5153,"profile_background_tile":false,"utc_offset":-28800,"followers_count":242505,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/103916961\/Picture_10_normal.png","description":"Comedian,Writer, 6'3 217lbs","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":true,"created_at":"Fri Feb 27 00:19:20 +0000 2009","friends_count":802,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5270293\/fart_god.jpg","favourites_count":27151,"id_str":"22084427","contributors_enabled":false,"profile_text_color":"333333","id":22084427,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5270293\/fart_god.jpg","location":"Los Angeles, CA"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:57:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133966284604977152","truncated":false,"id":133966284604977152,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Did Biden tell you that? RT @BarackObama: Is it true that all owls are Jewish?"},{"contributors":null,"place":{"name":"Cow Hollow","url":"http:\/\/api.twitter.com\/1\/geo\/id\/306c7e290a3155bd.json","attributes":{},"full_name":"Cow Hollow, San Francisco","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.44717584,37.79479404],[-122.42367288,37.79479404],[-122.42367288,37.80142398],[-122.44717584,37.80142398]]]},"place_type":"neighborhood","id":"306c7e290a3155bd"},"geo":{"type":"Point","coordinates":[37.79739280,-122.43459667]},"coordinates":{"type":"Point","coordinates":[-122.43459667,37.79739280]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","screen_name":"mgrooves","listed_count":200,"url":null,"name":"Matt Graves","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","expanded_url":null,"follow_request_sent":false,"statuses_count":4172,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4832,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","description":"twitter comms. lover of loud music and louder laughs.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 26 17:06:58 +0000 2008","friends_count":798,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":302,"id_str":"14013722","contributors_enabled":true,"profile_text_color":"333333","id":14013722,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:18:06 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134016869857378306","truncated":false,"id":134016869857378306,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I'm beginning to think Lululemon may be some sort of cult. A beautiful, stretchy cult."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1378019991\/Qklh9wIJ_normal","screen_name":"ibuildnosystem","listed_count":23,"url":"http:\/\/www.tylercoulson.com","name":"Geo. Tyler Coulson","time_zone":null,"profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1420,"profile_background_tile":false,"utc_offset":null,"followers_count":1334,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1378019991\/Qklh9wIJ_normal","description":"I was born. Then I was an attorney. Now I am hiking across the country with my dog. Her name is Mabel.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Jan 21 01:57:31 +0000 2011","friends_count":41,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"240926950","contributors_enabled":false,"profile_text_color":"333333","id":240926950,"default_profile":true,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:47:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.samsungmobile.com\" rel=\"nofollow\"\u003ESamsung Mobile\u003C\/a\u003E","id_str":"133994127900688384","truncated":false,"id":133994127900688384,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"some moments change your life. sometimes you change your own life on a moment. thanks, everyone."}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"2381a3","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","screen_name":"mischa","default_profile":false,"listed_count":206,"url":"http:\/\/t.co\/n2qvwsh","name":"Mischa Nachtigal","time_zone":"Mountain Time (US & Canada)","profile_background_color":"d0d1c1","expanded_url":"http:\/\/about.me\/mischa","follow_request_sent":false,"statuses_count":5303,"profile_background_tile":true,"utc_offset":-25200,"followers_count":10592,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","description":"World wide wanderer who enjoys stories and works at Twitter. Tweets are my own, and often whimsical.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"b1d98b","default_profile_image":false,"verified":false,"created_at":"Wed Jun 10 14:25:30 +0000 2009","friends_count":752,"profile_sidebar_border_color":"595244","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","favourites_count":1107,"id_str":"46123040","contributors_enabled":false,"profile_text_color":"141910","id":46123040,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/mischa","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","location":"SF"}],"sources_size":1},{"action":"retweet","max_position":"1320792005854","min_position":"1320791364417","created_at":"Tue Nov 08 22:40:05 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","screen_name":"climagic","listed_count":259,"url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","time_zone":"London","profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"utc_offset":0,"followers_count":4491,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 20 12:49:35 +0000 2009","friends_count":1600,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","id":91333167,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","location":"BASH"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","id_str":"134002246450024448","truncated":false,"id":134002246450024448,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"man ascii # Quick access to the ASCII table."}],"target_objects_size":1,"targets":[{"id_str":"134034810137088001","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"retweeted_status":{"id_str":"134002246450024448","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","protected":false,"screen_name":"climagic","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","listed_count":259,"utc_offset":0,"description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"time_zone":"London","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"created_at":"Fri Nov 20 12:49:35 +0000 2009","followers_count":4476,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"notifications":false,"friends_count":1600,"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"id":91333167,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"location":"BASH"},"favorited":false,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweet_count":38,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":134002246450024448,"in_reply_to_status_id_str":null,"text":"man ascii # Quick access to the ASCII table."},"user":{"id_str":"20941662","contributors_enabled":false,"profile_text_color":"333333","protected":false,"screen_name":"JEG2","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","url":"http:\/\/blog.grayproductions.net","name":"James Edward Gray II","show_all_inline_media":true,"profile_link_color":"990000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","listed_count":283,"utc_offset":-21600,"description":"Rubyist, Husband, Father, Atheist, Oklahoman, and all around weird guy.","following":true,"time_zone":"Central Time (US & Canada)","profile_background_color":"EBEBEB","follow_request_sent":false,"statuses_count":7512,"profile_background_tile":false,"created_at":"Sun Feb 15 22:05:54 +0000 2009","followers_count":2479,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":false,"notifications":false,"friends_count":160,"default_profile":false,"profile_sidebar_border_color":"DFDFDF","is_translator":false,"id":20941662,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":0,"location":"Edmond, OK"},"favorited":false,"created_at":"Tue Nov 08 22:29:23 +0000 2011","retweet_count":38,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":134034810137088001,"in_reply_to_status_id_str":null,"text":"RT @climagic: man ascii # Quick access to the ASCII table."},{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","screen_name":"climagic","listed_count":259,"url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","time_zone":"London","profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"utc_offset":0,"followers_count":4491,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 20 12:49:35 +0000 2009","friends_count":1600,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","id":91333167,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","location":"BASH"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","id_str":"134002246450024448","truncated":false,"id":134002246450024448,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"man ascii # Quick access to the ASCII table."},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","default_profile":false,"follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:40:04 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134037496634937344","truncated":false,"id":134037496634937344,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @climagic: man ascii # Quick access to the ASCII table."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"},{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","screen_name":"JEG2","listed_count":283,"url":"http:\/\/blog.grayproductions.net","name":"James Edward Gray II","time_zone":"Central Time (US & Canada)","profile_background_color":"EBEBEB","follow_request_sent":false,"statuses_count":7512,"profile_background_tile":false,"utc_offset":-21600,"followers_count":2479,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","description":"Rubyist, Husband, Father, Atheist, Oklahoman, and all around weird guy.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":false,"created_at":"Sun Feb 15 22:05:54 +0000 2009","friends_count":160,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"rbates","created_at":"Tue Nov 08 22:47:11 +0000 2011","retweeted":false,"in_reply_to_status_id":134039111794294785,"in_reply_to_status_id_str":"134039111794294785","source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","id_str":"134039286986186753","truncated":false,"id":134039286986186753,"in_reply_to_user_id_str":"14246143","in_reply_to_user_id":14246143,"text":"@rbates That's the plan. I hope so too."},"profile_sidebar_border_color":"DFDFDF","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":0,"id_str":"20941662","contributors_enabled":false,"profile_text_color":"333333","id":20941662,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","location":"Edmond, OK"}],"sources_size":2},{"action":"retweet","max_position":"1320791694473","min_position":"1320785049918","created_at":"Tue Nov 08 22:34:54 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","screen_name":"cstoller","default_profile":false,"listed_count":317,"url":"http:\/\/about.chadcasting.com","name":"Chad Stoller","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":5724,"profile_background_tile":true,"utc_offset":-18000,"followers_count":2724,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","description":"superfragilistic, most of the time. building brands and making you want them for over 19 years!","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Tue Jan 23 17:49:54 +0000 2007","friends_count":754,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","favourites_count":104,"id_str":"687613","contributors_enabled":false,"profile_text_color":"000000","id":687613,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","location":"\u00dcT: 40.742427,-73.980488"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:44:08 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134008324034269184","truncated":true,"id":134008324034269184,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","screen_name":"cstoller","listed_count":317,"url":"http:\/\/about.chadcasting.com","name":"Chad Stoller","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":5725,"profile_background_tile":true,"utc_offset":-18000,"followers_count":2724,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","description":"superfragilistic, most of the time. building brands and making you want them for over 19 years!","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Tue Jan 23 17:49:54 +0000 2007","friends_count":754,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","favourites_count":104,"id_str":"687613","contributors_enabled":false,"profile_text_color":"000000","id":687613,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","location":"\u00dcT: 40.742427,-73.980488"},{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","default_profile":false,"follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"}],"sources_size":2},{"action":"favorite","max_position":"1320791692383","min_position":"1320707832570","created_at":"Tue Nov 08 22:34:52 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"id_str":"133771741360177153","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"937961","contributors_enabled":false,"profile_text_color":"000000","protected":false,"screen_name":"msg","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2047992\/495710958_52b3df7716.jpg","url":"http:\/\/www.michaelgalpert.com","name":"Michael S Galpert","show_all_inline_media":true,"profile_link_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1616790752\/99e595b0-d6c2-4014-8d4c-e342cba342b3_normal.png","listed_count":217,"utc_offset":-18000,"description":"I like to wear many hats one of them is so awesome its called Aviary.com Want to get in touch: TXT MSG TO 50500 and you will get my info","following":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","follow_request_sent":false,"statuses_count":8140,"profile_background_tile":false,"created_at":"Sun Mar 11 17:37:46 +0000 2007","followers_count":4263,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1616790752\/99e595b0-d6c2-4014-8d4c-e342cba342b3_normal.png","geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"notifications":false,"friends_count":661,"profile_sidebar_border_color":"000000","is_translator":false,"default_profile":false,"id":937961,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/2047992\/495710958_52b3df7716.jpg","favourites_count":1456,"location":"10009"},"favorited":false,"created_at":"Tue Nov 08 05:04:03 +0000 2011","retweet_count":4,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":133771741360177153,"in_reply_to_status_id_str":null,"text":"THAT SHIT CRAY"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1585028623\/foursquare-api_normal.png","screen_name":"foursquareapi","listed_count":475,"url":"http:\/\/developer.foursquare.com","name":"foursquare API","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":94,"profile_background_tile":true,"utc_offset":-18000,"followers_count":5252,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1585028623\/foursquare-api_normal.png","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Jun 08 16:06:06 +0000 2009","friends_count":7,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"45598477","default_profile":false,"contributors_enabled":false,"profile_text_color":"333333","id":45598477,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":""},"retweet_count":5,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:15:00 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134031191069294592","truncated":false,"id":134031191069294592,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Oh hi @benjaminnetter, thanks for dropping by and picking up your new belt #4sqhackathon http:\/\/t.co\/QPJIbV7C http:\/\/t.co\/vKd6NGtW"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/458225472\/sergio-profile-picture_normal.jpg","screen_name":"sergiosalvatore","listed_count":2,"url":null,"name":"Sergio Salvatore","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":42,"profile_background_tile":false,"utc_offset":-18000,"followers_count":57,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/458225472\/sergio-profile-picture_normal.jpg","description":"pianist, composer, technologist. builder of things.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Dec 18 00:29:55 +0000 2008","friends_count":41,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"18204314","contributors_enabled":false,"profile_text_color":"333333","id":18204314,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"New York, NY"},"retweet_count":0,"in_reply_to_screen_name":"aplinnyc","created_at":"Mon Nov 07 22:15:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133667025196298240,"in_reply_to_status_id_str":"133667025196298240","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133668873277935616","truncated":false,"id":133668873277935616,"in_reply_to_user_id_str":"209283817","in_reply_to_user_id":209283817,"text":"@aplinnyc Adam, are you ok? Are you ok, Adam?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"2473E4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53151507\/Devon_Biondi_normal.jpg","screen_name":"Devon","listed_count":122,"url":"http:\/\/devonbiondi.com","name":"Devon","time_zone":"Pacific Time (US & Canada)","profile_background_color":"69D2E7","follow_request_sent":false,"statuses_count":2781,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2890,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53151507\/Devon_Biondi_normal.jpg","description":"Strategizing about APIs and what to cook for dinner- not necessarily in that order","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"F38630","default_profile_image":false,"verified":false,"created_at":"Tue Apr 03 19:52:53 +0000 2007","friends_count":565,"default_profile":false,"profile_sidebar_border_color":"FA6900","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/57130124\/x917fb21276c44f55b770c0118bc5e07.png","favourites_count":63,"id_str":"3355001","contributors_enabled":false,"profile_text_color":"283534","id":3355001,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/57130124\/x917fb21276c44f55b770c0118bc5e07.png","location":"San Francisco"},"retweet_count":25,"in_reply_to_screen_name":null,"created_at":"Sun Nov 06 19:22:48 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133263079948554240","truncated":false,"id":133263079948554240,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Foursquare freebies for the 99% http:\/\/t.co\/Hsxa2wYV #reinventlocal"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":true,"possibly_sensitive":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1218952152\/Puzzle_Globe_normal.jpg","screen_name":"Wikipedia","listed_count":1742,"url":"http:\/\/wikipedia.org\/","name":"Wikipedia ","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":611,"profile_background_tile":false,"utc_offset":-28800,"followers_count":33858,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1218952152\/Puzzle_Globe_normal.jpg","description":"Wikipedia's official Twitter account!","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Oct 30 20:29:14 +0000 2009","friends_count":274,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/102504840\/newFIXED_Twitter_Background.jpg","favourites_count":4,"id_str":"86390214","contributors_enabled":false,"profile_text_color":"333333","id":86390214,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/102504840\/newFIXED_Twitter_Background.jpg","location":"San Francisco"},"retweet_count":"100+","in_reply_to_screen_name":"SteveMartinToGo","created_at":"Mon Nov 07 20:15:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/identi.ca\" rel=\"nofollow\"\u003Eidentica\u003C\/a\u003E","id_str":"133638800617381888","truncated":false,"id":133638800617381888,"in_reply_to_user_id_str":"14824849","in_reply_to_user_id":14824849,"text":"@SteveMartinToGo Please stop editing your Wikipedia page to say \"best hair in the history of the world.\" Need NPOV http:\/\/t.co\/QcgOgOxn"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1583800348\/derek_normal.jpg","screen_name":"ShitDerekSSays","listed_count":0,"url":null,"name":"Derek S.","time_zone":null,"profile_background_color":"C0DEED","default_profile":true,"follow_request_sent":false,"statuses_count":16,"profile_background_tile":false,"utc_offset":null,"followers_count":12,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1583800348\/derek_normal.jpg","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Sep 23 20:54:31 +0000 2011","friends_count":7,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"378802750","contributors_enabled":false,"profile_text_color":"333333","id":378802750,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 00:19:17 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133700078752903168","truncated":false,"id":133700078752903168,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"\"I was in middle school when this song came out. You were probably in high school.\""},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1231198625\/andrew-mager-square_normal.jpg","screen_name":"mager","listed_count":567,"url":"http:\/\/mager.co","name":"Andrew Mager","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":10748,"profile_background_tile":true,"utc_offset":-18000,"followers_count":8238,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1231198625\/andrew-mager-square_normal.jpg","description":"Hacker Advocate at @Spotify. Exploding the NYC tech scene.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jan 14 01:59:13 +0000 2007","friends_count":1486,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/348282519\/blueprint2.jpg","favourites_count":985,"id_str":"632023","contributors_enabled":false,"profile_text_color":"333333","id":632023,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/348282519\/blueprint2.jpg","location":"Brooklyn, NY"},"retweet_count":2,"in_reply_to_screen_name":"naveen","created_at":"Tue Nov 08 21:08:42 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134014504278310912","truncated":false,"id":134014504278310912,"in_reply_to_user_id_str":"5215","in_reply_to_user_id":5215,"text":"@naveen @dens I bought an international data plan solely so I can check in."},{"contributors":null,"place":{"name":"Manhattan","url":"http:\/\/api.twitter.com\/1\/geo\/id\/086752cb03de1d5d.json","attributes":{},"full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.047249,40.679548],[-73.907104,40.679548],[-73.907104,40.882214],[-74.047249,40.882214]]]},"place_type":"city","id":"086752cb03de1d5d"},"geo":{"type":"Point","coordinates":[40.72826695,-73.99116039]},"coordinates":{"type":"Point","coordinates":[-73.99116039,40.72826695]},"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/31208162\/n201149_31531916_6855_normal.jpg","screen_name":"JorgeO","listed_count":213,"url":null,"name":"Jorge Ortiz","time_zone":"Eastern Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":12462,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2479,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/31208162\/n201149_31531916_6855_normal.jpg","description":"I work at foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Sun May 13 03:40:02 +0000 2007","friends_count":659,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":881,"id_str":"6001592","contributors_enabled":false,"profile_text_color":"3E4415","id":6001592,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"NYC"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:58:33 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003Efoursquare\u003C\/a\u003E","id_str":"134027048237793281","truncated":false,"id":134027048237793281,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Our GLOBAL HACKATHON WINNER @benjaminnetter claims his title belt from @naveen (@ foursquare HQ w\/ @tedp) [pic]: http:\/\/t.co\/KnIDX3Rg"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1382115388\/ts_normal.png","screen_name":"finitor","listed_count":62,"url":"http:\/\/flickr.com\/finitor","name":"finitor","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":4485,"profile_background_tile":false,"utc_offset":-18000,"followers_count":933,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1382115388\/ts_normal.png","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Sun Feb 15 22:06:09 +0000 2009","friends_count":329,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/22634626\/crawfish-chix.jpg","favourites_count":4,"id_str":"20941681","contributors_enabled":false,"profile_text_color":"333333","id":20941681,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/22634626\/crawfish-chix.jpg","location":"Alphabet City"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 23:13:02 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133683406201569280","truncated":false,"id":133683406201569280,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Absent iPads and PlayStations, people spent time chatting, playing w children, & having sex with more than one person. http:\/\/t.co\/Cc75w7yL"}],"targets_size":10,"sources":[{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","default_profile":false,"follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"}],"sources_size":1},{"action":"favorite","max_position":"1320791692245","min_position":"1320791692245","created_at":"Tue Nov 08 22:34:52 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0fbfff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1116124449\/Screen_shot_2010-09-02_at_7.59.28_PM_normal.png","screen_name":"LeMEMEblog","default_profile":false,"listed_count":8,"url":"http:\/\/www.lememe.com","name":"LeMEME","time_zone":null,"profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3673,"profile_background_tile":false,"utc_offset":null,"followers_count":745,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1116124449\/Screen_shot_2010-09-02_at_7.59.28_PM_normal.png","description":"The best blog on the interwebs.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Thu Sep 02 23:55:32 +0000 2010","friends_count":20,"profile_sidebar_border_color":"000000","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/143644349\/Screen_shot_2010-09-02_at_7.57.16_PM.png","favourites_count":9,"id_str":"186256292","contributors_enabled":false,"profile_text_color":"333333","id":186256292,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/143644349\/Screen_shot_2010-09-02_at_7.57.16_PM.png","location":""},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:50:46 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134025090663849984","truncated":false,"id":134025090663849984,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"http:\/\/t.co\/fdB37YHT"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"fa8c8c","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1307156204\/kristensphoto_normal.jpeg","screen_name":"jgv","listed_count":27,"url":"http:\/\/jonathanvingiano.com","name":"Jonathan Vingiano","time_zone":"Eastern Time (US & Canada)","profile_background_color":"fcfcfc","follow_request_sent":false,"statuses_count":6482,"profile_background_tile":true,"utc_offset":-18000,"followers_count":836,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1307156204\/kristensphoto_normal.jpeg","description":"art and code and stuff. partner @okfocus.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fcfcfc","default_profile_image":false,"verified":false,"created_at":"Mon Jul 23 08:25:37 +0000 2007","friends_count":386,"profile_sidebar_border_color":"e6e3e5","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4324148\/Gradient-Screensaver.jpg","favourites_count":1225,"id_str":"7654892","contributors_enabled":false,"profile_text_color":"ababab","id":7654892,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4324148\/Gradient-Screensaver.jpg","location":"Brooklyn, NY"}],"sources_size":1},{"action":"favorite","max_position":"1320791413556","min_position":"1320773072763","created_at":"Tue Nov 08 22:30:13 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1134578626\/Screen_shot_2010-09-30_at_11.19.30_AM_normal.png","screen_name":"cscotta","listed_count":87,"url":"http:\/\/blog.paradoxica.net","name":"C. Scott Andreas","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":10002,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1135,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1134578626\/Screen_shot_2010-09-30_at_11.19.30_AM_normal.png","description":"Petits r\u00e9cits at Boundary. Using it wrong.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Tue Mar 06 14:30:18 +0000 2007","friends_count":158,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":38,"id_str":"815031","contributors_enabled":false,"profile_text_color":"333333","id":815031,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Folsom St, San Francisco"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:09:37 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133969438415388672","truncated":false,"id":133969438415388672,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"After one last `git push`, @boundary is an SBT-free workplace: http:\/\/t.co\/hJsnWWmO"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/764683525\/dog-driving-vintage-vehicle_normal.jpg","screen_name":"dogsdoingthings","listed_count":270,"url":null,"name":"Dogs doing things","time_zone":"Eastern Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":4525,"profile_background_tile":false,"utc_offset":-18000,"followers_count":6491,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/764683525\/dog-driving-vintage-vehicle_normal.jpg","description":"Dogs imitating life, courting death.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Sat Mar 20 21:06:19 +0000 2010","friends_count":1346,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/84739092\/dog-driving-vintage-vehicle.jpg","favourites_count":7198,"id_str":"124863907","contributors_enabled":false,"profile_text_color":"666666","id":124863907,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/84739092\/dog-driving-vintage-vehicle.jpg","location":""},"retweet_count":9,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:24:12 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","id_str":"133958007599005696","truncated":false,"id":133958007599005696,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Dogs bellowing, THIS IS WHAT DEMOCRACY LOOKS LIKE, and then, after twisting a reality effects knob, THIS IS WHAT PORNOGRAPHY LOOKS LIKE."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"66d6ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","screen_name":"moonpolysoft","listed_count":94,"url":"http:\/\/github.com\/cliffmoon","name":"Cliff Moon","time_zone":"Pacific Time (US & Canada)","profile_background_color":"707070","follow_request_sent":false,"statuses_count":16200,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1255,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","description":"Not an real person.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Mon Mar 24 01:05:35 +0000 2008","friends_count":251,"profile_sidebar_border_color":"bddcad","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","favourites_count":350,"id_str":"14204623","default_profile":false,"contributors_enabled":false,"profile_text_color":"666666","id":14204623,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","location":"8========D~~~"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:27:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134034397992194048","truncated":false,"id":134034397992194048,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Some leaked design plans from blueseed's new offshore incubator program! http:\/\/t.co\/Hu2SPDVD"}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/959504887\/horseshit_normal.jpg","screen_name":"coda","listed_count":200,"url":"http:\/\/codahale.com","name":"Coda Hale","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":7248,"profile_background_tile":false,"utc_offset":-28800,"followers_count":3327,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/959504887\/horseshit_normal.jpg","description":"Oh, that little guy? I wouldn't worry about that little guy.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Jan 15 18:45:23 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"b6n","created_at":"Tue Nov 08 22:22:48 +0000 2011","retweeted":false,"in_reply_to_status_id":134029649859723264,"in_reply_to_status_id_str":"134029649859723264","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","id_str":"134033151478603776","truncated":false,"id":134033151478603776,"in_reply_to_user_id_str":"16031975","in_reply_to_user_id":16031975,"text":"@b6n We will be old by then."},"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":331,"id_str":"637533","contributors_enabled":false,"profile_text_color":"333333","id":637533,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320791252278","min_position":"1320791230391","created_at":"Tue Nov 08 22:27:32 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1563825550\/IMAG0077_normal.jpg","screen_name":"bthesorceror","listed_count":1,"url":"http:\/\/bthesorceror.blogspot.com","name":"Brandon Farmer","time_zone":"Central Time (US & Canada)","profile_background_color":"9AE4E8","default_profile":false,"follow_request_sent":false,"statuses_count":102,"profile_background_tile":false,"utc_offset":-21600,"followers_count":16,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1563825550\/IMAG0077_normal.jpg","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Fri Apr 24 05:07:50 +0000 2009","friends_count":78,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":0,"id_str":"34854624","contributors_enabled":false,"profile_text_color":"333333","id":34854624,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","location":"Missouri"},"retweet_count":0,"in_reply_to_screen_name":"rbates","created_at":"Tue Nov 08 16:41:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133947321095430146","truncated":false,"id":133947321095430146,"in_reply_to_user_id_str":"14246143","in_reply_to_user_id":14246143,"text":"@rbates Railscasts pro is AWESOME!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/60714896\/happy_hour_normal.jpg","screen_name":"cavneb","listed_count":23,"url":"http:\/\/ericberry.me","name":"Eric Berry","time_zone":"Mountain Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1427,"profile_background_tile":false,"utc_offset":-25200,"followers_count":249,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60714896\/happy_hour_normal.jpg","description":"%w\u007B ruby rails sencha mobile_dev game_dev javascript \u007D ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Mon May 19 01:34:10 +0000 2008","friends_count":111,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":100,"id_str":"14826965","contributors_enabled":false,"profile_text_color":"333333","id":14826965,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","location":"Lehi, UT"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 14:42:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133917360145973248","truncated":false,"id":133917360145973248,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Thank you @rbates for charging for your pro membership. I no longer need to wait till Monday's!"}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"}],"sources_size":1},{"action":"favorite","max_position":"1320791057922","min_position":"1320728821470","created_at":"Tue Nov 08 22:24:17 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/714052677\/pcc_normal.JPG","screen_name":"uppityfag","listed_count":65,"url":"http:\/\/uppityfag.wordpress.com\/","name":"Patrick Connors","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":12112,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1217,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/714052677\/pcc_normal.JPG","description":"One of 18,000 married same-sex couples in CA keeping track of the heteros as they transgress with impunity. Fun!","default_profile":false,"following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Tue Jan 19 15:03:22 +0000 2010","friends_count":1100,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":771,"id_str":"106433398","contributors_enabled":false,"profile_text_color":"333333","id":106433398,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"San Francisco, CA"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:57:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id_str":"133936195783766018","truncated":false,"id":133936195783766018,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Ed Lee totally shot that hawk in the head with a nail gun #EdLeeNot4Me #sfmayor http:\/\/t.co\/mT1Pxwcd via @EdLeeHatesU #SFMayor"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1563216547\/image_normal.jpg","screen_name":"jack","listed_count":15283,"url":null,"name":"Jack Dorsey","time_zone":"Pacific Time (US & Canada)","profile_background_color":"EBEBEB","expanded_url":null,"follow_request_sent":false,"statuses_count":10267,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1768548,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1563216547\/image_normal.jpg","description":"Executive Chairman of Twitter, CEO of Square, a founder of both.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":true,"created_at":"Tue Mar 21 20:50:14 +0000 2006","friends_count":1087,"default_profile":false,"profile_sidebar_border_color":"DFDFDF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":937,"id_str":"12","contributors_enabled":false,"profile_text_color":"333333","id":12,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","location":"San Francisco"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:42:01 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133932292128260097","truncated":false,"id":133932292128260097,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Entrepreneur helping entrepreneurs: @RichardBranson joins us as an investor in @Square (and we're thrilled)! http:\/\/t.co\/sCQwdJmE"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"FF00AA","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1607336297\/174991_10150505573964392_506364391_11411255_835978940_o_normal.jpg","screen_name":"kidhack","listed_count":27,"url":"http:\/\/kidhack.com\/","name":"kidhack","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5130,"profile_background_tile":true,"utc_offset":-28800,"followers_count":437,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1607336297\/174991_10150505573964392_506364391_11411255_835978940_o_normal.jpg","description":"i like sushi.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"323232","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Feb 08 18:52:36 +0000 2008","friends_count":116,"profile_sidebar_border_color":"555555","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/88087051\/kidhackpat.png","favourites_count":9,"id_str":"13259012","contributors_enabled":false,"profile_text_color":"555555","id":13259012,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/88087051\/kidhackpat.png","location":"SOMA | San Francisco | CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:56:55 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133769945963167744","truncated":false,"id":133769945963167744,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just finished Girl With The Dragon Tattoo. Awesome book. Can't wait to see my Dad's work & hear @trent_reznor's music in the new movie!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff2b29","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/60361032\/mightyfoot2_64x64_normal.PNG","screen_name":"georgeb3dr","listed_count":596,"url":"http:\/\/www.3drealms.com","name":"George Broussard","time_zone":"Central Time (US & Canada)","profile_background_color":"709397","follow_request_sent":false,"statuses_count":1926,"profile_background_tile":true,"utc_offset":-21600,"followers_count":9804,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60361032\/mightyfoot2_64x64_normal.PNG","description":"Video game developer. georgeb@3drealms.com","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"f2e6b5","default_profile_image":false,"verified":false,"created_at":"Sat Mar 01 06:24:27 +0000 2008","friends_count":99,"default_profile":false,"profile_sidebar_border_color":"9d9985","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3077366\/mushroom_twitter.jpg","favourites_count":0,"id_str":"14063949","contributors_enabled":false,"profile_text_color":"333333","id":14063949,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3077366\/mushroom_twitter.jpg","location":"Dallas, TX"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 16:14:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133940508929163264","truncated":false,"id":133940508929163264,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is how game developers generally work :) http:\/\/t.co\/OI3km2Eh"}],"targets_size":4,"sources":[{"show_all_inline_media":true,"profile_link_color":"CC3366","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1264239779\/vx1_normal.png","screen_name":"nuzz","listed_count":54,"url":"http:\/\/nuzz.org","name":"nuzz","time_zone":"Pacific Time (US & Canada)","profile_background_color":"DBE9ED","follow_request_sent":false,"statuses_count":5285,"profile_background_tile":false,"utc_offset":-28800,"followers_count":559,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1264239779\/vx1_normal.png","description":"Photographer, traveller, technology dilettante.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"E6F6F9","default_profile_image":false,"verified":false,"created_at":"Sun Feb 18 20:13:57 +0000 2007","friends_count":342,"default_profile":false,"profile_sidebar_border_color":"DBE9ED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme17\/bg.gif","favourites_count":1099,"id_str":"779112","contributors_enabled":false,"profile_text_color":"333333","id":779112,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme17\/bg.gif","location":"San Francisco"}],"sources_size":1},{"action":"follow","max_position":"1320790894230","min_position":"1320727870100","created_at":"Tue Nov 08 22:21:34 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"038543","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1546065255\/cormactext_normal.jpg","screen_name":"TweetinCormac","listed_count":12,"url":"http:\/\/yelpingwithcormac.tumblr.com\/","name":"Cormac M","time_zone":null,"profile_background_color":"ACDED6","follow_request_sent":null,"statuses_count":19,"profile_background_tile":false,"utc_offset":null,"followers_count":375,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1546065255\/cormactext_normal.jpg","description":"","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"verified":false,"created_at":"Fri Sep 16 23:25:03 +0000 2011","friends_count":0,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":3,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 00:35:06 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"133704060929978368","truncated":false,"id":133704060929978368,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Jamba Juice. On memory. http:\/\/t.co\/FYshEObl"},"profile_sidebar_border_color":"EEEEEE","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":0,"id_str":"374790207","contributors_enabled":false,"profile_text_color":"333333","id":374790207,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","location":"Lost in the chaparral"},{"show_all_inline_media":true,"profile_link_color":"B12556","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1584451051\/image_normal.jpg","screen_name":"donna","listed_count":0,"url":"http:\/\/don.na","name":"donna","time_zone":"Pacific Time (US & Canada)","profile_background_color":"908162","follow_request_sent":false,"statuses_count":0,"profile_background_tile":true,"utc_offset":-28800,"followers_count":35,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1584451051\/image_normal.jpg","description":"A personal assistant for everyone.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"394A52","default_profile_image":false,"verified":false,"created_at":"Wed Oct 05 00:12:16 +0000 2011","friends_count":5,"profile_sidebar_border_color":"2F1100","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/345156386\/xf38240f6c1d757ea56935903e56f883.png","favourites_count":0,"id_str":"385159039","contributors_enabled":false,"profile_text_color":"D7DDBB","id":385159039,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/345156386\/xf38240f6c1d757ea56935903e56f883.png","location":"wherever you are"},{"show_all_inline_media":true,"profile_link_color":"d99400","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1536787115\/b34e_normal.png","screen_name":"roach","default_profile":false,"listed_count":21,"url":"http:\/\/t.co\/8YHZ2Vm","name":"Jason Roche","time_zone":"Pacific Time (US & Canada)","profile_background_color":"161616","expanded_url":"http:\/\/roach.github.com\/","follow_request_sent":false,"statuses_count":3348,"profile_background_tile":true,"utc_offset":-28800,"followers_count":505,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1536787115\/b34e_normal.png","description":"Geek, developer, off-road enthusiast, amateur radio operator, time tourist.\r\n\r\nI work @ Twitter go\/roach\r\n[c4843baf2c29cadea892385bdf065388]","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"363636","default_profile_image":false,"verified":false,"created_at":"Tue Dec 21 02:07:47 +0000 2010","friends_count":458,"profile_sidebar_border_color":"000000","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/309199144\/bg.png","favourites_count":265,"id_str":"228925627","contributors_enabled":false,"profile_text_color":"adadad","id":228925627,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"roach.github.com","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/309199144\/bg.png","location":"San Francisco, CA"},{"time_zone":null,"profile_background_color":"C0DEED","protected":false,"follow_request_sent":false,"statuses_count":8,"profile_background_tile":false,"followers_count":53,"url":"http:\/\/numberlies.com","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1622842533\/button_icon_preview_v004a_normal.jpg","name":"MOONBOT studios","geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"utc_offset":null,"friends_count":126,"description":"Have You Ever Wondered Where The Alphabet Came From?\r\nFrom The People Who Brought You Morris Lessmore\r\nComes an App That Explains It All\r\nNUMBERLIES\r\n","following":false,"profile_sidebar_border_color":"C0DEED","screen_name":"NUMBERLIES","is_translator":false,"created_at":"Fri Nov 04 03:03:31 +0000 2011","default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"404563093","contributors_enabled":false,"notifications":false,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1622842533\/button_icon_preview_v004a_normal.jpg","id":404563093,"listed_count":0,"lang":"en","location":"Numerica"},{"show_all_inline_media":true,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/67612383\/XWS147_normal.jpg","screen_name":"burtherman","listed_count":515,"url":"http:\/\/burtherman.com","name":"Burt Herman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":3763,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4290,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/67612383\/XWS147_normal.jpg","description":"Entrepreneurial journalist finding meaning in the noise. CEO of Storify, founder of Hacks\/Hackers for journalists and technologists","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Sun Aug 26 14:23:45 +0000 2007","friends_count":1379,"default_profile":false,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/45026786\/Twitter_BG1.001real.jpg","favourites_count":54,"id_str":"8441632","contributors_enabled":false,"profile_text_color":"666666","id":8441632,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/45026786\/Twitter_BG1.001real.jpg","location":"San Francisco, CA"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1284501159\/profile_normal.jpg","screen_name":"dorkusprime","listed_count":6,"url":"http:\/\/www.jevonwild.com","name":"Jevon W","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":451,"profile_background_tile":false,"utc_offset":-28800,"followers_count":156,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1284501159\/profile_normal.jpg","description":"I like making stuff and making stuff better. Currently making games for ngmoco, beer for myself, and technology for the world.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Tue Mar 25 06:58:06 +0000 2008","friends_count":126,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":2,"id_str":"14213767","contributors_enabled":false,"profile_text_color":"333333","id":14213767,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco, CA"}],"targets_size":6,"sources":[{"show_all_inline_media":true,"profile_link_color":"2381a3","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","screen_name":"mischa","default_profile":false,"listed_count":206,"url":"http:\/\/t.co\/n2qvwsh","name":"Mischa Nachtigal","time_zone":"Mountain Time (US & Canada)","profile_background_color":"d0d1c1","expanded_url":"http:\/\/about.me\/mischa","follow_request_sent":false,"statuses_count":5303,"profile_background_tile":true,"utc_offset":-25200,"followers_count":10592,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","description":"World wide wanderer who enjoys stories and works at Twitter. Tweets are my own, and often whimsical.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"b1d98b","default_profile_image":false,"verified":false,"created_at":"Wed Jun 10 14:25:30 +0000 2009","friends_count":752,"profile_sidebar_border_color":"595244","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","favourites_count":1107,"id_str":"46123040","contributors_enabled":false,"profile_text_color":"141910","id":46123040,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/mischa","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","location":"SF"}],"sources_size":1}]
@@ -0,0 +1 @@
1
+ {"categories":[],"users":[{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Designer, thinker, speaker, Creative Director at Twitter. Previously at Google, Stopdesign, and Wired.","profile_sidebar_fill_color":"bddaf7","followers_count":87831,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/stopdesign.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/149914329\/bg-stop.png","lang":"en","created_at":"Sun Mar 11 19:50:16 +0000 2007","profile_background_color":"6092d2","location":"San Francisco, CA","listed_count":2454,"profile_background_tile":true,"friends_count":351,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/552708586\/doug-profile_normal.jpg","statuses_count":2533,"profile_text_color":"333333","name":"Doug Bowman","show_all_inline_media":true,"following":true,"favourites_count":302,"screen_name":"stop","id":949521,"id_str":"949521","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"3387cc"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Blogger at Subtraction.com, former design director at NYTimes.com.","profile_sidebar_fill_color":"e0ff92","followers_count":88340,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"87bc44","url":"http:\/\/www.subtraction.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Dec 18 22:14:59 +0000 2006","profile_background_color":"FFFFFF","location":"New York, NY","listed_count":2292,"profile_background_tile":false,"friends_count":532,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/16896652\/Adam_West_normal.jpg","statuses_count":1683,"profile_text_color":"000000","name":"Khoi Vinh","show_all_inline_media":false,"following":false,"favourites_count":22,"screen_name":"khoi","id":78453,"id_str":"78453","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Following our team around the modern world. See who's saying what at dwell.com\/twitter","profile_sidebar_fill_color":"e9f2fd","followers_count":114200,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dee7f1","url":"http:\/\/dwell.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/133995193\/Twitter-Background-Final.jpg","lang":"en","created_at":"Thu Oct 09 03:09:57 +0000 2008","profile_background_color":"e7e8e9","location":"","listed_count":3356,"profile_background_tile":false,"friends_count":586,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/935810714\/dwell_Twitter_Icon_normal.gif","statuses_count":2355,"profile_text_color":"000000","name":"dwell","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"dwell","id":16661296,"id_str":"16661296","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"4177b9"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"President, Rhode Island School of Design, RISD, College, Museum, USA, 1877, Laws of Simplicity, MIT, Design, Art, Business, Technology, Life","profile_sidebar_fill_color":"DDEEF6","followers_count":94360,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/our.risd.edu","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Sun Jul 13 13:51:22 +0000 2008","profile_background_color":"C0DEED","location":"Providence, RI","listed_count":3016,"profile_background_tile":false,"friends_count":2054,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1088325884\/maedaicon2lg_normal.png","statuses_count":1345,"profile_text_color":"333333","name":"johnmaeda","show_all_inline_media":false,"following":false,"favourites_count":339,"screen_name":"johnmaeda","id":15414807,"id_str":"15414807","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Victor Samra (aka @vsamra3) at the easel. Please send us questions or comments by placing @MuseumModernArt in your tweet.","profile_sidebar_fill_color":"d9d9d9","followers_count":335206,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.moma.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/54805196\/MoMA_Twitter_Background.gif","lang":"en","created_at":"Mon Jun 09 13:20:21 +0000 2008","profile_background_color":"ededed","location":"New York, New York","listed_count":12030,"profile_background_tile":false,"friends_count":1508,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/534697216\/MoMA_Twitter_Icon4_normal.gif","statuses_count":1556,"profile_text_color":"000000","name":"Museum of Modern Art","show_all_inline_media":false,"following":false,"favourites_count":123,"screen_name":"MuseumModernArt","id":15057943,"id_str":"15057943","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"ff3300"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The premier source for news about art and culture around the world. \r\n\r\n\r\nfacebook.com\/artinfo\r\nfoursquare.com\/artinfo","profile_sidebar_fill_color":"ffffff","followers_count":114153,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"b93d2d","url":"http:\/\/www.artinfo.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue Mar 10 12:31:05 +0000 2009","profile_background_color":"000000","location":"New York, NY","listed_count":2615,"profile_background_tile":false,"friends_count":843,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/91810842\/AI_250x250_twit_normal.JPG","statuses_count":4636,"profile_text_color":"080202","name":"ARTINFO","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"artinfodotcom","id":23585763,"id_str":"23585763","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"087196"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Artist. Writer. Director. Producer. Toy Company Founder","profile_sidebar_fill_color":"DDFFCC","followers_count":397304,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/twitter.com\/todd_mcfarlane","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/60142269\/Haunt10.jpg","lang":"en","created_at":"Sat Jul 25 09:48:36 +0000 2009","profile_background_color":"9AE4E8","location":"Phoenix, AZ","listed_count":2572,"profile_background_tile":true,"friends_count":8,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/454370804\/TODD_BLUEBACK_normal.jpg","statuses_count":355,"profile_text_color":"333333","name":"Todd McFarlane","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"Todd_McFarlane","id":60025762,"id_str":"60025762","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"In my opinion, an individual without any love of the arts cannot be considered completely civilized. --J. Paul Getty","profile_sidebar_fill_color":"e3e3e3","followers_count":123596,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"101919","url":"http:\/\/www.getty.edu","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3141663\/getty_travertine.jpg","lang":"en","created_at":"Thu Oct 02 22:46:59 +0000 2008","profile_background_color":"4fde57","location":"Los Angeles, California","listed_count":4012,"profile_background_tile":false,"friends_count":21611,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/118308448\/squareGettyWordmark_normal.jpg","statuses_count":2433,"profile_text_color":"170303","name":"J. Paul Getty Museum","show_all_inline_media":false,"following":false,"favourites_count":14953,"screen_name":"GettyMuseum","id":16568227,"id_str":"16568227","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"1a3bef"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"A gaggle of Brooklyn Museum staffers tweet here. Look for via @user at the end of tweets to get to know us. Questions and comments via @replies are welcome. ","profile_sidebar_fill_color":"B3E8FA","followers_count":125147,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/www.brooklynmuseum.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/109602159\/Background-twitter7.jpg","lang":"en","created_at":"Fri Jul 20 17:34:41 +0000 2007","profile_background_color":"FFFFFF","location":"Brooklyn, New York","listed_count":3137,"profile_background_tile":false,"friends_count":761,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/31784232\/twitter_normal.png","statuses_count":3463,"profile_text_color":"000000","name":"brooklynmuseum","show_all_inline_media":false,"following":false,"favourites_count":91,"screen_name":"brooklynmuseum","id":7614292,"id_str":"7614292","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0099BC"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Design Milk is a website dedicated to modern design.","profile_sidebar_fill_color":"eeeeee","followers_count":168694,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/design-milk.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/21285181\/stripe.gif","lang":"en","created_at":"Tue Jul 15 21:13:46 +0000 2008","profile_background_color":"ffffff","location":"Everywhere","listed_count":5191,"profile_background_tile":true,"friends_count":433,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/663607808\/DMCartonLogo_alone-160SQ_normal.jpg","statuses_count":7651,"profile_text_color":"333333","name":"Design Milk","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"designmilk","id":15446126,"id_str":"15446126","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"000000"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"SFMOMA's Twitter is done by Ian Padgham in Communications but many of our ideas come from the brilliant and passionate staff at SFMOMA.","profile_sidebar_fill_color":"feda4d","followers_count":105074,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"feda4d","url":"http:\/\/www.sfmoma.org","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/160855517\/twitter_bckgrnd3.jpg","lang":"en","created_at":"Tue Sep 30 22:36:01 +0000 2008","profile_background_color":"feda4d","location":"151 Third Street","listed_count":3640,"profile_background_tile":false,"friends_count":105628,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1148270393\/sfmoma_giants_normal.jpg","statuses_count":1395,"profile_text_color":"000000","name":"SFMOMA","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"SFMOMA","id":16536215,"id_str":"16536215","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"000000"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"using Twitter for me, not for you.","profile_sidebar_fill_color":"291808","followers_count":72326,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","url":"http:\/\/www.mezzoblue.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/115093920\/twitter-background.jpg","lang":"en","created_at":"Thu Feb 15 19:27:28 +0000 2007","profile_background_color":"000000","location":"Vancouver","listed_count":1465,"profile_background_tile":false,"friends_count":297,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/553504851\/avatar-large2_normal.jpg","statuses_count":6677,"profile_text_color":"000000","name":"Dave Shea","show_all_inline_media":false,"following":false,"favourites_count":58,"screen_name":"mezzoblue","id":774280,"id_str":"774280","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"000000"},{"geo_enabled":false,"time_zone":"Central Time (US & Canada)","description":"The World's Premier Art Magazine since 1913","profile_sidebar_fill_color":"ffffff","followers_count":118078,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"f5f0f2","url":"http:\/\/www.ArtinAmericaMagazine.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/19337056\/AIA_Summer09.jpg","lang":"en","created_at":"Thu Feb 26 21:04:36 +0000 2009","profile_background_color":"4a7182","location":"NY, NY","listed_count":1890,"profile_background_tile":true,"friends_count":133,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/86820236\/TwitterLogo_normal.jpg","statuses_count":1445,"profile_text_color":"000000","name":"Art in America","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"AiANews","id":22061737,"id_str":"22061737","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"ba2525"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"H&FJ. We design fonts.\r\nhttp:\/\/www.typography.com.","profile_sidebar_fill_color":"DDEEF6","followers_count":86820,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.typography.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/81577577\/hfj_background2.png","lang":"en","created_at":"Wed Mar 21 16:31:32 +0000 2007","profile_background_color":"C0DEED","location":"New York City","listed_count":1794,"profile_background_tile":true,"friends_count":193,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1142541284\/hfj-2010_normal.png","statuses_count":1992,"profile_text_color":"333333","name":"Hoefler+Frere-Jones","show_all_inline_media":false,"following":false,"favourites_count":44,"screen_name":"H_FJ","id":1765921,"id_str":"1765921","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"London","description":"Family of 4 art galleries in the UK: Tate Britain, Tate Modern, Tate Liverpool & Tate St Ives. Tweeting from Tate Media: Hannah, Selina, Kate, Becs & Jesse.","profile_sidebar_fill_color":"FFFFFF","followers_count":180483,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"807D7D","url":"http:\/\/www.tate.org.uk","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/162936452\/muy_twitter2.jpg","lang":"en","created_at":"Thu Apr 19 13:12:32 +0000 2007","profile_background_color":"00B9B8","location":"London, Liverpool and St Ives","listed_count":5881,"profile_background_tile":true,"friends_count":703,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1147439411\/muy_twitter_normal.jpg","statuses_count":1089,"profile_text_color":"504343","name":"Tate","show_all_inline_media":true,"following":false,"favourites_count":7,"screen_name":"Tate","id":5225991,"id_str":"5225991","contributors_enabled":false,"utc_offset":0,"profile_link_color":"00B9B8"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The world's largest museum complex & research organization composed of 19 museums, 9 research centers, and the National Zoo.","profile_sidebar_fill_color":"186ac2","followers_count":196582,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.si.edu","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52765661\/tweetbg.jpg","lang":"en","created_at":"Sat Mar 22 22:26:03 +0000 2008","profile_background_color":"ffffff","location":"Washington, DC","listed_count":5890,"profile_background_tile":false,"friends_count":110,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/524772602\/logo_normal.gif","statuses_count":3637,"profile_text_color":"01031a","name":"Smithsonian","show_all_inline_media":false,"following":false,"favourites_count":11,"screen_name":"smithsonian","id":14199378,"id_str":"14199378","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0c0578"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"We work for a better world around you w\/ inventive designs, technologies & related services to improve the human experience where you work, heal, learn, & live.","profile_sidebar_fill_color":"ffffff","followers_count":81139,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dfdfdf","url":"http:\/\/www.hermanmiller.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/116161127\/hm_bg.jpg","lang":"en","created_at":"Fri Dec 12 19:50:03 +0000 2008","profile_background_color":"e6e6e6","location":"Zeeland, MI","listed_count":1201,"profile_background_tile":false,"friends_count":430,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/508970979\/HM_logo_twitter_normal.jpg","statuses_count":1150,"profile_text_color":"262626","name":"Herman Miller, Inc.","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"hermanmiller","id":18084100,"id_str":"18084100","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"fa1815"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"swiss designer gone NYC","profile_sidebar_fill_color":"ffffff","followers_count":117770,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/www.swiss-miss.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/58238631\/swissmiss_twitter_background.png","lang":"en","created_at":"Mon Mar 19 13:40:08 +0000 2007","profile_background_color":"FFFFFF","location":"Brooklyn, NY","listed_count":3859,"profile_background_tile":false,"friends_count":1039,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/29450552\/tina_normal.jpg","statuses_count":5387,"profile_text_color":"2f3737","name":"Tina Roth Eisenberg","show_all_inline_media":false,"following":false,"favourites_count":3923,"screen_name":"swissmiss","id":1504011,"id_str":"1504011","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"030000"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The New Yorker is a weekly magazine with a mix of reporting of politics and culture, humor and cartoons, fiction and poetry, and reviews and criticism. ","profile_sidebar_fill_color":"DDFFCC","followers_count":376072,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.newyorker.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/55790865\/Twitter_BG_Final_final.jpg","lang":"en","created_at":"Tue May 06 19:36:33 +0000 2008","profile_background_color":"9AE4E8","location":"New York, NY","listed_count":12844,"profile_background_tile":true,"friends_count":177,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/553327850\/Eustacewbutterfly_normal.png","statuses_count":1845,"profile_text_color":"333333","name":"The New Yorker","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"NewYorker","id":14677919,"id_str":"14677919","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Where design meets inspiration","profile_sidebar_fill_color":"f5f5f5","followers_count":125729,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"e5e5e5","url":"http:\/\/designrelated.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/40239586\/dr-twitter-1280x1024.gif","lang":"en","created_at":"Thu May 08 01:45:24 +0000 2008","profile_background_color":"e5e5e5","location":"New York, NY","listed_count":2854,"profile_background_tile":false,"friends_count":623,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/653172121\/d_128_normal.png","statuses_count":5676,"profile_text_color":"323232","name":"design:related","show_all_inline_media":false,"following":false,"favourites_count":29,"screen_name":"designrelated","id":14694680,"id_str":"14694680","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"009ACD"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Tweeting for Los Angeles County Museum of Art: Sr Editor SCOTT TENNENT ST\/Amer Art Admin DEVI NOOR DN\/Web Mangr ERIN SORENSEN ES\/Comms Mangr C. CHOI CC","profile_sidebar_fill_color":"bababa","followers_count":95394,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"d61717","url":"http:\/\/www.lacma.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/24670994\/Twitter_BG11.jpg","lang":"en","created_at":"Tue Jun 03 11:55:29 +0000 2008","profile_background_color":"b0c8eb","location":"Los Angeles","listed_count":2269,"profile_background_tile":false,"friends_count":18184,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/325538327\/Twitter_Avatar8_normal.jpg","statuses_count":1326,"profile_text_color":"4d4d4d","name":"LACMA","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"LACMA","id":14991920,"id_str":"14991920","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"d61717"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The PBS NewsHour's Art Beat covers art and culture, and is brought to you by correspondent Jeffrey Brown and NewsHour reporters.","profile_sidebar_fill_color":"c5c8c9","followers_count":77693,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"5b686e","url":"http:\/\/www.pbs.org\/newshour\/art\/blog\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/77247206\/IMG_5754.gif","lang":"en","created_at":"Fri Nov 06 16:39:58 +0000 2009","profile_background_color":"829aa6","location":"","listed_count":897,"profile_background_tile":true,"friends_count":262,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/577617056\/logo_normal.jpg","statuses_count":623,"profile_text_color":"333333","name":"pbsnewshourArtBeat","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"NewsHourArtBeat","id":87978312,"id_str":"87978312","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"London","description":"The International Review of Graphic Design","profile_sidebar_fill_color":"FFFFFF","followers_count":163348,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"CDCDCD","url":"http:\/\/blog.eyemagazine.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2638400\/Twitter_bg.gif","lang":"en","created_at":"Mon Jun 16 16:50:05 +0000 2008","profile_background_color":"FFFFFF","location":"London, UK","listed_count":3336,"profile_background_tile":true,"friends_count":1001,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/55524520\/Avatar_01_normal.jpg","statuses_count":3427,"profile_text_color":"645D5D","name":"eyemagazine","show_all_inline_media":false,"following":false,"favourites_count":4393,"screen_name":"eyemagazine","id":15135958,"id_str":"15135958","contributors_enabled":false,"utc_offset":0,"profile_link_color":"FF00FF"},{"geo_enabled":false,"time_zone":"Alaska","description":"Light Stalking is all about beautiful photography and getting the word out about the talented people that produce it. We try to impart a little knowledge too.","profile_sidebar_fill_color":"EADEAA","followers_count":127860,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"D9B17E","url":"http:\/\/www.lightstalking.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/71755559\/lsbg3.jpg","lang":"en","created_at":"Thu Mar 05 23:28:49 +0000 2009","profile_background_color":"8B542B","location":"","listed_count":4071,"profile_background_tile":true,"friends_count":28568,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/517489725\/cow_normal.jpg","statuses_count":3548,"profile_text_color":"333333","name":"Light Stalking","show_all_inline_media":false,"following":false,"favourites_count":85,"screen_name":"LightStalking","id":22997517,"id_str":"22997517","contributors_enabled":false,"utc_offset":-32400,"profile_link_color":"9D582E"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The Metropolitan Museum of Art is one of the world's largest and finest art museums. Tweets by Jennette (Digital Media). I welcome your comments & questions.","profile_sidebar_fill_color":"408CC7","followers_count":133627,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","url":"http:\/\/www.metmuseum.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/101492451\/Background_Arches.jpg","lang":"en","created_at":"Thu Oct 30 01:31:07 +0000 2008","profile_background_color":"0370c5","location":"New York, NY","listed_count":4542,"profile_background_tile":true,"friends_count":296,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/63682065\/met_podcast_logo2_normal.jpg","statuses_count":1834,"profile_text_color":"3C3940","name":"metmuseum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"metmuseum","id":17057271,"id_str":"17057271","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"5ED4DC"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Author, Designing With Web Standards. Founder, Happy Cog. Publisher, A List Apart, A Book Apart. Co-founder, An Event Apart, The Big Web Show. I'm your daddy.","profile_sidebar_fill_color":"FF6600","followers_count":105003,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"CD3300","url":"http:\/\/www.zeldman.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/1422692\/chancegarden1280.gif","lang":"en","created_at":"Tue Dec 12 17:11:41 +0000 2006","profile_background_color":"FF6600","location":"New York, NY","listed_count":5346,"profile_background_tile":true,"friends_count":958,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/693932114\/blue200_normal.gif","statuses_count":11953,"profile_text_color":"000000","name":"Jeffrey Zeldman","show_all_inline_media":true,"following":false,"favourites_count":1246,"screen_name":"zeldman","id":61133,"id_str":"61133","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"972200"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Writings on Design and Culture. Edited by Michael Bierut, William Drenttel, Jessica Helfand, Julie Lasky and Nancy Levinson.","profile_sidebar_fill_color":"ffffff","followers_count":157791,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"303934","url":"http:\/\/www.designobserver.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/154531558\/twitter_bkgd.gif","lang":"en","created_at":"Tue Nov 25 16:51:54 +0000 2008","profile_background_color":"333333","location":"New York (Falls Village CT)","listed_count":5820,"profile_background_tile":false,"friends_count":400,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/340155402\/twitter_profile_bigger_normal.gif","statuses_count":6579,"profile_text_color":"fe6601","name":"DesignObserver","show_all_inline_media":false,"following":false,"favourites_count":185,"screen_name":"DesignObserver","id":17623957,"id_str":"17623957","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"303934"},{"geo_enabled":false,"time_zone":"Quito","description":"The Whitney Museum houses one of the world's foremost collections of contemporary American art. Gretchen in the marketing dept. is the gal behind the tweets.","profile_sidebar_fill_color":"ffff00","followers_count":113142,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/whitney.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52959407\/twitter2.jpg","lang":"en","created_at":"Mon Sep 29 20:14:21 +0000 2008","profile_background_color":"000000","location":"New York City","listed_count":3356,"profile_background_tile":false,"friends_count":1022,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/520806383\/twitter_icon_normal.jpg","statuses_count":2145,"profile_text_color":"0b0a0a","name":"Whitney Museum","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"whitneymuseum","id":16517711,"id_str":"16517711","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"A catalyst for the creative expression of artists and active engagement of audiences, examines questions that shape and inspire us. Tweeting by KF + friends","profile_sidebar_fill_color":"e9eafb","followers_count":104363,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"d9d9d9","url":"http:\/\/walkerart.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/157644731\/walker_twitter_bg.jpg","lang":"en","created_at":"Fri Jul 25 04:46:13 +0000 2008","profile_background_color":"f2f6fd","location":"Minneapolis, MN","listed_count":1851,"profile_background_tile":true,"friends_count":344,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/57221222\/bg2005exha0413_001_normal.jpg","statuses_count":1914,"profile_text_color":"3d3d3d","name":"Walker Art Center","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"walkerartcenter","id":15594318,"id_str":"15594318","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"dd1d36"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"I love dancing. I think it's better to dance than to march through life.","profile_sidebar_fill_color":"b7cff7","followers_count":1065516,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"3c32c7","url":"http:\/\/www.IMAGINEPEACE.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/164207256\/l_f96c4ce8d2b14a8789a0302a925fb308.jpg","lang":"en","created_at":"Thu Nov 27 16:06:43 +0000 2008","profile_background_color":"0096db","location":"New York","listed_count":24048,"profile_background_tile":false,"friends_count":440844,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1150179487\/49889_522024050_6382420_n_normal.jpg","statuses_count":1967,"profile_text_color":"333333","name":"Yoko Ono","show_all_inline_media":false,"following":false,"favourites_count":8,"screen_name":"yokoono","id":17681513,"id_str":"17681513","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0096db"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Magnum Photos is a photographic cooperative of great diversity and distinction owned by its photographer members.","profile_sidebar_fill_color":"ffffff","followers_count":155994,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/magnumphotos.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/6478661\/Twitter_BG.jpg","lang":"en","created_at":"Fri Feb 13 20:16:30 +0000 2009","profile_background_color":"1e201d","location":"New York, London, Paris, Tokyo","listed_count":4575,"profile_background_tile":true,"friends_count":96,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78037758\/Magnum_Logo_small_normal.jpg","statuses_count":1962,"profile_text_color":"6e7269","name":"Magnum Photos","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"magnumphotos","id":20802277,"id_str":"20802277","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2FC2EF"},{"geo_enabled":false,"time_zone":"Central Time (US & Canada)","description":"Behance is on a mission to organize and empower the creative world to make ideas happen.","profile_sidebar_fill_color":"ffffff","followers_count":131007,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/www.behance.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/28978111\/BehanceTwitter.jpg","lang":"en","created_at":"Mon Oct 08 17:45:54 +0000 2007","profile_background_color":"1A1B1F","location":"New York, New York","listed_count":5493,"profile_background_tile":false,"friends_count":1378,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/269846621\/BehanceTwitter_normal.png","statuses_count":3026,"profile_text_color":"525252","name":"Behance","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"Behance","id":9313022,"id_str":"9313022","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"ed2f2f"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The Illustration & Cartooning Weblog","profile_sidebar_fill_color":"ffffff","followers_count":126881,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dceffa","url":"http:\/\/drawn.ca","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/164111313\/greybg.png","lang":"en","created_at":"Sun Feb 03 03:32:00 +0000 2008","profile_background_color":"009cea","location":"Canada","listed_count":2487,"profile_background_tile":true,"friends_count":16,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1149940174\/drawnavatar_normal.jpg","statuses_count":2008,"profile_text_color":"000000","name":"Drawn! ","show_all_inline_media":false,"following":false,"favourites_count":8,"screen_name":"drawn","id":12998732,"id_str":"12998732","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"009cea"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Product design initiatives for Humanity, Habitats, Health, and Happiness","profile_sidebar_fill_color":"CDD0C7","followers_count":143101,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"2E302D","url":"http:\/\/www.projecthdesign.org\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/147963940\/4885794574_b3962d232c_b.jpg","lang":"en","created_at":"Wed Jul 09 21:49:48 +0000 2008","profile_background_color":"9ae4e8","location":"Bertie County, NC","listed_count":1741,"profile_background_tile":true,"friends_count":193,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/544732942\/LOGORgb2_justH_normal.png","statuses_count":1093,"profile_text_color":"000000","name":"Project H Design","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"ProjectHDesign","id":15370860,"id_str":"15370860","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"9E0051"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"News and reviews from Artnet Magazine. Editor: Walter Robinson. Associate editor: Ben Davis","profile_sidebar_fill_color":"D1D1B1","followers_count":124371,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"999999","url":"http:\/\/www.artnet.com\/magazineus\/frontpage.asp","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287502835\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Wed Feb 11 20:13:22 +0000 2009","profile_background_color":"F47321","location":"New York, N.Y.","listed_count":2924,"profile_background_tile":false,"friends_count":12344,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/422462362\/250x250_normal.jpg","statuses_count":8268,"profile_text_color":"333333","name":"Artnet Magazine","show_all_inline_media":false,"following":false,"favourites_count":6,"screen_name":"artnetdotcom","id":20622594,"id_str":"20622594","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"f47321"},{"geo_enabled":true,"time_zone":"London","description":"Wallpaper* magazine's official Twitter account: global news on design, interiors, fashion, art and lifestyle","profile_sidebar_fill_color":"fafcf7","followers_count":225083,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/www.wallpaper.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/45137617\/monsoon.jpg","lang":"en","created_at":"Thu Aug 16 13:52:19 +0000 2007","profile_background_color":"352726","location":"London","listed_count":6440,"profile_background_tile":true,"friends_count":1237,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/110647184\/wallpaper_asterix_normal.gif","statuses_count":1992,"profile_text_color":"3E4415","name":"Wallpaper* magazine","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"wallpapermag","id":8223872,"id_str":"8223872","contributors_enabled":false,"utc_offset":0,"profile_link_color":"D02B55"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Architecture Design for Architects. Feed maintained by Architectural Record Web Producer, Laurie Meisel - @lauriemeisel - McGraw-Hill Construction","profile_sidebar_fill_color":"FFFFFF","followers_count":113710,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"f7942c","url":"http:\/\/archrecord.construction.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4108879\/ARlogo_twitter.jpg","lang":"en","created_at":"Wed Jan 28 06:16:04 +0000 2009","profile_background_color":"ffffff","location":"New York City","listed_count":2161,"profile_background_tile":false,"friends_count":6689,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/75078767\/AR_73x73_normal.jpg","statuses_count":2233,"profile_text_color":"333333","name":"Architectural Record","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"ArchRecord","id":19639085,"id_str":"19639085","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"f7942c"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Designer by day, designer by night.","profile_sidebar_fill_color":"f3fafc","followers_count":101086,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bbd5e7","url":"http:\/\/jasonsantamaria.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2392335\/6.jpg","lang":"en","created_at":"Tue Dec 12 12:11:59 +0000 2006","profile_background_color":"000000","location":"Brooklyn, NY","listed_count":3106,"profile_background_tile":true,"friends_count":221,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/827950949\/stan_color_normal.jpg","statuses_count":4404,"profile_text_color":"3F2903","name":"Jason Santa Maria","show_all_inline_media":true,"following":false,"favourites_count":69,"screen_name":"jasonsantamaria","id":60273,"id_str":"60273","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"E65829"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Frank Lloyd Wright's architectural masterpiece home to a world-renowned collection of modern & contemporary art. Tweets by Francesca & JiaJia, External Affairs.","profile_sidebar_fill_color":"e1e1e1","followers_count":186181,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/www.guggenheim.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/102357358\/TwitterFinal.jpg","lang":"en","created_at":"Mon Jan 28 22:34:13 +0000 2008","profile_background_color":"ebebeb","location":"New York City","listed_count":6362,"profile_background_tile":false,"friends_count":2203,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1149536853\/Twitter_normal.jpg","statuses_count":1673,"profile_text_color":"000000","name":"Guggenheim Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"Guggenheim","id":12804422,"id_str":"12804422","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"cc3433"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Arts and Entertainment News from NYTimes.com\/Arts","profile_sidebar_fill_color":"E7EFF8","followers_count":183702,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"323232","url":"http:\/\/www.nytimes.com\/arts","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2800588\/twitter.post.gif","lang":"en","created_at":"Sun Mar 18 20:30:33 +0000 2007","profile_background_color":"FFFFFF","location":"New York, NY","listed_count":5615,"profile_background_tile":true,"friends_count":139,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/278375516\/arts_75_twitter_normal.gif","statuses_count":24176,"profile_text_color":"000000","name":"NYTimes Arts","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"nytimesarts","id":1440641,"id_str":"1440641","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"004276"},{"geo_enabled":true,"time_zone":"Greenland","description":"Get smashed with Vitaly Friedman, editor-in-chief of Smashing Magazine, an online magazine for designers and web developers.","profile_sidebar_fill_color":"ffffff","followers_count":275629,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.smashingmagazine.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme13\/bg.gif","lang":"en","created_at":"Tue Aug 05 14:00:40 +0000 2008","profile_background_color":"B2DFDA","location":"Freiburg, Germany","listed_count":22366,"profile_background_tile":true,"friends_count":498,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/572829723\/original_normal.jpg","statuses_count":12536,"profile_text_color":"333333","name":"Smashing Magazine","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"smashingmag","id":15736190,"id_str":"15736190","contributors_enabled":false,"utc_offset":-10800,"profile_link_color":"f51616"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Dedicated to graphic design, technology, culture, and how it all fits together. Got something you want us to see? Tell us! http:\/\/imprint.printmag.com","profile_sidebar_fill_color":"efefef","followers_count":180609,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.printmag.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/153332722\/OCT2010_500.jpg","lang":"en","created_at":"Wed Sep 17 20:56:30 +0000 2008","profile_background_color":"cccccc","location":"New York City","listed_count":4859,"profile_background_tile":true,"friends_count":1302,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1139587727\/OCT2010_150_normal.jpg","statuses_count":1905,"profile_text_color":"333333","name":"Print magazine","show_all_inline_media":false,"following":false,"favourites_count":222,"screen_name":"printmag","id":16336998,"id_str":"16336998","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"00b8d9"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"View http:\/\/pictorymag.com for a curated collection of personal photo stories.","profile_sidebar_fill_color":"DDEEF6","followers_count":84148,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/pictorymag.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Fri Jul 31 18:40:29 +0000 2009","profile_background_color":"080808","location":"San Francisco","listed_count":1378,"profile_background_tile":false,"friends_count":83,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/497623612\/pictorytweet_normal.png","statuses_count":605,"profile_text_color":"333333","name":"Pictory","show_all_inline_media":false,"following":false,"favourites_count":17,"screen_name":"Pictory","id":61842249,"id_str":"61842249","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"AIGA, the professional association for design, is committed to advancing design as a professional craft, strategic tool and vital cultural force. ","profile_sidebar_fill_color":"DDEEF6","followers_count":115876,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.aiga.org","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287502835\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue Jan 27 21:49:35 +0000 2009","profile_background_color":"C0DEED","location":"United States","listed_count":3366,"profile_background_tile":false,"friends_count":160,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/74100932\/aigaLogoWeb_normal.png","statuses_count":1102,"profile_text_color":"333333","name":"AIGA","show_all_inline_media":false,"following":false,"favourites_count":11,"screen_name":"AIGAdesign","id":19619047,"id_str":"19619047","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Brussels","description":"Belgian graphic & web designer, author of Veerle's blog and founder of Duoh! Colorlover for life who loves to listen to deep house music while designing.","profile_sidebar_fill_color":"eae3d4","followers_count":99900,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cac2b2","url":"http:\/\/veerle.duoh.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/100247105\/twitter-background.jpg","lang":"en","created_at":"Fri Nov 17 09:54:04 +0000 2006","profile_background_color":"818176","location":"Belgium","listed_count":2396,"profile_background_tile":false,"friends_count":266,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/889518005\/avatar-me-short-hair-256x256_normal.jpg","statuses_count":3799,"profile_text_color":"666666","name":"Veerle Pieters","show_all_inline_media":false,"following":false,"favourites_count":22,"screen_name":"vpieters","id":12815,"id_str":"12815","contributors_enabled":false,"utc_offset":3600,"profile_link_color":"e3266b"},{"geo_enabled":true,"time_zone":"London","description":"One of the world's leading museums devoted to contemporary design in every form from furniture, fashion graphics, architecture and industrial design.","profile_sidebar_fill_color":"0fafff","followers_count":176055,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.designmuseum.org","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/156276367\/one_to_one.jpg","lang":"en","created_at":"Thu Feb 26 13:48:31 +0000 2009","profile_background_color":"9AE4E8","location":"London","listed_count":3687,"profile_background_tile":true,"friends_count":74,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1138718740\/twitter_thumb_normal.jpg","statuses_count":369,"profile_text_color":"000000","name":"Design Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"DesignMuseum","id":22009731,"id_str":"22009731","contributors_enabled":false,"utc_offset":0,"profile_link_color":"000000"},{"geo_enabled":true,"time_zone":"London","description":"An Irish web developer living and working in Brighton, England.","profile_sidebar_fill_color":"eeeeee","followers_count":68786,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"dddddd","url":"http:\/\/adactio.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5952\/background.jpg","lang":"en","created_at":"Wed Nov 01 13:12:51 +0000 2006","profile_background_color":"FFFFFF","location":"Brighton, East Sussex, England","listed_count":1600,"profile_background_tile":true,"friends_count":451,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/551990159\/jeremykeith_normal_normal.jpg","statuses_count":8901,"profile_text_color":"333333","name":"Jeremy Keith","show_all_inline_media":true,"following":false,"favourites_count":277,"screen_name":"adactio","id":11250,"id_str":"11250","contributors_enabled":false,"utc_offset":0,"profile_link_color":"113355"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"more than a museum","profile_sidebar_fill_color":"cccccc","followers_count":157951,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bababa","url":"http:\/\/www.warhol.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/159345568\/NEWTwitter_Background_copy.jpg","lang":"en","created_at":"Fri Jan 23 20:35:38 +0000 2009","profile_background_color":"000000","location":"Pittsburgh, PA, USA","listed_count":3198,"profile_background_tile":false,"friends_count":4097,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/234545787\/TwitterLittler_normal.jpg","statuses_count":733,"profile_text_color":"000000","name":"Andy Warhol Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"TheWarholMuseum","id":19412366,"id_str":"19412366","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"5e5e5e"},{"geo_enabled":true,"time_zone":"Berlin","description":"Typomaniac","profile_sidebar_fill_color":"DDFFCC","followers_count":78616,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"e2e7df","url":"http:\/\/www.spiekermann.com\/en\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/160411373\/es_typefaces_2010.png","lang":"en","created_at":"Thu Jan 15 23:38:46 +0000 2009","profile_background_color":"9AE4E8","location":"iPhone: 52.511920,13.400244","listed_count":1830,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/71414018\/erik_closeup_bw_normal.jpg","statuses_count":2791,"profile_text_color":"333333","name":"erik spiekermann","show_all_inline_media":false,"following":false,"favourites_count":5,"screen_name":"espiekermann","id":19045458,"id_str":"19045458","contributors_enabled":false,"utc_offset":3600,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Color + Design Community | Creator of the Twitter Profile designer www.Themeleon.com","profile_sidebar_fill_color":"c9c9c9","followers_count":405342,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bfbfbf","url":"http:\/\/www.colourlovers.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/54629758\/x10e1f6a2456a574bb99f65f13395c7e.png","lang":"en","created_at":"Fri Dec 05 22:12:31 +0000 2008","profile_background_color":"07090b","location":"Colorland (SF\/NYC\/PDX)","listed_count":6575,"profile_background_tile":true,"friends_count":941,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/66497158\/12233268832678686_normal.jpg","statuses_count":2272,"profile_text_color":"1c1f23","name":"COLOURlovers","show_all_inline_media":false,"following":false,"favourites_count":6,"screen_name":"colourlovers","id":17909625,"id_str":"17909625","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"c34242"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"USA\u2019s leading promoter of Graffiti ART FORM. Head of national Estria Invitational Graffiti Battle. West Coast OG. Art & inspiration from the streets.","profile_sidebar_fill_color":"e6e6e3","followers_count":383127,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"636263","url":"http:\/\/estria.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/55676209\/mstr_template2.jpg","lang":"en","created_at":"Wed Apr 22 06:35:49 +0000 2009","profile_background_color":"ffffff","location":"Honolulu Oakland","listed_count":622,"profile_background_tile":false,"friends_count":269,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/541529457\/Hawaii_15425_MarcoProsch_normal.jpg","statuses_count":3272,"profile_text_color":"5e5d5c","name":"Estria","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"estria","id":34207681,"id_str":"34207681","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"ed5007"},{"geo_enabled":false,"time_zone":"London","description":"Creative Review, advertising, design and visual culture: graphics, film, photography, illustration, digital, type, art, print... Tweets by Neil and Mark.","profile_sidebar_fill_color":"E3E2DE","followers_count":196919,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"656563","url":"http:\/\/creativereview.co.uk","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/163816562\/creativereview_twittNov_app.jpg","lang":"en","created_at":"Mon Feb 23 15:40:08 +0000 2009","profile_background_color":"E3E2DE","location":"London","listed_count":6521,"profile_background_tile":false,"friends_count":11485,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/787755994\/CR-logo_Twitter_new_normal.png","statuses_count":3987,"profile_text_color":"656563","name":"Creative Review","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"CreativeReview","id":21661279,"id_str":"21661279","contributors_enabled":false,"utc_offset":0,"profile_link_color":"ff4301"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Director of the documentary films Helvetica, Objectified, and Urbanized.","profile_sidebar_fill_color":"ffffff","followers_count":70949,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.urbanizedfilm.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/128410088\/urbanized_twitter5.jpg","lang":"en","created_at":"Tue Mar 17 17:23:57 +0000 2009","profile_background_color":"9e9e9e","location":"NYC","listed_count":1139,"profile_background_tile":true,"friends_count":149,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/101550009\/gary.72_normal.jpg","statuses_count":928,"profile_text_color":"333333","name":"Gary Hustwit","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"gary_hustwit","id":24916429,"id_str":"24916429","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"I write things, draw things, and invent things","profile_sidebar_fill_color":"252429","followers_count":94550,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/www.scottmccloud.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Mar 01 22:12:45 +0000 2009","profile_background_color":"1A1B1F","location":"So. California","listed_count":2510,"profile_background_tile":false,"friends_count":147,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/556926220\/selfport-small_normal.jpg","statuses_count":1850,"profile_text_color":"666666","name":"Scott McCloud","show_all_inline_media":true,"following":false,"favourites_count":0,"screen_name":"scottmccloud","id":22413809,"id_str":"22413809","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"design blogstress\r\nwww.designsponge.com","profile_sidebar_fill_color":"DDFFCC","followers_count":126085,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.designsponge.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/6474848\/Design_Sponge.jpg","lang":"en","created_at":"Mon Mar 23 02:59:40 +0000 2009","profile_background_color":"9AE4E8","location":"brooklyn, ny","listed_count":4032,"profile_background_tile":true,"friends_count":219,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/107186057\/879249852_7830b767f0_o_normal.png","statuses_count":11942,"profile_text_color":"333333","name":"Grace Bonney","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"designsponge","id":25940364,"id_str":"25940364","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Global innovation firm that helps create and bring to market meaningful products, services, and experiences.","profile_sidebar_fill_color":"ffffff","followers_count":126891,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.frogdesign.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/6212089\/collager2009_color2.jpg","lang":"en","created_at":"Tue Dec 25 20:38:13 +0000 2007","profile_background_color":"1A1B1F","location":"Headquartered in San Francisco","listed_count":3121,"profile_background_tile":true,"friends_count":2726,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/82779175\/frogdesign_twitter_logo_75_normal.png","statuses_count":2427,"profile_text_color":"666666","name":"frog design","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"frogdesign","id":11512342,"id_str":"11512342","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF"}],"slug":"art-design","name":"Art & Design"}
@@ -0,0 +1 @@
1
+ {"photo_sizes":{"medium":{"h":1200,"w":600,"resize":"fit"},"small":{"h":480,"w":340,"resize":"fit"},"large":{"h":2048,"w":1024,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"non_username_paths":["about","account","accounts","activity","all","announcements","anywhere","api_rules","api_terms","apirules","apps","auth","badges","blog","business","buttons","contacts","devices","direct_messages","download","downloads","edit_announcements","faq","favorites","find_sources","find_users","followers","following","friend_request","friendrequest","friends","goodies","help","home","im_account","inbox","invitations","invite","jobs","list","login","logout","me","mentions","messages","mockview","newtwitter","notifications","nudge","oauth","phoenix_search","positions","privacy","public_timeline","related_tweets","replies","retweeted_of_mine","retweets","retweets_by_others","rules","saved_searches","search","sent","settings","share","signup","signin","similar_to","statistics","terms","tos","translate","trends","tweetbutton","twttr","update_discoverability","users","welcome","who_to_follow","widgets","zendesk_auth","media_signup","t1_qunit_tests","phoenix_qunit_tests"],"photo_size_limit":3145728,"max_media_per_upload":1,"short_url_length":19,"short_url_length_https":20,"characters_reserved_per_media":20}
@@ -0,0 +1 @@
1
+ [{"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Twitter API","contributors_enabled":true,"created_at":"Wed May 23 06:01:13 +0000 2007","profile_background_color":"e8f2f7","expanded_url":null,"listed_count":9032,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","utc_offset":-28800,"description":"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.","display_url":null,"verified":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1438634086\/avatar_normal.png","id_str":"6253282","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","favourites_count":22,"profile_text_color":"437792","status":{"truncated":false,"created_at":"Sun Aug 21 15:47:24 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105305005493452801","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[819797],"retweeted":false,"retweet_count":27,"source":"web","id":105305005493452801,"text":"dev.twitter.com is still inaccessible from some locations. We're working to restore availability to everyone again. ^TS"},"default_profile":false,"friends_count":30,"profile_sidebar_fill_color":"a9d9f1","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1438634086\/avatar_normal.png","screen_name":"twitterapi","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"San Francisco, CA","notifications":null,"is_translator":false,"profile_link_color":"0094C2","url":"http:\/\/dev.twitter.com","id":6253282,"follow_request_sent":null,"statuses_count":3044,"following":null,"profile_sidebar_border_color":"0094C2","followers_count":633992},{"time_zone":"Pacific Time (US & Canada)","protected":true,"is_translator":false,"profile_use_background_image":true,"name":"teamteam","follow_request_sent":false,"statuses_count":490,"created_at":"Thu Jun 04 20:20:20 +0000 2009","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"Do more with less. ","display_url":null,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/323680542\/Bluebird_of_Happiness_normal.jpg","id_str":"44709792","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors_enabled":true,"lang":"en","favourites_count":18,"profile_text_color":"333333","listed_count":161,"profile_sidebar_fill_color":"DDEEF6","screen_name":"teamteam","default_profile":true,"profile_background_tile":false,"location":"Twitter","notifications":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":633,"profile_link_color":"0084B4","url":"http:\/\/www.flickr.com\/photos\/twitteroffice","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/323680542\/Bluebird_of_Happiness_normal.jpg","id":44709792,"default_profile_image":false,"show_all_inline_media":false,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":433},{"time_zone":"Pacific Time (US & Canada)","protected":true,"profile_use_background_image":true,"name":"Shoutout","contributors_enabled":true,"created_at":"Sun Dec 27 19:22:01 +0000 2009","profile_background_color":"022330","expanded_url":null,"listed_count":61,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-28800,"description":"Contribute your shoutouts to peeps.","display_url":null,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/597683385\/shout_normal.png","id_str":"99765600","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":8,"profile_text_color":"333333","friends_count":3,"profile_sidebar_fill_color":"C0DFEC","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/597683385\/shout_normal.png","screen_name":"twittershoutout","default_profile_image":false,"default_profile":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"","notifications":false,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/twitter.com","id":99765600,"follow_request_sent":false,"statuses_count":693,"following":false,"profile_sidebar_border_color":"a8c7f7","followers_count":336},{"time_zone":"Pacific Time (US & Canada)","protected":false,"is_translator":false,"profile_use_background_image":true,"name":"Anywhere","follow_request_sent":null,"statuses_count":31,"created_at":"Sun Oct 21 09:05:41 +0000 2007","profile_background_color":"022330","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-28800,"description":"Here. There. Anywhere.","display_url":null,"verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/754566723\/_anywhere_normal.png","id_str":"9576402","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors_enabled":true,"lang":"en","favourites_count":11,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Tue Feb 01 05:28:46 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"32309362097651712","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":{"country_code":"US","name":"Ashbury Heights","attributes":{},"full_name":"Ashbury Heights, San Francisco","place_type":"neighborhood","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.45778216,37.75932999],[-122.44248216,37.75932999],[-122.44248216,37.76752899],[-122.45778216,37.76752899]]]},"id":"866269c983527d5a","url":"http:\/\/api.twitter.com\/1\/geo\/id\/866269c983527d5a.json"},"contributors":[777925],"retweeted":false,"retweet_count":75,"source":"web","id":32309362097651712,"text":"Version 1.2 was released today. If you version locked to anything other than '1' you need to update now. Read more: http:\/\/t.co\/ACcUovI"},"listed_count":2246,"profile_sidebar_fill_color":"C0DFEC","screen_name":"anywhere","profile_background_tile":false,"location":"Twitter, HQ","notifications":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","default_profile":false,"friends_count":16,"profile_link_color":"0084B4","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/754566723\/_anywhere_normal.png","id":9576402,"default_profile_image":false,"show_all_inline_media":false,"following":null,"geo_enabled":true,"profile_sidebar_border_color":"a8c7f7","followers_count":47444},{"is_translator":false,"time_zone":"Alaska","protected":false,"follow_request_sent":false,"statuses_count":0,"profile_use_background_image":true,"name":"Geo Team","created_at":"Thu Jan 07 20:30:42 +0000 2010","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"description":"All your lats and longs are belong to us","display_url":null,"contributors_enabled":true,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/622831073\/Geo-profile-icon_normal.png","id_str":"102782288","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"listed_count":202,"lang":"en","favourites_count":0,"profile_text_color":"333333","profile_sidebar_fill_color":"DDEEF6","screen_name":"geo","profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA","notifications":false,"friends_count":0,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/622831073\/Geo-profile-icon_normal.png","default_profile_image":false,"default_profile":true,"show_all_inline_media":false,"geo_enabled":true,"profile_link_color":"0084B4","url":null,"id":102782288,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":3596},{"time_zone":null,"protected":false,"default_profile":true,"listed_count":98,"profile_use_background_image":true,"name":"Site Streams Beta","created_at":"Fri Aug 27 18:04:38 +0000 2010","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"description":"Twitter Site Streams Beta Announcements. When reporting an issue, include account & UTC. You may DM critical outages.","display_url":null,"contributors_enabled":true,"verified":true,"friends_count":1,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1112022529\/api_normal.png","id_str":"183709371","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile_image":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Thu Aug 18 19:39:20 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104276210699341825","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[777925],"retweeted":false,"retweet_count":0,"source":"web","id":104276210699341825,"text":"For the moment we've stopped the rollout of the new SSL certificate for sitestreams. We'll tweet again when we resume."},"show_all_inline_media":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1112022529\/api_normal.png","screen_name":"sitestreams","is_translator":false,"profile_background_tile":false,"location":"San Francisco, CA","follow_request_sent":false,"notifications":false,"statuses_count":139,"profile_link_color":"0084B4","url":"http:\/\/twitter.com","id":183709371,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":2199}]
@@ -0,0 +1 @@
1
+ [{"profile_sidebar_fill_color":"C0DFEC","protected":false,"id_str":"13","notifications":false,"profile_background_tile":false,"screen_name":"biz","name":"Biz Stone","display_url":"bizstone.com","listed_count":15392,"location":"San Francisco, CA","expanded_url":"http:\/\/www.bizstone.com","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"Co-founder of Twitter, Inc.","profile_sidebar_border_color":"a8c7f7","url":"http:\/\/t.co\/bdlNWgB","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110109632814518272","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/flickr.com\/services\/twitter\/\" rel=\"nofollow\"\u003EFlickr\u003C\/a\u003E","created_at":"Sat Sep 03 21:59:16 +0000 2011","contributors":null,"retweeted":false,"retweet_count":4,"id":110109632814518272,"place":null,"text":"Cavallo Point Dandelion http:\/\/t.co\/nv0gcpL"},"default_profile_image":false,"statuses_count":4466,"profile_use_background_image":true,"verified":true,"favourites_count":869,"friends_count":530,"profile_background_color":"022330","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","created_at":"Tue Mar 21 20:51:43 +0000 2006","followers_count":1765283,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","id":13,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/513819852\/biz_stone_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/513819852\/biz_stone_normal.jpg"},{"profile_sidebar_fill_color":"454A43","protected":false,"id_str":"20","notifications":false,"profile_background_tile":true,"screen_name":"ev","name":"Evan Williams","display_url":"evhead.com","listed_count":17223,"location":"San Francisco, CA, US","expanded_url":"http:\/\/evhead.com","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"A8AB9A","description":"Farm boy from Nebraska. Husband and father. Co-founder of Twitter. Partner at @ObviousCorp","profile_sidebar_border_color":"E23912","url":"http:\/\/t.co\/C2HZiQ4","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109843207965261824","in_reply_to_status_id":109841684006838272,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"109841684006838272","geo":null,"in_reply_to_screen_name":"chrissyteigen","in_reply_to_user_id_str":"39364684","coordinates":null,"in_reply_to_user_id":39364684,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 04:20:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":3,"id":109843207965261824,"place":null,"text":"@chrissyteigen Well, at least you didn't want fried chicken and potato salad. Just saw this today: http:\/\/t.co\/hO4eIrl"},"default_profile_image":false,"statuses_count":6316,"profile_use_background_image":true,"verified":true,"favourites_count":1852,"friends_count":1346,"profile_background_color":"D4BEA7","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/313094643\/COLOURlovers.com-Indecent_Exposure-.png","created_at":"Tue Mar 21 21:02:31 +0000 2006","followers_count":1386646,"entities":{"user_mentions":[{"name":"Obvious Corporation","screen_name":"obviouscorp","id_str":"322904764","indices":[78,90],"id":322904764}],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/313094643\/COLOURlovers.com-Indecent_Exposure-.png","id":20,"profile_text_color":"C3B7A1","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1275356729\/evedit0xr_2__1__normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1275356729\/evedit0xr_2__1__normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"822571","notifications":false,"profile_background_tile":false,"screen_name":"SG","name":"Sean Garrett","display_url":null,"listed_count":403,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0000ff","description":"Ephemeral whinging aspects. Twitter, Inc. comms.","profile_sidebar_border_color":"87bc44","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110015226308591616","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 15:44:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110015226308591616,"place":null,"text":"Looking forward to the quirky infographic on the growth of quirky infigraphics."},"default_profile_image":false,"default_profile":false,"statuses_count":3436,"profile_use_background_image":true,"verified":false,"favourites_count":94,"friends_count":961,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/25315274\/07-05-2003__44.jpg","created_at":"Thu Mar 08 18:38:33 +0000 2007","followers_count":15629,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/25315274\/07-05-2003__44.jpg","id":822571,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1041950033\/capt.80e1b2df11e243c0b9c78f70a49a8394-80e1b2df11e243c0b9c78f70a49a8394-0_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1041950033\/capt.80e1b2df11e243c0b9c78f70a49a8394-80e1b2df11e243c0b9c78f70a49a8394-0_normal.jpg"},{"profile_sidebar_fill_color":"FFF7CC","protected":false,"id_str":"7694352","notifications":false,"profile_background_tile":true,"screen_name":"cpen","name":"Carolyn Penner","display_url":"cpen.posterous.com","listed_count":296,"location":"San Francisco","expanded_url":"http:\/\/cpen.posterous.com\/","show_all_inline_media":true,"contributors_enabled":true,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"3851de","description":"twitter comms. mobile geek. laughs easily. talks loudly. and, according to @sg, the she in that's what she said","profile_sidebar_border_color":"F2E195","url":"http:\/\/t.co\/sWhRERk","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110109700942598144","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 21:59:33 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110109700942598144,"place":null,"text":"Lots of people in white today. Like, all white. #LaborDayCountdown"},"default_profile_image":false,"statuses_count":6231,"profile_use_background_image":true,"verified":false,"favourites_count":446,"friends_count":384,"profile_background_color":"BADFCD","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/269139380\/sunset_benches.jpg","created_at":"Tue Jul 24 20:43:20 +0000 2007","followers_count":8505,"entities":{"user_mentions":[{"name":"Sean Garrett","screen_name":"SG","id_str":"822571","indices":[75,78],"id":822571}],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/269139380\/sunset_benches.jpg","id":7694352,"profile_text_color":"0C3E53","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1054499775\/profile2_normal.png","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1054499775\/profile2_normal.png"},{"default_profile":true,"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"14013722","notifications":null,"profile_background_tile":false,"screen_name":"mgrooves","name":"Matt Graves","display_url":null,"listed_count":186,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":true,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"twitter comms. lover of loud music and louder laughs.","profile_sidebar_border_color":"C0DEED","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"108792113889689600","in_reply_to_status_id":108715659239759872,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"108715659239759872","geo":{"type":"Point","coordinates":[39.47795653,-119.82139879]},"in_reply_to_screen_name":"willotoons","in_reply_to_user_id_str":"772386","coordinates":{"type":"Point","coordinates":[-119.82139879,39.47795653]},"in_reply_to_user_id":772386,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Wed Aug 31 06:43:55 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":108792113889689600,"place":{"name":"Reno","attributes":{},"full_name":"Reno, NV","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4b25aded08900fd8.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-119.943728,39.416409],[-119.723736,39.416409],[-119.723736,39.693608],[-119.943728,39.693608]]]},"place_type":"city","country":"United States","id":"4b25aded08900fd8"},"text":"@willotoons @sfbg Good to know where you stand on the boobs v. butts issue. #important"},"default_profile_image":false,"statuses_count":3805,"profile_use_background_image":true,"verified":false,"favourites_count":193,"friends_count":857,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Tue Feb 26 17:06:58 +0000 2008","followers_count":4613,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":14013722,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg"},{"profile_sidebar_fill_color":"F6F6F6","protected":false,"id_str":"16259374","notifications":false,"profile_background_tile":false,"screen_name":"jodiolson","name":"jodiolson","display_url":null,"listed_count":77,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"038543","description":"Twitter PR, mother, cook and aspiring gardener. Authentic but unverified.","profile_sidebar_border_color":"EEEEEE","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109334062912638976","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Thu Sep 01 18:37:26 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":109334062912638976,"place":null,"text":"A note from @jack to Twitter developers: http:\/\/t.co\/rWZ2TpE"},"default_profile_image":false,"default_profile":false,"statuses_count":1395,"profile_use_background_image":true,"verified":false,"favourites_count":14,"friends_count":596,"profile_background_color":"ACDED6","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","created_at":"Fri Sep 12 17:26:39 +0000 2008","followers_count":2907,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","id":16259374,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/125848090\/JO_lisbon_normal_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/125848090\/JO_lisbon_normal_normal.jpg"},{"follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/189647945\/xd9f362b4c1859de155db40b6a282d8d.jpg","protected":false,"notifications":null,"profile_text_color":"8C94A2","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1224057555\/photo-31_normal.jpeg","screen_name":"jennadawn","name":"jenna","profile_sidebar_fill_color":"424c55","location":"San Francisco ","id_str":"16739704","following":null,"profile_background_tile":false,"utc_offset":-28800,"description":"An Alaskan realizing the merit of urbanism via SF. Those who think idealism is naive only care to neglect. ","display_url":null,"listed_count":842,"url":null,"expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"geo_enabled":true,"profile_link_color":"8cb2bd","status":{"contributors":null,"retweeted":false,"retweet_count":0,"id_str":"109474557777281024","in_reply_to_status_id":null,"truncated":false,"geo":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Fri Sep 02 03:55:44 +0000 2011","in_reply_to_screen_name":null,"id":109474557777281024,"in_reply_to_user_id_str":null,"place":null,"in_reply_to_user_id":null,"text":"My special friends. http:\/\/t.co\/5JqNrmC"},"profile_sidebar_border_color":"8cb2bd","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":1609,"profile_use_background_image":true,"created_at":"Tue Oct 14 15:31:55 +0000 2008","entities":{"hashtags":[],"user_mentions":[],"urls":[]},"lang":"en","verified":false,"favourites_count":43,"friends_count":489,"profile_background_color":"ffffff","id":16739704,"is_translator":true,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/189647945\/xd9f362b4c1859de155db40b6a282d8d.jpg","followers_count":308123,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1224057555\/photo-31_normal.jpeg"},{"profile_sidebar_fill_color":"FFC36E","protected":false,"id_str":"145727626","notifications":null,"profile_background_tile":true,"screen_name":"juliedelcarlo","name":"Julie Del Carlo","display_url":null,"listed_count":46,"location":"","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"DD4969","description":"","profile_sidebar_border_color":"F8F2E6","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"108622547423199232","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Tue Aug 30 19:30:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":108622547423199232,"place":null,"text":"A very happy birthday to @che! #francisco http:\/\/t.co\/LUjIvI6"},"default_profile_image":false,"default_profile":false,"statuses_count":402,"profile_use_background_image":true,"verified":false,"favourites_count":8,"friends_count":586,"profile_background_color":"FBC2CE","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/319117928\/xbad02b8c30148db3a7d53570a0acdbf.png","created_at":"Wed May 19 18:32:50 +0000 2010","followers_count":3823,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/319117928\/xbad02b8c30148db3a7d53570a0acdbf.png","id":145727626,"profile_text_color":"5A4A37","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1441125224\/me_in_nyc_normal","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1441125224\/me_in_nyc_normal"},{"profile_sidebar_fill_color":"F7F9F9","protected":false,"id_str":"22824309","notifications":false,"profile_background_tile":true,"screen_name":"RachaelRad","name":"Rachael Horwitz","display_url":null,"listed_count":38,"location":"San Francisco, CA","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"000807","description":"Twitter Communications. Short person. Loud voice. More than just a pizzabagel. ","profile_sidebar_border_color":"EBD98D","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110116509141045249","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Sat Sep 03 22:26:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110116509141045249,"place":null,"text":"Greetings from Oregon! http:\/\/t.co\/slpi8xr"},"default_profile_image":false,"statuses_count":2325,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":51,"friends_count":682,"profile_background_color":"665147","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/315104167\/x9d3c16ade13b57b2abe466f3b154311.jpg","created_at":"Wed Mar 04 19:57:26 +0000 2009","followers_count":869,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/315104167\/x9d3c16ade13b57b2abe466f3b154311.jpg","id":22824309,"profile_text_color":"090700","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1408115265\/186227_587309531_8155668_n_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1408115265\/186227_587309531_8155668_n_normal.jpg"},{"profile_sidebar_fill_color":"fdfcfc","protected":false,"id_str":"3446291","notifications":null,"profile_background_tile":true,"screen_name":"rbremer","name":"Rachel Bremer","display_url":null,"listed_count":36,"location":"London","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":0,"profile_link_color":"0000ff","description":"European communications manager for Twitter. That's enough for now.","profile_sidebar_border_color":"e6e9e2","url":null,"time_zone":"London","status":{"id_str":"109924107214258176","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 09:42:04 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":109924107214258176,"place":null,"text":"On our way to Burghley for a day of horsey stuff..."},"default_profile_image":false,"statuses_count":2556,"profile_use_background_image":true,"verified":false,"favourites_count":31,"friends_count":557,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/4036889\/Twitter.jpg","created_at":"Wed Apr 04 18:09:44 +0000 2007","followers_count":1666,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile":false,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4036889\/Twitter.jpg","id":3446291,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370853870\/RYB_headshot_sm_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1370853870\/RYB_headshot_sm_normal.jpg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"14769591","notifications":false,"profile_background_tile":true,"screen_name":"foxycar","name":"Lynn Fox","display_url":null,"listed_count":198,"location":"","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"Twitter Comms. OH'ing myself.","default_profile":false,"profile_sidebar_border_color":"BDDCAD","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110023646487117824","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 16:17:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110023646487117824,"place":null,"text":"Just showed \"Who's on first?\" to the boys. Classic."},"default_profile_image":false,"statuses_count":4058,"profile_use_background_image":true,"verified":false,"favourites_count":44,"friends_count":969,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/143745093\/Photo_102.jpg","created_at":"Wed May 14 05:26:31 +0000 2008","followers_count":2702,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/143745093\/Photo_102.jpg","id":14769591,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1134096793\/bio_photo_small_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1134096793\/bio_photo_small_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"14589956","notifications":false,"profile_background_tile":true,"screen_name":"kh","name":"kristen","display_url":"about.me\/kristenhawley","listed_count":57,"location":"San Francisco","expanded_url":"http:\/\/about.me\/kristenhawley","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"B21515","description":"I'm a fun girl! Also, communications at Twitter","default_profile":false,"profile_sidebar_border_color":"2DA530","url":"http:\/\/t.co\/B6brkVp","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110115169379684353","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":{"type":"Point","coordinates":[38.47005683,-123.01459763]},"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-123.01459763,38.47005683]},"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 22:21:16 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110115169379684353,"place":{"name":"Monte Rio","attributes":{},"full_name":"Monte Rio, CA","url":"http:\/\/api.twitter.com\/1\/geo\/id\/aa352d4b3a8983c0.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-123.03198,38.455777],[-122.991321,38.455777],[-122.991321,38.476978],[-123.03198,38.476978]]]},"place_type":"city","country":"United States","id":"aa352d4b3a8983c0"},"text":"Happy where I am, happy where I am going."},"default_profile_image":false,"statuses_count":3946,"profile_use_background_image":true,"verified":false,"favourites_count":210,"friends_count":230,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/8116121\/Picture_1.png","created_at":"Tue Apr 29 20:06:27 +0000 2008","followers_count":1825,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/8116121\/Picture_1.png","id":14589956,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1352279358\/twitterpic_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1352279358\/twitterpic_normal.jpg"}]
@@ -0,0 +1 @@
1
+ {"sender_screen_name":"sferik","recipient_screen_name":"pengwynn","recipient_id":14100886,"recipient":{"profile_background_tile":false,"profile_sidebar_fill_color":"dddddd","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","friends_count":1877,"follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"cccccc","verified":false,"time_zone":"Central Time (US & Canada)","favourites_count":32,"url":"http:\/\/wynnnetherland.com","profile_background_color":"efefef","listed_count":184,"lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","location":"Dallas, TX","show_all_inline_media":false,"statuses_count":3928,"profile_use_background_image":true,"profile_text_color":"666666","protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","id_str":"14100886","geo_enabled":true,"name":"Wynn Netherland","contributors_enabled":false,"following":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","profile_link_color":"35abe9","screen_name":"pengwynn","id":14100886,"utc_offset":-21600,"followers_count":2767},"created_at":"Tue Oct 26 21:24:23 +0000 2010","id_str":"1825786345","sender":{"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","friends_count":88,"follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","verified":false,"time_zone":"Pacific Time (US & Canada)","favourites_count":729,"url":null,"profile_background_color":"000000","listed_count":28,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"statuses_count":2970,"profile_use_background_image":true,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","geo_enabled":true,"name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1825786345,"text":"Creating a fixture for the Twitter gem"}
@@ -0,0 +1 @@
1
+ [{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."},{"recipient_screen_name":"technoweenie","recipient_id":780561,"created_at":"Sat Oct 16 19:15:50 +0000 2010","sender_id":7505382,"recipient":{"description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","profile_use_background_image":true,"followers_count":3945,"notifications":false,"profile_background_color":"FFFFFF","listed_count":446,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","friends_count":192,"statuses_count":11437,"profile_text_color":"000000","url":"http:\/\/techno-weenie.net","show_all_inline_media":false,"profile_background_tile":false,"favourites_count":80,"contributors_enabled":false,"lang":"en","created_at":"Mon Feb 19 17:12:49 +0000 2007","profile_link_color":"0000ff","location":"sf","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1002166914\/rick2_normal.jpg","profile_sidebar_fill_color":"e0ff92","name":"technow\u00fcrst","following":false,"verified":false,"time_zone":"Central Time (US & Canada)","screen_name":"technoweenie","id":780561,"id_str":"780561","follow_request_sent":false,"utc_offset":-21600,"profile_sidebar_border_color":"87bc44"},"sender":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"followers_count":898,"notifications":false,"profile_background_color":"000000","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":88,"statuses_count":2968,"profile_text_color":"333333","url":null,"show_all_inline_media":true,"profile_background_tile":false,"favourites_count":729,"contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_link_color":"0084B4","location":"San Francisco","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_sidebar_fill_color":"DDEEF6","name":"Erik Michaels-Ober","following":true,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"id_str":"7505382","follow_request_sent":false,"utc_offset":-28800,"profile_sidebar_border_color":"C0DEED"},"sender_screen_name":"sferik","id":1769928706,"id_str":"1769928706","text":"if you want to add me to your GroupMe group, my phone number is 415-312-2382"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Oct 14 21:43:30 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1762960771","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1762960771,"text":"That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you? "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 15:07:12 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711812216","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711812216,"text":"I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better. "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 13:09:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711417617","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711417617,"text":"Just checking in. How's everything going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 22 04:01:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1674941247","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1674941247,"text":"Any luck completing graphs this weekend? There have been lots of commits to RailsAdmin since summer ended but none from you. How's it going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 16 16:13:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1653301471","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1653301471,"text":"Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 15 01:17:31 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1646568725","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1646568725,"text":"Looks good to me. I'm going to pull in the change now. My only concern is that we don't have any tests for auth."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Tue Sep 14 18:44:10 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1645324992","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1645324992,"text":"How are the graph enhancements coming?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:35:29 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638951325","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638951325,"text":"Changes pushed. You should pull and re-bundle when you have a minute."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:33 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638904422","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638904422,"text":"Glad to hear the new graphs are coming along. Can't wait to see them!"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:08 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638903478","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638903478,"text":"I figured out what was wrong with the tests: I accidentally unbundled webrat. The problem had nothing to do with rspec-rails."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:54 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638877375","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638877375,"text":"After the upgrade 54\/80 specs are failing. I'm working on fixing them now."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:18 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638875895","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638875895,"text":"a new version of rspec-rails just shipped with some nice features and fixes http:\/\/github.com\/rspec\/rspec-rails\/blob\/master\/History.md"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sat Sep 11 17:45:46 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1632933616","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1632933616,"text":"How are the graphs coming? I'm really looking forward to seeing what you do with Rapha\u00ebl."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 18:21:36 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629239903","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629239903,"text":"Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 17:56:53 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629166212","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629166212,"text":"I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 02:05:16 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1626403189","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1626403189,"text":"Can you try upgrading to 1.9.2 final, re-installing Bundler 1.0.0.rc.6 (don't remove 1.0.0) and see if you can reproduce the problem?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 18:11:48 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1624782206","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1624782206,"text":"I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 03:32:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1622306776","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1622306776,"text":"Let's try to debug that problem during our session in 1.5 hours. In the mean time, try working on the graphs or internationalization."}]
@@ -0,0 +1 @@
1
+ {"error":"Logged out.","request":"\/1\/account\/end_session.json"}
@@ -0,0 +1,11 @@
1
+ HTTP/1.1 420
2
+ Location: https://search.twitter.com
3
+ Content-Type: application/json; charset=UTF-8
4
+ Date: Mon, 18 Oct 2010 10:20:23 GMT
5
+ Expires: Wed, 17 Nov 2010 10:20:23 GMT
6
+ Cache-Control: public, max-age=2592000
7
+ Server: gws
8
+ Content-Length: 219
9
+ X-XSS-Protection: 1; mode=block
10
+ Retry-After: 100
11
+
@@ -0,0 +1 @@
1
+ [{"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/2b6ff8c22edd9576.json","country":"The United States of America","attributes":{},"full_name":"SoMa, San Francisco","name":"SoMa","id":"2b6ff8c22edd9576","bounding_box":{"type":"Polygon","coordinates":[[[-122.42284884,37.76893497],[-122.3964,37.76893497],[-122.3964,37.78752897],[-122.42284884,37.78752897]]]}},"retweet_count":null,"geo":{"type":"Point","coordinates":[37.78277342,-122.40647882]},"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 22 21:06:40 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"I'm mostly made of water. I was a Pivot. Now I'm a Square.","geo_enabled":true,"profile_sidebar_fill_color":"efefef","followers_count":1216,"notifications":false,"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","follow_request_sent":false,"url":"http:\/\/zbrock.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue Mar 27 04:43:51 +0000 2007","profile_background_color":"131516","location":"San Francisco, CA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/758971993\/me_square_normal.jpg","listed_count":62,"friends_count":184,"profile_text_color":"333333","name":"Zach Brock","statuses_count":2206,"following":true,"screen_name":"z","id":2404341,"id_str":"2404341","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":40,"profile_link_color":"009999"},"contributors":null,"coordinates":{"type":"Point","coordinates":[-122.40647882,37.78277342]},"in_reply_to_screen_name":null,"id":28439861609,"id_str":"28439861609","text":"Spilled grilled onions on myself. I smell delicious!"},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"created_at":"Fri Oct 22 20:56:41 +0000 2010","in_reply_to_user_id":null,"favorited":true,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Real artists ship.","verified":false,"profile_sidebar_fill_color":"dfe2df","followers_count":7659,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87867d","url":"http:\/\/scifihifi.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/4233628\/849777160_0677d0d6bb.jpg","listed_count":382,"lang":"en","created_at":"Wed Jul 12 23:14:49 +0000 2006","friends_count":696,"profile_background_color":"bababa","location":"NYC","statuses_count":6916,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60308638\/buzz-talking_normal.jpg","show_all_inline_media":false,"favourites_count":3412,"profile_text_color":"000000","name":"Buzz Andersen","contributors_enabled":false,"following":true,"screen_name":"buzz","id":528,"geo_enabled":true,"utc_offset":-18000,"profile_link_color":"474747"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28439188159,"text":"My new doctor in Greenpoint asked if I drink a lot, and when I said \"Yeeeah...\" he just nodded and said \"Good, good.\" Polish doctors rule!"},{"place":null,"geo":null,"favorited":true,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Oct 22 19:06:27 +0000 2010","retweeted":false,"in_reply_to_user_id":null,"user":{"show_all_inline_media":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","favourites_count":217,"description":"Engineer at Twitter. Obsessed with running. In a past life I was a member of the Rails Core team & 37signals.","contributors_enabled":false,"profile_background_color":"9AE4E8","followers_count":279792,"geo_enabled":true,"notifications":false,"profile_background_tile":true,"profile_text_color":"333333","verified":false,"url":"http:\/\/project.ioni.st","follow_request_sent":false,"profile_link_color":"0084B4","lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Apr 02 07:47:28 +0000 2007","location":"San Francisco, CA","profile_sidebar_fill_color":"DDFFCC","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","name":"Marcel Molina","listed_count":803,"following":true,"profile_use_background_image":true,"friends_count":652,"profile_sidebar_border_color":"BDDCAD","screen_name":"noradio","id":3191321,"statuses_count":4636,"utc_offset":-28800},"coordinates":null,"id":28431820230,"truncated":false,"text":"Slowing everything down. Going on more walks. It's always now."},{"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 Oct 21 17:36:18 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":541,"description":"Vector of enthusiasm.","geo_enabled":true,"profile_sidebar_fill_color":"a0b34a","followers_count":49860,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a1b44f","url":"http:\/\/patrickewing.info","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/113507697\/cheerfulchirp_36_12284.jpg","lang":"en","created_at":"Sat Feb 24 18:13:15 +0000 2007","profile_background_color":"b2be63","location":"Sane Francisco","listed_count":298,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/468646545\/cropped_normal.jpg","statuses_count":3193,"profile_text_color":"29230d","name":"Patrick Ewing","show_all_inline_media":true,"following":true,"friends_count":671,"screen_name":"hoverbird","id":792690,"id_str":"792690","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"61351f"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28046477328,"id_str":"28046477328","text":"\"There's no crying in software!\" - @boblord"},{"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":"Wed Oct 20 18:59:22 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":40,"description":"I'm mostly made of water. I was a Pivot. Now I'm a Square.","geo_enabled":true,"profile_sidebar_fill_color":"efefef","followers_count":1216,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/zbrock.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue Mar 27 04:43:51 +0000 2007","profile_background_color":"131516","location":"San Francisco, CA","listed_count":62,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/758971993\/me_square_normal.jpg","statuses_count":2208,"profile_text_color":"333333","name":"Zach Brock","show_all_inline_media":false,"following":true,"friends_count":184,"screen_name":"z","id":2404341,"id_str":"2404341","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27956588864,"id_str":"27956588864","text":"Things I learned about VIM today: L means \"right\"."},{"place":null,"geo":null,"retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"source":"web","contributors":null,"truncated":false,"created_at":"Tue Oct 19 17:15:29 +0000 2010","in_reply_to_screen_name":null,"coordinates":null,"user":{"follow_request_sent":false,"profile_text_color":"000000","description":"Founder of 37signals. Co-author of REWORK. Credo: It's simple until you make it complicated.","notifications":false,"profile_background_tile":true,"profile_link_color":"0099CC","followers_count":41922,"show_all_inline_media":false,"friends_count":81,"profile_sidebar_fill_color":"f6ffd1","url":"http://www.37signals.com","statuses_count":5240,"time_zone":"Central Time (US & Canada)","lang":"en","favourites_count":418,"created_at":"Sun Apr 13 01:31:17 +0000 2008","profile_sidebar_border_color":"fff8ad","profile_image_url":"http://a2.twimg.com/profile_images/585991126/jasonfried-avatar_normal.jpg","location":"Chicago, IL","contributors_enabled":false,"protected":false,"geo_enabled":false,"profile_use_background_image":true,"screen_name":"jasonfried","name":"Jason Fried","listed_count":4014,"following":true,"profile_background_color":"000000","id":14372143,"verified":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/157820538/37sicon1.png","utc_offset":-21600},"retweeted":false,"in_reply_to_user_id":null,"id":27852425811,"text":"Twitter, Facebook, Youtube, etc. are modern day smoke breaks."},{"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":"Mon Oct 18 16:11:41 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","favourites_count":0,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"deddda","followers_count":58,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"deddda","url":"http:\/\/github.com\/laserlemon","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Thu Jun 18 17:59:32 +0000 2009","profile_background_color":"efeeeb","location":"Holland, Michigan","listed_count":4,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/269521476\/Lemon_normal.jpg","statuses_count":379,"profile_text_color":"343330","name":"Steve Richert","show_all_inline_media":true,"following":true,"friends_count":95,"screen_name":"laserlemon","id":48431692,"id_str":"48431692","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"339933"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27748704424,"id_str":"27748704424","text":"Learning HTML5 feels like learning HTML for the first time."},{"place":null,"in_reply_to_screen_name":null,"retweeted":false,"coordinates":null,"geo":null,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"created_at":"Sun Oct 17 20:43:37 +0000 2010","in_reply_to_user_id":null,"user":{"listed_count":304,"follow_request_sent":false,"description":"GitHub, Sinatra, Rack, Rack::Cache, rdiscount, git-sh, shotgun, rack-contrib, date-performance, ...","profile_sidebar_fill_color":"ffffff","time_zone":"Pacific Time (US & Canada)","followers_count":2797,"profile_sidebar_border_color":"000000","show_all_inline_media":false,"friends_count":269,"url":"http://tomayko.com/about","statuses_count":1745,"notifications":true,"profile_use_background_image":false,"lang":"en","favourites_count":273,"created_at":"Fri Oct 05 17:11:28 +0000 2007","profile_background_color":"FFFFFF","profile_image_url":"http://a3.twimg.com/profile_images/555940239/Shades_normal.jpg","location":"San Francisco, California","contributors_enabled":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","protected":false,"geo_enabled":true,"profile_text_color":"000000","screen_name":"rtomayko","name":"Ryan Tomayko","following":true,"profile_background_tile":false,"id":9267332,"verified":false,"utc_offset":-28800,"profile_link_color":"0071c2"},"contributors":null,"id":27670358672,"truncated":false,"text":"Never ever say, \"this shouldn't be hard to do\" in a support request."},{"place":null,"in_reply_to_screen_name":null,"retweeted":false,"coordinates":null,"geo":null,"source":"<a href=\"http://birdhouseapp.com\" rel=\"nofollow\">Birdhouse</a>","retweet_count":null,"favorited":true,"in_reply_to_status_id":null,"created_at":"Sat Oct 16 02:18:08 +0000 2010","in_reply_to_user_id":null,"user":{"show_all_inline_media":true,"listed_count":1163,"friends_count":380,"description":"in repose","statuses_count":6283,"profile_sidebar_fill_color":"C0DFEC","time_zone":"Pacific Time (US & Canada)","favourites_count":79,"contributors_enabled":false,"profile_sidebar_border_color":"a8c7f7","geo_enabled":false,"url":"http://www.randsinrepose.com","notifications":false,"profile_use_background_image":true,"lang":"en","verified":false,"created_at":"Wed Nov 29 19:16:11 +0000 2006","profile_background_color":"022330","profile_image_url":"http://a2.twimg.com/profile_images/78687018/rands-better-05_normal.png","location":"los gatos, ca","follow_request_sent":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","protected":false,"profile_text_color":"333333","screen_name":"rands","name":"rands","following":true,"profile_background_tile":false,"followers_count":15353,"id":30923,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"id":27501285310,"truncated":false,"text":"I know that you trust me when you stop saying thank you."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 16 00:23:26 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":228,"description":"Friends only here. Follow my public self at @joshsusser","geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","followers_count":204,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/blog.hasmanythrough.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme16\/bg.gif","lang":"en","created_at":"Wed Apr 04 22:56:41 +0000 2007","profile_background_color":"9AE4E8","location":"San Francisco, CA, USA","listed_count":34,"profile_background_tile":false,"protected":true,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/588241005\/hasmanyjaundice-tiny_normal.png","statuses_count":4486,"profile_text_color":"333333","name":"Josh Susser","show_all_inline_media":false,"following":true,"friends_count":180,"screen_name":"suss","id":3468841,"id_str":"3468841","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27492203907,"id_str":"27492203907","text":"beverage infrastructure upgrade http:\/\/yfrog.com\/5chyzycj"},{"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":"Fri Oct 15 23:01:52 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":228,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"DBDCDA","followers_count":364,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87BC44","url":"http:\/\/floraflora.tumblr.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2909711\/flowers.jpg","lang":"en","created_at":"Sat Aug 09 20:26:17 +0000 2008","profile_background_color":"9ae4e8","location":"San Francisco","listed_count":9,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/58028483\/Photo_1_normal.jpg","statuses_count":472,"profile_text_color":"3C3B3B","name":"ireneface","show_all_inline_media":false,"following":true,"friends_count":118,"screen_name":"ireneface","id":15792047,"id_str":"15792047","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"147844"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27486151774,"id_str":"27486151774","text":"Prediction: In 2030 our generation will be as embarrassed about our water waste today, as baby boomers are of littering in the 60's"},{"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":"Fri Oct 15 14:11:13 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":1,"description":"curious optimist","geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","followers_count":231,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Jul 21 16:30:41 +0000 2008","profile_background_color":"C0DEED","location":"","listed_count":7,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/644903329\/Gustav_KLIMT_Judith_and_Holofernes_normal.jpg","statuses_count":1421,"profile_text_color":"333333","name":"judy","show_all_inline_media":false,"following":false,"friends_count":227,"screen_name":"judyprays","id":15517107,"id_str":"15517107","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27444504849,"id_str":"27444504849","text":"i love it when typos expose better versions of words. ex: crayz gets the point across much better than crazy."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 12:27:36 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Amsterdam","favourites_count":12034,"description":"I got fired from my previous job, because they said my personality was weird. But that\u2019s okay, I have four more.","contributors_enabled":false,"profile_sidebar_fill_color":"52656e","geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"000000","verified":false,"url":"http://lessrelevantthannews.tumblr.com/","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","lang":"en","created_at":"Fri Aug 27 20:43:04 +0000 2010","profile_background_color":"000000","profile_image_url":"http://a3.twimg.com/profile_images/1137463467/31582_120415217983760_100000458464963_201831_791709_n_normal.jpg","location":"Wherever life takes Visa","profile_background_tile":false,"followers_count":5389,"protected":false,"profile_text_color":"000000","screen_name":"dirtymustache","name":"C.B.M.K.","show_all_inline_media":false,"listed_count":250,"following":true,"friends_count":438,"id":183758055,"statuses_count":292,"utc_offset":3600,"profile_link_color":"79acbf"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27335573442,"retweeted":false,"text":"When the bed is making more noise than the girl, it\u2019s probably time for a change."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Oct 14 05:04:49 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Mountain Time (US & Canada)","favourites_count":1573,"description":"Designed to make you feel like everything is going well. \r\nI am your Perestroika.\r\n","contributors_enabled":false,"profile_sidebar_fill_color":"ffffff","geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","verified":false,"url":"http://kellyoxford.tumblr.com/","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/15026724/Care-O-Meter2.gif","lang":"en","created_at":"Thu Mar 05 03:24:25 +0000 2009","profile_background_color":"ececee","profile_image_url":"http://a3.twimg.com/profile_images/1104534595/kellyoxford21-300x300_normal.png","location":"","profile_background_tile":true,"followers_count":53405,"protected":false,"profile_text_color":"000000","screen_name":"kellyoxford","name":"kelly oxford","show_all_inline_media":false,"listed_count":2476,"following":true,"friends_count":260,"id":22872643,"statuses_count":1095,"utc_offset":-25200,"profile_link_color":"512f78"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27313066151,"retweeted":false,"text":"Until Twitter, life was a regimen of unrequited afterthoughts."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry\u00ae</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 05:02:11 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Just sitting here... Reading your tweets and silently judging you.","profile_sidebar_fill_color":"ffffff","show_all_inline_media":false,"followers_count":5185,"statuses_count":1886,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","friends_count":482,"url":null,"contributors_enabled":false,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/107689757/n.jpg","lang":"en","favourites_count":53075,"created_at":"Tue Jun 16 15:33:28 +0000 2009","profile_background_color":"1a0101","profile_image_url":"http://a2.twimg.com/profile_images/1144601566/hhhhh_normal.jpg","location":"Your mom says hi","profile_background_tile":false,"protected":false,"geo_enabled":false,"profile_text_color":"360000","screen_name":"NikiWithIssues","name":"Niki","listed_count":907,"follow_request_sent":false,"following":true,"id":47652631,"verified":false,"utc_offset":-18000,"profile_link_color":"43b000"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27312920268,"retweeted":false,"text":"I bet my dignity and virginity are having a blast right now."},{"place":null,"coordinates":null,"retweet_count":"100+","geo":null,"favorited":true,"source":"web","in_reply_to_status_id":null,"created_at":"Thu Oct 14 04:01:48 +0000 2010","contributors":null,"in_reply_to_user_id":null,"user":{"statuses_count":2927,"description":"Breaker of Swift Mustache Hairs","profile_use_background_image":true,"favourites_count":2008,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"geo_enabled":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/37369538/IMG_0787.JPG","profile_background_color":"C0DEED","url":null,"verified":false,"notifications":false,"profile_background_tile":false,"follow_request_sent":false,"lang":"en","created_at":"Thu Mar 12 19:09:35 +0000 2009","profile_text_color":"333333","profile_image_url":"http://a0.twimg.com/profile_images/379256380/IMG_0913_normal.JPG","location":"Los Angeles","protected":false,"profile_link_color":"0084B4","followers_count":100637,"screen_name":"thesulk","name":"Alec Sulkin","listed_count":3428,"following":true,"time_zone":"Pacific Time (US & Canada)","id":24008967,"show_all_inline_media":false,"utc_offset":-28800,"friends_count":362,"profile_sidebar_fill_color":"DDEEF6"},"truncated":false,"in_reply_to_screen_name":null,"id":27309253968,"retweeted":false,"text":"Prove that lightning isn't wizards fighting. You can't."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 03:49:20 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"London","favourites_count":951,"description":"Male actress and comedienne.","show_all_inline_media":true,"profile_sidebar_fill_color":"bac4ca","statuses_count":8647,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","contributors_enabled":false,"url":"http://www.peterserafinowicz.com/","notifications":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/8840610/psshow.jpg","friends_count":863,"lang":"en","created_at":"Wed Jan 07 13:19:30 +0000 2009","profile_background_color":"121617","profile_image_url":"http://a0.twimg.com/profile_images/1136683148/Photo_on_2010-10-03_at_13.49__4_normal.jpg","location":"Earth's Core","geo_enabled":false,"profile_background_tile":true,"protected":false,"follow_request_sent":false,"profile_text_color":"000000","screen_name":"serafinowicz","name":"Peter Serafinowicz","listed_count":6606,"following":true,"verified":true,"id":18720595,"utc_offset":0,"profile_link_color":"c9625e","followers_count":436178},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27308384170,"retweeted":false,"text":"Lif is too short."},{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Thu Oct 14 03:30:03 +0000 2010","in_reply_to_user_id":null,"favorited":true,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","favourites_count":233,"description":"Optimist, entrepreneur, and designer. Founded Photojojo (love of my life) & Jelly. I tweet about things that are rad!","geo_enabled":true,"profile_sidebar_fill_color":"F3FBFF","followers_count":5795,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"003599","url":"http:\/\/amitgupta.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/23548650\/3123242665_c9629e57e3_o.jpg","lang":"en","created_at":"Thu Oct 26 15:35:26 +0000 2006","profile_background_color":"9ae4e8","location":"San Francisco, CA","listed_count":560,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112090848\/twitter-amit-by-danbusta-wild-hair_normal.png","statuses_count":4337,"profile_text_color":"000000","name":"Amit superamit Gupta","show_all_inline_media":true,"following":true,"friends_count":382,"screen_name":"superamit","id":10609,"id_str":"10609","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0080EB"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27306957808,"id_str":"27306957808","text":"Reading someone's code is like opening up their head & rummaging through their brain. It's their thoughts laid bare. Nothing else like it."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://getsocialscope.com\" rel=\"nofollow\">SocialScope</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 02:57:44 +0000 2010","in_reply_to_user_id":null,"user":{"time_zone":"Central Time (US & Canada)","favourites_count":65183,"description":"I make the toast of a bread situation.","contributors_enabled":false,"profile_sidebar_fill_color":"e0ff92","geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","verified":false,"url":"http://favstar.fm/users/donni/recent","follow_request_sent":false,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/18626407/sanocap.JPG","lang":"en","created_at":"Wed Apr 11 19:20:18 +0000 2007","profile_background_color":"9ae4e8","profile_image_url":"http://a0.twimg.com/profile_images/840357676/cartoonifypolo_normal.jpg","location":"Chicago/North Side/Albany Park","profile_background_tile":true,"followers_count":3539,"protected":false,"profile_text_color":"000000","screen_name":"donni","name":"donni","show_all_inline_media":false,"listed_count":907,"following":true,"friends_count":604,"id":4230121,"statuses_count":3770,"utc_offset":-21600,"profile_link_color":"0000ff"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27304453658,"retweeted":false,"text":"Prostitutes hate trick-or-treaters."},{"place":null,"coordinates":null,"retweet_count":0,"geo":null,"favorited":true,"source":"<a href=\"http://twitter.com/\" rel=\"nofollow\">Twitter for iPhone</a>","in_reply_to_status_id":null,"created_at":"Thu Oct 14 02:40:19 +0000 2010","in_reply_to_user_id":null,"user":{"geo_enabled":false,"time_zone":"Tehran","description":"President of the Islamic Republic of Iran","profile_sidebar_fill_color":"DDFFCC","verified":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":null,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/4752811/iran_flag.gif","followers_count":16741,"lang":"en","created_at":"Tue Feb 24 00:46:23 +0000 2009","profile_background_color":"9AE4E8","profile_image_url":"http://a1.twimg.com/profile_images/82018909/Mahmoud-Ahmadinejad.jpeg_normal.jpg","location":"Tehran","show_all_inline_media":false,"profile_background_tile":true,"friends_count":91,"protected":false,"statuses_count":438,"profile_text_color":"333333","screen_name":"M_Ahmadinejad","name":"Mahmoud Ahmadinejad","listed_count":667,"following":true,"favourites_count":1,"id":21713519,"contributors_enabled":false,"utc_offset":12600,"profile_link_color":"0084B4"},"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"id":27303063690,"retweeted":false,"text":"While I praise the outcome, I must raise the question of how is it that the Chilean Jew miners knew not to show for work that fateful day?"}]
@@ -0,0 +1 @@
1
+ {"relationship":{"target":{"followed_by":true,"id_str":"14100886","following":false,"screen_name":"pengwynn","id":14100886},"source":{"marked_spam":false,"notifications_enabled":false,"followed_by":false,"want_retweets":true,"id_str":"7505382","blocking":false,"all_replies":false,"following":true,"screen_name":"sferik","id":7505382}}}
@@ -0,0 +1 @@
1
+ {"error":"Forbidden","request":"/1/statuses/update.json"}
@@ -0,0 +1 @@
1
+ [{"id_str":"7505382","name":"Erik Michaels-Ober","screen_name":"sferik","id":7505382,"connections":["none"]},{"id_str":"14100886","name":"Wynn Netherland","screen_name":"pengwynn","id":14100886,"connections":["followed_by"]}]
@@ -0,0 +1 @@
1
+ [47,48431692,1438261,949521,12241752,780561,63846421,12025282,97715094,14100886,110520327,666073,3191321,8285392,80983,15209501,14239131,23828637,74543,158396884,823408,721623,14353952,8033832,68753655,46123040,15866539,186116459,30364057,183749519,2404341,5728652,17293897,16017475,7440462,14328758,15263394,2735631,14990751,102782288,22699508,6707392,10230812,10255262,6238622,224,11620792,687613,9380652,125416024,125144921,14881422,51165048,10273252,15792047,5502392,2049071,67207650,792690,774010,3468841,9980812,14471007,9267332,2379441,13370272,10583402,6253282,8526432,13192,14372143,779112,6834002,14163141,7890522,14561327,12520552,18713,59593,641433,10609,528,30923,1919231,33423,10113122,813286,783214]
@@ -0,0 +1 @@
1
+ {"previous_cursor":0,"next_cursor_str":"1305102810874389703","ids":[14100886,22469930,351223419,291730650,17685116,67393160,54950832,329019512,568798136,19393130,701493,24484407,5643432,15033684,7459,208320390,684473,5749002,64106834,18181691,747015996,549137949,612430213,17538879,746061038,490240801,18334333,27104108,612070076,54639945,486470936,16218312,257695033,743581519,66952346,185013,444844982,484748007,742768794,372433497,523395871,235209136,56750391,740789395,457477855,374907349,605885700,149064338,302361388,2201571,205338690,22044444,17615341,84799051,22909560,19744408,46626238,25086571,421689212,239825015,222879073,7077442,433082487,14584398,591883,92271117,78694550,301516725,16542383,175098203,292973827,16822359,289429737,31162267,56651527,14090883,29587561,28105372,280948394,132215015,19503406,356393795,68013983,519546902,17609279,143010412,8870792,14002722,631614538,594414034,52425611,290215811,17710518,1910791,47319826,8022912,133877954,21535875,26463680,624484756,12465,16950125,286148504,195645259,16856691,94639797,18846312,463158848,50539707,116202974,192208442,77179808,197338605,4094401,341790228,16920832,14871281,211903440,6222002,611879123,297545479,158618187,33958017,18363574,342962903,15432354,161429861,364363287,361393144,15859090,1226651,16891312,9253872,317608274,26019638,16561336,344390851,18920449,23154217,416468910,20878109,16125363,571350359,142719130,14165362,13646432,14840267,778412,64380611,112719618,19663455,191709625,358049893,555075256,19176894,734701622,86422378,30231562,5007261,7778892,730379760,108710233,50254051,321451475,87110124,729750624,33441886,555343950,19737632,635597995,425960518,719179987,1182351,56210150,14652753,167844417,227182178,17849214,385006558,634745631,722227639,246042767,440134497,618452950,92703092,402221021,14308987,714462950,703422504,139435472,718006050,475653142,21992458,73896424,10149152,19485315,405227807,328461558,86406068,474282762,244173178,983011,12448492,73643268,14406779,285667190,275664059,7400312,6645552,14389528,35182139,14909439,14241715,7847762,61703,3596971,213294428,32432942,15161697,12310042,16355060,14257260,625562728,334798967,74663930,41164098,47271207,24087278,18090228,8533632,355170451,17042552,13536982,466354402,14301187,163469443,606251447,95304135,582652513,17462208,16997935,406828659,68973101,15309815,8873952,15820113,16281891,15614100,101082308,9680152,14357531,15194460,218970296,14843333,25359490,812441,21058959,95048218,7356622,14214263,20423004,24119069,9507112,14881485,18008485,5503,12751382,52769684,1386331,9921402,139528134,14227132,40693426,80866415,114285093,14828330,34665617,156621819,3483181,62365929,11563172,120378343,158704968,37765232,14265712,1170151,3181401,193310098,163013046,6252802,4779181,3683671,153861726,15452518,30058399,77999680,29986370,376285015,15178573,706839434,252586361,606443105,259453941,754993,137742633,286937322,22149636,13518,40796404,16576958,47124503,195250687,437982033,18017938,18290483,238951602,232551551,791588,24017331,383250801,11034512,4532191,15815219,14853852,33967138,12606,10692332,72043936,18074342,12581032,1940,18258258,2202971,1829201,11186572,15334749,19797937,17659162,17857187,14610920,253592113,3123671,9899312,15120298,28451256,15404880,14250139,324339971,7726812,6680452,36600616,26200925,16874569,1605021,14428269,185633557,808549,21402758,14999105,11168822,37214449,16028462,11115922,14292201,170440118,34854624,8826252,14914403,122466898,306117941,14929997,14974923,16648152,191698781,14105321,14561625,22666369,26963522,82305761,19299311,537402774,12094852,19635748,13007712,613723061,14996500,37899761,15385356,93233065,12125972,14356584,2819,15103611,7826762,5539522,14455344,14541956,167307584,45943579,16186255,754759,92052795,14408957,166028855,15902801,44816260,16857581,465342559,59674623,90352444,249690078,235793,14564062,14558594,6896262,14520110,53844757,123001429,17890015,55930874,397462324,7206912,18331731,149890734,526049857,8905562,14269090,11595952,123875891,59282163,1523441,20693,43326699,13250122,201238795,68858417,17344769,460048792,17865999,8247872,949101,14201785,13074,9439332,15174127,16493865,14078314,24439133,14659958,17728695,7271272,22779411,6108812,14234353,21456912,14588764,8418562,19107159,102454547,191825309,20352337,14508766,17161763,13463332,502804598,240175785,363965115,236983184,676363,16849854,25643395,7389342,14118902,131323095,14103289,551527763,83420482,19376315,262914828,33829595,133456587,17931657,96436163,105584364,83776725,15487287,15474951,301676221,65231331,15052743,91685967,13896182,495231276,27452424,541943031,596324570,24123755,10447232,253724694,570345963,122906077,635144572,15015937,14768330,153879904,40281235,633881126,479073235,618276507,6598732,14233236,114638448,13695,15424716,296469528,22149119,54645322,10032762,162068844,15243717,30346995,1325281,370494332,278783338,5518042,61362837,30870167,6448962,633291228,140343555,21642655,15173201,16663905,143050463,1117901,37712843,632783583,17974018,3928731,237295842,19990923,53764174,8723242,630258734,15417592,250955932,16186095,16212624,1299231,6997692,24437871,7383382,174728373,16487505,22869120,518712543,169144619,12930362,17345293,14276775,28811439,51560750,14455530,631022136,18214320,14063033,13607,5644342,15878470,196309623,13634322,15729604,50035439,19135993,14335967,681463,598677369,730593,45748626,629793,60404290,10119722,539705648,15568945,14053254,9250782,10950672,12415982,15937178,631824867,3373791,740943,588512226,14862862,1020961,16608706,16036636,71502677,46250388,14988924,537693459,118124040,95991444,10732752,126018308,539115259,23369749,22006660,171638815,14434353,14677766,4672,87568955,15174922,11267242,19879769,17099022,18077435,813564,28744117,46103095,161412839,16611962,130877935,17492958,38497470,157441719,1026631,67779676,30020619,14383775,187743747,14986511,628243296,1411171,6329782,7603702,3029111,67653490,20506172,550216115,81104086,353199587,19387576,4870181,18766184,546992484,498660474,14075485,15399993,4209931,5772982,35506736,84555119,75790555,51010820,268858200,7026632,14452539,9514452,14415242,15772940,571055224,196841165,5771082,56884500,5634972,12250202,25285814,396334866,9845682,15631181,314551274,86890115,203842935,614965298,106299366,563697924,17992482,14198455,18670228,311413927,77009486,9459802,164346498,210893519,21849718,625593564,150884941,51216184,25668151,182535964,66743,4149921,13861042,184707368,68011455,14407063,14760266,18945226,452648470,12251322,625193158,114665985,304977588,352847073,17887728,14612049,86975440,19359257,16322149,14600780,281788102,8312312,17073100,27842281,19775335,2262091,14445341,16509913,118355603,15361974,7910182,211609944,37145868,52417305,18483035,623301125,16318212,487674592,786491,34352961,29646710,6567232,153051767,37718109,1734951,300348488,18632364,191802939,185304913,373849310,16155619,256923560,38664936,9301222,93046391,624516871,76650680,184165955,103542205,86809802,152736238,38627068,7785262,29433076,14139941,22762164,105846489,7696762,15055642,39315658,17348443,73072046,40195327,24986838,313826298,22246967,9848502,220024122,7015442,10122052,18024297,121142586,7852,27920196,7224572,55995317,20521706,1676,14272842,15460296,159111881,34183649,100383,14120354,301664987,7086772,19014562,64269069,154786672,64694199,14724370,21239759,8820152,126025153,12920742,26642869,28130920,19143071,35119553,5988672,356555426,850,16625702,2295221,6815762,17485293,220150080,166138615,14596410,716773,15929542,48395707,7460682,17012066,6278872,12985132,14878510,7603142,260598813,14375294,623153069,397105479,595565122,469708612,518343605,32317477,143062296,14260840,12236142,414540661,621061987,295237671,19608024,467191306,28733664,389744143,26451127,30338558,189596975,10358392,615045826,15183958,583388378,41281154,13238982,64427784,617942320,86568903,15394552,574942765,170663345,47482309,20327140,61236914,22386062,15506081,15806521,19363941,710133,480771906,9056222,550326075,49576387,614978026,5693792,19836861,70959682,192194358,52231747,19393655,221216197,13029622,14073863,124719643,17778317,18123,8091952,15397787,14397139,613771864,313416123,483497091,21406824,1275531,45579132,116923586,491868769,59643725,212629297,13024132,155924064,529490675,14185820,54743,303794082,7174942,182611773,376428836,23257215,234179398,489551478,4975681,15459305,141192660,36386261,14374944,18762823,9388602,58175806,49631370,15822576,9371582,13902852,212847098,237820919,7145962,106292114,17554370,214358209,143328631,46493227,95412100,156056396,206889614,7134522,24228567,19704084,57270852,16482276,6719372,92762919,14140291,45072703,686803,15796383,17026555,17407102,15141419,16026261,491976140,15992648,90916727,13398392,109645790,14239087,18368143,4777951,6333372,14889079,359853655,15970837,68123002,613055120,340222559,312204532,5638382,173084125,10829842,92396712,5738222,14750111,25755389,12424712,16916037,21466057,602348247,50042736,30648853,14735100,600123,10748542,1891271,149986120,787538,3192981,258372242,15013545,285832592,25353058,16602611,163362002,310357887,38703325,14064769,112794851,11175122,17510107,7980092,86369569,113098485,16080060,430874055,10920002,6874862,101532547,66355358,87697934,342369130,58644126,22057403,39956562,18452081,18517370,145600244,14619517,1103961,49655693,35551249,18589938,11331532,22665873,545223469,9646392,39069010,402300146,71194647,298301010,518226822,329418315,14304226,107890282,26015530,18705914,85608393,16716185,16941166,10091542,15481845,13895482,6312822,9363622,25669454,496662722,11788732,290864535,59313,12384312,189162689,14288972,17724030,725553,28459537,14206151,17263158,237957577,551087502,17445959,589220127,26049744,611546188,78509443,18787589,31435721,552083693,610872483,5719692,61222717,252775052,12523492,318015337,16146606,16250976,1133971,14670423,152017881,65395098,213067069,608746324,12226202,239474851,428138518,19027876,18127769,163973739,381133283,16686625,130234997,290788865,237102229,278580629,44968138,601715508,299775502,75895001,14429563,109215637,68345216,139159766,52835669,43454046,14832802,22065324,16308757,15250455,85306881,13852802,14655968,35458109,130302044,457593515,202257320,18967084,150,15878923,2374221,93289383,7649862,14062332,783032,20202314,383362636,75102544,17661950,5926692,29189137,19350673,259404562,533255358,3549571,17272562,10452222,575576347,16665508,47074017,14835545,11559032,1793681,8916672,6136352,26195585,48531231,6614702,599855414,14620798,139007826,160242757,1764931,18431340,5978432,13420,14093286,12462452,465732778,19388307,15094851,599612560,34019853,40006544,10147092,564728705,120713125,599690855,3408881,68474641,11507452,10451552,2323131,137289874,479002942,717233,14668139,38205483,18496432,216326970,15827231,6083342,17429985,8129542,44121323,16716904,582261432,297867276,329820278,276537909,252712425,156082322,253890669,15004019,14239565,533666204,12359712,14194705,33696409,23055056,10403812,53458133,14560830,15575764,13768272,9181642,52393260,64763716,537615515,18232237,220547290,564263720,17226102,14208764,509154764,13561442,18743052,322680892,583686044,581990797,589688063,3576561,7482442,14578859,123176966,17383285,327667908,6746542,9267332,7558032,351017065,53225053,6141442,109916301,61183153,28916192,14576702,1766711,587588847,11662692,74117427,480720693,14192255,7459092,15526814,76681395,14913883,10453902,227798794,14777993,10442112,51111874,9869852,800316,246324611,53043664,14103557,6324102,779169,7141792,15966431,134519438,16145439,13334762,459580044,41456770,66482772,168786885,395411907,666903,19626432,15228412,135615531,14344322,138357823,9191282,105399408,1182631,26900242,4058161,193170290,14563437,14235646,63603,18652102,20848153,728823,27299201,21760924,14327419,53419436,440059260,290246850,439097817,25401953,580874390,16838269,212514227,14581053,23839885,14541613,16406528,34549023,3580251,534331638,15765831,17490009,636743,45857876,295919262,89517808,14194819,14243973,2266131,14678973,139919716,578138419,350732781,6367402,14843354,578208984,21579177,270107535,3525331,17812594,232009049,15715866,20271813,563316408,13209922,9754972,562357504,241762251,14681642,569919555,111104037,15753497,431675674,14579415,12855662,88215805,170686450,22897460,59645837,20395932,17481836,38566075,7567872,563910505,20507434,121324195,15793912,17196411,20461042,3267531,20991499,38204463,52684835,505335854,16345680,214212676,58312263,268859386,20643643,267992324,6154602,45923602,16498291,17734388,14131608,17025041,16623088,107935925,10821682,21726813,560571451,21296526,497105532,4238781,559038632,15847798,60997823,13805862,368749279,17685361,15415662,548710139,16941355,8468232,819356,17809912,17549646,9523302,13584162,19976906,18359862,15733568,14561840,34359673,48489825,15391993,30859978,620683,554927934,14621493,459435848,166033145,19740975,21476632,15674386,19665074,233722377,110465922,55832449,2795171,8697822,17847268,10790722,454113819,15153474,20092786,414381110,27760489,14369199,89791384,142860206,53717698,77448681,91635549,285215642,12413652,194508026,46909515,59183674,553004893,471984271,220533624,218116284,292547436,638623,413376417,29018176,19338475,431890249,823085,137775571,14443412,14156204,548925238,551348530,19887159,425536000,550764311,139336970,169741822,213561766,12495752,509181827,9431062,247979922,12949302,260212736,14049327,15446319,14366006,14734123,198987768,223501902,544510533,16027704,14500363,18645904,542409513,218109618,27503377,14272460,221155994,14675508,8421902,7362232,215742130,146201912,57815889,25326981,75513082,12018352,26562973,88727062,220660909,88268613,797255,39614157,4475521,14540563,369695799,14266175,115739113,38427778,12459132,679103,500264874,24363,148687303,14665131,536267329,319006202,263503,17060123,12454422,406073,11612592,18341911,42690203,14699617,308917387,5612002,289017769,54966507,512918460,23723225,67127485,4379491,21826302,288717522,435072113,51357842,89081091,8675502,16601243,7280862,90256277,13024832,28374202,25170509,14238242,13524992,15493566,127947451,523113007,48474625,500581170,16112367,14555937,72889050,149705221,447895543,519220620,391163114,9134942,485579557,221146875,231570812,38450335,496522196,14343561,129655090,476051074,6701262,14833687,4742911,22379755,8974912,23036343,14381032,113991353,17483215,121225138,513585111,259570889,153433970,25070124,14869810,27832673,7745572,14153719,13669,41222090,754556,226284839,22732851,58987947,373881161,47128593,498629168,1581211,506019487,505838518,189461898,38346305,156414348,250736349,272655302,502972438,14074644,500223604,15495627,500266002,14408610,156252426,22711184,2174821,19554703,15138295,494910216,14377703,784974,14128315,14759843,269254151,8240332,451244271,8493222,28249740,301159418,400468113,114732325,495236071,9994542,349216945,18189992,124556404,14191871,55457473,17445827,44257250,441868893,492092429,10542022,14566614,14587940,16287202,75274608,488601875,247794053,402128752,491249409,14614201,15277447,16741638,12521122,490329570,9807952,150711118,7669762,488355319,18986172,14114392,42795341,7572422,60190433,14698700,14830067,7850532,116831324,16965302,473405345,793830,14939200,484736350,11374142,15132166,267407606,14603746,623223,122085552,17157290,217820869,15456280,86950647,49066105,49907794,14311071,14881876,98454116,24142667,10439452,315657486,6184782,17699224,222641370,6148812,480664560,7711802,25923,251185873,39896108,5483362,16739650,9124762,6202072,5473542,288928548,16631843,15209163,213208424,480439228,450516259,433326118,203442680,1851561,298159697,420021642,479772982,296905314,397207872,18082894,14809014,17936614,87117996,35758847,177561028,21789881,161764091,273447029,235330878,13583972,46453,8340052,49271414,15006466,5746882,18528807,14079986,48182307,476222719,381372711,453478704,476619637,15358412,19900957,149011195,379018435,56745340,16708727,24028441,15877896,12688182,18311572,16063910,17788320,190681215,388300318,23710426,17745070,15161494,472064985,415755957,116046841,472978774,5965462,20898912,472675447,7585552,62404063,9354532,693803,18321543,18306638,470478440,14168924,22942661,403083437,3667221,4807301,465928740,1783541,14189878,90966221,8597112,6936442,32143530,309133281,9906822,344932057,42017863,36319782,160359415,15979784,464187979,102208091,42213,66502718,368787573,14490767,17527047,5645142,128019472,10328212,9924842,26382618,54991971,28896389,26067851,14392250,17770555,51408272,15380567,14059885,820516,126417619,18830149,12498,13263722,16572502,17483049,19393834,14046153,102814369,460240015,457636292,158319624,110209901,956501,301314847,458735554,437282314,457848842,20037265,454811607,6725562,14370798,53149389,15787715,787975,6532,151529598,454556507,17902308,372488391,308203232,10658662,23201859,164060948,453965252,228110474,4852351,18460975,36549354,184554581,449693916,18786379,12053912,12988072,15002760,20322875,6435882,33698820,205802536,55875841,36637154,11037,48978027,13639982,21737036,46825173,66098914,236075664,36874073,446788217,21413658,445805515,47162706,445998602,66682221,45646684,7853172,56813,16089438,10732782,19627341,445443886,445154720,71496187,86278205,84680859,6817252,396064851,14603304,159942040,81435884,13205432,39776713,198587577,22597921,3992041,63665981,46290038,79739009,259187352,126708151,2948471,18913597,11797682,361118907,7181542,14061967,442991975,14781485,93590326,11990012,293835312,50913591,434398785,19135467,14335332,5685152,441053023,787595,7450122,439986429,46225550,20019028,376237610,19988210,20129558,190736469,9453872,59278698,2887911,9441232,18619799,436070827,257853512,15049993,179109663,12941892,242235575,164476525,65803,4904081,380860603,45328746,15160810,182137844,15945094,15137599,288672625,6132,430770570,592313,389875186,17450466,15171530,5521662,23883,289577241,428746847,427551237,241579999,11263572,1942,19543646,22186673,16252675,420916310,30496460,1740381,8816792,20953318,18074812,229151032,355761882,274153708,241388793,134630147,12984402,129386944,410973494,199852855,333670347,121656414,19410526,18888797,18888820,293164060,402481650,256132595,14834872,11752,353999394,89087173,392570110,408372247,29498256,407832269,33614020,18368952,11021292,22604785,365594308,137407004,388850767,69181719,18534120,66347825,18628332,16274883,220297235,83196376,1014851,129146387,103485831,5975622,2130501,30333908,246439453,9162312,210608671,43408144,14958412,360036371,399469173,234707133,118402818,215210784,336435186,43234200,324043004,16490888,38025953,394852398,304929907,9544042,395987484,21590885,63211739,14308964,13958452,396596900,397061385,12084222,281768894,196956888,16144033,112743376,197727823,112855370,26707243,16013168,127120211,390797168,389990816,16486026,360182272,382935054,113428105,20311001,347245104,116510367,267819418,13174782,27837131,376075407,14806075,168498893,372787554,114366914,31453641,59296481,152301745,130523639,38642546,17929983,176199482,15438025,330908327,5822262,242340142,10422512,16093853,24253894,379576408,107301595,18937964,137385974,13835932,64901406,372510178,139055703,15382007,20777617,10067312,9918272,19354734,369213692,386599902,377264588,5405012,16002470,22068466,85868322,169265024,301170669,236945569,294802518,14422391,378049233,39393801,381921223,15257071,385015628,14759785,284462849,148300800,384539272,42215652,14937135,191595713,17630643,14385894,38664505,709693,9513832,7353852,167907451,16866449,25747268,19768706,26975453,106228872,41419791,309550859,237762530,14254518,27370876,17066580,7020942,112863730,18176769,25712510,23583823,115015511,286331108,14060372,382227817,18741491,6893792,331108707,139263008,14897270,14780437,303863490,380826329,202131090,75759890,2367111,39712118,10376392,351081483,15699266,5674912,12757,141464909,123550428,339376369,7601962,7204872,194243321,237874130,12269842,15249560,27117464,53043494,307983,8463542,15685147,14859608,15426865,377847531,14028632,14192421,245830625,40566044,38195336,368880393,9201602,178142082,58955729,31784884,338334935,21591510,72235022,113137819,87548744,302553634,6839602,18498782,80038574,266744588,89397315,255952155,212274431,297258039,9001312,126334380,211273098,11383652,361541301,339334102,14657786,17621464,6161632,14561085,377477488,7291632,13070962,281255998,14143955,372270332,16417044,12260952,78123326,665453,20241241,9592902,374613443,65668285,177128521,68057149,9055142,83880390,45841351,19471882,111394466,208117291,15091696,93760745,271918959,348887262,8289292,14322901,12340982,42170025,19755623,14496981,1237461,18302782,823261,588743,106452800,164016115,376824630,358452368,21128688,158815479,247042599,370877028,324946260,374706473,2060471,374110640,327814351,27901363,17667997,44920406,25938856,271836938,78959794,14812968,14800801,57961091,16642275,7914062,372230603,12974,36690082,370416598,356070177,6425582,151689615,334490735,354246757,371718023,173546372,121582963,14436377,15405448,117468417,156327472,86319065,166037439,14805097,318905992,201289064,5413642,18885359,140620659,368298799,366927057,93384892,120965326,16896046,8731692,224495534,100543417,329854963,13186822,14104570,361871993,28894476,365916707,8501792,15183566,38583165,14741909,155896285,109966028,15185396,14273226,14988794,14211984,361713869,28755207,14883434,280499213,52431998,14578236,304651230,26083904,12551,14980117,311225693,362546869,327275176,14657459,359316374,14596205,26102161,14279370,15266918,315953555,14957733,15178857,19865012,42869089,252830982,14410871,246365164,11808162,243917744,18616806,108171702,107025106,37999479,15240103,17877903,15009280,15530474,29430618,285414994,6778272,756178,15438413,105244029,238635806,142222796,14378414,10718322,6619912,15750066,14108052,20971874,25303945,15829087,33537990,16588293,135046052,357177672,206191442,192175898,158606174,342819244,17711507,355484246,196954033,43948593,4191141,336916394,6708512,19007813,14184671,15233854,14158522,252932427,350983087,11730852,104248798,30513873,14954934,92606521,3948061,15764172,47261157,18454254,15399388,8011012,73381994,14443264,10826632,350274352,324864947,18193234,14281221,11580572,7385202,16478839,18452956,635453,31016228,120263222,278501705,350467754,350465605,12813992,336745962,11762442,348312064,307042898,16224458,338806558,11304432,250918853,15884818,24941535,202191825,219826253,245288743,14518625,140932358,58874557,168909345,46738931,34060726,14558027,71643,46042533,14175129,5526782,125074253,134959841,4656441,16130401,19714857,5427802,199258674,15873865,18055284,88930986,14912941,338210652,21629799,60571609,138598766,275780722,31141011,318842847,18196178,2575641,74122456,62530808,36697741,1890471,78041537,223857350,1979651,302989854,14101900,10820882,336375540,22652562,15148392,20710367,1788591,6796662,115772187,37766414,150868071,17612162,49833,15350011,14682476,15087511,20217800,15396856,7376002,320038766,21343171,128366576,311870721,98339119,41699304,90895234,28797978,16818134,345880361,299901672,90743909,31084556,209671849,227084122,277683694,277694837,81418173,82541017,9388872,331093075,232320329,18164823,12262282,46625927,15564120,17080844,44233,757850,15594074,22327921,120304892,187335303,166064436,213625984,342632831,20746875,287550840,71890012,31555740,291150509,177499375,339844259,52670381,122417383,313507780,16728531,122774756,10951172,342780099,208225332,21532880,14886631,16686241,228869800,235272923,300270355,1145881,2355,6186712,24154850,304692660,1983871,288197508,237456720,3054721,274372926,175644148,158920352,5409922,164445308,890631,286741797,67181923,15376960,14532023,78769300,239062833,10650122,338270627,16649268,342729305,23767195,316107925,237973737,798646,183544857,20189847,284339167,16332970,14291736,20220530,14916426,16257828,15205083,214260145,95258760,9940922,157494059,9662062,828881,4385701,21676189,34706535,3219,79677305,18071480,34610111,14254339,17832756,17535078,65369010,13656342,7346912,14207194,341793392,189247975,127940015,15602092,200919772,243755023,7887132,314311154,307184425,19610730,659643,4414851,15078784,14475079,28379967,17676034,115676452,114523,32123945,37159301,38343847,100454822,176431275,85328318,307146400,13252932,44032474,145297443,9337082,76727855,173800751,13975672,14924400,23047592,6472722,9110192,114679212,6712192,17324222,10777642,784352,12707,96914034,22722029,17876319,46313415,28002304,34121620,232343251,188926430,14364363,24477798,16041671,21545799,7849852,14572180,61743315,14889410,239437254,739533,113428070,52498333,14239940,9134292,26752121,276896107,6264782,304481716,122474129,24360166,9482332,122701120,16541729,13977542,11575282,163154707,19600189,186045022,35053,37173693,7785002,11162272,85867223,6883162,148073281,255184646,12659232,157003429,14067859,245732731,16437175,137398695,16245980,84583313,8190342,15532113,15264621,834691,23825799,37713,223840453,26639826,207100150,337578690,37342014,338433779,335366272,97193398,19723552,14820062,6876112,14086764,237862972,232294598,337425226,12664822,15321845,54709713,965431,68424432,306034016,28145318,14609106,12372002,42875607,314449910,277589457,180830139,9181292,333929897,6479892,14464965,284665665,14191172,9260992,172376045,6453492,53595257,13015972,205298876,218883360,14410420,309834137,184625315,299873696,47964684,3629961,320746269,143512502,177231434,22883721,175469539,16827849,327478804,133387135,162173507,45891932,8786182,5684372,5456222,158797209,14666612,14153451,168743271,334819661,142086310,193656882,14800547,15193260,12775632,28100876,331720233,21212995,221902776,112476364,81625928,43596506,213402791,214491646,192335761,46373173,20806452,9152632,15294983,3548161,6543022,18501977,43671828,7213672,127268762,12483732,39805956,3715081,16027521,55399329,39057894,118669340,15109924,283663394,15045587,14766954,68983340,269565356,808485,38812659,28516524,14098865,36378579,10832352,852981,289017862,12447,10634232,79574852,9478792,15939903,21149947,24202129,8374852,15428394,15784609,70873,14436516,9823452,97029767,15924258,1348381,14157397,22016434,17340477,17181310,12409352,15733009,180861395,18400838,191259899,24753847,258924364,312869896,305604522,74932649,29617496,100807634,16001208,18351422,330540280,15082951,14133001,36380972,78618115,301774544,14178318,297022865,17746150,3337901,57095046,9861002,228317729,11379342,32646710,13243882,14186105,43220600,42952535,21108221,32672201,255788054,33958650,61563976,312438318,2723051,320309692,16722173,15276029,321725468,321088871,20983331,279382976,6611772,103268768,26595855,14307090,14102420,294110600,125261591,15509747,102698374,11456642,3013231,14239125,47315535,7759332,17818579,96278424,16068792,6291112,15012484,11381522,320962381,271844949,14096156,320294368,193643514,250551705,53129817,22103472,190344721,79152778,15075911,17542527,15927064,15107495,25891747,307746237,319469315,37759047,314131809,20783210,316564180,126227514,299384389,12725002,91139068,244781012,14470958,133775489,14453516,17100255,316413447,14217220,206415387,5022961,615403,16231762,43171436,313445339,1198071,53275197,306997767,147304534,234096099,14961629,16449646,310386050,24742650,17257535,16983433,799302,19119879,276580037,15495466,7509752,5743852,196053741,21295041,14392000,62239670,18035728,291687374,303945252,12276192,5644892,272149153,49923,260444944,235251890,298212758,15394959,15231082,259622086,15833737,6167722,257918437,14070634,14285024,150590340,23295031,15658725,302248377,20902424,83944727,217893658,701993,854351,710683,15023803,22099031,188497147,15399415,178492493,9468292,14350255,301251108,295204175,35646800,201789953,108799541,194520782,180178045,7805482,11858632,14451692,14149756,123560694,15451919,256093789,300235412,234267439,756655,2006261,51231982,278907843,227046773,80523,14164532,169815336,15488418,298635388,42870568,298167931,6515762,14769689,17470867,856911,14843239,18124911,14847041,28362853,16090919,641043,15358622,41348506,14443814,15076860,1519051,14407919,66570380,379983,86962573,795228,15010172,25563983,693273,5906642,18568711,14416982,279295325,16149688,18338738,95093861,873901,9859562,755362,12185182,40199900,17137749,17470236,14332945,18680848,290403272,16049952,247152703,21068888,16629293,185684821,40925661,14271399,15980554,219909489,240132199,14445272,14250889,263369318,288769105,39916196,26372406,2897551,18296037,9129462,288094393,238257944,208151443,103888318,12276902,7131752,17368293,204710478,81525784,134128131,55854375,12293422,11946,14116380,6300492,142340640,188906158,21230460,14311703,84598874,16711403,18000296,14497804,15901414,15926485,63533129,226762764,14160600,13386252,26137038,16450691,222199334,39022146,29191099,2703041,9242282,8143532,22574824,125846549,180932638,67581857,252276617,14342226,21734113,122042853,17035183,25389594,14964620,14164787,273694257,1461561,259693511,27776492,19539314,17291928,19600225,281609027,192975583,17522985,260783796,277194233,282889930,116166402,799316,820915,7192292,146883,58435435,13608812,196782695,15015056,19273120,6253902,9623662,201686928,14144985,93248833,18402556,18496288,17138032,17869035,2543261,152773076,19396319,9068522,14214888,84627690,147622897,14234448,6707392,279691403,15533725,193006975,6348222,243360038,8946242,10290422,14337341,1141211,43764707,6142972,277381623,88602172,217497345,14950972,18061835,5757842,33514606,22552816,39564619,7555192,278094374,2344541,25757551,65377515,277824911,14899320,15455258,13886402,5922952,15684424,275019065,50312003,228252180,162210587,206364738,253038524,876081,36512004,15023,1658511,16863751,14477257,24914741,14490962,16346086,14078677,271413399,17971457,14203549,8000842,183734454,14245496,16573763,20501597,6151842,9252942,24654040,55986507,44089980,153285489,16082161,30242113,272983672,46664726,16649149,18776291,6545622,7407422,33493,9063262,14716054,23446019,34585866,229299631,1723451,19802038,77271513,11274722,84884325,3748631,18907949,266707608,141486005,16143712,14181790,242564359,202236256,267853848,26277898,266499771,14221193,15810776,6878312,16499362,11872182,17510060,9468622,14342727,230284663,22147498,15152796,211161635,28928969,199116758,22697165,17938747,14588260,12576412,156348215,71611144,14156872,264475500,205064989,115646391,14091360,20738326,7354452,655223,260404341,36830655,15055821,9664212,9924582,38433502,14099017,262630450,15099826,20328794,8092472,99610083,26010137,42042508,4443501,12742912,14727085,15612914,6823692,14764455,14476883,39547992,196649544,134632906,207495308,12466012,257533450,15250000,253735869,568093,125809736,253683824,253747084,32629751,19598732,19439102,20163609,13253662,252382489,252481460,1161411,20700182,25936610,1024401,14219899,253716975,23459695,251270187,251868401,254151732,12846112,12297172,252388551,253675114,253763836,253757709,6599972,253777181,251872817,51793,14126701,252347718,251854131,35692631,253709376,253801765,253797599,253753646,252376387,183813,253737827,253769182,252391524,253806702,129008348,16947927,253696681,253699808,254151847,254220684,252405956,252391809,253693001,251265553,253763116,246974017,29310770,11132772,1797321,22990423,212817179,7479852,203707983,8951892,9459332,91934904,8655442,8201182,249889486,624003,145308142,37914915,29466878,10179222,14681118,14442542,158974596,18176421,193820746,20655034,250667404,92188821,29933386,17072903,809101,23414647,15648782,11177592,14764840,13321042,4957541,34722763,225693315,244148591,14851072,7810112,14863662,15395778,140826115,247048447,1306591,136922267,85527385,20995077,96166515,14956390,17100644,14442415,17958786,5981702,167357979,15446520,106131887,10171272,7214352,16681632,11287222,19602720,9885102,9070452,14156693,968571,184040491,15995221,14385735,20438689,15948578,17713078,5243,236051326,14238010,93986627,97602509,16601619,71038141,169001007,1272911,12175112,20517980,4774641,58526829,10256282,19817187,38714964,244365612,53069803,19590078,207740762,14276985,7189982,17703277,781730,14853871,14675249,8841032,47532113,794220,32633517,96602314,15840926,14081715,237108668,14403212,5972272,127820135,14950281,42603319,157837748,16867574,6508612,15739653,1457981,9774982,15830824,59908389,18030041,4309311,33501564,27193241,9321552,240751001,12235252,823725,13068662,14509420,238860424,19547434,9700282,72573,16993268,718743,240183033,12682152,14927869,240823733,17350239,13696102,14955588,14941975,47664971,29237038,8789102,9583982,38654813,1015971,21132256,20129803,6796242,18689758,237426508,228196831,145462622,14569541,10261832,213100190,16679687,43580287,84730073,33212274,29709811,223348431,232490198,16927054,29738015,105915518,34773,41842768,235862332,10580512,45795135,84605391,20249507,234063832,7696262,135720425,7447822,172519422,38353,14712598,52567618,13678852,12997852,9162442,29001802,135657657,333093,26374438,40300512,14894598,131563781,1032261,15113820,78282607,163265306,21257545,60543356,14411655,798201,95938827,14506011,228512125,104817505,33598678,211708446,78541627,109034499,14801632,23725964,17067367,114527088,29387127,203135911,18902468,108926107,214759542,181344408,30030802,54297261,62625073,17860868,210267783,14341232,11607912,221819185,21110415,185428703,14237099,52355416,9561312,17602808,73923,18222267,198744696,18234085,146248878,35703649,14137255,14613527,15651834,14142540,191183991,22446676,97339387,14805765,165947179,49000882,12686592,21773691,209380936,16503403,196289857,209162001,123773785,15838969,15838112,28831550,7461802,15753185,16612298,212985443,785416,66839371,213747670,212978066,18343779,14810774,212454470,211788049,150569754,14396814,25562180,144333836,16143891,14352456,17149910,12628512,211504857,155661188,12490012,211427852,766652,83433115,7329352,15102110,185967003,7204302,1896331,14308739,16468695,87761704,11980372,6168862,97881071,169082573,639533,8882,981101,44078594,17504672,182560824,23049623,2266961,11502142,7968642,180453277,25321582,61996126,25868061,114568140,36975453,83656721,98988660,202891054,202375586,4618,13512272,56292179,1572601,137740103,6085312,14855617,104574796,16125438,627103,18598615,100789813,12597442,17145540,7727232,14565733,41290521,101053062,91568674,48431692,16960842,792546,192955325,14836340,17067090,15403290,21396527,19951737,154367942,9429332,15947814,16382667,18995701,8617122,5379862,13520372,3034651,13867602,198687644,22045237,14837332,52332475,18993161,28940678,43142622,1465521,5381582,17363843,46679713,16401507,14149919,18344890,14084211,14552409,86730464,191219579,21676258,1379551,945631,20117563,57584149,15315808,8866232,6566892,23821938,14579668,143638554,15687937,192492245,10686942,77998115,32494110,7668982,12766002,15056587,11616992,14235445,18672097,195205143,4216361,55551763,193985099,80372904,194656653,16344582,15863607,194515248,121441155,108105235,44402717,9018412,5306922,18394633,50715651,14070563,185300550,16694381,6121912,9947032,15882755,14114222,4413501,9305392,97403872,23651104,193859278,122198286,134180976,18958056,14617796,14686306,183384772,172889242,6889872,39024044,14398743,62101945,22163755,15663098,15905606,27134986,12493822,13581,14383576,40456367,2045611,18556496,12048422,164797735,14509931,8611832,11827472,19460286,16693149,808486,17714474,7209192,9529312,192399518,43697022,15035463,688833,16139193,14839862,60130618,14412771,19359463,4128391,5560072,14101330,1714531,9118832,10248172,14656163,14314555,163628725,117215462,185328220,15760509,17880018,11099372,15998792,14684177,749853,187540884,9237312,10936,14850199,8625502,7598572,16006220,5660222,30866730,20240694,15317640,178097026,8620452,688143,17261725,44630269,12374532,16522388,7137322,13027572,70737557,4670021,14482753,86833735,15946024,9721652,15960933,17060327,100632457,9940692,32534577,5573992,8203292,14553123,179263531,12332042,71940311,86742184,6450522,5692572,18451265,48205132,20091853,16144757,14780046,1073931,35026109,7220512,14053878,16829234,35432643,43363,16258699,170761717,19567986,10394692,136009707,37027131,17843244,14113684,14147875,15614971,68504670,24522834,10025682,174191945,123280507,16545672,7870892,23156753,35803,14858950,10435622,8334402,33043,1969991,11645552,6648982,84357304,153949311,21680712,15540222,47459584,4200861,18483181,172411668,56214804,11157392,780561,128224123,605643,22129111,22634178,116400518,116114948,168804508,59501202,12876252,162998273,160868995,69215640,51696421,29255412,86736512,167217438,15662533,144894853,14792320,42268143,71602460,14519514,46895955,14094468,88480349,17827085,941621,163483553,1643641,162781360,14746604,23576885,15868801,54462655,7010972,10784462,148922824,6414952,92675300,17070601,16174623,13811802,139534315,29157843,29879406,16881073,117439690,106725829,114568797,13360502,156387446,101643457,119555630,14072093,6999342,14960700,13107982,108008728,131935600,150259450,15111636,129878677,6088202,34688124,21166044,19684295,19246740,15581141,132941389,9064182,14299641,14937018,67916149,16370323,64873,147867042,29170474,118105101,84394640,6977272,147233458,15210104,146800437,19235204,87535414,59875617,135289819,140694784,44874599,15001217,138548589,17680121,55017690,80065832,13422802,12190382,64218381,116585926,791224,13028022,642713,5905182,661473,10687942,5812072,16662025,18807589,23062047,15605409,982641,654163,14099654,137910625,23621187,37413227,78208738,10718,134541208,4571321,131570201,135824899,16000371,12617172,16040276,14119955,133682754,3382,21659122,19709540,123987813,132953966,9890982,1313,14304343,134554625,118051058,14586723,3986101,16477376,17368301,131370441,16388989,16689117,39074982,95906453,12497492,26161630,94524331,13325382,16133776,5265501,14111858,641903,14628988,3576061,27152695,14223434,10458132,12879202,662433,15173499,14621496,22124761,35567088,22532497,122482382,22694032,3739041,7233112,15652424,6890312,8118532,616673,3533231,17109422,6633812,122292436,118390218,6957642,5517,685533,84676015,9723312,23186482,123874259,14318086,15908145,14052424,90286855,8739282,20911719,1535551,14412902,68325652,9380652,15389148,17830040,9100012,10179552,50478950,5735682,15360095,76993,6091212,17025293,4546681,30104425,118205249,14941813,12117172,10826192,16936303,13268042,25673,126342026,618223,38592307,8812692,12617962,6151392,14060922,9599342,1364461,15753,7335802,11171152,15591045,14104108,34206516,15786138,1152331,33863158,31609827,3577241,126033912,61221075,38477048,121832883,21661577,43702473,14065302,10328382,21963051,87069555,17214590,47356108,12553702,86119085,16363975,70665853,8775732,17034483,983501,6330782,122151657,2502591,17632490,37999709,8076192,2668571,778010,11519042,116283868,24847444,5966172,41860089,16395690,683213,14576439,10256582,20941662,102696288,18655004,5504192,3361221,14453256,31570571,123282208,8906,14879931,31787973,15181035,120576157,44028742,14501089,102140427,8494682,123446064,108759583,23022687,15756383,10855,7693092,33181186,120128889,14525741,37799082,14825303,15748351,9435592,14019432,364,71051839,13903742,116089829,6868972,18450439,12953262,788947,18244122,1684831,26774573,8826912,14654706,15182629,794233,16626767,36309399,635353,7503482,14840683,120815541,120584814,19258798,19291404,21226628,14776451,14470037,6967822,13545,91333167,6599242,14720516,370903,31378831,18311122,13964832,865331,15814036,637763,1178441,6221832,697893,118572423,14775040,80505940,37442018,814580,16974384,14328042,15463446,61746468,15407324,78045796,75533,18390688,815246,22381014,58983,51855627,822438,9641152,92162698,635793,6132062,16188278,11528912,14658472,32445507,14326147,65193,15757218,892371,114677943,19661139,15108584,969631,16713945,78365863,20069980,1009941,6422982,32963109,13105352,15836656,9013972,1438261,613,14187984,774060,31351095,110032451,17019188,15031577,110909322,638773,14846554,7271932,13079522,6134412,110643493,109223049,11693,32436065,14394722,91309649,8104142,6509982,8521042,37028323,13444162,15003,15255729,19958527,61123601,15447545,110027552,16708108,14412699,15608533,4514261,15373276,102831047,14551448,13265952,15442621,788245,959541,43417156,21336288,36602046,108922660,6623882,12233622,23002858,14793506,5656192,104546476,14699307,56255734,14063149,1830861,18904265,97829848,96920264,723873,94116314,12086072,1265,105408473,9711282,105787486,100207738,17623942,13165972,16815376,29028264,80686105,15435035,27961877,12412662,39539297,1761301,101305696,14715542,51077652,14701839,96545794,3094201,20674838,42770442,39437055,27316684,16015621,100173214,11575762,44409066,17032014,16828706,18682473,55192096,10326,18075345,65167280,89526469,88879721,58073521,41367536,16678479,78789634,14403474,4364161,16052552,16838219,12403602,10930422,21822987,96765986,4080231,12653,14284035,94950496,91910287,17471062,689983,14587814,21418476,9704632,38507787,14078518,25068849,15294963,15134307,17985670,18907317,14991445,352553,15951542,65863495,16985899,94449192,12357582,83230069,14078808,28165440,14872146,9662352,809641,14516463,22498966,3382151,40381496,3141991,819797,14369894,6154832,35669998,26388811,14514764,7002322,91614007,19916638,67611378,30147692,91182052,14716058,91420634,3842901,7763642,15068402,14791907,41111695,16388869,14225666,15833270,5877062,14256250,14542025,37592016,28181781,8033832,31131751,76451562,4579921,12025282,58674674,12973272,12543,14193388,82094262,52657073,14192589,17204638,42618750,19857364,6525412,2608911,8023892,3788001,762062,20561478,14962426,105083,8559822,9888552,19644359,87241186,15358399,24731492,16221163,867511,76464230,1464261,19352408,99723,75908898,82659541,82077116,81181754,62047070,80524444,19360284,49944617,40273280,14893666,15847711,2768241,34900579,16738952,20519607,881531,85837192,85794043,13803562,85504465,81754997,82433343,23236896,81662360,24230184,79300393,83567097,13412,24828860,80169565,19579595,82990813,60089144,80439707,82544381,82542535,54430890,44980201,18164508,81633294,45191731,60821896,82016365,75626644,16311141,75404902,23216888,80634361,81177374,80713231,80612347,81186874,16918535,31936850,14970562,57429525,12078532,79298747,5715642,52302952,79832301,66142014,7171042,7957502,76634855,69168677,78926026,8740322,38802768,74849450,19978580,73220341,15504121,77489234,77429542,18910144,45699367,17601064,37970768,75330837,75598643,76676889,42433469,76519220,7713202,76469044,70851841,73461985,73137163,75733908,75733368,75961440,75732944,75732304,75731838,75731393,75730908,12044602,75712368,41731143,75241612,19316312,75461729,64357212,74792668,39939866,75112059,25819155,45204027,74816684,24235541,59424047,71747199,19220217,45462411,57014190,19267955,74271280,39219621,40824893,64389225,73456356,73968025,72153126,71130113,16120419,18773254,70459707,8763412,14218205,73144095,50293266,71892390,15621601,39734864,73091960,45900040,14574514,72808413,72803157,72808405,72801122,14261168,18603253,14682500,72165412,16833640,13029762,19238037,9885222,17672522,70754954,14324559,71406556,70596949,5284122,14945269,62342974,11998102,2633481,78673,7853992,51109416,64960831,14234902,10016382,52068686,14948949,16417971,15936194,21765497,68639766,51924910,65284281,49585988,17502242,15175423,24597850,17469985,14196129,15158352,2060631,56493406,14109658,12599,59035528,6140912,3588561,18195760,56578870,8126672,61846846,23238803,65927991,768288,55537546,17932034,14083889,56512255,16357478,64662188,64612556,51309626,47403972,16729059,37455827,19266975,25732321,22076901,17747967,63486419,16612560,62907371,23166140,29187812,44525289,7439692,62054489,19280176,18061330,22513382,61558818,14062315,59089507,33099810,40673524,9002642,17235086,19137343,50068324,51201055,15721717,54864916,60604938,27319529,30157367,59994762,33685429,28803740,48336297,16403935,54230879,34639715,18178286,57096560,23128953,15412614,16996634,19361772,27677991,52433353,59390161,15974775,21773626,18431301,12928552,22781312,11976452,33529398,23353404,19753506,24231856,41445962,9793782,14081708,17119815,50304652,17530662,14115895,28313818,14854532,47369385,58941505,18690592,54328380,14554287,44714345,58685659,40051256,55023824,32648319,14754460,41566460,38103732,8856862,14334881,3614401,16705066,47189198,19381698,21450142,18277499,17802972,34446143,52692543,18843291,21719039,14744647,22955009,21281497,7590752,28135535,20856027,24781118,45896341,11914242,14598649,57336456,16847270,19007817,15409072,18593328,47144311,2355631,17938209,15226968,56875252,14117658,14303620,9436992,14654056,16239185,8261382,19028095,756344,16665918,1424471,756646,53061036,55891392,51050907,54846015,37795526,14113526,22214465,51491124,19042496,22687598,17339745,17607239,41152839,54688612,15564343,50753490,14976464,18243663,17269935,40432703,19449236,31629307,48207293,49405322,53084307,28686667,15765062,16408018,15049255,20600991,18344519,51413161,23448225,46112719,49144569,43962772,49052567,20002841,18471982,42978771,38797367,14221645,49162831,22173676,19466252,48784266,7175012,19087062,30999232,49914962,36803492,49141381,28425255,40957150,49858301,689273,49587766,8880632,48769992,22026894,12651372,48712154,15419833,49106184,10105882,49007157,45414861,20647833,1964671,42162514,16405243,21601574,3193471,15568612,44169800,1361911,48508262,7748042,21178276,5741832,10312392,16615416,6885202,48367473,19293341,14368471,15132434,14426365,17816358,41361309,47616609,15162143,14210347,25543985,3113231,6528792,18822696,14129461,12468532,39764910,47570685,18176680,15181500,14380060,26819542,45065227,22144306,19002021,11296922,16199673,15054951,45898344,15843471,19082904,14828773,14082663,46398928,33606362,44445879,14440333,14803154,46833771,37662858,7171972,45056352,23878036,23472113,19039055,3640581,31260482,37023,19317991,15433939,14336828,15241724,25701031,6269802,45364602,4270261,45661267,15397526,22762514,14458280,1754241,5933482,19414916],"previous_cursor_str":"0","next_cursor":1305102810874389703}
@@ -0,0 +1 @@
1
+ {"previous_cursor":-1305101990888327757,"next_cursor_str":"0","ids":[20009713,23621851,14509199,34113917,46009425,14213563,16860796,44375371,14270494,17151609,15147519,17352388,45523384,27123829,14726450,34540298,22132860,44425795,28983323,43173864,14692528,40331955,7221352,10715872,15083358,27490742,8628172,9931462,7753992,11700172,13064752,44125567,44390468,10293122,40622606,40620387,816166,12981172,10307212,18630206,16161672,6486552,21287624,22849350,42233617,8914,17659719,39078373,14178681,19833105,30164179,26097408,40759535,42114824,19661094,41409768,16467040,25431710,26590279,14582075,24584069,20162454,23033582,6144052,12480172,40461227,5644142,29584530,33044111,4243,25240991,16593287,39043477,12441712,6745812,15378358,14331281,35569718,14989175,19461796,38357782,26430264,19286059,38658437,23924401,19769305,21355783,816612,18665164,38482349,14479695,24053475,30694331,14394112,36788983,14486263,36775002,30433672,36984066,23899781,38794200,1623,14935192,17507985,16557936,1566201,5517522,15700362,5795012,37521114,7524442,11590,14701791,18436296,37630248,18237764,6147222,13130412,37429637,12777302,38228226,946471,9907312,70953,32545982,22202166,15644361,25463806,35953,9980812,33855474,19757068,19186982,17915624,18927603,34985053,6114732,82363,35821109,13118252,16783527,14118149,24572641,14328192,5815992,8610562,14101882,16115338,7267742,1011261,21605705,28058383,6618012,14464510,13604142,24173262,5666142,22776663,16997374,6897732,24425454,12164202,1333081,34007651,34562629,32455401,14301221,20131183,14989787,20879578,22046389,14127807,14143421,14246143,8275402,746743,11551482,36731700,10400102,35835799,14475886,21917950,15661031,14126778,13931352,15572516,36331453,27478163,29965883,18577567,16246192,14800339,17104441,16987758,16100431,19134551,16130949,20902957,1294621,35530826,35857708,23322767,5906542,13643732,16993684,20310864,34398987,18945415,34599558,20369873,15684121,15941004,19603499,17275108,35033596,15151807,26488247,34799968,31415899,25249151,15752142,19506770,16619902,1485431,16075354,23277545,10803502,20847786,23372855,1503071,26701160,11964902,33113199,21213437,29823212,15237920,14147680,7212272,15332589,16492462,6152112,993331,28688647,33643591,33587124,5760732,15612960,18940574,10247222,24380912,19025233,13272072,15022241,18859100,33097847,32041900,31165493,14633814,16554059,8197562,14701473,22824562,24753990,14605495,17767644,22501273,14793171,20773696,19881382,24790223,6508722,5449422,14748680,17987039,28176898,25618053,18990861,17829574,15022895,22640618,15479835,25468321,14542767,5551752,16746457,30935758,23245206,10117892,14122577,15606388,12986052,30327006,18981198,30857286,15539347,22432303,24449950,14726594,6138042,17532309,16549129,21783147,22199928,24337514,30255669,9336642,17970968,16995831,15923445,6164712,3791401,25660475,19320827,21059384,15086185,18434849,27664264,30383644,25122917,28412904,26855072,28604756,774234,19541886,15976584,1652061,23624201,25784035,17786078,18187527,20701384,24412216,30024632,27735210,18804771,15945457,15417432,12387772,21918148,18079697,14562259,16344576,20601108,13157072,7557612,16038571,19311676,17302101,14457722,17543145,16387420,29462028,21540703,15815339,18212369,25789084,17349603,22328258,12661,16174902,28006457,17811921,52593,24035144,5538522,12049142,1261161,14670993,768046,21310473,5777902,2847471,15127864,17067240,22303418,8675322,6477492,15975049,8740302,25238209,20847149,17991183,23900202,26128606,26117425,22259719,18428400,7766772,8332382,14196921,20552489,17393013,16862018,14516972,20573490,18908187,28113481,11864452,12333902,15506002,18340324,12095912,15345111,14213103,16941596,17541865,23046157,5695942,14645869,17813187,20299911,1259861,18940985,16481323,10286,16341831,14352376,7131912,9573202,9966122,7997612,18096834,15794195,645693,18639249,18891726,6111212,15777123,1073271,19877930,5576742,15668072,14595846,28258102,14966703,17910599,19104156,23667572,24701294,14120648,16051808,17800293,23723340,10295842,17934084,20485057,6715402,27500004,15199325,15250836,24951974,14415928,8124952,19771577,14736220,15931258,10413552,16093333,18456014,16116251,18539631,17830624,19312710,2347691,17495624,14604722,14726357,14148091,26449762,14221735,24329646,9214242,26174646,24403391,25983399,19912352,297423,18585360,21432664,14264323,16061710,25618407,11623852,5328352,17010913,20420322,17352686,17909107,2053181,6867422,24990180,20490645,15856366,14307582,7901202,1734381,14258434,1920941,23279212,24693623,24206411,14119960,12368532,872711,23511127,16841184,14804571,18631703,14095083,305853,14374075,18986865,14170535,13934902,9548262,22332826,14920994,13361822,815233,15185380,22286046,15075182,16987118,23561485,19737494,18727004,18693598,14998161,14660636,17632854,15891030,17922476,19259282,18932164,14874772,9686352,6297842,18946409,16824201,19473742,21062351,20505798,10942322,13839892,22400526,880,19307762,18390673,16385861,752193,21524655,713263,724493,14410169,18146109,5700242,14268544,12243992,14115608,813512,14669398,15534028,15746084,813198,21925497,14193132,18921376,19163684,5676102,5502392,13915552,1523901,19749442,21822796,19547405,4025811,16438594,6345962,16288332,20521987,15694286,20092638,18758973,1812341,874,18038678,4267931,18033114,15611876,21104240,21035849,16035749,8633122,5540992,14550267,15613757,21416431,20097342,18215460,19851346,14072222,16674837,8725052,16528978,19711609,14667222,10667662,17618799,16690982,19739126,15049040,14434748,14149271,661703,17979132,16310442,12982472,15268247,71323,20826783,9376412,14314572,16553230,15909778,14060523,18625004,18713667,18451400,5768872,19565929,15843791,14173692,15945604,18051375,17685196,15724505,18250327,16876339,15167134,18867067,20566009,19140083,19581787,18142375,18035142,19556561,6841612,15105269,14334898,20215874,5417132,19888698,15783111,13322212,5210841,17544805,14430060,616173,15991049,12820422,16264702,17009637,16899075,17868497,6782762,13939212,18891923,9508922,13976432,14311823,14624513,19504433,15756049,17139736,18016189,19779154,15504091,17800215,16893494,16173056,16449742,17447650,17089054,14908912,15631747,19462519,14363723,14557339,7219042,18276100,15949816,16032684,5790402,14455548,15829920,17007645,620863,3128101,18558029,18767697,14186439,17630279,14930128,7905122,13218102,6273552,15804503,17242874,6449282,19004266,14224719,15131310,18590391,18350514,17477349,18071434,18970455,15664760,18456416,16124241,18339150,14621598,18761352,17193201,17189654,18358765,15481585,17419869,14343564,17937528,3364,18665948,10908272,15116570,15377515,17622723,11855222,8542882,17591223,14081272,18087450,18579933,18351093,3308171,14306908,15230663,18379357,11071702,15448801,18518686,11340502,18326881,18276723,17310970,15751056,5357812,15161938,17456747,17023154,15394954,6830022,14707949,16103335,14803701,17407828,18169304,17601922,16692771,17243750,17218135,10615232,16539573,17299744,18192243,14800273,18364417,18059559,9153332,15593007,7429102,14604658,17841142,8453452,18176511,16953422,17926619,1363181,18020635,12646442,17738852,17122356,15239437,16494101,18222732,17918869,18141974,18165865,12726012,14361626,17486676,18108403,16653851,17907968,7752402,13673392,14203569,11843312,17037940,16457081,11993412,17996963,17331231,18166778,15753937,16751368,15741724,1101921,18166164,17072217,17850012,10260532,18128281,17093617,14520944,17856218,1002351,17095918,17995774,14110432,14815260,14190551,774909,10376152,5737542,17924945,796409,18063698,17291725,9643452,14228300,17922886,7617722,17192613,14401607,16420912,18012461,15996400,17993906,661253,17315407,17551089,15702490,6975262,17634834,15501073,17640120,16636824,17942260,14370639,15680684,17399741,16340301,16960896,14415941,17938657,6246412,14749294,16054649,17685359,898491,15648361,14190278,17360977,10168082,8349572,17926920,4371691,15601720,17949986,7040932,6242932,8965052,17598293,1409471,835261,16955717,17877399,14212434,16976960,14904437,13002092,16578133,9270712,9462972,14425248,15110706,17782142,5117751,10638482,14205289,17740582,3416,14713941,7742242,17545909,13831362,1589691,10089142,17621118,15899802,15032701,11922692,588073,17610490,11623272,728173,9695352,12621452,12672352,10286072,11445942,14410753,14925463,15005818,16647691,8882412,15916118,15989384,15954730,16502126,4276531,16418470,5493662,905161,14480635,16324597,16288148,14306648,9985382,792038,420783,11088,14355763,659933,639193,10646,14191781,6556972,16140418,6207402,806720,14762734,3492171,10422862,10336172,816954,10676022,1007991,15527007,14109477,15742947,3471901,14131856,14218211,2030231,127583,15336365,15318186,14150637,15255491,348963,14974273,811634,15036079,15081187,14166387,15024429,14997765,14271287,14991489,770545,756264,14955111,874171,14948977,2305631,14690927,8476702,5421112,755512,14109419,38503,6009762],"previous_cursor_str":"-1305101990888327757","next_cursor":0}
@@ -0,0 +1 @@
1
+ [{"id_str":"110080825852305408","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"A0C5C7","protected":false,"id_str":"94143715","notifications":false,"profile_background_tile":false,"screen_name":"KatieS","name":"Katie Jacobs Stanton","display_url":"twitter.com","listed_count":1200,"location":"San Francisco, California","expanded_url":"http:\/\/www.twitter.com","show_all_inline_media":true,"contributors_enabled":true,"following":true,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"502fad","description":"Mom of 3. Twitter Globetrotter. Cupcake Connoisseur. ","profile_sidebar_border_color":"86A4A6","url":"http:\/\/t.co\/4sW849z","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":4928,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":221,"friends_count":721,"profile_background_color":"709397","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme6\/bg.gif","created_at":"Wed Dec 02 18:20:00 +0000 2009","followers_count":34824,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif","id":94143715,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1327739416\/Screen_shot_2011-04-25_at_9.22.40_PM_normal.png","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1327739416\/Screen_shot_2011-04-25_at_9.22.40_PM_normal.png"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":{"type":"Point","coordinates":[37.37849715,-122.11648388]},"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-122.11648388,37.37849715]},"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 20:04:48 +0000 2011","entities":{"user_mentions":[{"name":"Laurel Stout","screen_name":"laurelstout","id_str":"168409687","indices":[37,49],"id":168409687},{"name":"Caroline Quick","screen_name":"seacue","id_str":"8525682","indices":[50,57],"id":8525682},{"name":"janet vanhuysse","screen_name":"janetvh","id_str":"74534435","indices":[58,66],"id":74534435},{"name":"Michelle Gale","screen_name":"mgale","id_str":"104263660","indices":[67,73],"id":104263660},{"name":"Kelly Flannery","screen_name":"choppedonion","id_str":"93547212","indices":[74,87],"id":93547212}],"urls":[{"display_url":"yfrog.com\/nz89657778j","expanded_url":"http:\/\/yfrog.com\/nz89657778j","url":"http:\/\/t.co\/drAqoba","indices":[89,108]}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110080825852305408,"place":{"name":"Los Altos","attributes":{},"full_name":"Los Altos, CA","url":"http:\/\/api.twitter.com\/1\/geo\/id\/6a4364ea6f987c10.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-122.129344,37.33006],[-122.061557,37.33006],[-122.061557,37.406258],[-122.129344,37.406258]]]},"place_type":"city","country":"United States","id":"6a4364ea6f987c10"},"text":"Thanks Twitter family! Beautiful. Cc @laurelstout @seacue @janetvh @mgale @choppedonion http:\/\/t.co\/drAqoba","url":"http:\/\/yfrog.com\/nz89657778j"},{"id_str":"110096472611102720","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"FFFFFF","protected":false,"id_str":"15647676","notifications":false,"profile_background_tile":false,"screen_name":"DHSJournal","name":"Homeland Security","listed_count":2717,"location":"Washington, D.C.","show_all_inline_media":false,"contributors_enabled":true,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff","description":"U.S. Department of Homeland Security (Official).","profile_sidebar_border_color":"821111","url":"http:\/\/www.dhs.gov\/","time_zone":"Quito","default_profile_image":false,"statuses_count":1524,"profile_use_background_image":false,"verified":true,"favourites_count":0,"friends_count":133,"profile_background_color":"FFFFFF","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Tue Jul 29 16:32:34 +0000 2008","followers_count":45560,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":15647676,"profile_text_color":"3A3636","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/936215926\/dhs-twitter-300_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/936215926\/dhs-twitter-300_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:07:01 +0000 2011","entities":{"user_mentions":[{"name":"Natl Hurricane Ctr","screen_name":"NHC_Atlantic","id_str":"299798272","indices":[36,49],"id":299798272}],"urls":[],"media":[{"type":"photo","id_str":"110096472615297025","display_url":"pic.twitter.com\/x7eHCUb","expanded_url":"http:\/\/twitter.com\/DHSJournal\/status\/110096472611102720\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYckKJVCIAE7ekD.gif","url":"http:\/\/t.co\/x7eHCUb","indices":[50,69],"sizes":{"small":{"h":272,"w":340,"resize":"fit"},"large":{"h":716,"w":895,"resize":"fit"},"medium":{"h":480,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110096472615297025,"media_url":"http:\/\/p.twimg.com\/AYckKJVCIAE7ekD.gif"}],"hashtags":[{"indices":[7,13],"text":"Kaita"}]},"contributors":null,"retweeted":false,"retweet_count":3,"id":110096472611102720,"place":null,"text":"Latest #Kaita track and update from @NHC_Atlantic http:\/\/t.co\/x7eHCUb","url":"https:\/\/p.twimg.com\/AYckKJVCIAE7ekD.gif"},{"id_str":"110084002584600577","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"F6F6F6","protected":false,"id_str":"41502343","notifications":false,"profile_background_tile":true,"screen_name":"pinarecords1","name":"RaphyPina-PinaRecord","listed_count":635,"location":"iPhone: 18.234558,-66.034416","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-18000,"profile_link_color":"038543","description":"President of Pina records , urban music label . also music producer and manager of :rkm&keny,tonydize,zion y lennox,Plan B , DJ Eliel, Myztiko .\r\n","profile_sidebar_border_color":"EEEEEE","url":"http:\/\/www.pinarecords.net","time_zone":"Quito","default_profile_image":false,"statuses_count":18593,"profile_use_background_image":true,"verified":true,"favourites_count":3,"friends_count":384,"profile_background_color":"ACDED6","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/261014146\/Screen_shot_2011-05-30_at_2.37.58_AM.png","created_at":"Thu May 21 01:42:25 +0000 2009","followers_count":100031,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/261014146\/Screen_shot_2011-05-30_at_2.37.58_AM.png","id":41502343,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1510785765\/pinarecords1_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1510785765\/pinarecords1_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:17:26 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110084002588794880","display_url":"pic.twitter.com\/HjJMBRs","expanded_url":"http:\/\/twitter.com\/pinarecords1\/status\/110084002584600577\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcY0S3CIAA9ZrQ.jpg","url":"http:\/\/t.co\/HjJMBRs","indices":[87,106],"sizes":{"small":{"h":66,"w":340,"resize":"fit"},"large":{"h":164,"w":840,"resize":"fit"},"medium":{"h":117,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110084002588794880,"media_url":"http:\/\/p.twimg.com\/AYcY0S3CIAA9ZrQ.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":10,"id":110084002584600577,"place":null,"text":"Gracias , es un honor haber llegado a 100k esto es que mi trabajo esta haciendoce bien http:\/\/t.co\/HjJMBRs","url":"https:\/\/p.twimg.com\/AYcY0S3CIAA9ZrQ.jpg"},{"id_str":"110080481017606144","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"22907871","notifications":false,"profile_background_tile":false,"screen_name":"StuartMaconie","name":"Stuart Maconie","listed_count":831,"location":"iPhone: 54.991354,-2.356316","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":0,"profile_link_color":"0084B4","description":"","profile_sidebar_border_color":"C0DEED","url":null,"time_zone":"London","default_profile_image":false,"statuses_count":1659,"profile_use_background_image":true,"verified":false,"favourites_count":26,"friends_count":100,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Thu Mar 05 11:16:46 +0000 2009","followers_count":33178,"default_profile":true,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":22907871,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1522196997\/New_Pic_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1522196997\/New_Pic_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:03:27 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110080481021800448","display_url":"pic.twitter.com\/B1ZZxNj","expanded_url":"http:\/\/twitter.com\/StuartMaconie\/status\/110080481017606144\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcVnUACMAADhLs.jpg","url":"http:\/\/t.co\/B1ZZxNj","indices":[65,84],"sizes":{"small":{"h":455,"w":340,"resize":"fit"},"large":{"h":1372,"w":1024,"resize":"fit"},"medium":{"h":803,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110080481021800448,"media_url":"http:\/\/p.twimg.com\/AYcVnUACMAADhLs.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":8,"id":110080481017606144,"place":null,"text":"Guess Who's Coming To Dinner? Ted The Damp Red Squirrel, earlier http:\/\/t.co\/B1ZZxNj","url":"https:\/\/p.twimg.com\/AYcVnUACMAADhLs.jpg"},{"id_str":"110088182720245760","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"260839822","notifications":null,"profile_background_tile":true,"screen_name":"grizzlybear","name":"Grizzly Bear","listed_count":516,"location":"oh hello there. ","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-18000,"profile_link_color":"0084B4","description":"Mostly tweets from Edward, rare tweets by Daniel and Chris Taylor. Chris Bear tweets over at @crbear. We are a band. See our website. ","default_profile":false,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.grizzly-bear.net\/","time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"statuses_count":498,"profile_use_background_image":true,"verified":true,"favourites_count":0,"friends_count":155,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/220465734\/dogslettuceap_450x359_2.jpg","created_at":"Fri Mar 04 18:25:25 +0000 2011","followers_count":18687,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/220465734\/dogslettuceap_450x359_2.jpg","id":260839822,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1280868768\/images_normal.jpeg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1280868768\/images_normal.jpeg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:34:03 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110088182724440064","display_url":"pic.twitter.com\/GNngnuO","expanded_url":"http:\/\/twitter.com\/grizzlybear\/status\/110088182720245760\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYccnnFCMAAHySU.jpg","url":"http:\/\/t.co\/GNngnuO","indices":[43,62],"sizes":{"small":{"h":226,"w":340,"resize":"fit"},"large":{"h":282,"w":425,"resize":"fit"},"medium":{"h":282,"w":425,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110088182724440064,"media_url":"http:\/\/p.twimg.com\/AYccnnFCMAAHySU.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":18,"id":110088182720245760,"place":null,"text":"are you going to finish your \"Kreayshawn\"? http:\/\/t.co\/GNngnuO","url":"https:\/\/p.twimg.com\/AYccnnFCMAAHySU.jpg"},{"id_str":"110085064846606337","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"ab1fa9","protected":false,"id_str":"23489663","notifications":false,"profile_background_tile":true,"screen_name":"RASHEEDAGAPEACH","name":"RASHEEDA ","listed_count":1022,"location":"ATLANTA,GA","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"12090f","description":"Bookin Info-DLO117@gmail.com Artist,Entrepreneur,SongWriter,Boss Chick,Ck Out http:\/\/www.ImBossy.com Bet's 2010 best female hip hop nominee.Its A Movement baby!","profile_sidebar_border_color":"bddcad","url":"http:\/\/www.youtube.com\/user\/dlo117","time_zone":"Quito","default_profile_image":false,"default_profile":false,"statuses_count":25011,"profile_use_background_image":true,"verified":false,"favourites_count":1,"friends_count":326,"profile_background_color":"ff0ae2","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/232722802\/Rasheeda_RevOfficial_Twitter_-1.jpg","created_at":"Mon Mar 09 19:52:47 +0000 2009","followers_count":68930,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/232722802\/Rasheeda_RevOfficial_Twitter_-1.jpg","id":23489663,"profile_text_color":"ff0a80","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1429966048\/_rasheedagapeach_bad_mutha_fucker_Video_new_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1429966048\/_rasheedagapeach_bad_mutha_fucker_Video_new_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:21:39 +0000 2011","entities":{"user_mentions":[],"urls":[{"display_url":"ImBossy.com","expanded_url":"http:\/\/www.ImBossy.com","url":"http:\/\/t.co\/HHunqJa","indices":[45,64]}],"media":[{"type":"photo","id_str":"110085064850800642","display_url":"pic.twitter.com\/lC6BzVx","expanded_url":"http:\/\/twitter.com\/RASHEEDAGAPEACH\/status\/110085064846606337\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcZyIGCAAII69P.jpg","url":"http:\/\/t.co\/lC6BzVx","indices":[119,138],"sizes":{"small":{"h":254,"w":340,"resize":"fit"},"large":{"h":478,"w":640,"resize":"fit"},"medium":{"h":448,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110085064850800642,"media_url":"http:\/\/p.twimg.com\/AYcZyIGCAAII69P.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":10,"id":110085064846606337,"place":null,"text":"LABOR DAY SPECIAL... Place an order today at http:\/\/t.co\/HHunqJa and get a few free goodies including these!! Lets Go! http:\/\/t.co\/lC6BzVx","url":"https:\/\/p.twimg.com\/AYcZyIGCAAII69P.jpg"},{"id_str":"110088918824783872","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"E3E2DE","protected":false,"id_str":"94132246","notifications":false,"profile_background_tile":true,"screen_name":"eespetacular","name":"Equipe do EE","listed_count":1591,"location":"BRASIL","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":-10800,"profile_link_color":"088253","description":"DOMINGOS DE MANH\u00c3 NA TV GLOBO","profile_sidebar_border_color":"D3D2CF","url":"http:\/\/www.globoesporte.com\/espetacular","time_zone":"Brasilia","default_profile_image":false,"default_profile":false,"statuses_count":4326,"profile_use_background_image":true,"verified":false,"favourites_count":1,"friends_count":14,"profile_background_color":"EDECE9","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/57349916\/capa.jpg","created_at":"Wed Dec 02 17:23:36 +0000 2009","followers_count":110353,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/57349916\/capa.jpg","id":94132246,"profile_text_color":"634047","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1378819985\/tande_glenda2_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1378819985\/tande_glenda2_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:36:59 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110088918828978176","display_url":"pic.twitter.com\/7Wa073E","expanded_url":"http:\/\/twitter.com\/eespetacular\/status\/110088918824783872\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcdSdSCEAApuWj.jpg","url":"http:\/\/t.co\/7Wa073E","indices":[60,79],"sizes":{"small":{"h":453,"w":340,"resize":"fit"},"large":{"h":1365,"w":1024,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":800,"w":600,"resize":"fit"}},"id":110088918828978176,"media_url":"http:\/\/p.twimg.com\/AYcdSdSCEAApuWj.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110088918824783872,"place":null,"text":"Confira um aperitivo da entrega do Jo\u00e3o Sorris\u00e3o para o R10 http:\/\/t.co\/7Wa073E","url":"https:\/\/p.twimg.com\/AYcdSdSCEAApuWj.jpg"},{"id_str":"110094519927717888","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"333333","protected":false,"id_str":"292995395","notifications":false,"profile_background_tile":true,"screen_name":"GarretDillahunt","name":"Garret Dillahunt","listed_count":213,"location":"","show_all_inline_media":true,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0c7494","description":"I'm an actor, lately on Raising Hope, but sometimes other stuff too. \r\nHt: 18.5 hands\r\nWt: 13.6 stone.\r\n Fancy-pants official site:","profile_sidebar_border_color":"4f4f4f","url":"http:\/\/garret-dillahunt.net","time_zone":"Quito","default_profile_image":false,"statuses_count":537,"profile_use_background_image":true,"verified":true,"favourites_count":1,"friends_count":132,"profile_background_color":"6b6b6b","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/300455741\/beach.jpg","created_at":"Wed May 04 15:48:27 +0000 2011","followers_count":9324,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/300455741\/beach.jpg","id":292995395,"profile_text_color":"9999a3","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1457096852\/denim_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1457096852\/denim_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:59:14 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110094519931912192","display_url":"pic.twitter.com\/0lTv3bg","expanded_url":"http:\/\/twitter.com\/GarretDillahunt\/status\/110094519927717888\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYciYfBCQAA74GE.jpg","url":"http:\/\/t.co\/0lTv3bg","indices":[63,82],"sizes":{"small":{"h":250,"w":340,"resize":"fit"},"large":{"h":754,"w":1024,"resize":"fit"},"medium":{"h":442,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110094519931912192,"media_url":"http:\/\/p.twimg.com\/AYciYfBCQAA74GE.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":11,"id":110094519927717888,"place":null,"text":"Have you seen this yet? Season two, twitches...it's a-comin': http:\/\/t.co\/0lTv3bg","url":"https:\/\/p.twimg.com\/AYciYfBCQAA74GE.jpg"},{"id_str":"110091929353584640","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"f4f4f0","protected":false,"id_str":"16343974","notifications":false,"profile_background_tile":false,"screen_name":"Telegraph","name":"The Telegraph","listed_count":2232,"location":"London, UK","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":0,"profile_link_color":"5f5653","description":"News and comment from The Daily Telegraph, The Sunday Telegraph and The Telegraph. Info about new products, apps & promotions. Please say hello if we can help","profile_sidebar_border_color":"5f5653","url":"http:\/\/www.telegraph.co.uk\/","time_zone":"London","default_profile_image":false,"statuses_count":137151,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":0,"friends_count":70,"profile_background_color":"5f5653","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/177485899\/Comment_twitter.png","created_at":"Thu Sep 18 06:50:54 +0000 2008","followers_count":59558,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/177485899\/Comment_twitter.png","id":16343974,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/998929715\/Telegraph_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/998929715\/Telegraph_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:48:58 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110091929357778945","display_url":"pic.twitter.com\/fHF1ADC","expanded_url":"http:\/\/twitter.com\/Telegraph\/status\/110091929353584640\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcgBsYCAAEuY-d.png","url":"http:\/\/t.co\/fHF1ADC","indices":[78,97],"sizes":{"small":{"h":559,"w":340,"resize":"fit"},"large":{"h":1315,"w":800,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":986,"w":600,"resize":"fit"}},"id":110091929357778945,"media_url":"http:\/\/p.twimg.com\/AYcgBsYCAAEuY-d.png"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":25,"id":110091929353584640,"place":null,"text":"Tories set to disband in Scotland - front page of tomorrow's Sunday Telegraph http:\/\/t.co\/fHF1ADC","url":"https:\/\/p.twimg.com\/AYcgBsYCAAEuY-d.png"},{"id_str":"110084499085344768","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"80837321","notifications":false,"profile_background_tile":false,"screen_name":"WEIL_caricatura","name":"roberto weil","listed_count":1080,"location":"caracas","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-16200,"profile_link_color":"009999","description":"","profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.weil.com.ve","time_zone":"Caracas","default_profile_image":false,"statuses_count":1225,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":146,"profile_background_color":"000000","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/72478654\/logo_weil_i.jpg","created_at":"Thu Oct 08 12:30:28 +0000 2009","followers_count":36468,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/72478654\/logo_weil_i.jpg","id":80837321,"default_profile":false,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/671591711\/twetter_i_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/671591711\/twetter_i_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:19:25 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110084499089539072","display_url":"pic.twitter.com\/GzgdFjQ","expanded_url":"http:\/\/twitter.com\/WEIL_caricatura\/status\/110084499085344768\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcZRMeCQAAphkP.jpg","url":"http:\/\/t.co\/GzgdFjQ","indices":[19,38],"sizes":{"small":{"h":137,"w":340,"resize":"fit"},"large":{"h":413,"w":1024,"resize":"fit"},"medium":{"h":242,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110084499089539072,"media_url":"http:\/\/p.twimg.com\/AYcZRMeCQAAphkP.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":14,"id":110084499085344768,"place":null,"text":"WEIL ... \u00e1vila ... http:\/\/t.co\/GzgdFjQ","url":"https:\/\/p.twimg.com\/AYcZRMeCQAAphkP.jpg"},{"id_str":"110100444747010048","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"99CC33","protected":false,"id_str":"18269216","notifications":false,"profile_background_tile":false,"screen_name":"DrLawyercop","name":"Aaron Ginsburg","listed_count":246,"location":"City of Dreams","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"D02B55","description":"Writer on FOX's THE FINDER, THE GOOD GUYS. \r\nProducer of BURN NOTICE: THE FALL OF SAM AXE.\r\nDirector of THE THRILLING ADVENTURE HOUR. \r\n","profile_sidebar_border_color":"829D5E","url":"http:\/\/aaronginsburg.tumblr.com","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"default_profile":false,"statuses_count":6362,"profile_use_background_image":true,"verified":false,"favourites_count":5,"friends_count":255,"profile_background_color":"352726","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3656056\/DSCN2084.jpg","created_at":"Sat Dec 20 17:25:20 +0000 2008","followers_count":4089,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3656056\/DSCN2084.jpg","id":18269216,"profile_text_color":"3E4415","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1299800341\/Screen_shot_2011-03-30_at_2.03.29_PM_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1299800341\/Screen_shot_2011-03-30_at_2.03.29_PM_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:22:46 +0000 2011","entities":{"user_mentions":[{"name":"Krista","screen_name":"KKCarpy","id_str":"25844639","indices":[5,13],"id":25844639},{"name":"Insight The Movie","screen_name":"InsightMovie","id_str":"348588776","indices":[17,30],"id":348588776}],"urls":[],"media":[{"type":"photo","id_str":"110100444751204353","display_url":"pic.twitter.com\/5yMmNfl","expanded_url":"http:\/\/twitter.com\/DrLawyercop\/status\/110100444747010048\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcnxWsCEAEbtVj.jpg","url":"http:\/\/t.co\/5yMmNfl","indices":[118,137],"sizes":{"small":{"h":226,"w":340,"resize":"fit"},"large":{"h":478,"w":720,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":398,"w":600,"resize":"fit"}},"id":110100444751204353,"media_url":"http:\/\/p.twimg.com\/AYcnxWsCEAEbtVj.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110100444747010048,"place":null,"text":"Me & @KKCarpy at @InsightMovie Premiere. My mother's response: \"I'm surprised they let you in without a sports coat.\" http:\/\/t.co\/5yMmNfl","url":"https:\/\/p.twimg.com\/AYcnxWsCEAEbtVj.jpg"},{"id_str":"110100448681275392","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"14895312","notifications":false,"profile_background_tile":false,"screen_name":"ronpepsi","name":"Rudy Winnacker","display_url":"winnacker.com","listed_count":103,"location":"Piedmont, CA","expanded_url":"http:\/\/www.winnacker.com","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"Twitter Operations","default_profile":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/t.co\/CKqzPJi","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":6644,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":109,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Sun May 25 00:57:02 +0000 2008","followers_count":3526,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":14895312,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/54839849\/TRS_80_Color_Computer_2_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/54839849\/TRS_80_Color_Computer_2_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:22:48 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110100448685469696","display_url":"pic.twitter.com\/NXhEcuT","expanded_url":"http:\/\/twitter.com\/ronpepsi\/status\/110100448681275392\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcnxlWCMAAFr-s.jpg","url":"http:\/\/t.co\/NXhEcuT","indices":[19,38],"sizes":{"small":{"h":453,"w":340,"resize":"fit"},"large":{"h":1365,"w":1024,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":800,"w":600,"resize":"fit"}},"id":110100448685469696,"media_url":"http:\/\/p.twimg.com\/AYcnxlWCMAAFr-s.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110100448681275392,"place":{"name":"Oakland","attributes":{},"full_name":"Oakland, CA","url":"http:\/\/api.twitter.com\/1\/geo\/id\/ab2f2fac83aa388d.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-122.355881,37.632226],[-122.114672,37.632226],[-122.114672,37.885255],[-122.355881,37.885255]]]},"place_type":"city","country":"United States","id":"ab2f2fac83aa388d"},"text":"East Bay Wildlife: http:\/\/t.co\/NXhEcuT","url":"https:\/\/p.twimg.com\/AYcnxlWCMAAFr-s.jpg"},{"id_str":"110085582855733248","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"1652731","notifications":false,"profile_background_tile":true,"screen_name":"jollyroger","name":"Roger Chang","listed_count":1218,"location":"37.759299,-122.38821","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"A TV\/Web video producer who once played a game of ping-pong against Wil Wheaton. I lost. I'm also the funny half of the East Meets West podcast. ","profile_sidebar_border_color":"181A1E","url":"http:\/\/facebook.com\/rogee.chang","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":5225,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":0,"friends_count":114,"profile_background_color":"1A1B1F","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/106906599\/Image2.jpg","created_at":"Tue Mar 20 17:49:09 +0000 2007","followers_count":11115,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/106906599\/Image2.jpg","id":1652731,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/842250047\/jollyroger_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/842250047\/jollyroger_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:23:43 +0000 2011","entities":{"user_mentions":[{"name":"Tom Merritt","screen_name":"acedtect","id_str":"610533","indices":[8,17],"id":610533}],"urls":[],"media":[{"type":"photo","id_str":"110085582859927552","display_url":"pic.twitter.com\/NvUkI0J","expanded_url":"http:\/\/twitter.com\/jollyroger\/status\/110085582855733248\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcaQR1CAAA8yn9.jpg","url":"http:\/\/t.co\/NvUkI0J","indices":[81,100],"sizes":{"small":{"h":255,"w":340,"resize":"fit"},"large":{"h":768,"w":1024,"resize":"fit"},"medium":{"h":450,"w":600,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"}},"id":110085582859927552,"media_url":"http:\/\/p.twimg.com\/AYcaQR1CAAA8yn9.jpg"}],"hashtags":[{"indices":[61,69],"text":"awkward"},{"indices":[70,80],"text":"dragoncon"}]},"contributors":null,"retweeted":false,"retweet_count":4,"id":110085582855733248,"place":null,"text":"Went to @acedtect 's room to drop off gear and found this! #awkward #dragoncon http:\/\/t.co\/NvUkI0J","url":"https:\/\/p.twimg.com\/AYcaQR1CAAA8yn9.jpg"},{"id_str":"110085188217872387","in_reply_to_status_id":110084317660725248,"truncated":false,"user":{"default_profile":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"143502765","notifications":null,"profile_background_tile":true,"screen_name":"JulioPiumato","name":"Julio Piumato","listed_count":582,"location":"Argentina","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-10800,"profile_link_color":"0084B4","description":"SecGralUEJN(Judiciales)SecDDHH CGT,Dip Nac(MC)Pres Cees(Centro de Estudios estrat\u00e9gicos Suramericanos)Militante peronista,abogado, hincha de Boca.","profile_sidebar_border_color":"C0DEED","url":"http:\/\/juliopiumato.blogspot.com","time_zone":"Buenos Aires","default_profile_image":false,"statuses_count":12530,"profile_use_background_image":true,"verified":false,"favourites_count":2,"friends_count":45,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/101147551\/boca.jpg","created_at":"Thu May 13 17:01:29 +0000 2010","followers_count":22760,"follow_request_sent":null,"lang":"es","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/101147551\/boca.jpg","id":143502765,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/950325261\/Piumato_CABA_23330-240_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/950325261\/Piumato_CABA_23330-240_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"110084317660725248","geo":null,"in_reply_to_screen_name":"miotroespejo","in_reply_to_user_id_str":"152708650","coordinates":null,"in_reply_to_user_id":152708650,"source":"web","created_at":"Sat Sep 03 20:22:09 +0000 2011","entities":{"user_mentions":[{"name":"mauro garcia K","screen_name":"miotroespejo","id_str":"152708650","indices":[0,13],"id":152708650}],"urls":[],"media":[{"type":"photo","id_str":"110085188226260992","display_url":"pic.twitter.com\/sbISOer","expanded_url":"http:\/\/twitter.com\/JulioPiumato\/status\/110085188217872387\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcZ5TtCIAAVA43.jpg","url":"http:\/\/t.co\/sbISOer","indices":[55,74],"sizes":{"small":{"h":130,"w":107,"resize":"fit"},"large":{"h":130,"w":107,"resize":"fit"},"thumb":{"h":130,"w":107,"resize":"crop"},"medium":{"h":130,"w":107,"resize":"fit"}},"id":110085188226260992,"media_url":"http:\/\/p.twimg.com\/AYcZ5TtCIAAVA43.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110085188217872387,"place":null,"text":"@miotroespejo te mando mi ADN es el mismo de la Patria http:\/\/t.co\/sbISOer","url":"https:\/\/p.twimg.com\/AYcZ5TtCIAAVA43.jpg"},{"id_str":"110097117149794304","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"b2bbc0","protected":false,"id_str":"16049481","notifications":false,"profile_background_tile":false,"screen_name":"RonHogan","name":"Ron Hogan","listed_count":774,"location":"New York, NY","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"822007","description":"I run Beatrice.com. I curate a reading series at @GreenlightBklyn & a book club at @FountainBkstore. I wrote GETTING RIGHT WITH TAO (@channelvbooks).","profile_sidebar_border_color":"3d414c","url":"http:\/\/www.ronhogan.net","time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"statuses_count":23562,"profile_use_background_image":true,"verified":false,"favourites_count":74,"friends_count":180,"profile_background_color":"b2bbc0","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/105289790\/twitter-corner-2.jpg","created_at":"Sat Aug 30 00:55:53 +0000 2008","followers_count":8555,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/105289790\/twitter-corner-2.jpg","id":16049481,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/932234747\/twitter-avatar_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/932234747\/twitter-avatar_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:09:33 +0000 2011","entities":{"user_mentions":[{"name":"Dan Goodsell","screen_name":"themistertoast","id_str":"74870546","indices":[102,117],"id":74870546}],"urls":[],"media":[{"type":"photo","id_str":"110097117153988608","display_url":"pic.twitter.com\/WwzgPlU","expanded_url":"http:\/\/twitter.com\/RonHogan\/status\/110097117149794304\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYckvqbCEAAR30-.jpg","url":"http:\/\/t.co\/WwzgPlU","indices":[119,138],"sizes":{"small":{"h":286,"w":340,"resize":"fit"},"large":{"h":671,"w":800,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":503,"w":600,"resize":"fit"}},"id":110097117153988608,"media_url":"http:\/\/p.twimg.com\/AYckvqbCEAAR30-.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110097117149794304,"place":null,"text":"FUN FACT: We named our cat Toast because of his coloring, but also so we can call him Mr. Toast after @themistertoast. http:\/\/t.co\/WwzgPlU","url":"https:\/\/p.twimg.com\/AYckvqbCEAAR30-.jpg"},{"id_str":"110091778593538049","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"f7f7f7","protected":false,"id_str":"20904050","notifications":false,"profile_background_tile":true,"screen_name":"viticci","name":"Federico Viticci","listed_count":901,"location":"Viterbo, Italy","show_all_inline_media":true,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":3600,"profile_link_color":"0d8eb5","description":"Editor of MacStories.net.","profile_sidebar_border_color":"232b3d","url":"http:\/\/www.macstories.net\/","time_zone":"Rome","default_profile_image":false,"default_profile":false,"statuses_count":36485,"profile_use_background_image":true,"verified":false,"favourites_count":6132,"friends_count":896,"profile_background_color":"062039","is_translator":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/79556586\/sfondotwitter.jpg","created_at":"Sun Feb 15 10:52:33 +0000 2009","followers_count":15132,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/79556586\/sfondotwitter.jpg","id":20904050,"profile_text_color":"191a19","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1135129324\/Viticci_2010_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1135129324\/Viticci_2010_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":{"type":"Point","coordinates":[42.418186,12.106259]},"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[12.106259,42.418186]},"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003ECamera on iOS\u003C\/a\u003E","created_at":"Sat Sep 03 20:48:20 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110091778597732353","display_url":"pic.twitter.com\/IOClWFR","expanded_url":"http:\/\/twitter.com\/viticci\/status\/110091778593538049\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcf46wCQAErhdW.jpg","url":"http:\/\/t.co\/IOClWFR","indices":[27,46],"sizes":{"small":{"h":455,"w":340,"resize":"fit"},"large":{"h":648,"w":484,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":648,"w":484,"resize":"fit"}},"id":110091778597732353,"media_url":"http:\/\/p.twimg.com\/AYcf46wCQAErhdW.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110091778593538049,"place":{"name":"Viterbo","attributes":{},"full_name":"Viterbo, Viterbo","url":"http:\/\/api.twitter.com\/1\/geo\/id\/6197893ccb5e11d0.json","country_code":"IT","bounding_box":{"type":"Polygon","coordinates":[[[11.9036425,42.2968828],[12.2266818,42.2968828],[12.2266818,42.5874835],[11.9036425,42.5874835]]]},"place_type":"city","country":"Italy","id":"6197893ccb5e11d0"},"text":"La Macchina is almost here http:\/\/t.co\/IOClWFR","url":"https:\/\/p.twimg.com\/AYcf46wCQAErhdW.jpg"},{"id_str":"110084580027006976","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"333333","protected":false,"id_str":"250329331","default_profile":false,"notifications":false,"profile_background_tile":false,"screen_name":"CareyHartFans","name":"Carey Hart Fans","listed_count":82,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084b4","description":"#1 fans twitter account for the loveable, crazy,legend Carey Hart (@hartluck)\r\n our facebook page for even more updates.\r\nhttp:\/\/www.facebook.com\/CareyHartFans","profile_sidebar_border_color":"000000","url":"http:\/\/www.hartandhuntington.com","time_zone":null,"default_profile_image":false,"statuses_count":158,"profile_use_background_image":true,"verified":false,"favourites_count":2,"friends_count":21,"profile_background_color":"000000","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/275179792\/2011-03-25_22-22-06_97.114.236.119.jpg","created_at":"Thu Feb 10 21:52:45 +0000 2011","followers_count":1090,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/275179792\/2011-03-25_22-22-06_97.114.236.119.jpg","id":250329331,"profile_text_color":"827b82","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1473018205\/carebear_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1473018205\/carebear_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:19:44 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110084580031201280","display_url":"pic.twitter.com\/3oqTZlu","expanded_url":"http:\/\/twitter.com\/CareyHartFans\/status\/110084580027006976\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcZV6ACAAAtQ4D.jpg","url":"http:\/\/t.co\/3oqTZlu","indices":[13,32],"sizes":{"small":{"h":256,"w":340,"resize":"fit"},"large":{"h":564,"w":750,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":451,"w":600,"resize":"fit"}},"id":110084580031201280,"media_url":"http:\/\/p.twimg.com\/AYcZV6ACAAAtQ4D.jpg"}],"hashtags":[{"indices":[0,12],"text":"PicOfTheDay"}]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110084580027006976,"place":null,"text":"#PicOfTheDay http:\/\/t.co\/3oqTZlu","url":"https:\/\/p.twimg.com\/AYcZV6ACAAAtQ4D.jpg"},{"id_str":"110099277509955585","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"F0F0F0","protected":false,"id_str":"668243","notifications":false,"profile_background_tile":false,"screen_name":"dmoren","name":"Dan Moren","listed_count":380,"location":"Somerville, MA","show_all_inline_media":true,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":-36000,"profile_link_color":"990000","description":"Storyteller, rocketeer. Slamming evil since MCMLXXX. Senior Associate Editorial Robot at Macworld.","profile_sidebar_border_color":"D8D8D8","url":"http:\/\/doombot.com","time_zone":"Hawaii","default_profile_image":false,"statuses_count":10545,"profile_use_background_image":true,"verified":false,"favourites_count":321,"friends_count":175,"profile_background_color":"FFFFFF","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/36792\/doombot.jpg","created_at":"Fri Jan 19 22:25:04 +0000 2007","followers_count":3688,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/36792\/doombot.jpg","id":668243,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/51955128\/dmoren3_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/51955128\/dmoren3_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003EPhotos on iOS\u003C\/a\u003E","created_at":"Sat Sep 03 21:18:08 +0000 2011","entities":{"user_mentions":[{"name":"Jason Snell","screen_name":"jsnell","id_str":"784912","indices":[32,39],"id":784912}],"urls":[],"media":[{"type":"photo","id_str":"110099277514149889","display_url":"pic.twitter.com\/Nz621Ni","expanded_url":"http:\/\/twitter.com\/dmoren\/status\/110099277509955585\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcmtaZCEAEIdWi.jpg","url":"http:\/\/t.co\/Nz621Ni","indices":[40,59],"sizes":{"small":{"h":254,"w":340,"resize":"fit"},"large":{"h":484,"w":648,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":448,"w":600,"resize":"fit"}},"id":110099277514149889,"media_url":"http:\/\/p.twimg.com\/AYcmtaZCEAEIdWi.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110099277509955585,"place":null,"text":"Zeppelin pic at MIT Museum. \/cc @jsnell http:\/\/t.co\/Nz621Ni","url":"https:\/\/p.twimg.com\/AYcmtaZCEAEIdWi.jpg"},{"id_str":"110083479647162368","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"454f40","protected":false,"id_str":"20319095","notifications":false,"profile_background_tile":true,"screen_name":"DannyBoy1968","name":"Danny Boy O'Connor","listed_count":121,"location":"Beverly Hills, CA.","show_all_inline_media":true,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"eb0700","description":"LA COKA NOSTRA-HOUSE OF PAIN-HELL FIRE CANYON CLUB-THE GREAT AMERICAN LOVE MACHINE.","profile_sidebar_border_color":"000000","url":"http:\/\/americanlovemachine.com\/","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":4301,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":342,"profile_background_color":"040101","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/141476661\/Picture_6.png","created_at":"Sat Feb 07 16:51:42 +0000 2009","followers_count":5623,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/141476661\/Picture_6.png","id":20319095,"default_profile":false,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1441944755\/Picture_4_normal.png","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1441944755\/Picture_4_normal.png"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 20:15:22 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110083479651356672","display_url":"pic.twitter.com\/YjC7PNd","expanded_url":"http:\/\/twitter.com\/DannyBoy1968\/status\/110083479647162368\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcYV2xCEAAJLRz.jpg","url":"http:\/\/t.co\/YjC7PNd","indices":[19,38],"sizes":{"small":{"h":369,"w":340,"resize":"fit"},"large":{"h":1109,"w":1024,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":650,"w":600,"resize":"fit"}},"id":110083479651356672,"media_url":"http:\/\/p.twimg.com\/AYcYV2xCEAAJLRz.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110083479647162368,"place":null,"text":"Skate and Destroy. http:\/\/t.co\/YjC7PNd","url":"https:\/\/p.twimg.com\/AYcYV2xCEAAJLRz.jpg"},{"id_str":"110100794983985153","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"14717846","notifications":false,"profile_background_tile":true,"screen_name":"miguelrios","name":"Miguel Rios","display_url":"about.me\/miguelrios","listed_count":221,"location":"San Francisco, California","expanded_url":"http:\/\/about.me\/miguelrios","show_all_inline_media":true,"contributors_enabled":true,"following":true,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"009999","description":"Information design nerd. Numbers and Data Visualization @Twitter. J\u00edbaro Boricua. Tweets represent my view...","profile_sidebar_border_color":"eeeeee","url":"http:\/\/t.co\/FVVzWKE","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":40758,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":1203,"friends_count":885,"profile_background_color":"131516","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","created_at":"Fri May 09 20:45:18 +0000 2008","followers_count":3184,"entities":{"user_mentions":[{"name":"Twitter","screen_name":"twitter","id_str":"783214","indices":[56,64],"id":783214}],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","id":14717846,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1499675862\/prof_normal.png","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1499675862\/prof_normal.png"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":{"type":"Point","coordinates":[37.78458046,-122.40651798]},"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-122.40651798,37.78458046]},"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 21:24:10 +0000 2011","entities":{"user_mentions":[{"name":"CW Network","screen_name":"CW_network","id_str":"22083910","indices":[6,17],"id":22083910}],"urls":[],"media":[{"type":"photo","id_str":"110100794988179456","display_url":"pic.twitter.com\/1vxkaPz","expanded_url":"http:\/\/twitter.com\/miguelrios\/status\/110100794983985153\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcoFvbCMAAXpSw.jpg","url":"http:\/\/t.co\/1vxkaPz","indices":[51,70],"sizes":{"small":{"h":455,"w":340,"resize":"fit"},"large":{"h":1024,"w":765,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":803,"w":600,"resize":"fit"}},"id":110100794988179456,"media_url":"http:\/\/p.twimg.com\/AYcoFvbCMAAXpSw.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110100794983985153,"place":{"name":"SoMa","attributes":{},"full_name":"SoMa, San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/2b6ff8c22edd9576.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-122.42284884,37.76893497],[-122.3964,37.76893497],[-122.3964,37.78752897],[-122.42284884,37.78752897]]]},"place_type":"neighborhood","country":"United States","id":"2b6ff8c22edd9576"},"text":"Giant @cw_network's Twitter timeline in Westfield: http:\/\/t.co\/1vxkaPz","url":"https:\/\/p.twimg.com\/AYcoFvbCMAAXpSw.jpg"}]
@@ -0,0 +1 @@
1
+ {"error":"Internal Server Error","request":"/1/statuses/show/1.json"}
@@ -0,0 +1 @@
1
+ [{"name":"Portuguese","status":"production","code":"pt"},{"name":"Indonesian","status":"production","code":"id"},{"name":"Italian","status":"production","code":"it"},{"name":"Spanish","status":"production","code":"es"},{"name":"Turkish","status":"production","code":"tr"},{"name":"English","status":"production","code":"en"},{"name":"Korean","status":"production","code":"ko"},{"name":"French","status":"production","code":"fr"},{"name":"Dutch","status":"production","code":"nl"},{"name":"Russian","status":"production","code":"ru"},{"name":"German","status":"production","code":"de"},{"name":"Japanese","status":"production","code":"ja"}]
@@ -0,0 +1 @@
1
+ {"mode":"public","description":"Presidents of the United States of America","id_str":"8863586","member_count":2,"uri":"\/sferik\/presidents","subscriber_count":0,"full_name":"@sferik\/presidents","user":{"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","description":"Adventures in hunger and foolishness.","screen_name":"sferik","verified":false,"id_str":"7505382","follow_request_sent":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","favourites_count":742,"profile_sidebar_border_color":"C0DEED","followers_count":911,"url":null,"listed_count":29,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","statuses_count":3018,"profile_background_color":"000000","protected":false,"show_all_inline_media":true,"friends_count":86,"name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id":7505382,"geo_enabled":true,"notifications":false,"utc_offset":-28800},"name":"presidents","following":false,"slug":"presidents","id":8863586}
@@ -0,0 +1 @@
1
+ {"lists":[{"mode":"public","description":"","id_str":"1129440","member_count":494,"uri":"\/pengwynn\/rubyists","subscriber_count":28,"full_name":"@pengwynn\/rubyists","user":{"statuses_count":3950,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","profile_link_color":"35abe9","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","screen_name":"pengwynn","show_all_inline_media":false,"friends_count":1919,"id_str":"14100886","contributors_enabled":false,"profile_background_tile":false,"profile_sidebar_fill_color":"dddddd","geo_enabled":true,"favourites_count":32,"profile_sidebar_border_color":"cccccc","followers_count":2788,"url":"http:\/\/wynnnetherland.com","verified":false,"follow_request_sent":false,"lang":"en","time_zone":"Central Time (US & Canada)","created_at":"Sat Mar 08 16:34:22 +0000 2008","location":"Dallas, TX","profile_background_color":"efefef","protected":false,"name":"Wynn Netherland","following":true,"profile_use_background_image":true,"profile_text_color":"666666","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","id":14100886,"listed_count":186,"notifications":false,"utc_offset":-21600},"name":"Rubyists","following":true,"slug":"rubyists","id":1129440},{"mode":"public","description":"","id_str":"574","member_count":308,"uri":"\/twitter\/team","subscriber_count":76189,"full_name":"@twitter\/team","user":{"follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1288202850\/images\/themes\/theme18\/bg.gif","profile_link_color":"038543","description":"Always wondering what's happening. ","screen_name":"twitter","id_str":"783214","profile_background_tile":false,"profile_sidebar_fill_color":"F6F6F6","listed_count":49543,"favourites_count":0,"profile_sidebar_border_color":"EEEEEE","followers_count":3916812,"url":"http:\/\/twitter.com","statuses_count":896,"show_all_inline_media":true,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":340,"location":"San Francisco, CA","contributors_enabled":true,"profile_background_color":"ACDED6","protected":false,"geo_enabled":true,"name":"Twitter","following":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png","id":783214,"verified":true,"notifications":false,"utc_offset":-28800},"name":"Team","following":true,"slug":"team","id":574}], "next_cursor":0, "previous_cursor":0, "next_cursor_str":"0", "previous_cursor_str":"0"}
@@ -0,0 +1 @@
1
+ [{"url":"http://where.yahooapis.com/v1/place/23424803","woeid":23424803,"placeType":{"code":12,"name":"Country"},"name":"Ireland","country":"Ireland","countryCode":"IE"},{"countryCode":"GB","url":"http://where.yahooapis.com/v1/place/23424975","country":"United Kingdom","woeid":23424975,"name":"United Kingdom","placeType":{"code":12,"name":"Country"}},{"placeType":{"code":12,"name":"Country"},"url":"http://where.yahooapis.com/v1/place/23424900","countryCode":"MX","country":"Mexico","woeid":23424900,"name":"Mexico"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2358820","woeid":2358820,"name":"Baltimore","country":"United States"},{"placeType":{"code":7,"name":"Town"},"countryCode":"BR","url":"http://where.yahooapis.com/v1/place/455827","woeid":455827,"name":"Sao Paulo","country":"Brazil"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2514815","country":"United States","woeid":2514815,"name":"Washington"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2367105","countryCode":"US","woeid":2367105,"name":"Boston","country":"United States"},{"countryCode":null,"url":"http://where.yahooapis.com/v1/place/1","woeid":1,"name":"Worldwide","country":"","placeType":{"code":19,"name":"Supername"}},{"url":"http://where.yahooapis.com/v1/place/2459115","woeid":2459115,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"New York","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2487796","woeid":2487796,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"San Antonio","country":"United States"},{"countryCode":"US","url":"http://where.yahooapis.com/v1/place/23424977","country":"United States","woeid":23424977,"name":"United States","placeType":{"code":12,"name":"Country"}},{"countryCode":"BR","url":"http://where.yahooapis.com/v1/place/23424768","woeid":23424768,"name":"Brazil","country":"Brazil","placeType":{"code":12,"name":"Country"}},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2379574","countryCode":"US","woeid":2379574,"name":"Chicago","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2471217","woeid":2471217,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"Philadelphia","country":"United States"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2424766","woeid":2424766,"name":"Houston","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2442047","country":"United States","placeType":{"code":7,"name":"Town"},"woeid":2442047,"countryCode":"US","name":"Los Angeles"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2487956","woeid":2487956,"name":"San Francisco","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/23424775","woeid":23424775,"placeType":{"code":12,"name":"Country"},"name":"Canada","country":"Canada","countryCode":"CA"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2357024","countryCode":"US","woeid":2357024,"name":"Atlanta","country":"United States"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2406080","countryCode":"US","woeid":2406080,"name":"Fort Worth","country":"United States"},{"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2388929","woeid":2388929,"name":"Dallas","country":"United States","placeType":{"code":7,"name":"Town"}},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2490383","countryCode":"US","woeid":2490383,"name":"Seattle","country":"United States"},{"countryCode":"GB","url":"http://where.yahooapis.com/v1/place/44418","woeid":44418,"name":"London","country":"United Kingdom","placeType":{"code":7,"name":"Town"}}]
@@ -0,0 +1 @@
1
+ [{"as_of":"2010-10-25T14:49:50Z","created_at":"2010-10-25T14:41:13Z","trends":[{"promoted_content":null,"query":"%23sevenwordsaftersex","url":"http:\/\/search.twitter.com\/search?q=%23sevenwordsaftersex","name":"#sevenwordsaftersex","events":null},{"promoted_content":null,"query":"Isaacs","url":"http:\/\/search.twitter.com\/search?q=Isaacs","name":"Isaacs","events":null},{"promoted_content":null,"query":"%23speaknow","url":"http:\/\/search.twitter.com\/search?q=%23speaknow","name":"#speaknow","events":null},{"promoted_content":null,"query":"Walkman","url":"http:\/\/search.twitter.com\/search?q=Walkman","name":"Walkman","events":null},{"promoted_content":null,"query":"%23dia31vote13","url":"http:\/\/search.twitter.com\/search?q=%23dia31vote13","name":"#dia31vote13","events":null},{"promoted_content":null,"query":"RIP+Gregory","url":"http:\/\/search.twitter.com\/search?q=RIP+Gregory","name":"RIP Gregory","events":null},{"promoted_content":null,"query":"Allen+Iverson","url":"http:\/\/search.twitter.com\/search?q=Allen+Iverson","name":"Allen Iverson","events":null},{"promoted_content":null,"query":"Issacs","url":"http:\/\/search.twitter.com\/search?q=Issacs","name":"Issacs","events":null},{"promoted_content":null,"query":"Night+Nurse","url":"http:\/\/search.twitter.com\/search?q=Night+Nurse","name":"Night Nurse","events":null},{"promoted_content":null,"query":"Jay+Bum","url":"http:\/\/search.twitter.com\/search?q=Jay+Bum","name":"Jay Bum","events":null}],"locations":[{"woeid":1,"name":"Worldwide"}]}]
Binary file
@@ -0,0 +1 @@
1
+ [{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":6,"created_at":"Fri Aug 26 18:57:59 +0000 2011","in_reply_to_user_id":null,"id_str":"107164904741552128","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"web","in_reply_to_screen_name":null,"id":107164904741552128,"in_reply_to_user_id_str":null,"place":{"name":"San Francisco","attributes":{},"full_name":"San Francisco, CA","bounding_box":{"coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","country":"United States","id":"5a110d312052166f","place_type":"city"},"text":"Google is throwing up a question mark for Sunday's weather in Boston. At least they're being honest. http:\/\/t.co\/Jh7bAhS"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":1,"created_at":"Thu Aug 25 00:47:11 +0000 2011","in_reply_to_user_id":null,"id_str":"106528009388957697","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"web","in_reply_to_screen_name":null,"id":106528009388957697,"in_reply_to_user_id_str":null,"place":{"name":"San Francisco","attributes":{},"full_name":"San Francisco, CA","bounding_box":{"coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","country":"United States","id":"5a110d312052166f","place_type":"city"},"text":"for posterity http:\/\/t.co\/pRkVnhX"},{"contributors":null,"coordinates":{"coordinates":[-122.3934,37.7836],"type":"Point"},"retweeted":false,"retweet_count":0,"created_at":"Tue Aug 23 16:59:11 +0000 2011","in_reply_to_user_id":14103557,"id_str":"106047847782293504","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":106034932580753410,"geo":{"coordinates":[37.7836,-122.3934],"type":"Point"},"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"106034932580753410","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","in_reply_to_screen_name":"joshaber","id":106047847782293504,"in_reply_to_user_id_str":"14103557","place":{"name":"South Beach","attributes":{},"full_name":"South Beach, San Francisco","bounding_box":{"coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country_code":"US","country":"United States","id":"5c92ab5379de3839","place_type":"neighborhood"},"text":"@joshaber have you tried the iPad app? It looks like this: http:\/\/t.co\/618aQ7V"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Sun Aug 21 16:38:24 +0000 2011","in_reply_to_user_id":null,"id_str":"105317838113345536","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"web","in_reply_to_screen_name":null,"id":105317838113345536,"in_reply_to_user_id_str":null,"place":{"name":"San Francisco","attributes":{},"full_name":"San Francisco, CA","bounding_box":{"coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","country":"United States","id":"5a110d312052166f","place_type":"city"},"text":"Current status: http:\/\/t.co\/DeyX72o"},{"contributors":null,"coordinates":{"coordinates":[-122.399983,37.788299],"type":"Point"},"retweeted":false,"retweet_count":0,"created_at":"Sat Aug 20 01:31:51 +0000 2011","in_reply_to_user_id":null,"id_str":"104727310984417280","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":{"coordinates":[37.788299,-122.399983],"type":"Point"},"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003EInstagram\u003C\/a\u003E","in_reply_to_screen_name":null,"id":104727310984417280,"in_reply_to_user_id_str":null,"place":{"name":"South Beach","attributes":{},"full_name":"South Beach, San Francisco","bounding_box":{"coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country_code":"US","country":"United States","id":"5c92ab5379de3839","place_type":"neighborhood"},"text":"Getting a haircut from the CEO @ Code for America http:\/\/t.co\/xD1xYK9"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Wed Aug 17 21:16:38 +0000 2011","in_reply_to_user_id":14103557,"id_str":"103938307297251329","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":103936484305940481,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"103936484305940481","source":"web","in_reply_to_screen_name":"joshaber","id":103938307297251329,"in_reply_to_user_id_str":"14103557","place":{"name":"San Francisco","attributes":{},"full_name":"San Francisco, CA","bounding_box":{"coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","country":"United States","id":"5a110d312052166f","place_type":"city"},"text":"@joshaber @nuzz do you guys know each other? Your icons are remarkably similar: http:\/\/t.co\/7thQ2X7"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Mon Aug 15 23:47:30 +0000 2011","in_reply_to_user_id":1260231,"id_str":"103251496338071552","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":103248132191694848,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"103248132191694848","source":"web","in_reply_to_screen_name":"joehewitt","id":103251496338071552,"in_reply_to_user_id_str":"1260231","place":{"name":"San Francisco","attributes":{},"full_name":"San Francisco, CA","bounding_box":{"coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country_code":"US","country":"United States","id":"5a110d312052166f","place_type":"city"},"text":"@joehewitt Now I'm seeing this! http:\/\/t.co\/h4ygJag"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Tue Jul 26 03:24:03 +0000 2011","in_reply_to_user_id":21866144,"id_str":"95695850344431616","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":95665223276560384,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"95665223276560384","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":"atogle","id":95695850344431616,"in_reply_to_user_id_str":"21866144","place":null,"text":"@atogle http:\/\/t.co\/mPkH5mb"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Sat Jul 23 05:50:41 +0000 2011","in_reply_to_user_id":13334062,"id_str":"94645589299560449","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":94643126349729792,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"94643126349729792","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":"kevintwohy","id":94645589299560449,"in_reply_to_user_id_str":"13334062","place":null,"text":"@kevintwohy on second thought, I'm pretty sure it's pronounced like this: http:\/\/t.co\/QxJNv8Q"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":6,"created_at":"Sat Jul 23 05:29:14 +0000 2011","in_reply_to_user_id":null,"id_str":"94640192727683072","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":null,"id":94640192727683072,"in_reply_to_user_id_str":null,"place":null,"text":"Just discovered a new way to make accents in Mac OS X Lion. Just hold down the key and a menu appears! #protip http:\/\/t.co\/3HC456w"},{"contributors":null,"coordinates":{"coordinates":[-122.399983,37.788299],"type":"Point"},"retweeted":false,"retweet_count":1,"created_at":"Sat Jul 23 00:13:12 +0000 2011","in_reply_to_user_id":null,"id_str":"94560659072761856","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":{"coordinates":[37.788299,-122.399983],"type":"Point"},"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003EInstagram\u003C\/a\u003E","in_reply_to_screen_name":null,"id":94560659072761856,"in_reply_to_user_id_str":null,"place":{"name":"South Beach","attributes":{},"full_name":"South Beach, San Francisco","bounding_box":{"coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country_code":"US","country":"United States","id":"5c92ab5379de3839","place_type":"neighborhood"},"text":"Among the first to taste @carlmalamud's new brew. Free as in freedom & free as in beer. @ Code for America http:\/\/instagr.am\/p\/IRUPK\/"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Tue Jul 19 23:12:37 +0000 2011","in_reply_to_user_id":721623,"id_str":"93458246685294592","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":93442600509517824,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"93442600509517824","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":"scottsil","id":93458246685294592,"in_reply_to_user_id_str":"721623","place":null,"text":"@scottsil http:\/\/t.co\/QAUYQAa"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Tue Jul 19 21:00:14 +0000 2011","in_reply_to_user_id":null,"id_str":"93424934822477824","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":null,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":null,"id":93424934822477824,"in_reply_to_user_id_str":null,"place":null,"text":"Code for America by the numbers: http:\/\/t.co\/D9TEprA"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Sat Jul 16 18:38:43 +0000 2011","in_reply_to_user_id":10609,"id_str":"92302157730156544","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":92267018656550913,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"92267018656550913","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":"superamit","id":92302157730156544,"in_reply_to_user_id_str":"10609","place":null,"text":"@superamit I'd still like to see handwriting recognition. Apple has bad memories of Newton but I hope Google does it! http:\/\/t.co\/Gb92NnV"},{"contributors":null,"coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Thu Jul 14 04:27:50 +0000 2011","in_reply_to_user_id":1133971,"id_str":"91363248892416000","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":91291010021335041,"geo":null,"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"91291010021335041","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_screen_name":"j3","id":91363248892416000,"in_reply_to_user_id_str":"1133971","place":null,"text":"@j3 you can add another one to the list. Just updated my Twitter bio to reflect my philosophy. :) http:\/\/t.co\/ZKV3Nzl"},{"contributors":null,"coordinates":{"coordinates":[-115.18757006,36.11699995],"type":"Point"},"retweeted":false,"retweet_count":0,"created_at":"Wed Jul 06 05:36:27 +0000 2011","in_reply_to_user_id":291,"id_str":"88481414600863744","user":{"notifications":null,"profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","protected":false,"default_profile_image":false,"statuses_count":4985,"profile_background_color":"000000","followers_count":1646,"name":"Erik Michaels-Ober","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":419,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","is_translator":false,"following":null,"utc_offset":-28800,"description":"\u201cIf you want something done, ask a busy person to do it. The more things you do, the more you can do.\u201d\r\n\u2014Lucille Ball","id_str":"7505382","follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_text_color":"333333","screen_name":"sferik","profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","location":"San Francisco","profile_background_tile":false,"url":"https:\/\/github.com\/sferik","default_profile":false,"listed_count":89,"verified":false,"profile_link_color":"0084B4","show_all_inline_media":true,"contributors_enabled":false,"lang":"en","geo_enabled":true,"favourites_count":1700,"profile_sidebar_border_color":"C0DEED","id":7505382,"time_zone":"Pacific Time (US & Canada)"},"in_reply_to_status_id":88465733595570179,"geo":{"coordinates":[36.11699995,-115.18757006],"type":"Point"},"favorited":false,"truncated":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"88465733595570179","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","in_reply_to_screen_name":"goldman","id":88481414600863744,"in_reply_to_user_id_str":"291","place":{"name":"Paradise","attributes":{},"full_name":"Paradise, NV","bounding_box":{"coordinates":[[[-115.208073,35.984787],[-115.059344,35.984787],[-115.059344,36.137126],[-115.208073,36.137126]]],"type":"Polygon"},"url":"http:\/\/api.twitter.com\/1\/geo\/id\/8fa6d7a33b83ef26.json","country_code":"US","country":"United States","id":"8fa6d7a33b83ef26","place_type":"city"},"text":"@goldman watching during the break http:\/\/t.co\/6698CCf"}]
@@ -0,0 +1 @@
1
+ [{"profile_sidebar_fill_color":"f2f2f2","protected":false,"id_str":"77888423","notifications":false,"profile_background_tile":false,"screen_name":"OMGFacts","name":"OMGFacts","listed_count":27367,"location":"Northern California","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"006da8","description":"The #1 fact source on Twitter, posting since Sept 27, 2009. \r\n","default_profile":false,"profile_sidebar_border_color":"ffffff","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110031604528844801","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/timely.is\" rel=\"nofollow\"\u003ETimely App\u003C\/a\u003E","created_at":"Sat Sep 03 16:49:13 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110031604528844801,"place":null,"text":"The third right arm of a male octopus is more than an arm. It\u2019s his reproductive organ."},"default_profile_image":false,"statuses_count":5776,"profile_use_background_image":false,"verified":false,"favourites_count":0,"friends_count":3,"profile_background_color":"00c4ff","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/64177585\/new.png","created_at":"Mon Sep 28 01:28:23 +0000 2009","followers_count":2401784,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/64177585\/new.png","id":77888423,"profile_text_color":"332d2d","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/745816919\/omgfacts_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/745816919\/omgfacts_normal.jpg"},{"profile_sidebar_fill_color":"C0DFEC","protected":false,"id_str":"112508240","notifications":null,"profile_background_tile":false,"screen_name":"CraigyFerg","name":"Craig Ferguson","listed_count":20921,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"TV's Craig Ferguson","profile_sidebar_border_color":"a8c7f7","url":"http:\/\/www.cbs.com\/late_night\/late_late_show\/","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110069065715953664","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 19:18:04 +0000 2011","contributors":null,"retweeted":false,"retweet_count":58,"id":110069065715953664,"place":null,"text":"\"Now I shall hunt the greatest game of all- man\" #overusedmovielines #carefulicarus #LeTitsNow #overusedhashtags"},"default_profile_image":false,"default_profile":false,"statuses_count":737,"profile_use_background_image":true,"verified":true,"favourites_count":40,"friends_count":75,"profile_background_color":"022330","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Mon Feb 08 19:14:33 +0000 2010","followers_count":865934,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":112508240,"profile_text_color":"5e6965","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1458496573\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1458496573\/image_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"25521487","notifications":false,"profile_background_tile":true,"screen_name":"danieltosh","name":"daniel tosh","listed_count":25436,"location":"beach","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"not a doctor","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.danieltosh.com\/","default_profile":false,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110150928451108866","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sun Sep 04 00:43:22 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110150928451108866,"place":null,"text":"the difference between lane kiffin and myself... is that i pretend to be an asshole."},"default_profile_image":false,"statuses_count":3757,"profile_use_background_image":true,"verified":true,"favourites_count":5,"friends_count":66,"profile_background_color":"1A1B1F","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","created_at":"Fri Mar 20 15:32:52 +0000 2009","followers_count":3303990,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","id":25521487,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif"},{"profile_sidebar_fill_color":"F2F5F8","protected":false,"id_str":"14094741","notifications":false,"profile_background_tile":false,"screen_name":"someecards","name":"someecards","listed_count":9095,"location":"New York, NY","show_all_inline_media":false,"contributors_enabled":true,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"966119","description":"Welcome to the Twitter feed of somewhat acclaimed humor site, someecards.com. You\u2019ll love not unfollowing us!","profile_sidebar_border_color":"FFFFFF","url":"http:\/\/someecards.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110041355752980481","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","created_at":"Sat Sep 03 17:27:58 +0000 2011","contributors":null,"retweeted":false,"retweet_count":36,"id":110041355752980481,"place":null,"text":"Vintage TV ads sell coffee through the use of mind-blowing sexism. http:\/\/t.co\/7jqEGFo"},"default_profile_image":false,"statuses_count":5436,"profile_use_background_image":true,"verified":true,"favourites_count":3,"friends_count":355,"profile_background_color":"DADAD8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/198266956\/twitter_background_final2b.png","created_at":"Fri Mar 07 12:49:08 +0000 2008","followers_count":1678880,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/198266956\/twitter_background_final2b.png","id":14094741,"default_profile":false,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/82073632\/thumbs_up_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/82073632\/thumbs_up_normal.jpg"},{"profile_sidebar_fill_color":"5f7cd3","protected":false,"id_str":"6539592","notifications":false,"profile_background_tile":false,"screen_name":"JimGaffigan","name":"Jim Gaffigan","listed_count":16522,"location":"NYC - On tour this summer","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"b4c2ee","description":"Husband to hot wife, father of 4, comedian, actor, writer, former sleeper http:\/\/favstar.fm\/users\/JimGaffigan\r\nItunes = http:\/\/tinyurl.com\/65z4dfy","profile_sidebar_border_color":"FFFFFF","url":"http:\/\/jimgaffigan.com\/appearances.shtml","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110147040029319168","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.whosay.com\" rel=\"nofollow\"\u003EWhoSay\u003C\/a\u003E","created_at":"Sun Sep 04 00:27:55 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110147040029319168,"place":null,"text":"The only time someone should drink a shot is never."},"default_profile_image":false,"statuses_count":1821,"profile_use_background_image":true,"verified":true,"favourites_count":73,"friends_count":459,"profile_background_color":"6699CC","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162969523\/JG-Twitter.jpg","created_at":"Sun Jun 03 11:09:19 +0000 2007","followers_count":702293,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162969523\/JG-Twitter.jpg","id":6539592,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1413598901\/IMG_0595b_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1413598901\/IMG_0595b_normal.jpg"},{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"18713254","default_profile":false,"notifications":false,"profile_background_tile":true,"screen_name":"simonpegg","name":"Simon Pegg","listed_count":28045,"location":"London, UK","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":0,"profile_link_color":"009999","description":"Actor\/writer\/dog owner\/winner of 50m flat race 1977-1981","profile_sidebar_border_color":"eeeeee","url":"http:\/\/twitter.com\/simonpegg","time_zone":"London","status":{"id_str":"109963862522068993","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Sat Sep 03 12:20:02 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":109963862522068993,"place":null,"text":"It's a shame Darth Vader didn't say \"NO\" to slaughtering all them little kids. He's alright though because he threw an old man down the bog."},"default_profile_image":false,"statuses_count":6523,"profile_use_background_image":true,"verified":true,"favourites_count":8,"friends_count":355,"profile_background_color":"131516","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/265410194\/image003.jpg","created_at":"Wed Jan 07 06:19:34 +0000 2009","followers_count":1450438,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/265410194\/image003.jpg","id":18713254,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1334758081\/Rolling_Stone_08.02.11_0057_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1334758081\/Rolling_Stone_08.02.11_0057_normal.jpg"},{"profile_sidebar_fill_color":"7f7fa4","protected":false,"id_str":"19768193","notifications":false,"profile_background_tile":true,"screen_name":"mshowalter","name":"Michael Showalter","listed_count":3893,"location":"Brooklyn, NYC","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"161314","description":"Author of Mr.Funny Pants available at a bookstore near you! Or online now at www.amazon.com","default_profile":false,"profile_sidebar_border_color":"1c1d1b","url":"http:\/\/www.michaelshowalter.net","time_zone":"Eastern Time (US & Canada)","status":{"retweeted_status":{"id_str":"109341511937826816","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Thu Sep 01 19:07:02 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":109341511937826816,"place":null,"text":"Get ready to get \"Schooled!\" Comedian Michael Showalter could be quizzing your college soon! #NESN @mshowalter http:\/\/t.co\/4KGwNuw"},"id_str":"110070961021272064","in_reply_to_status_id":null,"truncated":true,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 19:25:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110070961021272064,"place":null,"text":"RT @KepplerOnCampus: Get ready to get \"Schooled!\" Comedian Michael Showalter could be quizzing your college soon! #NESN @mshowalter http ..."},"default_profile_image":false,"statuses_count":1769,"profile_use_background_image":true,"verified":true,"favourites_count":2,"friends_count":208,"profile_background_color":"412725","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/226724530\/shwltrctpwr_001grain_copy.jpg","created_at":"Fri Jan 30 14:05:18 +0000 2009","followers_count":140113,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/226724530\/shwltrctpwr_001grain_copy.jpg","id":19768193,"profile_text_color":"1b171c","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1365888173\/photo4_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1365888173\/photo4_normal.jpg"},{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"28744383","notifications":false,"profile_background_tile":false,"screen_name":"JudahWorldChamp","name":"Judah Friedlander","listed_count":3834,"location":"NYC","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4","description":"I am The World Champion, and that means this is Judah Friedlander's Official Twitter page.","default_profile":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.worldchampionoftheworld.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110100914412593152","in_reply_to_status_id":110081188663791616,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110081188663791616","geo":null,"in_reply_to_screen_name":"justincousson","in_reply_to_user_id_str":"233841077","coordinates":null,"in_reply_to_user_id":233841077,"source":"web","created_at":"Sat Sep 03 21:24:38 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110100914412593152,"place":null,"text":"@justincousson i bought 3 hotels and stacked them on yop of each other too."},"default_profile_image":false,"statuses_count":3033,"profile_use_background_image":true,"verified":false,"favourites_count":5,"friends_count":1815,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/298340095\/twitterBkgdBlank.jpg","created_at":"Sat Apr 04 05:04:37 +0000 2009","followers_count":209276,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/298340095\/twitterBkgdBlank.jpg","id":28744383,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124117561\/14_lores_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124117561\/14_lores_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"52551600","notifications":false,"profile_background_tile":false,"screen_name":"JimCarrey","name":"Jim Carrey","listed_count":46631,"location":"Los Angeles","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"Actor Jim Carrey!","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.jimcarrey.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110016446918180864","in_reply_to_status_id":110013593470238720,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110013593470238720","geo":null,"in_reply_to_screen_name":"Madison_Paije_x","in_reply_to_user_id_str":"363279932","coordinates":null,"in_reply_to_user_id":363279932,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 15:48:59 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110016446918180864,"place":null,"text":"@Madison_Paije_x ?;^)"},"default_profile_image":false,"statuses_count":2730,"profile_use_background_image":true,"verified":true,"favourites_count":1,"friends_count":1,"profile_background_color":"212021","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/90355341\/twee2.jpg","created_at":"Tue Jun 30 22:58:44 +0000 2009","followers_count":4085471,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/90355341\/twee2.jpg","id":52551600,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1519240120\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1519240120\/image_normal.jpg"},{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"21148293","notifications":null,"profile_background_tile":false,"screen_name":"kathygriffin","name":"Kathy Griffin","listed_count":16469,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-32400,"profile_link_color":"009999","description":"2-time Emmy award winning comedian & star of Bravo's My Life on the D-List.","profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.kathygriffin.net","time_zone":"Alaska","status":{"id_str":"110127520191492096","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","created_at":"Sat Sep 03 23:10:21 +0000 2011","contributors":null,"retweeted":false,"retweet_count":27,"id":110127520191492096,"place":null,"text":"Im on it! Cut the shit, it's not exactly the Mark Twain award! RT @kaven23: shud make fun of bieber thanking god & jesus."},"default_profile_image":false,"statuses_count":2189,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":3,"friends_count":0,"profile_background_color":"131516","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/322147054\/Kathy_Twitter_EMMYS_noT_518.jpg","created_at":"Tue Feb 17 23:54:04 +0000 2009","followers_count":1048555,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322147054\/Kathy_Twitter_EMMYS_noT_518.jpg","id":21148293,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1477819493\/1_MG_9929B_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1477819493\/1_MG_9929B_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"6480682","default_profile":false,"notifications":false,"profile_background_tile":true,"screen_name":"azizansari","name":"Aziz Ansari","listed_count":19218,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff","description":"I'm an actor\/comedian. I play Tom on Parks and Recreation on NBC. I also like food a lot. ","profile_sidebar_border_color":"87bc44","url":"http:\/\/azizisbored.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110117319103098880","in_reply_to_status_id":109030258782650368,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"109030258782650368","geo":null,"in_reply_to_screen_name":"N666ZY","in_reply_to_user_id_str":"24757911","coordinates":null,"in_reply_to_user_id":24757911,"source":"web","created_at":"Sat Sep 03 22:29:49 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110117319103098880,"place":null,"text":"@N666ZY Dude you aint tell me you had Smashburger yet??! Thoughts?"},"default_profile_image":false,"statuses_count":3565,"profile_use_background_image":true,"verified":true,"favourites_count":379,"friends_count":241,"profile_background_color":"053285","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","created_at":"Thu May 31 19:06:49 +0000 2007","followers_count":1215395,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","id":6480682,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg"},{"profile_sidebar_fill_color":"FFF7CC","protected":false,"id_str":"14075928","notifications":false,"profile_background_tile":false,"screen_name":"TheOnion","name":"The Onion","listed_count":52135,"location":"New York, NY","show_all_inline_media":true,"contributors_enabled":true,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"FF0000","description":"America's Finest News Source. Follow Onion News Network television show (@ONN) with Season 2 coming to @IFCtv this fall. Also http:\/\/facebook.com\/theonion","profile_sidebar_border_color":"F2E195","url":"http:\/\/www.theonion.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110166347119460352","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sun Sep 04 01:44:38 +0000 2011","contributors":null,"retweeted":false,"retweet_count":35,"id":110166347119460352,"place":null,"text":"A Tea party congressman sees only one solution to raging wildfire in his district: massive tax cuts. http:\/\/t.co\/bWytBlo #OnionReview"},"default_profile_image":false,"statuses_count":9395,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":33,"friends_count":13,"profile_background_color":"ffffff","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","created_at":"Tue Mar 04 02:48:37 +0000 2008","followers_count":3065044,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","id":14075928,"profile_text_color":"0C3E53","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/334357688\/onion_logo_03_L_normal.png","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/334357688\/onion_logo_03_L_normal.png"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"15693493","notifications":false,"profile_background_tile":false,"screen_name":"funnyordie","name":"Funny Or Die","listed_count":20413,"location":"Hollywood, Ca","show_all_inline_media":false,"contributors_enabled":true,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"We make funny videos with famous people. Will Ferrell is our boss. We like to laugh and watch kittens do adorable people things.","default_profile":false,"profile_sidebar_border_color":"181A1E","url":"http:\/\/funnyordie.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110140144501268480","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sun Sep 04 00:00:31 +0000 2011","contributors":null,"retweeted":false,"retweet_count":34,"id":110140144501268480,"place":null,"text":"Just a heads up: security appears to be confiscating shirts at the entrance from anyone with a dumb tattoo. #FYFFEST"},"default_profile_image":false,"statuses_count":5302,"profile_use_background_image":true,"verified":true,"favourites_count":31,"friends_count":3239,"profile_background_color":"0d0d0d","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/299282155\/FINAL.jpg","created_at":"Fri Aug 01 19:42:20 +0000 2008","followers_count":2383334,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/299282155\/FINAL.jpg","id":15693493,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1296763613\/twitter-avatar-1_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1296763613\/twitter-avatar-1_normal.jpg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"18548221","notifications":false,"profile_background_tile":false,"screen_name":"DougBenson","name":"Doug Benson","listed_count":7061,"location":"Los Angeles","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4","description":"If you can't stand the tweet, unfollow the kitchen. New album, POTTY MOUTH, 8\/30!\r\n Tour dates at http:\/\/www.douglovesmovies.com ","profile_sidebar_border_color":"BDDCAD","url":null,"default_profile":false,"time_zone":"Pacific Time (US & Canada)","status":{"retweeted_status":{"id_str":"110131497054380032","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","created_at":"Sat Sep 03 23:26:09 +0000 2011","contributors":null,"retweeted":false,"retweet_count":8,"id":110131497054380032,"place":null,"text":"There's still about 150 comedy passes left for Bagley and Intiman, so grab them while you can. Remember there's always standby room too!"},"id_str":"110131554474401792","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 23:26:23 +0000 2011","contributors":null,"retweeted":false,"retweet_count":8,"id":110131554474401792,"place":null,"text":"RT @Bumbershoot: There's still about 150 comedy passes left for Bagley and Intiman, so grab them while you can. Remember there's always ..."},"default_profile_image":false,"statuses_count":9155,"profile_use_background_image":true,"verified":true,"favourites_count":320,"friends_count":420,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/174573121\/benson2-1.jpg","created_at":"Fri Jan 02 07:39:59 +0000 2009","followers_count":281504,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/174573121\/benson2-1.jpg","id":18548221,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1427931914\/CD3_Benson_Cover_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1427931914\/CD3_Benson_Cover_normal.jpg"},{"profile_sidebar_fill_color":"ffe5a8","protected":false,"id_str":"809760","notifications":false,"profile_background_tile":true,"screen_name":"badbanana","name":"Tim Siedell","listed_count":11740,"location":"Nebraska, USA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-21600,"profile_link_color":"cf6519","description":"Sometimes I just want to give it all up and become a handsome billionaire.","profile_sidebar_border_color":"eeeeee","url":"http:\/\/about.me\/timsiedell","time_zone":"Central Time (US & Canada)","status":{"id_str":"110152580524552192","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","created_at":"Sun Sep 04 00:49:56 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110152580524552192,"place":null,"text":"Hey, GEICO commercials. We know."},"default_profile_image":false,"statuses_count":13846,"profile_use_background_image":true,"verified":true,"favourites_count":1498,"friends_count":274,"profile_background_color":"484c54","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/37772539\/Pinstripe2.png","created_at":"Sun Mar 04 05:57:43 +0000 2007","followers_count":522107,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/37772539\/Pinstripe2.png","id":809760,"profile_text_color":"6e6e6e","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/795687519\/Bad_Banana_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/795687519\/Bad_Banana_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"6173842","notifications":false,"profile_background_tile":false,"screen_name":"ICHCheezburger","name":"ICanHasCheezburger?","listed_count":6567,"location":"Seattle, WA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0000ff","description":"I can has funny pictures of cats, plz?","default_profile":false,"profile_sidebar_border_color":"87bc44","url":"http:\/\/icanhascheezburger.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110147753581096960","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","created_at":"Sun Sep 04 00:30:45 +0000 2011","contributors":null,"retweeted":false,"retweet_count":2,"id":110147753581096960,"place":null,"text":"Dryer Cat Approves! - funny pictures - Dryer Cat Approves!LoL by: PrincessWordplay http:\/\/t.co\/oprEt4y"},"default_profile_image":false,"statuses_count":11545,"profile_use_background_image":true,"verified":false,"favourites_count":4,"friends_count":3124,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/30261844\/ICHCTwitterBG.jpg","created_at":"Sun May 20 08:02:15 +0000 2007","followers_count":1573827,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/30261844\/ICHCTwitterBG.jpg","id":6173842,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1213876440\/27539_32561485399_2579_n_normal.jpeg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1213876440\/27539_32561485399_2579_n_normal.jpeg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"22461427","notifications":false,"profile_background_tile":true,"screen_name":"alyankovic","name":"Al Yankovic","listed_count":27657,"location":"Los Angeles","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4","description":"You know... the Eat It guy.","profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.weirdal.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110056533651496960","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitpic.com\" rel=\"nofollow\"\u003ETwitpic\u003C\/a\u003E","created_at":"Sat Sep 03 18:28:17 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110056533651496960,"place":null,"text":"I know our economy is messed up, but I still think it\u2019s ridiculous to charge almost 200 bucks for a side of soup. http:\/\/t.co\/LwAeytG"},"default_profile_image":false,"statuses_count":1377,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":277,"friends_count":210,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5009241\/906623544_l.jpg","created_at":"Mon Mar 02 07:00:29 +0000 2009","followers_count":2135730,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5009241\/906623544_l.jpg","id":22461427,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/246073324\/IL2_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/246073324\/IL2_normal.jpg"},{"profile_sidebar_fill_color":"17161A","protected":false,"id_str":"19637934","notifications":false,"profile_background_tile":true,"screen_name":"rainnwilson","name":"RainnWilson","listed_count":32753,"location":"Los Angeles-ish","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-21600,"profile_link_color":"9FA1A3","description":"I am an actor and a writer and I co-created SoulPancake and my son, Walter.","profile_sidebar_border_color":"22262B","url":"http:\/\/www.facebook.com\/rainnwilson","time_zone":"Saskatchewan","status":{"id_str":"110152541580427264","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","created_at":"Sun Sep 04 00:49:47 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110152541580427264,"place":null,"text":"Obama is capitulating so much that he has decided to vote for Rick Perry."},"default_profile_image":false,"statuses_count":6163,"profile_use_background_image":true,"verified":true,"favourites_count":1480,"friends_count":244,"profile_background_color":"ffffff","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/212017033\/rainn.jpg","created_at":"Wed Jan 28 05:28:45 +0000 2009","followers_count":2526376,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/212017033\/rainn.jpg","id":19637934,"default_profile":false,"profile_text_color":"585F65","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1431046561\/rainnwilsonT6I7409_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1431046561\/rainnwilsonT6I7409_normal.jpg"},{"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"16302651","notifications":false,"profile_background_tile":true,"screen_name":"EugeneMirman","name":"Eugene Mirman","listed_count":3205,"location":"Brooklyn, NY","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"b83c0a","description":"I am television's Eugene Mirman. I am very nice and like seafood.","profile_sidebar_border_color":"fff9f5","url":"http:\/\/www.eugenemirman.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110106576421007360","in_reply_to_status_id":110068002430517249,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110068002430517249","geo":null,"in_reply_to_screen_name":"godzillaeyes","in_reply_to_user_id_str":"14122597","coordinates":null,"in_reply_to_user_id":14122597,"source":"web","created_at":"Sat Sep 03 21:47:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110106576421007360,"place":null,"text":"@godzillaeyes It's not creepy, but you will just end up seeing mostly the same set three times probably."},"default_profile_image":false,"statuses_count":2723,"profile_use_background_image":true,"verified":true,"favourites_count":0,"friends_count":256,"profile_background_color":"fbf7e9","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/3286688\/twitter_bg.jpg","created_at":"Mon Sep 15 21:51:02 +0000 2008","followers_count":140087,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3286688\/twitter_bg.jpg","id":16302651,"default_profile":false,"profile_text_color":"a24616","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/61007765\/237905348-Ti_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/61007765\/237905348-Ti_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"6480652","notifications":null,"profile_background_tile":false,"screen_name":"paulscheer","name":"Paul Scheer","listed_count":5073,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"Paul Scheer uses furniture but doesn't trust it.","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.paulscheer.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109892539112374272","in_reply_to_status_id":109796913129336832,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"109796913129336832","geo":null,"in_reply_to_screen_name":"danieljpowell","in_reply_to_user_id_str":"25741706","coordinates":null,"in_reply_to_user_id":25741706,"source":"web","created_at":"Sat Sep 03 07:36:37 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":109892539112374272,"place":null,"text":"@danieljpowell good point"},"default_profile_image":false,"default_profile":false,"statuses_count":1823,"profile_use_background_image":true,"verified":true,"favourites_count":44,"friends_count":453,"profile_background_color":"e7d352","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/292867502\/NTSF-webskin.jpg","created_at":"Thu May 31 19:05:17 +0000 2007","followers_count":216099,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/292867502\/NTSF-webskin.jpg","id":6480652,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1156102294\/5096530605_7b05eb0348_o_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1156102294\/5096530605_7b05eb0348_o_normal.jpg"}]
@@ -0,0 +1 @@
1
+ {"errors":[{"code":17,"message":"No user matches for specified terms"}]}
@@ -0,0 +1 @@
1
+ {"error":"Not Acceptable","request":"/search.json?q=from%3Asferik"}
@@ -0,0 +1 @@
1
+ {"relationship":{"target":{"followed_by":false,"id_str":"14100886","following":true,"screen_name":"sferik","id":7505382},"source":{"marked_spam":false,"notifications_enabled":false,"followed_by":true,"want_retweets":true,"id_str":"7505382","blocking":false,"all_replies":false,"following":false,"screen_name":"pengwynn","id":14100886}}}
@@ -0,0 +1 @@
1
+ {"error":"Not Found","request":"/1/statuses/show/1.json"}
@@ -0,0 +1 @@
1
+ {"type":"rich","url":"https:\/\/twitter.com\/sferik\/status\/25938088801","author_url":"https:\/\/twitter.com\/sferik","provider_name":"Twitter","height":null,"html":"\u003Cblockquote class=\"twitter-tweet\"\u003E\u003Cp\u003E@\u003Ca href=\"https:\/\/twitter.com\/noradio\"\u003Enoradio\u003C\/a\u003E working on implementing \u003Ca href=\"https:\/\/twitter.com\/search\/%2523NewTwitter\"\u003E#NewTwitter\u003C\/a\u003E API methods in the twitter gem. Twurl is making it easy. Thank you!\u003C\/p\u003E&mdash; Erik Michaels-Ober (@sferik) \u003Ca href=\"https:\/\/twitter.com\/sferik\/status\/25938088801\" data-datetime=\"2010-09-30T01:43:44+00:00\"\u003ESeptember 30, 2010\u003C\/a\u003E\u003C\/blockquote\u003E\n\u003Cscript src=\"\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"\u003E\u003C\/script\u003E","provider_url":"http:\/\/twitter.com","author_name":"Erik Michaels-Ober","version":"1.0","width":550,"cache_age":"31536000000"}
Binary file
@@ -0,0 +1 @@
1
+ {"profile_background_color":"efefef","listed_count":201,"lang":"en","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","created_at":"Sat Mar 08 16:34:22 +0000 2008","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","screen_name":"pengwynn","status":{"in_reply_to_user_id_str":null,"text":"Flatstache is to Mustache what Zepto is to jQuery, from @natevw http:\/\/t.co\/gOjxJ1E","coordinates":null,"retweeted":false,"retweet_count":0,"created_at":"Sun Jan 16 21:01:10 +0000 2011","in_reply_to_user_id":null,"place":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"id_str":"26745802235842561","geo":null,"id":26745802235842561,"contributors":null,"in_reply_to_screen_name":null},"url":"http:\/\/wynnnetherland.com","is_translator":false,"show_all_inline_media":false,"geo_enabled":true,"profile_text_color":"666666","followers_count":2902,"contributors_enabled":false,"following":true,"favourites_count":67,"profile_sidebar_fill_color":"dddddd","location":"Dallas, TX","profile_background_tile":false,"time_zone":"Central Time (US & Canada)","profile_link_color":"35abe9","protected":false,"follow_request_sent":false,"statuses_count":4160,"profile_sidebar_border_color":"cccccc","name":"Wynn Netherland","id_str":"14100886","friends_count":1710,"id":14100886,"notifications":false,"profile_use_background_image":true,"utc_offset":-21600,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1180321093\/komikazee_normal.png"}
@@ -0,0 +1 @@
1
+ {"statuses":[{"id_str":"110059784971096066","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"66561957","notifications":false,"profile_background_tile":false,"screen_name":"therealzooeyd","name":"zooey deschanel","listed_count":9165,"location":"somewhere pretty awesome...","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4","description":"where do I begin?","profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.sheandhim.com","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":1864,"profile_use_background_image":true,"verified":true,"favourites_count":2,"friends_count":355,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/178865861\/Zooey_12.jpg","created_at":"Tue Aug 18 01:55:35 +0000 2009","followers_count":561263,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/178865861\/Zooey_12.jpg","id":66561957,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1284004687\/zuzu_and_caleb_at_the_camera_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1284004687\/zuzu_and_caleb_at_the_camera_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 18:41:12 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":"100+","id":110059784971096066,"place":null,"text":"looking at twitter trends just makes me realize how little i really understand about mankind.","result_category":"popular"},{"id_str":"110102452983963648","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"91720294","notifications":false,"profile_background_tile":true,"screen_name":"I_am_Chicago1","name":"Cortney Bell ","listed_count":10,"location":"#Pvnation ","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":true,"utc_offset":-21600,"profile_link_color":"0084B4","description":"follow me ... and @ me for more info about me ... i love talking ","default_profile":false,"profile_sidebar_border_color":"C0DEED","url":null,"time_zone":"Central Time (US & Canada)","default_profile_image":false,"statuses_count":15916,"profile_use_background_image":true,"verified":false,"favourites_count":30,"friends_count":1382,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/313661881\/230924_10150575103000392_886675391_18447865_3396753_n.jpg","created_at":"Sun Nov 22 04:12:38 +0000 2009","followers_count":1455,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/313661881\/230924_10150575103000392_886675391_18447865_3396753_n.jpg","id":91720294,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1500420758\/26726_10150132149850392_886675391_11511035_325929_n_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1500420758\/26726_10150132149850392_886675391_11511035_325929_n_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:45 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110102452988157952","display_url":"pic.twitter.com\/tImqsGy","expanded_url":"http:\/\/twitter.com\/I_am_Chicago1\/status\/110102452983963648\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcpmP9CIAAJpsR.jpg","url":"http:\/\/t.co\/tImqsGy","indices":[15,34],"sizes":{"small":{"h":98,"w":130,"resize":"fit"},"large":{"h":98,"w":130,"resize":"fit"},"thumb":{"h":98,"w":130,"resize":"crop"},"medium":{"h":98,"w":130,"resize":"fit"}},"id":110102452988157952,"media_url":"http:\/\/p.twimg.com\/AYcpmP9CIAAJpsR.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102452983963648,"place":null,"text":"this shit Cray http:\/\/t.co\/tImqsGy","result_category":"recent"},{"id_str":"110102452937834496","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"F3F3F3","protected":false,"id_str":"29248413","notifications":false,"profile_background_tile":false,"screen_name":"trinbeean","name":"Trina","listed_count":0,"location":"Everywhere I wanna be","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"990000","description":"Wats UNDERSTOOD dnt gota be EXPLAINED!!","profile_sidebar_border_color":"DFDFDF","url":null,"time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"default_profile":false,"statuses_count":13064,"profile_use_background_image":true,"verified":false,"favourites_count":8,"friends_count":220,"profile_background_color":"EBEBEB","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","created_at":"Mon Apr 06 17:34:14 +0000 2009","followers_count":133,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","id":29248413,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1493286924\/trinbeean_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1493286924\/trinbeean_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/levelupstudio.com\" rel=\"nofollow\"\u003EPlume\u00a0\u00a0\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:45 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102452937834496,"place":null,"text":"Damn my phone n my twitter ain't jumped all day...nobodys fukkin wit me?! Smh","result_category":"recent"},{"id_str":"110102452656816129","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"315338037","notifications":null,"profile_background_tile":false,"screen_name":"h1940","name":"Hans Greup","default_profile":true,"listed_count":0,"location":null,"show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4","description":null,"profile_sidebar_border_color":"C0DEED","url":null,"time_zone":null,"default_profile_image":true,"statuses_count":1,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":3,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Sat Jun 11 18:05:53 +0000 2011","followers_count":0,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":315338037,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url":"http:\/\/a3.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[{"display_url":"goo.gl\/TDs5Y?kylo","expanded_url":"http:\/\/goo.gl\/TDs5Y?kylo","url":"http:\/\/t.co\/9EhL4KF","indices":[53,72]}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102452656816129,"place":null,"text":"I just made $577 today working a few hour from home http:\/\/t.co\/9EhL4KF","result_category":"recent"},{"id_str":"110102452191248384","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"f6ce93","protected":false,"id_str":"243420776","notifications":false,"profile_background_tile":false,"screen_name":"DenisFariias","name":" Denis Farias","default_profile":false,"listed_count":0,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":null,"profile_link_color":"825421","description":"tourino, shato pra caralho, amig\u00e3o, olhos verdes, americano e vascaino fanatico, futebol, forro, festa... Msn: denis_fariaschagas@hotmail.com \r\n","profile_sidebar_border_color":"000000","url":null,"time_zone":null,"default_profile_image":false,"statuses_count":995,"profile_use_background_image":true,"verified":false,"favourites_count":1,"friends_count":145,"profile_background_color":"ffffff","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/324394183\/wall-3.br.jpg","created_at":"Thu Jan 27 00:40:08 +0000 2011","followers_count":192,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/324394183\/wall-3.br.jpg","id":243420776,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1495336726\/Denis99_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1495336726\/Denis99_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.twitrbackgrounds.com\" rel=\"nofollow\"\u003Etwitrbackgroundsdotcom\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[{"display_url":"TwitterBackgrounds.com","expanded_url":"http:\/\/www.TwitterBackgrounds.com","url":"http:\/\/t.co\/Yxg7c6U","indices":[62,81]}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102452191248384,"place":null,"text":"Just changed my twitter background, check it out! Found it at http:\/\/t.co\/Yxg7c6U on Saturday 02:24:36 PM","result_category":"recent"},{"id_str":"110102451520147456","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"244369383","notifications":false,"profile_background_tile":true,"screen_name":"ryanruggi","name":"Ryan Ruggiero","listed_count":6,"location":"Atlanta, Georgia","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-18000,"profile_link_color":"32c232","description":"Just livin' it up like it's the weekend. ","profile_sidebar_border_color":"ffffff","url":null,"time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"statuses_count":7023,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":15,"friends_count":682,"profile_background_color":"fafafa","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/316502774\/pattern-background.jpg","created_at":"Sat Jan 29 04:35:01 +0000 2011","followers_count":640,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/316502774\/pattern-background.jpg","id":244369383,"profile_text_color":"46454d","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1523046286\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1523046286\/image_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:46 +0000 2011","entities":{"user_mentions":[],"urls":[],"media":[{"type":"photo","id_str":"110102451524341761","display_url":"pic.twitter.com\/3Bmz6qj","expanded_url":"http:\/\/twitter.com\/ryanruggi\/status\/110102451520147456\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcpmKgCEAEnDeT.png","url":"http:\/\/t.co\/3Bmz6qj","indices":[60,79],"sizes":{"small":{"h":262,"w":340,"resize":"fit"},"large":{"h":602,"w":780,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":463,"w":600,"resize":"fit"}},"id":110102451524341761,"media_url":"http:\/\/p.twimg.com\/AYcpmKgCEAEnDeT.png"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102451520147456,"place":null,"text":"Well this'll be fun, it's heading straight for Atlanta! O.o http:\/\/t.co\/3Bmz6qj","result_category":"recent"},{"id_str":"110102450790338560","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"363396957","notifications":false,"profile_background_tile":false,"screen_name":"MarixoliitaC","name":"maria fernanda","listed_count":0,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4","description":"","profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.facebook.com\/marixolita.bonita","time_zone":null,"default_profile_image":false,"statuses_count":33,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":9,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Sun Aug 28 01:07:24 +0000 2011","followers_count":0,"default_profile":true,"follow_request_sent":false,"lang":"es","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":363396957,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1517730160\/275837_100002268478641_2446262_n_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1517730160\/275837_100002268478641_2446262_n_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102450790338560,"place":null,"text":"dia perfecto para vicear full en twitter xD","result_category":"recent"},{"id_str":"110102450614181888","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"","protected":false,"id_str":"351563676","notifications":false,"profile_background_tile":true,"screen_name":"vemquicandu","name":"Capit\u00e3o Caverna","default_profile":false,"listed_count":263,"location":"no beco no buteco de um bar","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-14400,"profile_link_color":"de0909","description":"ex prostituta, ex presidiario, ex dorgado. AGORA SOU RYCO E MINHA VIDA \u00c9 UM LUXO! e ainda tinha gente que fala que eu to na pior. ps: s\u00f3 aceito com scrap u_\u00fa kk","profile_sidebar_border_color":"fafafa","url":null,"time_zone":"Santiago","default_profile_image":false,"statuses_count":2229,"profile_use_background_image":true,"verified":false,"favourites_count":281,"friends_count":452,"profile_background_color":"f7f9fa","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/308785326\/avenged-seven-fold.jpg","created_at":"Tue Aug 09 12:38:31 +0000 2011","followers_count":976,"follow_request_sent":false,"lang":"pt","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/308785326\/avenged-seven-fold.jpg","id":351563676,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1495621875\/lilipe_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1495621875\/lilipe_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102450614181888,"place":null,"text":"twitter ta parad\u00e3o","result_category":"recent"},{"id_str":"110102450559651841","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"360252951","notifications":null,"profile_background_tile":false,"screen_name":"shesignorant","name":"Nan","default_profile":true,"listed_count":0,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4","description":"","profile_sidebar_border_color":"C0DEED","url":null,"time_zone":null,"default_profile_image":false,"statuses_count":1048,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":2,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Mon Aug 22 22:57:18 +0000 2011","followers_count":1,"follow_request_sent":null,"lang":"pt","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":360252951,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1522354181\/hees_normal.png","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1522354181\/hees_normal.png"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Fanfic Obsession","screen_name":"fanficobsession","id_str":"89702318","indices":[10,26],"id":89702318},{"name":"Taste Of Ink Store","screen_name":"tasteofinkstore","id_str":"45738466","indices":[31,47],"id":45738466}],"urls":[{"display_url":"kingo.to\/MJx","expanded_url":"http:\/\/kingo.to\/MJx","url":"http:\/\/t.co\/MFstcIo","indices":[84,103]}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102450559651841,"place":null,"text":"Eu sigo o @fanficobsession e a @tasteofinkstore e quero ganhar o Kit 01 de bottons! http:\/\/t.co\/MFstcIo twitter","result_category":"recent"},{"id_str":"110102450240888832","in_reply_to_status_id":110101691038306304,"truncated":false,"user":{"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"340238592","notifications":null,"profile_background_tile":true,"screen_name":"AnaisWatson","name":"Ana\u00efs Gomez-Watson \u262e","default_profile":false,"listed_count":1,"location":"#Poufsoufflepower \u03df","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-10800,"profile_link_color":"f07b5d","description":"Ana\u00efs 16 yo, Jenny is my love #heartTeam. Being myself in that fake world. Second twitter ; Potter head , selenator and belieber. Until the very end \u03df","profile_sidebar_border_color":"e8e8e8","url":"http:\/\/iownyournight.tumblr.com\/","time_zone":"Greenland","default_profile_image":false,"statuses_count":1160,"profile_use_background_image":true,"verified":false,"favourites_count":3,"friends_count":24,"profile_background_color":"c0deed","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/323685091\/tumblr_looi6k1Vn01qderwco1_500.jpg","created_at":"Fri Jul 22 11:07:30 +0000 2011","followers_count":27,"follow_request_sent":null,"lang":"fr","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/323685091\/tumblr_looi6k1Vn01qderwco1_500.jpg","id":340238592,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1525293982\/for_twitter_1_normal.png","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1525293982\/for_twitter_1_normal.png"},"favorited":false,"in_reply_to_status_id_str":"110101691038306304","geo":null,"in_reply_to_screen_name":"Poufsouffle_","in_reply_to_user_id_str":"349194144","coordinates":null,"in_reply_to_user_id":349194144,"source":"\u003Ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003EMobile Web\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Pomona Chourave","screen_name":"Poufsouffle_","id_str":"349194144","indices":[0,13],"id":349194144}],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102450240888832,"place":null,"text":"@Poufsouffle_ - TC, le nombre de followers qui importe tant. \u00c7a m'\u00e9nerve aussi d'o\u00f9 mon recul sur un twitter plus personnel -","result_category":"recent"},{"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"user":{"listed_count":4,"protected":false,"show_all_inline_media":true,"contributors_enabled":false,"geo_enabled":true,"notifications":false,"profile_link_color":"0099CC","screen_name":"Alilicita","name":"Ali Le\u00f3n D\u00edaz","profile_sidebar_border_color":"fff8ad","location":"Lambar\u00e9-Paraguay","following":true,"time_zone":"Santiago","utc_offset":-14400,"description":"26\/ABR, Tauro, Lic. en Administraci\u00f3n de Empresas, #CCP1912 y...no tengo nada contra ellos,la rabia es contra el tiempo por ponerte junto a mi..tarde..","default_profile_image":false,"statuses_count":6526,"profile_use_background_image":true,"url":"http:\/\/www.facebook.com\/ali.leondiaz","verified":false,"favourites_count":4,"friends_count":324,"profile_background_color":"FFF04D","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/312913794\/felinos__56_.jpg","followers_count":260,"follow_request_sent":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/312913794\/felinos__56_.jpg","created_at":"Mon Jan 25 15:35:59 +0000 2010","profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1515384610\/Foto0224_normal.jpg","lang":"es","profile_sidebar_fill_color":"f6ffd1","id":108322421,"id_str":"108322421","default_profile":false,"profile_background_tile":true,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1515384610\/Foto0224_normal.jpg"},"retweeted":false,"retweet_count":0,"coordinates":null,"source":"\u003Ca href=\"http:\/\/twitdat.com\" rel=\"nofollow\"\u003Etwitdat\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"TwitDat","screen_name":"twitdatcom","indices":[56,67],"id":253174959,"id_str":"253174959"}],"hashtags":[],"urls":[{"display_url":"twitdat.com\/tools","expanded_url":"http:\/\/twitdat.com\/tools","url":"http:\/\/t.co\/Yl8DewV","indices":[32,51]}]},"id":110102449922121728,"id_str":"110102449922121728","place":null,"in_reply_to_status_id":null,"text":"Test de Reciprocidad en Twitter http:\/\/t.co\/Yl8DewV v\u00eda @twitdatcom","result_category":"recent"},{"id_str":"110102449896947712","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"","protected":false,"id_str":"172176570","notifications":false,"profile_background_tile":true,"screen_name":"bela_lopes2","name":"Isabela Lopes","listed_count":0,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-14400,"profile_link_color":"cb81de","description":"","profile_sidebar_border_color":"ffffff","url":"http:\/\/www.facebook.com\/IsaahLopes","time_zone":"Santiago","default_profile_image":false,"statuses_count":413,"profile_use_background_image":true,"verified":false,"favourites_count":4,"friends_count":195,"profile_background_color":"e05ee0","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/315191776\/190448_200664266619663_100000282739711_696335_665848_a.jpg","created_at":"Thu Jul 29 02:28:42 +0000 2010","followers_count":54,"follow_request_sent":false,"lang":"pt","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/315191776\/190448_200664266619663_100000282739711_696335_665848_a.jpg","id":172176570,"profile_text_color":"e673e6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1513465899\/foto0675_001_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1513465899\/foto0675_001_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102449896947712,"place":null,"text":"Hi twitter acabei de chegar do plus e ja estou saindo daqui a pouco tem mag u.u","result_category":"recent"},{"id_str":"110102449607548928","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"","protected":false,"id_str":"199513730","notifications":false,"profile_background_tile":true,"screen_name":"News_MCyrus","name":"Noticias MileyCyrus.","listed_count":166,"location":"Toluka Lake \/ Nashville ","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-10800,"profile_link_color":"bd3535","description":"Hechos, frases, fotos & todo lo que queres saber sobre Miley Ray Cyrus esta AQU\u00cd. Si te gustan los #News_MCyrus no dudes en seguirnos & dar RT. RADIANTE AMOR\u262e","profile_sidebar_border_color":"ffffff","url":"http:\/\/twitter.com\/#!\/News_MCyrus\/favorites","time_zone":"Buenos Aires","default_profile_image":false,"statuses_count":7114,"profile_use_background_image":true,"verified":false,"favourites_count":659,"friends_count":571,"profile_background_color":"613161","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/314729379\/violeta-chispas-wallpapers_7658_1920x1200.jpg","created_at":"Thu Oct 07 01:54:29 +0000 2010","followers_count":9020,"follow_request_sent":false,"lang":"es","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/314729379\/violeta-chispas-wallpapers_7658_1920x1200.jpg","id":199513730,"default_profile":false,"profile_text_color":"3C3940","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1518494905\/normal_009_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1518494905\/normal_009_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Rouse & Chizi.","screen_name":"NickJOrgasm","id_str":"220459277","indices":[24,36],"id":220459277}],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102449607548928,"place":null,"text":"SIGAN A MI OTRO TWITTER @NickJOrgasm .. DOY FOLLOW BACK A TODOOS LOS QUE ME SIGUEN =]","result_category":"recent"},{"id_str":"110102449100042240","in_reply_to_status_id":110101177487736832,"truncated":false,"user":{"profile_sidebar_fill_color":"daf50c","protected":false,"id_str":"104629704","notifications":false,"profile_background_tile":true,"screen_name":"bettaThanYa_EX","name":"NOONIE\u2122","listed_count":0,"location":"Location Not Found ...","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-21600,"profile_link_color":"33adcc","description":"i be in my own lil world felling like . . Fuck you \u2192 you \u2191 you \u2197 you \u2193 oh, & you\u2198 ! - dnt lurk .. HOE jus Follow '","profile_sidebar_border_color":"0ebff0","url":null,"time_zone":"Central Time (US & Canada)","default_profile_image":false,"statuses_count":7060,"profile_use_background_image":true,"verified":false,"favourites_count":72,"friends_count":386,"profile_background_color":"10ad61","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/266467400\/rinekacurry.jpg","created_at":"Wed Jan 13 22:39:54 +0000 2010","followers_count":430,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/266467400\/rinekacurry.jpg","id":104629704,"profile_text_color":"f02bf0","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1515615525\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1515615525\/image_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":"110101177487736832","geo":null,"in_reply_to_screen_name":"Tavia_Danielle","in_reply_to_user_id_str":"230065008","coordinates":null,"in_reply_to_user_id":230065008,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Tavia Russell","screen_name":"Tavia_Danielle","id_str":"230065008","indices":[0,15],"id":230065008}],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102449100042240,"place":null,"text":"@Tavia_Danielle bitch dnt keep saying you not gne fuss on twitter but yet you still posting shit !!!","result_category":"recent"},{"id_str":"110102448923869184","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"f7f4f6","protected":false,"id_str":"95950724","notifications":false,"profile_background_tile":true,"screen_name":"bellahidalgo","name":"Isabella Hidalgo","listed_count":0,"location":"","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-10800,"profile_link_color":"f51eb1","description":"","profile_sidebar_border_color":"ff00cc","url":null,"time_zone":"Greenland","default_profile_image":false,"statuses_count":1792,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":14,"friends_count":78,"profile_background_color":"ff03cd","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/294789691\/tumblr_l13v25Ujet1qajhpuo1_500.jpg","created_at":"Thu Dec 10 17:59:33 +0000 2009","followers_count":77,"follow_request_sent":false,"lang":"pt","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/294789691\/tumblr_l13v25Ujet1qajhpuo1_500.jpg","id":95950724,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1441175861\/PQAAAJff1q2whMis3_AoguHrmzVkson0kPdvSivgdrcswwzS26fRlyazLhUV8Em9BxBcVrgtcj8Yv8PpgWKc2iDtIGMAm1T1UAh4nNdMyMN4p6PODOYqiZY4b2oE_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1441175861\/PQAAAJff1q2whMis3_AoguHrmzVkson0kPdvSivgdrcswwzS26fRlyazLhUV8Em9BxBcVrgtcj8Yv8PpgWKc2iDtIGMAm1T1UAh4nNdMyMN4p6PODOYqiZY4b2oE_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448923869184,"place":null,"text":"aiai descobri que minha irm\u00e3 tava mexendo no meu twitter u-u","result_category":"recent"},{"id_str":"110102448873537537","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"240560217","notifications":null,"profile_background_tile":false,"screen_name":"CSImegan","name":"Megan Carter","default_profile":false,"listed_count":1,"location":"Carmel, IN","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"93A644","description":"Pursuing my Masters in Forensic Biology. Purdue grad. Foodie. Avid reader. Christian. Sports fanatic. Random fact enthusiast. I love my hubby and 2 furry sons!","profile_sidebar_border_color":"eeeeee","url":null,"time_zone":"Indiana (East)","default_profile_image":false,"statuses_count":331,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":363,"profile_background_color":"B2DFDA","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme13\/bg.gif","created_at":"Thu Jan 20 06:02:09 +0000 2011","followers_count":91,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme13\/bg.gif","id":240560217,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1221377599\/SAM_1222_normal.JPG","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1221377599\/SAM_1222_normal.JPG"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.yelp.com\/\" rel=\"nofollow\"\u003EYelp\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[],"urls":[{"display_url":"bit.ly\/pMjZQy","expanded_url":"http:\/\/bit.ly\/pMjZQy","url":"http:\/\/t.co\/nvDM2ug","indices":[68,87]}],"hashtags":[{"indices":[62,67],"text":"Yelp"}]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448873537537,"place":null,"text":"I checked in at Embassy Suites Hotel (4554 Lake Forest Dr) on #Yelp http:\/\/t.co\/nvDM2ug","result_category":"recent"},{"id_str":"110102448596729856","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"105869117","notifications":false,"profile_background_tile":false,"screen_name":"OmegaAudioVideo","name":"OmegaAudioVideo","listed_count":29,"location":"London, Ontario, Canada","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4","description":"We are a premiere Custom AudioVisual company in London, ON. We match the technology you want, with your lifestyle and your budget! - Tweets by Matt Scott, Pres.","profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.OmegaAudio.net","time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"statuses_count":4273,"profile_use_background_image":true,"verified":false,"favourites_count":2,"friends_count":415,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/289421859\/OAVtwitBG.jpg","created_at":"Sun Jan 17 19:30:24 +0000 2010","followers_count":389,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/289421859\/OAVtwitBG.jpg","id":105869117,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1338877809\/Logo_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1338877809\/Logo_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Jim Kelly","screen_name":"GeekInAwe","id_str":"322429893","indices":[68,78],"id":322429893}],"urls":[{"display_url":"deck.ly\/~2WX4z","expanded_url":"http:\/\/deck.ly\/~2WX4z","url":"http:\/\/t.co\/s1SbNXE","indices":[115,134]}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448596729856,"place":null,"text":"You stink, I'm kidding! Have fun man! You coming back for Cedia? RT @GeekInAwe: Yup! You read it correctly\u2026 (cont) http:\/\/t.co\/s1SbNXE","result_category":"recent"},{"id_str":"110102448332472320","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"F6F6F6","protected":false,"id_str":"51282724","notifications":null,"profile_background_tile":false,"screen_name":"b_ferrera","name":"Bruno Reis","default_profile":false,"listed_count":0,"location":"Brazil..on my way to Canada","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-10800,"profile_link_color":"038543","description":"Hi there! College in 2011, Brazil hopefully not for too long but soon in Canada","profile_sidebar_border_color":"EEEEEE","url":null,"time_zone":"Brasilia","default_profile_image":false,"statuses_count":1021,"profile_use_background_image":true,"verified":false,"favourites_count":5,"friends_count":117,"profile_background_color":"ACDED6","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","created_at":"Sat Jun 27 00:04:33 +0000 2009","followers_count":54,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","id":51282724,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1300101851\/DSC01425_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1300101851\/DSC01425_normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:43 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448332472320,"place":null,"text":"Alguem conhece um twitter que zoa corinthians?? Pq tem algumas pessoas q ficam retweeting uns tweets que me irritam demaais!!","result_category":"recent"},{"id_str":"110102448286339072","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"f0f073","protected":false,"id_str":"185890956","notifications":false,"profile_background_tile":false,"screen_name":"PlayaMiaBeach","name":"Playa Mia Cozumel","listed_count":1,"location":"Cozumel, M\u00e9xico","show_all_inline_media":false,"contributors_enabled":false,"following":true,"geo_enabled":false,"utc_offset":null,"profile_link_color":"b35c00","description":"Live a memorable experience at the Mexican Caribbean in one of the finest beach clubs in Cozumel. ","profile_sidebar_border_color":"ebcf2f","url":"http:\/\/www.playamiacozumel.com\/","time_zone":null,"default_profile_image":false,"statuses_count":508,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":0,"friends_count":410,"profile_background_color":"f7f794","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/266405327\/back_twitter.jpg","created_at":"Thu Sep 02 02:20:29 +0000 2010","followers_count":247,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/266405327\/back_twitter.jpg","id":185890956,"profile_text_color":"eb7e2a","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1118774346\/Playa_Mia__3__normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1118774346\/Playa_Mia__3__normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:44 +0000 2011","entities":{"user_mentions":[{"name":"Playa Mia Cozumel","screen_name":"PlayaMiaBeach","id_str":"185890956","indices":[13,27],"id":185890956}],"urls":[],"media":[{"type":"photo","id_str":"110102448290533376","display_url":"pic.twitter.com\/bH36L0s","expanded_url":"http:\/\/twitter.com\/PlayaMiaBeach\/status\/110102448286339072\/photo\/1","media_url_https":"https:\/\/p.twimg.com\/AYcpl-dCEAAOc3o.jpg","url":"http:\/\/t.co\/bH36L0s","indices":[109,128],"sizes":{"small":{"h":340,"w":340,"resize":"fit"},"large":{"h":480,"w":480,"resize":"fit"},"thumb":{"h":150,"w":150,"resize":"crop"},"medium":{"h":480,"w":480,"resize":"fit"}},"id":110102448290533376,"media_url":"http:\/\/p.twimg.com\/AYcpl-dCEAAOc3o.jpg"}],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448286339072,"place":null,"text":"In behalf of @PlayaMiaBeach we wanted to thank everyone for following us. We wish you a wonderful weekend!!! http:\/\/t.co\/bH36L0s","result_category":"recent"},{"id_str":"110102448273760256","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"365993812","notifications":false,"profile_background_tile":false,"screen_name":"Bieltmadalena","name":"Gabriel Ton Madalena","listed_count":0,"location":null,"show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4","description":null,"default_profile":true,"profile_sidebar_border_color":"C0DEED","url":null,"time_zone":null,"default_profile_image":true,"statuses_count":14,"profile_use_background_image":true,"verified":false,"favourites_count":0,"friends_count":36,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Thu Sep 01 11:33:14 +0000 2011","followers_count":4,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":365993812,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url":"http:\/\/a1.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 21:30:43 +0000 2011","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102448273760256,"place":null,"text":"meu cunhado acha twitter coisa de besta","result_category":"recent"},{"id_str":"110102447757869056","in_reply_to_status_id":null,"truncated":false,"user":{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"41335311","notifications":null,"profile_background_tile":false,"screen_name":"rico82","name":"Rico Coutain","default_profile":true,"listed_count":2,"location":"London, England","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":0,"profile_link_color":"0084B4","description":"","profile_sidebar_border_color":"C0DEED","url":null,"time_zone":"London","default_profile_image":false,"statuses_count":1019,"profile_use_background_image":true,"verified":false,"favourites_count":5,"friends_count":67,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Wed May 20 10:50:39 +0000 2009","followers_count":69,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":41335311,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1385690568\/_JM__20_20Rico_20_20_GD__normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1385690568\/_JM__20_20Rico_20_20_GD__normal.jpg"},"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","created_at":"Sat Sep 03 21:30:43 +0000 2011","entities":{"user_mentions":[{"name":"Delphina James","screen_name":"Panness","id_str":"130576543","indices":[1,9],"id":130576543}],"urls":[],"hashtags":[{"indices":[92,102],"text":"Sharezies"}]},"contributors":null,"retweeted":false,"retweet_count":0,"id":110102447757869056,"place":null,"text":"\"@Panness: TWITTER-CREW! I JUST FOUND \u00a35 IN MY WINTER-COAT....Now #ThatsWhatImTalkingAbout\" #Sharezies!","result_category":"recent"}],"served_by_blender":false,"error":null,"next_page":null}
@@ -0,0 +1 @@
1
+ {"country_code":"US","place_type":"poi","url":"http:\/\/api.twitter.com\/1\/geo\/id\/247f43d441defc03.json","polylines":[],"country":"The United States of America","geometry":{"type":"Point","coordinates":[-122.400612831116,37.7821120598956]},"bounding_box":{"type":"Polygon","coordinates":[[[-122.400612831116,37.7821120598956],[-122.400612831116,37.7821120598956],[-122.400612831116,37.7821120598956],[-122.400612831116,37.7821120598956]]]},"attributes":{"street_address":"795 Folsom St","twitter":"twitter","623:id":"210176"},"full_name":"Twitter HQ, San Francisco","name":"Twitter HQ","id":"247f43d441defc03","contained_within":[{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"attributes":{},"full_name":"San Francisco, CA","name":"San Francisco","id":"5a110d312052166f"}]}
@@ -0,0 +1 @@
1
+ {"result":{"places":[{"place_type":"neighborhood","country_code":"US","url":"http:\/\/api.twitter.com\/1\/geo\/id\/be3e44a1ee8f48a6.json","country":"The United States of America","attributes":{},"bounding_box":{"type":"Polygon","coordinates":[[[-122.435982,37.73113101],[-122.40388116,37.73113101],[-122.40388116,37.74942999],[-122.435982,37.74942999]]]},"full_name":"Bernal Heights, San Francisco","name":"Bernal Heights","contained_within":[{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"attributes":{},"full_name":"San Francisco, CA","name":"San Francisco","id":"5a110d312052166f"}],"id":"be3e44a1ee8f48a6"},{"place_type":"neighborhood","country_code":"US","url":"http:\/\/api.twitter.com\/1\/geo\/id\/597463acf7f062a9.json","country":"The United States of America","attributes":{},"bounding_box":{"type":"Polygon","coordinates":[[[-122.42288196,37.74303],[-122.408946,37.74303],[-122.408946,37.77052896],[-122.42288196,37.77052896]]]},"full_name":"Mission, San Francisco","name":"Mission","contained_within":[{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"attributes":{},"full_name":"San Francisco, CA","name":"San Francisco","id":"5a110d312052166f"}],"id":"597463acf7f062a9"},{"place_type":"neighborhood","country_code":"US","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","country":"The United States of America","attributes":{},"bounding_box":{"type":"Polygon","coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]]},"full_name":"Mission Bay, San Francisco","name":"Mission Bay","contained_within":[{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"attributes":{},"full_name":"San Francisco, CA","name":"San Francisco","id":"5a110d312052166f"}],"id":"41bcb736f84a799e"},{"place_type":"city","country_code":"US","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","country":"The United States of America","attributes":{},"bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"full_name":"San Francisco, CA","name":"San Francisco","contained_within":[{"country_code":"US","place_type":"admin","url":"http:\/\/api.twitter.com\/1\/geo\/id\/fbd6d2f5a4e4a15e.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-124.482003,32.528832],[-114.131211,32.528832],[-114.131211,42.009517],[-124.482003,42.009517]]]},"attributes":{},"full_name":"California, US","name":"California","id":"fbd6d2f5a4e4a15e"}],"id":"5a110d312052166f"}]},"query":{"type":"search","url":"http:\/\/api.twitter.com\/1\/geo\/search.json?accuracy=0&query=&ip=74.125.19.104&autocomplete=false&granularity=neighborhood","params":{"accuracy":0,"ip":"74.125.19.104","query":"","autocomplete":false,"granularity":"neighborhood"}}}
@@ -0,0 +1 @@
1
+ {"privacy":"Twitter Privacy Policy\n\nThis Privacy Policy describes Twitter's policies and procedures on the collection, use and disclosure of your information. Twitter receives your information through our various web sites, SMS, APIs, applications, services and third-parties (\"Services\"). For example, you send us information when you use Twitter from our web site, post or receive Tweets via SMS, add a Twitter widget to your website, or access Twitter from an application such as Twitter for Mac, Twitter for Android or TweetDeck. When using any of our Services you consent to the collection, transfer, manipulation, storage, disclosure and other uses of your information as described in this Privacy Policy. Irrespective of which country that you reside in or create information from, your information may be used by Twitter in the United States or any other country where Twitter operates.\n\nIf you have any questions or comments about this Privacy Policy, please contact us at privacy@twitter.com.\n\nInformation Collection and Use\n\n\n Tip We collect and use your information to provide and measure use of our Services and improve them over time.\n\n\nInformation Collected Upon Registration: When you create or reconfigure a Twitter account, you provide some personal information, such as your name, username, password, and email address. Some of this information, for example, your name and username, is listed publicly on our Services, including on your profile page and in search results. Some Services, such as search, public user profiles and viewing lists, do not require registration.\n\nAdditional Information: You may provide us with additional information to make public, such as a short biography, your location, or a picture. You may customize your account with information such as a cell phone number for the delivery of SMS messages or your address book so that we can help you find Twitter users you know. We may use your contact information to send you information about our Services or to market to you. You may unsubscribe from these messages by following the instructions contained within the messages or the instructions on our web site. If you email us, we may keep your message, email address and contact information to respond to your request. Providing the additional information described in this section is entirely optional.\n\nTweets, Following, Lists and other Public Information: Our Services are primarily designed to help you share information with the world. Most of the information you provide to us is information you are asking us to make public. This includes not only the messages you Tweet and the metadata provided with Tweets, such as when you Tweeted, but also the lists you create, the people you follow, the Tweets you mark as favorites or Retweet and many other bits of information. Our default is almost always to make the information you provide public but we generally give you settings (https:\/\/twitter.com\/account\/settings) to make the information more private if you want. Your public information is broadly and instantly disseminated. For example, your public Tweets are searchable by many search engines and are immediately delivered via SMS and our APIs (http:\/\/dev.twitter.com\/pages\/api_faq) to a wide range of users and services. You should be careful about all information that will be made public by Twitter, not just your Tweets.\n\n\n Tip What you say on Twitter may be viewed all around the world instantly.\n\n\nLocation Information: You may choose to note your location in your Tweets and in your Twitter profile. If you turn on Tweeting with your location, we may also save exact coordinates to help improve our service. You can control your location information settings in your account settings (https:\/\/twitter.com\/account\/settings).\n\nLog Data: Our servers automatically record information (\"Log Data\") created by your use of the Services. Log Data may include information such as your IP address, browser type, the referring domain, pages visited, your mobile carrier, device and application IDs, and search terms. Other actions, such as interactions with our website, applications and advertisements, may also be included in Log Data. If we haven\u2019t already deleted the Log Data earlier, we will either delete it or remove any common account identifiers, such as your username, full IP address, or email address, after 18 months.\n\nLinks: Twitter may keep track of how you interact with links in Tweets across our Services including third party services and clients by redirecting clicks or through other means. We do this to help improve our Services, including advertising, and to be able to share aggregate click statistics such as how many times a particular link was clicked on.\n\nCookies: Like many websites, we use \"cookie\" technology to collect additional website usage data and to improve our Services, but we do not require cookies for many parts of our Services such as searching and looking at public user profiles or lists. A cookie is a small data file that is transferred to your computer's hard disk. Twitter may use both session cookies and persistent cookies to better understand how you interact with our Services, to monitor aggregate usage by our users and web traffic routing on our Services, and to improve our Services. Most Internet browsers automatically accept cookies. You can instruct your browser, by editing its options, to stop accepting cookies or to prompt you before accepting a cookie from the websites you visit.\n\nThird Party Services: Twitter uses a variety of services hosted by third parties to help provide our Services, such as hosting our various blogs and wikis, and to help us understand the use of our Services, such as Google Analytics. These services may collect information sent by your browser as part of a web page request, such as cookies or your IP request.\n\nInformation Sharing and Disclosure\n\n\n Tip We do not disclose your private information except in the limited circumstances described here.\n\n\nYour Consent: We may share or disclose your information with your consent, such as when you use a third party web client or application to access your Twitter account.\n\nService Providers: We engage certain trusted third parties to perform functions and provide services to us. We may share your personal information with these third parties, but only to the extent necessary to perform these functions and provide such services, and only pursuant to obligations mirroring the protections of this privacy policy.\n\nLaw and Harm: We may preserve or disclose your information if we believe that it is reasonably necessary to comply with a law, regulation or legal request; to protect the safety of any person; to address fraud, security or technical issues; or to protect Twitter's rights or property.\n\nBusiness Transfers: In the event that Twitter is involved in a bankruptcy, merger, acquisition, reorganization or sale of assets, your information may be sold or transferred as part of that transaction. The promises in this privacy policy will apply to your information as transferred to the new entity.\n\nNon-Private or Non-Personal Information: We may share or disclose your non-private, aggregated or otherwise non-personal information, such as your public Tweets or the number of users who clicked on a particular link (even if only one did).\n\nModifying Your Personal Information\n\nIf you are a registered user of our Services, we provide you with tools to access or modify the personal information you provided to us and associated with your account.\n\nYou can also permanently delete your Twitter account. If you follow the instructions here (https:\/\/support.twitter.com\/articles\/15358-how-to-deactivate-your-account), your account will be deactivated and then deleted. When your account is deactivated, it is not viewable on Twitter.com. For up to 30 days it is still possible to restore your account if it was accidentally or wrongfully deactivated. After 30 days, we begin the process of deleting your account from our systems, which can take up to a week.\n\nOur Policy Towards Children\n\nOur Services are not directed to people under 13. If you become aware that your child has provided us with personal information without your consent, please contact us at privacy@twitter.com. We do not knowingly collect personal information from children under 13. If we become aware that a child under 13 has provided us with personal information, we take steps to remove such information and terminate the child's account.\n\nChanges to this Policy\nWe may revise this Privacy Policy from time to time. The most current version of the policy will govern our use of your information and will always be at https:\/\/twitter.com\/privacy. If we make a change to this policy that, in our sole discretion, is material, we will notify you via an @Twitter update or e-mail to the email associated with your account. By continuing to access or use the Services after those changes become effective, you agree to be bound by the revised Privacy Policy.\n\nEffective: June 23, 2011"}
@@ -0,0 +1,24 @@
1
+ HTTP/1.1 302 Found
2
+ Date: Sat, 23 Oct 2010 01:32:03 GMT
3
+ Server: hi
4
+ Status: 302 Found
5
+ X-Transaction: 1287797523-85714-19805
6
+ X-RateLimit-Limit: 150
7
+ Last-Modified: Sun, 17 Oct 2010 18:53:30 GMT
8
+ Location: http://a0.twimg.com/profile_images/323331048/me_normal.jpg
9
+ X-RateLimit-Remaining: 145
10
+ X-Runtime: 0.00758
11
+ Content-Type: text/html; charset=utf-8
12
+ Content-Length: 124
13
+ X-RateLimit-Class: api
14
+ X-Revision: DEV
15
+ X-RateLimit-Reset: 1287800383
16
+ Set-Cookie: k=208.66.28.252.1287797522982583; path=/; expires=Sat, 30-Oct-10 01:32:02 GMT; domain=.twitter.com
17
+ Set-Cookie: guest_id=12877975230357499; path=/; expires=Mon, 22 Nov 2010 01:32:03 GMT
18
+ Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCFzCttYrAToHaWQiJTZlMGJiYTk0YjhkNzEy%250AZDY4ZmU2MDI0ZDk1ZDNjOTY0IgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--a6b8c59df03cd8bc7ab1740fb8414664d904809c; domain=.twitter.com; path=/
19
+ Cache-Control: max-age=300
20
+ Expires: Sat, 23 Oct 2010 01:37:02 GMT
21
+ Vary: Accept-Encoding
22
+ Connection: close
23
+
24
+ <html><body>You are being <a href="http://a0.twimg.com/profile_images/323331048/me_normal.jpg">redirected</a>.</body></html>
@@ -0,0 +1 @@
1
+ {"remaining_hits":19993,"hourly_limit":20000,"reset_time_in_seconds":1288060988,"reset_time":"Tue Oct 26 02:43:08 +0000 2010"}
@@ -0,0 +1 @@
1
+ [{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"default_profile":true,"profile_use_background_image":true,"name":"John Trupiano","contributors_enabled":false,"created_at":"Sun May 11 19:46:06 +0000 2008","profile_background_color":"C0DEED","listed_count":99,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-18000,"description":"Owner of @smartlogic. I tweet a mixed stream of incoherence and inside jokes. My tweets make me laugh; your mileage will vary.","verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/627637055\/thumb_gravatar_normal.jpg","id_str":"14736332","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":117,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Sat Aug 20 03:27:22 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104756380472324096","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id":104756380472324096,"text":"Jimmy Johns: the best place to go right after getting pepper sprayed."},"friends_count":545,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/627637055\/thumb_gravatar_normal.jpg","screen_name":"jtrupiano","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":false,"profile_background_tile":false,"location":"Baltimore, MD","notifications":null,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/smartlogicsolutions.com\/john","id":14736332,"follow_request_sent":null,"statuses_count":3850,"following":null,"profile_sidebar_border_color":"C0DEED","followers_count":802},"token":"1"},{"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Matt Laroche","created_at":"Sun Apr 20 12:05:38 +0000 2008","profile_background_color":"C6E2EE","show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","utc_offset":-28800,"description":"Software engineer, beer advocate, Palo Altan, husband.","listed_count":20,"verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1255024245\/banana_reasonably_small_normal.jpg","id_str":"14451152","lang":"en","favourites_count":10,"profile_text_color":"663B12","status":{"truncated":false,"created_at":"Sun Aug 21 20:59:41 +0000 2011","geo":{"type":"Point","coordinates":[33.8043296,-117.9226607]},"in_reply_to_user_id":20113974,"in_reply_to_status_id":105382259623854081,"favorited":false,"in_reply_to_status_id_str":"105382259623854081","coordinates":{"type":"Point","coordinates":[-117.9226607,33.8043296]},"id_str":"105383592376537088","in_reply_to_screen_name":"chasesterling","in_reply_to_user_id_str":"20113974","place":{"country_code":"US","name":"Anaheim","attributes":{},"full_name":"Anaheim, CA","place_type":"city","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-118.017597,33.788835],[-117.674604,33.788835],[-117.674604,33.881456],[-118.017597,33.881456]]]},"id":"0c2e6999105f8070","url":"http:\/\/api.twitter.com\/1\/geo\/id\/0c2e6999105f8070.json"},"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","id":105383592376537088,"text":"@chasesterling sadly in a fake vending machine at the Monsters Inc ride at Disney's California Adventure."},"statuses_count":6251,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","profile_sidebar_fill_color":"DAECF4","screen_name":"mlroach","profile_background_tile":false,"friends_count":403,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1255024245\/banana_reasonably_small_normal.jpg","location":"Palo Alto, California","default_profile_image":false,"notifications":false,"default_profile":false,"profile_link_color":"1F98C7","url":null,"id":14451152,"is_translator":false,"following":false,"profile_sidebar_border_color":"C6E2EE","followers_count":299},"token":"21"},{"user":{"follow_request_sent":false,"statuses_count":183,"time_zone":"Greenland","protected":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/121725893\/3136259685_ed14d06774.jpg","name":"AntonioPires","created_at":"Sat May 16 18:24:33 +0000 2009","profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/121725893\/3136259685_ed14d06774.jpg","utc_offset":-10800,"description":"","listed_count":2,"contributors_enabled":false,"verified":false,"geo_enabled":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1067377349\/s_normal.jpg","id_str":"40514587","lang":"en","favourites_count":2,"profile_text_color":"828282","status":{"truncated":false,"created_at":"Mon Jun 13 16:27:31 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"80310340704931840","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"web","id":80310340704931840,"text":"Estou concorrendo a 1 ingresso do Alexandre Wollner no Rio \u2013 http:\/\/t.co\/QlJZUqF Siga @design_blog e @pensoeventos e d\u00ea RT!"},"show_all_inline_media":false,"profile_sidebar_fill_color":"1c1c1c","screen_name":"antpires","profile_background_tile":false,"location":"Rio","default_profile_image":false,"notifications":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1067377349\/s_normal.jpg","friends_count":198,"profile_link_color":"e86f6f","url":"http:\/\/antpires.carbonmade.com","id":40514587,"is_translator":false,"default_profile":false,"following":false,"profile_sidebar_border_color":"000000","followers_count":158},"token":"14"},{"user":{"time_zone":"London","protected":false,"follow_request_sent":false,"profile_use_background_image":true,"name":"Alex MacCaw","created_at":"Fri Mar 23 12:36:14 +0000 2007","profile_background_color":"9ae4e8","contributors_enabled":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":0,"description":"Ruby\/JavaScript developer, O'Reilly author and entrepreneur. ","default_profile":false,"verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1081483457\/Gravatar_for_info_eribium_normal.jpeg","id_str":"2006261","listed_count":171,"lang":"en","favourites_count":9,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Sun Aug 21 23:54:01 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105427467593981952","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id":105427467593981952,"text":"Visualizing WebKit's hardware acceleration http:\/\/t.co\/nX5pvPl via @thomasfuchs"},"profile_sidebar_fill_color":"e0ff92","screen_name":"maccman","show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"London","notifications":false,"is_translator":false,"default_profile_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_link_color":"0000ff","url":"http:\/\/alexmaccaw.co.uk","id":2006261,"statuses_count":4497,"following":false,"friends_count":967,"profile_sidebar_border_color":"87bc44","followers_count":2028,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1081483457\/Gravatar_for_info_eribium_normal.jpeg"},"token":"11"},{"user":{"follow_request_sent":false,"statuses_count":24,"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","name":"stuntmann82","created_at":"Sat Aug 30 08:22:57 +0000 2008","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"","listed_count":1,"contributors_enabled":false,"verified":false,"geo_enabled":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/249396146\/images_normal.jpg","id_str":"16052754","lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Nov 25 06:20:05 +0000 2009","geo":null,"in_reply_to_user_id":2889221,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"6042752864","in_reply_to_screen_name":"vitaminjeff","in_reply_to_user_id_str":"2889221","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\/\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":6042752864,"text":"@vitaminjeff Sup bro!"},"show_all_inline_media":false,"profile_sidebar_fill_color":"DDEEF6","screen_name":"stuntmann82","profile_background_tile":false,"location":"","default_profile_image":false,"notifications":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/249396146\/images_normal.jpg","friends_count":5,"profile_link_color":"0084B4","url":null,"id":16052754,"is_translator":false,"default_profile":true,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":42},"token":"14"},{"user":{"listed_count":921,"time_zone":"Alaska","protected":false,"profile_use_background_image":false,"name":"Loren Brichter","show_all_inline_media":true,"geo_enabled":true,"created_at":"Sun Nov 04 17:48:57 +0000 2007","profile_background_color":"1A1B1F","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"description":"meat popsicle","display_url":null,"default_profile_image":false,"verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1054030005\/hello_normal.png","id_str":"9943672","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","statuses_count":1092,"favourites_count":197,"friends_count":127,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Tue Aug 16 20:43:45 +0000 2011","geo":null,"in_reply_to_user_id":15048963,"in_reply_to_status_id":103567401634897920,"favorited":false,"in_reply_to_status_id_str":"103567401634897920","coordinates":null,"id_str":"103567644837429250","in_reply_to_screen_name":"jboley","in_reply_to_user_id_str":"15048963","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id":103567644837429250,"text":"@jboley could swap out the backend, base TwUI right on top of GL, then we could go nuts."},"is_translator":false,"profile_sidebar_fill_color":"252429","screen_name":"lorenb","follow_request_sent":null,"contributors_enabled":false,"profile_background_tile":false,"location":"Philly","notifications":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","default_profile":false,"profile_link_color":"2FC2EF","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1054030005\/hello_normal.png","id":9943672,"following":null,"profile_sidebar_border_color":"181A1E","followers_count":13101},"token":"22"},{"user":{"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Craig Hockenberry","default_profile":false,"contributors_enabled":false,"created_at":"Sat Dec 02 03:11:33 +0000 2006","profile_background_color":"CD3300","listed_count":1180,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/17652\/Untitled-1.jpg","utc_offset":-28800,"description":"HAD THE IDEA FOR TWITTERRIFIC IN THE SHOWER","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/838441522\/P9010020_normal.jpg","id_str":"36183","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/17652\/Untitled-1.jpg","favourites_count":1774,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Thu Aug 18 15:10:58 +0000 2011","geo":null,"in_reply_to_user_id":7440462,"in_reply_to_status_id":104193896204075010,"favorited":false,"in_reply_to_status_id_str":"104193896204075010","coordinates":null,"id_str":"104208673303310337","in_reply_to_screen_name":"drance","in_reply_to_user_id_str":"7440462","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id":104208673303310337,"text":"@drance $20 x 12 &gt; cost of an iPhone 5"},"friends_count":412,"profile_sidebar_fill_color":"DAFFBE","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/838441522\/P9010020_normal.jpg","screen_name":"chockenberry","default_profile_image":false,"show_all_inline_media":true,"geo_enabled":false,"profile_background_tile":true,"location":"Laguna Beach, CA, USA","notifications":false,"is_translator":false,"profile_link_color":"8C3500","url":"http:\/\/furbo.org","id":36183,"follow_request_sent":false,"statuses_count":17036,"following":false,"profile_sidebar_border_color":"A6CD89","followers_count":12386},"token":"24"},{"user":{"is_translator":false,"show_all_inline_media":false,"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","protected":false,"follow_request_sent":false,"profile_use_background_image":true,"name":"Mike Dalessio","contributors_enabled":false,"created_at":"Fri May 02 14:52:50 +0000 2008","profile_background_color":"C0DEED","statuses_count":658,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-18000,"description":"Rubyist, Pragmatist, Optimist, One Trick Pony. Co-author of Nokogiri. Superpowers: none (yet).\r\n","verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1167926691\/nokogiri-mother-1-crop_normal.png","id_str":"14626544","listed_count":28,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":255,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Aug 17 22:18:33 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103953891397345280","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":9,"source":"web","retweeted_status":{"truncated":false,"created_at":"Wed Aug 17 21:44:08 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103945228565757952","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":9,"source":"\u003Ca href=\"http:\/\/timely.is\" rel=\"nofollow\"\u003ETimely App\u003C\/a\u003E","id":103945228565757952,"text":"SSH Can Do That? Productivity Tips for Working with Remote Servers http:\/\/t.co\/F2X0gnq &lt;- lots of good SSH tricks"},"id":103953891397345280,"text":"RT @assaf: SSH Can Do That? Productivity Tips for Working with Remote Servers http:\/\/t.co\/F2X0gnq &lt;- lots of good SSH tricks"},"default_profile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1167926691\/nokogiri-mother-1-crop_normal.png","screen_name":"flavorjones","profile_background_tile":false,"location":"NYC \/ NJ","notifications":false,"friends_count":351,"default_profile_image":false,"profile_link_color":"0084B4","url":"http:\/\/mike.daless.io\/","id":14626544,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":375},"token":"1"},{"user":{"time_zone":"Pacific Time (US & Canada)","protected":false,"show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_use_background_image":false,"name":"GovFresh","listed_count":633,"created_at":"Sat May 02 22:19:00 +0000 2009","profile_background_color":"ffffff","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"Gov 2.0, open gov news, guides, TV, tech, people. Open air government. (@lukefretwell)","statuses_count":7419,"verified":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/291447950\/icon_normal.png","id_str":"37296570","lang":"en","favourites_count":69,"friends_count":205,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/291447950\/icon_normal.png","status":{"truncated":false,"created_at":"Mon Aug 22 02:00:14 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105459232068993024","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105459232068993024,"text":"RT @adrielhampton: Mention on #g2r: Kundra: Closing IT gap is key to making gov't work better for the American people http:\/\/t.co\/4vywBK0"},"default_profile_image":false,"profile_sidebar_fill_color":"ffffff","screen_name":"govfresh","profile_background_tile":false,"location":"USA","is_translator":false,"notifications":false,"default_profile":false,"follow_request_sent":false,"profile_link_color":"006699","url":"http:\/\/www.govfresh.com","id":37296570,"following":false,"profile_sidebar_border_color":"ffffff","followers_count":4770},"token":"1"},{"user":{"default_profile":false,"profile_background_color":"1A1B1F","protected":false,"show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","name":"Ola Bini","listed_count":446,"created_at":"Mon Jul 23 19:05:23 +0000 2007","id_str":"7665302","utc_offset":3600,"favourites_count":2,"profile_text_color":"666666","description":"Programming language nerd, JRuby core developer, language designer (Ioke), lisp and ruby fanatic.","statuses_count":8222,"verified":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_sidebar_fill_color":"252429","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52551367\/ONormal_normal.jpg","lang":"en","profile_background_tile":false,"friends_count":204,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52551367\/ONormal_normal.jpg","status":{"truncated":false,"in_reply_to_user_id":null,"favorited":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 21 02:29:20 +0000 2011","id_str":"105104165822410752","geo":{"type":"Point","coordinates":[41.90894375,-87.67776878]},"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-87.67776878,41.90894375]},"contributors":null,"retweeted":false,"place":{"place_type":"city","country_code":"US","name":"Chicago","attributes":{},"full_name":"Chicago, IL","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940101,41.644582],[-87.523661,41.644582],[-87.523661,42.023019],[-87.940101,42.023019]]]},"id":"1d9a5370a355ab0c","url":"http:\/\/api.twitter.com\/1\/geo\/id\/1d9a5370a355ab0c.json"},"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105104165822410752,"text":"Tonight the violet hour with lots of friends"},"default_profile_image":false,"screen_name":"olabini","profile_link_color":"2FC2EF","location":"iPhone: 40.755951,-73.968864","is_translator":false,"notifications":false,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"time_zone":"Stockholm","url":"http:\/\/olabini.com\/blog","id":7665302,"following":false,"profile_use_background_image":true,"followers_count":4905},"token":"1"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"friends_count":31485,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1408709905\/at-twitter_bigger_normal.png","name":"Spam Watch","default_profile_image":false,"created_at":"Tue Apr 29 19:55:39 +0000 2008","profile_background_color":"1A1B1F","expanded_url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":-28800,"description":"Suspect Twitter spam? Let us know (http:\/\/bit.ly\/Tweport)! Follow @spam & @safety for helpful info, and check out our favorite tips: http:\/\/bit.ly\/spamfav","display_url":null,"is_translator":false,"show_all_inline_media":false,"verified":true,"geo_enabled":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1408709905\/at-twitter_bigger_normal.png","id_str":"14589771","entities":{"user_mentions":[{"name":"Spam Watch","indices":[67,72],"id_str":"14589771","screen_name":"spam","id":14589771},{"name":"Safety","indices":[75,82],"id_str":"95731075","screen_name":"safety","id":95731075}],"urls":[{"expanded_url":null,"indices":[35,56],"url":"http:\/\/bit.ly\/Tweport"},{"expanded_url":null,"indices":[134,155],"url":"http:\/\/bit.ly\/spamfav"}],"hashtags":[]},"follow_request_sent":false,"lang":"en","favourites_count":13,"profile_text_color":"888888","status":{"truncated":false,"created_at":"Thu Aug 18 17:59:14 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104251017306185728","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":"100+","source":"web","retweeted_status":{"truncated":false,"created_at":"Thu Aug 18 17:58:29 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104250831292993536","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[139769125],"retweeted":false,"retweet_count":"100+","source":"web","id":104250831292993536,"text":"Seeing Tweets that you need to sign a petition to keep Twitter free? Don't click. It's fake and will steal your password."},"id":104251017306185728,"text":"RT @safety: Seeing Tweets that you need to sign a petition to keep Twitter free? Don't click. It's fake and will steal your password."},"default_profile":false,"profile_sidebar_fill_color":"252429","screen_name":"spam","statuses_count":166,"profile_background_tile":false,"location":"Twitter HQ","contributors_enabled":true,"notifications":false,"listed_count":8679,"profile_link_color":"2FC2EF","url":"http:\/\/help.twitter.com\/entries\/64986","id":14589771,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":627222},"token":"22"},{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Ethan Marcotte","contributors_enabled":false,"created_at":"Wed Nov 15 15:59:51 +0000 2006","profile_background_color":"121212","listed_count":1460,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/224737148\/clint.jpg","utc_offset":-18000,"description":"Designer, developer. Started that whole \u201cresponsive web design\u201d thing.\r\n\r\n\u201cEight? Who taught you math?\u201d","verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","id_str":"12534","default_profile":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/224737148\/clint.jpg","favourites_count":25929,"profile_text_color":"000000","status":{"truncated":false,"created_at":"Sun Aug 21 17:04:59 +0000 2011","geo":null,"in_reply_to_user_id":14318544,"in_reply_to_status_id":105321846462889984,"favorited":false,"in_reply_to_status_id_str":"105321846462889984","coordinates":null,"id_str":"105324529127137280","in_reply_to_screen_name":"blissbat","in_reply_to_user_id_str":"14318544","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","id":105324529127137280,"text":"@blissbat Oh my god. That is lovely. (And positively Templesmithian.)"},"friends_count":398,"profile_sidebar_fill_color":"7D7D7D","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","screen_name":"beep","default_profile_image":false,"show_all_inline_media":true,"geo_enabled":false,"profile_background_tile":true,"location":"Cambridge, MA","notifications":false,"is_translator":false,"profile_link_color":"990000","url":"http:\/\/ethanmarcotte.com\/","id":12534,"follow_request_sent":false,"statuses_count":10490,"following":false,"profile_sidebar_border_color":"7D7D7D","followers_count":16264},"token":"22"},{"user":{"follow_request_sent":false,"time_zone":"Central Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"John Clay","created_at":"Sat Mar 14 05:19:35 +0000 2009","profile_background_color":"000000","show_all_inline_media":false,"contributors_enabled":false,"geo_enabled":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/7637392\/twitterbg1.jpg","utc_offset":-21600,"description":"1 Part Artist, 1 Part Geek, With a Splash of Pop Culture","listed_count":6,"verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112575277\/41220_579052302952_57100648_33412341_4990242_n_normal.jpg","id_str":"24334548","default_profile":false,"lang":"en","favourites_count":2,"profile_text_color":"32332e","status":{"truncated":false,"created_at":"Wed Jul 27 04:23:15 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"96073136679825409","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"web","id":96073136679825409,"text":"http:\/\/t.co\/MKMlBcQ Well played @OldSpice - My vote is for #teamoldspiceguy. The writers and marketing team deserve a raise."},"statuses_count":477,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7637392\/twitterbg1.jpg","profile_sidebar_fill_color":"8c8c88","screen_name":"Clayjm","profile_background_tile":false,"friends_count":103,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1112575277\/41220_579052302952_57100648_33412341_4990242_n_normal.jpg","location":"Missouri","default_profile_image":false,"notifications":false,"profile_link_color":"c6c09f","url":null,"id":24334548,"is_translator":false,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":305},"token":"14"},{"user":{"default_profile":false,"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"KaT","show_all_inline_media":false,"listed_count":1,"geo_enabled":false,"created_at":"Sat Mar 17 01:08:54 +0000 2007","profile_background_color":"1A1B1F","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","utc_offset":-18000,"description":"","verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1496023849\/Clipboard01_normal.jpg","id_str":"1325781","lang":"en","statuses_count":1091,"favourites_count":0,"friends_count":71,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Thu Aug 18 20:57:06 +0000 2011","geo":null,"in_reply_to_user_id":251147079,"in_reply_to_status_id":104281588854030336,"favorited":false,"in_reply_to_status_id_str":"104281588854030336","coordinates":null,"id_str":"104295781024010240","in_reply_to_screen_name":"zImperium","in_reply_to_user_id_str":"251147079","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","id":104295781024010240,"text":"@zImperium when will this be on the market since this is a closed beta ?"},"default_profile_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_sidebar_fill_color":"252429","screen_name":"katzworld","profile_background_tile":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1496023849\/Clipboard01_normal.jpg","location":"MD,USA","is_translator":false,"notifications":false,"follow_request_sent":false,"profile_link_color":"2FC2EF","url":null,"id":1325781,"following":false,"profile_sidebar_border_color":"181A1E","followers_count":269},"token":"14"},{"user":{"time_zone":"Central Time (US & Canada)","protected":true,"listed_count":2,"statuses_count":47,"profile_use_background_image":true,"name":"Angelika Biteme","contributors_enabled":false,"created_at":"Tue Jun 09 09:54:31 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"description":"Because I am addictted to Spymaster & can't go up any more levels, I started a new account. I admitted the addiction. Now I need an intervention.","verified":false,"friends_count":375,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","id_str":"45805107","default_profile_image":true,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"profile_text_color":"333333","default_profile":true,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","screen_name":"AngelikaSpy","is_translator":false,"show_all_inline_media":false,"profile_background_tile":false,"location":"Um, the computer desk. Duh.","follow_request_sent":false,"notifications":false,"profile_link_color":"0084B4","url":"http:\/\/angelika1972.blogspot.com\/","id":45805107,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":131},"token":"14"},{"user":{"time_zone":"Alaska","protected":false,"profile_use_background_image":true,"name":"LikeMinded","contributors_enabled":false,"created_at":"Fri Oct 29 23:32:48 +0000 2010","profile_background_color":"C0DEED","default_profile":false,"listed_count":26,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/168455631\/free_twitter_designer.jpg","utc_offset":-32400,"description":"An online tool for offline community action, built by Craigslist Foundation. Share or discover an idea for change today!","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1159898446\/lm_twitter_normal.gif","id_str":"209802925","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/168455631\/free_twitter_designer.jpg","favourites_count":1,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Thu Aug 18 23:29:09 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104334044203986945","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","retweeted_status":{"truncated":false,"created_at":"Wed Aug 17 21:19:09 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"103938943233437696","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","id":103938943233437696,"text":"Voting is now open for #SXSW panels! Please go vote for our panel with @Bluecadet @lkmnd on creating offline community http:\/\/ow.ly\/65TMm"},"id":104334044203986945,"text":"RT @atlasobscura: Voting is now open for #SXSW panels! Please go vote for our panel with @Bluecadet @lkmnd on creating offline community ..."},"friends_count":401,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1159898446\/lm_twitter_normal.gif","screen_name":"lkmnd","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":true,"location":"San Francisco, CA","notifications":false,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/likeminded.org","id":209802925,"follow_request_sent":false,"statuses_count":128,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":332},"token":"23"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":null,"protected":false,"profile_use_background_image":true,"friends_count":133,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","name":"Jace","default_profile_image":true,"created_at":"Fri Jun 05 00:38:06 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"description":null,"is_translator":false,"verified":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","id_str":"44776072","follow_request_sent":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Jun 17 04:22:09 +0000 2009","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"2202180865","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/playspymaster.com\" rel=\"nofollow\"\u003ESpymaster\u003C\/a\u003E","id":2202180865,"text":"I just wounded @avianto in an assassination attempt. #spymaster http:\/\/bit.ly\/playspy"},"show_all_inline_media":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","screen_name":"SecretAgent00J","profile_background_tile":false,"location":null,"contributors_enabled":false,"notifications":false,"default_profile":true,"listed_count":2,"statuses_count":44,"profile_link_color":"0084B4","url":null,"id":44776072,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":80},"token":"14"},{"user":{"time_zone":"Central Time (US & Canada)","protected":false,"is_translator":false,"default_profile":true,"profile_use_background_image":true,"name":"Justa Spy","follow_request_sent":false,"statuses_count":34,"created_at":"Mon Jun 08 14:37:58 +0000 2009","profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-21600,"description":"My alter-ego... Find the real me: @goneflyin","verified":false,"profile_image_url":"http:\/\/a3.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","id_str":"45577830","contributors_enabled":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Wed Jul 20 01:04:26 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"93486387462021121","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/shadowcities.com\/\" rel=\"nofollow\"\u003EShadow Cities\u003C\/a\u003E","id":93486387462021121,"text":"Join Me (AufFlaighin) in the Battle for Shadow Cities! http:\/\/bit.ly\/mVYnxv"},"listed_count":3,"profile_sidebar_fill_color":"DDEEF6","screen_name":"gonespyin","profile_background_tile":false,"location":"","notifications":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":626,"profile_link_color":"0084B4","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","id":45577830,"default_profile_image":true,"show_all_inline_media":false,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":364},"token":"14"},{"user":{"time_zone":"Eastern Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Darth Vader","contributors_enabled":false,"created_at":"Tue Jan 09 15:42:04 +0000 2007","profile_background_color":"4B4B4B","listed_count":12900,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/30752\/vader.gif","utc_offset":-18000,"description":"Evil Orphan Annie\u2122","verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/425092539\/vader_normal_normal.png","id_str":"618593","lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/30752\/vader.gif","favourites_count":252,"profile_text_color":"8a8a8a","status":{"truncated":false,"created_at":"Thu Aug 18 14:02:38 +0000 2011","geo":null,"in_reply_to_user_id":641333,"in_reply_to_status_id":104190049779851264,"favorited":false,"in_reply_to_status_id_str":"104190049779851264","coordinates":null,"id_str":"104191476291997696","in_reply_to_screen_name":"davidcaolo","in_reply_to_user_id_str":"641333","place":null,"contributors":null,"retweeted":false,"retweet_count":1,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id":104191476291997696,"text":"@davidcaolo If this is a consular ship, where is the ambassador?!"},"friends_count":6699,"profile_sidebar_fill_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425092539\/vader_normal_normal.png","screen_name":"darthvader","default_profile_image":false,"default_profile":false,"show_all_inline_media":false,"geo_enabled":false,"profile_background_tile":true,"location":"Empire, CO","notifications":false,"is_translator":false,"profile_link_color":"AA1212","url":null,"id":618593,"follow_request_sent":false,"statuses_count":1454,"following":false,"profile_sidebar_border_color":"AA1212","followers_count":350892},"token":"22"},{"user":{"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"friends_count":254,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","name":"Cliff Moon","default_profile_image":false,"created_at":"Mon Mar 24 01:05:35 +0000 2008","profile_background_color":"707070","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","utc_offset":-28800,"description":"Not a real person.","is_translator":false,"show_all_inline_media":false,"verified":false,"geo_enabled":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","id_str":"14204623","follow_request_sent":null,"lang":"en","favourites_count":320,"profile_text_color":"666666","status":{"truncated":false,"created_at":"Mon Aug 22 01:30:47 +0000 2011","geo":null,"in_reply_to_user_id":15387262,"in_reply_to_status_id":105451772604198912,"favorited":false,"in_reply_to_status_id_str":"105451772604198912","coordinates":null,"id_str":"105451820574457856","in_reply_to_screen_name":"ohlol","in_reply_to_user_id_str":"15387262","place":null,"contributors":null,"retweeted":false,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id":105451820574457856,"text":"@ohlol what is it?"},"profile_sidebar_fill_color":"000000","screen_name":"moonpolysoft","default_profile":false,"statuses_count":14100,"profile_background_tile":true,"location":"8========D~~~","contributors_enabled":false,"notifications":null,"listed_count":90,"profile_link_color":"66d6ff","url":"http:\/\/github.com\/cliffmoon","id":14204623,"following":null,"profile_sidebar_border_color":"bddcad","followers_count":1193},"token":"1"}]
@@ -0,0 +1 @@
1
+ [{"groupName":"TweetsWithConversation","resultType":"Tweet","results":[{"score":1.0,"annotations":{"ConversationRole":"Ancestor"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":10452222,"location":"Walifornia","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","profile_background_color":"FFFFFF","statuses_count":7718,"utc_offset":3600,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","name":"Laurent Sansonetti","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"lrz","friends_count":196,"profile_link_color":"6E6E6E","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":233,"profile_text_color":"000000","description":"Belgian software hacker, husband, dad and cat wrangler. Founder of @HipByte. Creator and developer of @RubyMotion and @MacRuby. Former Apple employee (7 years).","followers_count":2719,"url":"http:\/\/chopine.be","is_translator":false,"created_at":"Wed Nov 21 21:48:30 +0000 2007","profile_sidebar_border_color":"181A1E","contributors_enabled":false,"verified":false,"time_zone":"Paris","geo_enabled":true,"id_str":"10452222","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"EBEBEB","favourites_count":95},"retweeted":false,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"233293738510802944","geo":null,"id":233293738510802944,"created_at":"Wed Aug 08 20:08:56 +0000 2012","in_reply_to_user_id_str":null,"place":null,"in_reply_to_screen_name":null,"favorited":false,"text":"Upcoming trips this year\u2026 Berlin, Aarhus, New Delhi, New York, Tokyo. Time to get a frequent flyer card?"}},{"score":1.0,"annotations":{"ConversationRole":"Ancestor"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":18713,"location":"","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/357750272\/small_3_normal.png","profile_background_color":"E5E9EB","statuses_count":22966,"utc_offset":-28800,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/357750272\/small_3_normal.png","name":"Alex Payne","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"al3x","friends_count":318,"profile_link_color":"336699","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":2265,"profile_text_color":"232323","description":"Programmer. Writer. Secular Humanist.","followers_count":36241,"url":"http:\/\/al3x.net","is_translator":false,"created_at":"Thu Nov 23 19:29:11 +0000 2006","profile_sidebar_border_color":"333333","contributors_enabled":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"id_str":"18713","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"C3CBD0","favourites_count":4515},"retweeted":false,"in_reply_to_status_id":233293738510802944,"in_reply_to_user_id":10452222,"truncated":false,"in_reply_to_status_id_str":"233293738510802944","retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"233331068873367552","geo":null,"id":233331068873367552,"created_at":"Wed Aug 08 22:37:16 +0000 2012","in_reply_to_user_id_str":"10452222","place":null,"in_reply_to_screen_name":"lrz","favorited":false,"text":"@lrz When will you be in Berlin? Headed there myself before long."}},{"score":1.0,"annotations":{"ConversationRole":"Descendant"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":10452222,"location":"Walifornia","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","profile_background_color":"FFFFFF","statuses_count":7718,"utc_offset":3600,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","name":"Laurent Sansonetti","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"lrz","friends_count":196,"profile_link_color":"6E6E6E","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":233,"profile_text_color":"000000","description":"Belgian software hacker, husband, dad and cat wrangler. Founder of @HipByte. Creator and developer of @RubyMotion and @MacRuby. Former Apple employee (7 years).","followers_count":2719,"url":"http:\/\/chopine.be","is_translator":false,"created_at":"Wed Nov 21 21:48:30 +0000 2007","profile_sidebar_border_color":"181A1E","contributors_enabled":false,"verified":false,"time_zone":"Paris","geo_enabled":true,"id_str":"10452222","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"EBEBEB","favourites_count":95},"retweeted":false,"in_reply_to_status_id":233338791128096768,"in_reply_to_user_id":7505382,"truncated":false,"in_reply_to_status_id_str":"233338791128096768","retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"233339564763275264","geo":null,"id":233339564763275264,"created_at":"Wed Aug 08 23:11:02 +0000 2012","in_reply_to_user_id_str":"7505382","place":null,"in_reply_to_screen_name":"sferik","favorited":false,"text":"@sferik @al3x @eurucamp awesome, let's grab beers &amp; kebabs :)"}}],"score":1.0,"annotations":{"FromUser":"sferik"}}]
@@ -0,0 +1 @@
1
+ {"http:\/\/t.co\/uw5bn1w":"http:\/\/www.jeanniejeannie.com\/2011\/08\/29\/the-art-of-clean-up-sorting-and-stacking-everyday-objects\/"}
@@ -0,0 +1 @@
1
+ {"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91398,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","listed_count":5095,"profile_background_tile":false,"friends_count":452,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","statuses_count":10488,"profile_text_color":"000000","name":"John Gruber","show_all_inline_media":false,"following":true,"favourites_count":8601,"screen_name":"gruber","id":33423,"id_str":"33423","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"new_id":608250155669389312,"new_id_str":"608250155669389312","source":"\u003Ca href=\"http:\/\/apps.facebook.com\/the-run-around\/\" rel=\"nofollow\"\u003EThe Run Around\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 07:39:11 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","listed_count":28,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","statuses_count":2968,"profile_text_color":"333333","name":"Erik Michaels-Ober","show_all_inline_media":true,"following":false,"favourites_count":727,"screen_name":"sferik","id":7505382,"id_str":"7505382","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28669546014,"id_str":"28669546014","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."}
@@ -0,0 +1 @@
1
+ {"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"coordinates":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"truncated":true,"id_str":"200155886403067904","contributors":null,"retweeted_status":{"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"coordinates":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"truncated":false,"id_str":"199986035554394112","contributors":null,"user":{"is_translator":false,"id":48156007,"profile_link_color":"2FC2EF","time_zone":"Brasilia","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1891390827\/logo-plataformatec-icone-com-alpha_normal.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","friends_count":18,"id_str":"48156007","default_profile_image":false,"profile_use_background_image":false,"following":false,"favourites_count":6,"utc_offset":-10800,"profile_text_color":"666666","notifications":false,"name":"Plataformatec","profile_sidebar_border_color":"181A1E","screen_name":"plataformatec","url":"http:\/\/plataformatec.com.br","protected":false,"created_at":"Wed Jun 17 23:11:25 +0000 2009","statuses_count":244,"profile_background_tile":false,"default_profile":false,"profile_sidebar_fill_color":"252429","description":"We build tailored web and mobile applications for our customers.","contributors_enabled":false,"geo_enabled":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1891390827\/logo-plataformatec-icone-com-alpha_normal.png","location":"S\u00e3o Paulo, Brazil","followers_count":1230,"show_all_inline_media":false,"lang":"en","follow_request_sent":false,"profile_background_color":"1A1B1F","verified":false,"listed_count":81,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif"},"retweeted":false,"retweet_count":4,"source":"web","created_at":"Tue May 08 22:16:01 +0000 2012","in_reply_to_status_id_str":null,"place":null,"id":199986035554394112,"geo":null,"favorited":false,"text":"RSpec Formatter, Oracle and AR, RSpec Matchers, Solr Facets, Modular JS apps, JS Deferred: topics so far in today's Lightning Talks"},"user":{"is_translator":false,"id":10230812,"profile_link_color":"0084B4","time_zone":"Rome","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2156708631\/Cropped_normal.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","friends_count":218,"id_str":"10230812","default_profile_image":false,"profile_use_background_image":true,"following":true,"favourites_count":55,"utc_offset":3600,"profile_text_color":"333333","notifications":false,"name":"Jos\u00e9 Valim","profile_sidebar_border_color":"a8c7f7","screen_name":"josevalim","url":"http:\/\/plataformatec.com\/","protected":false,"created_at":"Tue Nov 13 23:23:25 +0000 2007","statuses_count":8133,"profile_background_tile":false,"default_profile":false,"profile_sidebar_fill_color":"C0DFEC","description":"@plataformatec founder, Open Source developer, Rails Core Team Member, Ruby Hero and creator of Elixir, code available at github.com\/josevalim","contributors_enabled":false,"geo_enabled":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2156708631\/Cropped_normal.png","location":"Krak\u00f3w, Poland","followers_count":6719,"show_all_inline_media":true,"lang":"en","follow_request_sent":false,"profile_background_color":"022330","verified":false,"listed_count":546,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png"},"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Wed May 09 09:30:56 +0000 2012","in_reply_to_status_id_str":null,"place":null,"id":200155886403067904,"geo":null,"favorited":false,"text":"RT @plataformatec: RSpec Formatter, Oracle and AR, RSpec Matchers, Solr Facets, Modular JS apps, JS Deferred: topics so far in today's L ..."}
@@ -0,0 +1 @@
1
+ [{"geo_enabled":false,"time_zone":null,"description":"Co-Founder of start up (concept\/business plan\/funding)developing the true Virtual Assistant","profile_sidebar_fill_color":"DDEEF6","followers_count":44,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue Oct 06 10:47:39 +0000 2009","profile_background_color":"C0DEED","location":"Missouri","listed_count":3,"profile_background_tile":false,"friends_count":103,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1150037354\/St._Louis_049_normal.JPG","statuses_count":642,"profile_text_color":"333333","name":"Dave W Baldwin","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"DaveWBaldwin","id":80271961,"id_str":"80271961","contributors_enabled":false,"utc_offset":null,"profile_link_color":"0084B4"},{"follow_request_sent":false,"time_zone":"London","description":"Crystal Corner Bar and Camden Crawl","profile_sidebar_fill_color":"F3F3F3","followers_count":12,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/bit.ly\" rel=\"nofollow\"\u003Ebitly\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Wed Oct 20 17:48:29 +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":27951613345,"id_str":"27951613345","text":"Cool, cheap things to do in London this week http:\/\/bit.ly\/9OeZWH (via @youngandpoor)"},"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":"Wed Oct 20 17:53:51 +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":27952001976,"id_str":"27952001976","text":"RT @LDN: Cool, cheap things to do in London this week http:\/\/bit.ly\/9OeZWH (via @youngandpoor)"},"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"DFDFDF","listed_count":0,"friends_count":30,"url":"http:\/\/last.fm\/users\/pickovven","statuses_count":45,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme7\/bg.gif","show_all_inline_media":false,"lang":"en","favourites_count":0,"created_at":"Mon May 03 21:42:47 +0000 2010","profile_background_color":"EBEBEB","location":"London","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1121583570\/ProfilePic_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"Owen Pickford","following":false,"screen_name":"pickovven","id":139851727,"id_str":"139851727","verified":false,"utc_offset":0,"profile_link_color":"03690f"},{"show_all_inline_media":true,"time_zone":"Central Time (US & Canada)","favourites_count":53,"description":"Entrepreneur, Student, Dreamer. My passion is helping people and solving real problems.\r\n\r\n","contributors_enabled":false,"profile_sidebar_fill_color":"e1ff00","followers_count":762,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/bit.ly\" rel=\"nofollow\"\u003Ebitly\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 04:14:42 +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":28659721411,"id_str":"28659721411","text":"Groupon Reveals Its Future Lies In Self-Serve | Yipit Blog http:\/\/bit.ly\/9XiCY7"},"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","verified":false,"url":"http:\/\/chrislammert.com","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/148884926\/twilk_background_4c8fca87a2b74.jpg","lang":"en","created_at":"Wed Oct 17 22:15:22 +0000 2007","profile_background_color":"eeff03","location":"Austin\/San Antonio\/BCS , TX","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/800678090\/n8373679_45152455_5250_normal.jpg","profile_text_color":"000000","name":"Chris Lammert","listed_count":10,"following":false,"friends_count":993,"screen_name":"ChrisLammert","id":9508702,"id_str":"9508702","statuses_count":2645,"utc_offset":-21600,"profile_link_color":"1722ed"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Systems Engineer turned business mogul (well - in process, anyway)","profile_sidebar_fill_color":"DDEEF6","followers_count":76,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/plaudenslager.wordpress.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287420575\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Apr 16 01:44:25 +0000 2007","profile_background_color":"C0DEED","location":"San Diego, CA, USA","listed_count":11,"profile_background_tile":false,"friends_count":75,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/36411442\/Photo_4_normal.jpg","statuses_count":391,"profile_text_color":"333333","name":"Peter Laudenslager","show_all_inline_media":false,"following":false,"favourites_count":45,"screen_name":"peterl","id":4814241,"id_str":"4814241","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"listed_count":3,"time_zone":"London","friends_count":40,"description":"Investor, Businessman, General Good Guy, Love Fast Cars, Love Making Money...","statuses_count":450,"profile_sidebar_fill_color":"490708","followers_count":289,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003ESocialOomph\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 00:41:27 +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":28644320816,"id_str":"28644320816","text":"You have to expect things of yourself before you can do them. Michael Jordan"},"show_all_inline_media":false,"notifications":false,"favourites_count":0,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"210302","geo_enabled":false,"url":"http:\/\/www.CashForLifeInvesting.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/138454024\/dragon_490_17724.jpg","lang":"en","verified":false,"created_at":"Thu Apr 08 11:55:42 +0000 2010","profile_background_color":"7f2f2f","location":"London,UK","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/806707733\/15833_196394771592_629426592_3146276_3990099_n_normal.jpg","profile_text_color":"a75a48","name":"Minesh Bhindi","following":false,"screen_name":"MineshBhindi","id":130815200,"id_str":"130815200","utc_offset":0,"profile_link_color":"5e6d53"},{"time_zone":"Pacific Time (US & Canada)","description":"","profile_sidebar_fill_color":"ffffff","followers_count":1187,"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":"Sun Oct 24 02:27:53 +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":28556049161,"id_str":"28556049161","text":"RT @SteveMartinToGo So great that alphabet already in alphabetical order. What a timesaver."},"listed_count":22,"notifications":false,"friends_count":341,"statuses_count":1504,"profile_use_background_image":false,"profile_sidebar_border_color":"FFFFFF","show_all_inline_media":false,"favourites_count":83,"url":"http:\/\/www.karenmcaniff.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/156544492\/dot.jpg","lang":"en","geo_enabled":true,"created_at":"Mon Mar 24 19:00:51 +0000 2008","profile_background_color":"6fc4a8","location":"Seattle ","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1106570738\/Untitled-2_normal.jpg","verified":false,"profile_text_color":"000000","name":"Karen ","follow_request_sent":false,"following":false,"screen_name":"teamkaren","id":14209775,"id_str":"14209775","utc_offset":-28800,"profile_link_color":"999c9a"},{"time_zone":null,"friends_count":22,"description":"","follow_request_sent":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":4,"show_all_inline_media":false,"verified":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"listed_count":0,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","statuses_count":12,"created_at":"Wed Jan 20 02:47:47 +0000 2010","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/839779276\/pipe_normal.jpg","contributors_enabled":false,"profile_text_color":"333333","name":"Stephen Krings","following":false,"screen_name":"StephenKrings","id":106604703,"id_str":"106604703","utc_offset":null,"favourites_count":1,"profile_link_color":"0084B4"},{"time_zone":"Pacific Time (US & Canada)","description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":36,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 17 19:13:29 +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":27663982563,"id_str":"27663982563","text":"RT @DesignerDepot: 40 Brilliant Examples of Sketched UI Wireframes and Mock-Ups - http:\/\/ow.ly\/2NLDe"},"listed_count":0,"notifications":false,"statuses_count":22,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":false,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","favourites_count":13,"created_at":"Fri Apr 24 21:25:53 +0000 2009","friends_count":75,"profile_background_color":"C0DEED","location":"California","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1144799016\/IMG_6103s_normal.jpg","geo_enabled":false,"profile_text_color":"333333","name":"yossi acrich","follow_request_sent":false,"following":false,"screen_name":"yossiacrich","id":35045741,"id_str":"35045741","verified":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"time_zone":"Central Time (US & Canada)","description":"Concept artist at a small iPhone dev!","profile_sidebar_fill_color":"252429","followers_count":94,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 23 13:17:05 +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":28499128242,"id_str":"28499128242","text":"Mr. @mattzollerseitz writes on Mel Gibson, The Hangover 2, and Hollywood's double standard on public disgrace: http:\/\/bit.ly\/by5tD5"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":true,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 23 16:09:59 +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":28513639580,"id_str":"28513639580","text":"RT @davechensky: Mr. @mattzollerseitz writes on Mel Gibson, The Hangover 2, and Hollywood's double standard on public disgrace: http:\/\/b ..."},"listed_count":5,"notifications":false,"statuses_count":759,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"url":"http:\/\/www.michaelkingery.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286487625\/images\/themes\/theme9\/bg.gif","lang":"en","favourites_count":55,"created_at":"Thu Mar 22 02:39:19 +0000 2007","friends_count":78,"profile_background_color":"1A1B1F","location":"Omaha Nebraska","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/30320562\/MWK48_normal.png","geo_enabled":true,"profile_text_color":"666666","name":"Michael Kingery","follow_request_sent":false,"following":false,"screen_name":"MKingery","id":1827121,"id_str":"1827121","verified":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"},{"geo_enabled":false,"time_zone":"Helsinki","description":"","profile_sidebar_fill_color":"07090b","followers_count":11,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BFBFBF","url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/131871404\/x0f6a27f7c1f828f40bda90396774bd2.png","lang":"en","created_at":"Sat May 22 20:10:28 +0000 2010","profile_background_color":"76911E","location":"FIN","listed_count":3,"profile_background_tile":true,"friends_count":47,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1149310938\/03042010060_1__normal.jpg","statuses_count":231,"profile_text_color":"827a82","name":"Mika Kangas","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"MPKangas","id":146954359,"id_str":"146954359","contributors_enabled":false,"utc_offset":7200,"profile_link_color":"7ECC0A"},{"time_zone":"Central Time (US & Canada)","description":"Seasoned geek","verified":false,"profile_sidebar_fill_color":"E3E2DE","followers_count":170,"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":"Mon Oct 25 02:44:36 +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":28653660422,"id_str":"28653660422","text":"omg. what will come of this? http:\/\/tinyurl.com\/2e9a5t4"},"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"D3D2CF","url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/4502224\/DSC03179.JPG","listed_count":0,"lang":"en","created_at":"Thu Apr 17 15:12:26 +0000 2008","friends_count":156,"profile_background_color":"EDECE9","location":"Austin","statuses_count":829,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/52923394\/me_normal.jpg","show_all_inline_media":false,"favourites_count":3,"profile_text_color":"634047","name":"Bill Cason","contributors_enabled":false,"following":false,"screen_name":"wccason","id":14421765,"id_str":"14421765","geo_enabled":false,"utc_offset":-21600,"profile_link_color":"088253"},{"geo_enabled":false,"time_zone":"London","description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":17,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Jan 04 19:35:14 +0000 2010","profile_background_color":"C0DEED","location":"London, UK","listed_count":1,"profile_background_tile":false,"friends_count":47,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/849772075\/mattmx_normal.jpg","statuses_count":25,"profile_text_color":"333333","name":"Matthew McCahey","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"MatthewMcCahey","id":101843967,"id_str":"101843967","contributors_enabled":false,"utc_offset":0,"profile_link_color":"0084B4"},{"statuses_count":1247,"time_zone":"Berlin","description":"Entrepreneur from Berlin\/Germany","show_all_inline_media":false,"friends_count":137,"profile_sidebar_fill_color":"95E8EC","followers_count":122,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":27967337656,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"27967337656","created_at":"Wed Oct 20 22:03:45 +0000 2010","in_reply_to_user_id":781293,"favorited":false,"in_reply_to_user_id_str":"781293","contributors":null,"coordinates":null,"in_reply_to_screen_name":"martinvars","id":27968279294,"id_str":"27968279294","text":"@martinvars Apple just launched the 1000 dollars netbook."},"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 Oct 21 00:39:49 +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":27980403914,"id_str":"27980403914","text":"RT @tariqkrim: @martinvars Apple just launched the 1000 dollars netbook."},"contributors_enabled":false,"notifications":false,"profile_use_background_image":true,"favourites_count":380,"profile_sidebar_border_color":"5ED4DC","url":"http:\/\/www.facebook.com\/tarlig","geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme4\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Thu Jul 03 20:28:03 +0000 2008","profile_background_color":"0099B9","location":"\u00dcT: 52.523458,13.404294","verified":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1134038457\/me_normal.PNG","profile_text_color":"3C3940","name":"Ugur Tarlig","following":false,"screen_name":"UgurTarlig","id":15312242,"id_str":"15312242","listed_count":1,"utc_offset":3600,"profile_link_color":"0099B9"},{"time_zone":"Quito","friends_count":107,"description":"CEO IMI Labs. Game Developer. Space Nut. Keeper of inane trivia.","profile_sidebar_fill_color":"F6F6F6","followers_count":591,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28632614665,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28632614665","created_at":"Sun Oct 24 22:09:41 +0000 2010","in_reply_to_user_id":16203557,"favorited":false,"in_reply_to_user_id_str":"16203557","contributors":null,"coordinates":null,"in_reply_to_screen_name":"dhw","id":28632878150,"id_str":"28632878150","text":"@dhw One day, I must meet\nyour family. I am certain there's a sitcom in that house. ;)"},"geo_enabled":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"EEEEEE","verified":false,"favourites_count":7,"url":"http:\/\/www.dustinclingman.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme18\/bg.gif","lang":"en","created_at":"Wed Jun 25 13:28:55 +0000 2008","profile_background_color":"ACDED6","location":"Orlando Florida","listed_count":50,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/904653483\/cd94b06d-3434-4d54-bc23-0c50fd89de03_normal.png","statuses_count":3147,"profile_text_color":"333333","name":"Dustin Clingman","show_all_inline_media":false,"following":false,"screen_name":"dclingman","id":15230887,"id_str":"15230887","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"038543"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Owner & CEO , SFS","profile_sidebar_fill_color":"DDEEF6","followers_count":8,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.sfsglobal.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue May 19 06:25:23 +0000 2009","profile_background_color":"C0DEED","location":"","listed_count":0,"profile_background_tile":false,"friends_count":23,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1125515553\/FotoSirket_normal.jpg","statuses_count":18,"profile_text_color":"333333","name":"Ercan Turfan","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"eturfan","id":41068320,"id_str":"41068320","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"listed_count":1,"time_zone":"Pacific Time (US & Canada)","description":"airplanes, music, food","statuses_count":498,"profile_sidebar_fill_color":"f0e58e","followers_count":156,"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":"Sun Oct 24 19:08:15 +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":28620478549,"id_str":"28620478549","text":"Taste of Abbott Kinney today 3-7pm see you there"},"show_all_inline_media":false,"notifications":false,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dfb734","friends_count":111,"url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3562206\/saturnamaze.jpg","lang":"en","geo_enabled":false,"favourites_count":1,"created_at":"Wed Dec 10 05:37:47 +0000 2008","profile_background_color":"0b0e0f","location":"Venice, CA","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/80850793\/nnn_normal.jpg","verified":false,"profile_text_color":"7c4003","name":"Jason Miller","following":false,"screen_name":"jreedmiller","id":18013277,"id_str":"18013277","utc_offset":-28800,"profile_link_color":"d22804"},{"show_all_inline_media":false,"time_zone":"Quito","favourites_count":0,"description":"Interested in VC, startups, CSR. ","contributors_enabled":false,"profile_sidebar_fill_color":"efefef","followers_count":49,"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":"Sun Oct 24 17:19:40 +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":28612807278,"id_str":"28612807278","text":"RT @newsweek Digg: A Cautionary Tale for Web 2.0 Companies - Newsweek http:\/\/bit.ly\/9GscB6"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Wed Jul 07 14:02:59 +0000 2010","profile_background_color":"131516","location":"Finland","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1126111815\/bigthumb-1_normal.jpeg","profile_text_color":"333333","name":"Krista Rantasaari","listed_count":0,"following":false,"friends_count":172,"screen_name":"k_rantasaari","id":163875308,"id_str":"163875308","statuses_count":62,"utc_offset":-18000,"profile_link_color":"009999"},{"geo_enabled":false,"time_zone":"Caracas","description":"Minimalist tweets on geekdom, mac, movies, design, productivity and business models.","profile_sidebar_fill_color":"C0DFEC","followers_count":105,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28663587844,"source":"web","truncated":false,"in_reply_to_status_id_str":"28663587844","created_at":"Mon Oct 25 06:29:43 +0000 2010","in_reply_to_user_id":15535360,"favorited":false,"in_reply_to_user_id_str":"15535360","contributors":null,"coordinates":null,"in_reply_to_screen_name":"upgradereality","id":28666560276,"id_str":"28666560276","text":"@upgradereality Very good beginner's resource on affiliate marketing. Thanks for sharing mate."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","url":"http:\/\/www.albertodelucca.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme15\/bg.png","lang":"en","created_at":"Tue Aug 03 21:26:06 +0000 2010","profile_background_color":"022330","location":"Caracas","listed_count":6,"profile_background_tile":false,"friends_count":59,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1150566353\/adldesign_new_normal.jpg","statuses_count":649,"profile_text_color":"333333","name":"Alberto De Lucca","show_all_inline_media":false,"following":false,"favourites_count":63,"screen_name":"mnmlgeek","id":174408001,"id_str":"174408001","contributors_enabled":false,"utc_offset":-16200,"profile_link_color":"0084B4"}]
@@ -0,0 +1 @@
1
+ [{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/apps.facebook.com\/the-run-around\/\" rel=\"nofollow\"\u003EThe Run Around\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 07:39:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":2968,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":727,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","follow_request_sent":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","listed_count":28,"utc_offset":-28800,"friends_count":88,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28669560363,"id_str":"28669560363","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91391,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","listed_count":5097,"friends_count":452,"url":"http:\/\/daringfireball.net","statuses_count":10488,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","show_all_inline_media":false,"lang":"en","favourites_count":8601,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","geo_enabled":false,"profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","verified":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"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":"Sun Oct 24 21:03:54 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","description":"(R-Twitter)","profile_sidebar_fill_color":"000000","followers_count":265,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"0015ff","listed_count":5,"friends_count":47,"url":null,"statuses_count":4956,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/68504774\/Twitter_background.jpg","show_all_inline_media":false,"lang":"en","favourites_count":0,"created_at":"Sat Jun 28 23:33:52 +0000 2008","profile_background_color":"000000","location":"Santa Barbara, CA","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1151376709\/IMG_3380_normal.JPG","geo_enabled":false,"profile_text_color":"0900ff","name":"Valerie","following":true,"screen_name":"valonthecoast","id":15266837,"id_str":"15266837","verified":false,"utc_offset":-28800,"profile_link_color":"ff0000"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28628407808,"id_str":"28628407808","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 18:04:16 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":1071,"time_zone":"Eastern Time (US & Canada)","description":"A loner on a mission to save those that can still be saved...","show_all_inline_media":false,"favourites_count":11,"profile_sidebar_fill_color":"252429","followers_count":76,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/www.mikeventre.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme9\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Sun Feb 08 19:45:34 +0000 2009","profile_background_color":"1A1B1F","location":"Watertown, MA, USA","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/76539399\/ventre_normal.jpg","profile_text_color":"666666","name":"Mike Ventre","following":false,"screen_name":"mikeventre","id":20387473,"id_str":"20387473","listed_count":4,"utc_offset":-18000,"friends_count":153,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28616037110,"id_str":"28616037110","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":8601,"description":"Raconteur.","contributors_enabled":false,"profile_sidebar_fill_color":"dddddd","followers_count":91357,"geo_enabled":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","verified":false,"url":"http:\/\/daringfireball.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","listed_count":5095,"following":true,"friends_count":452,"screen_name":"gruber","id":33423,"id_str":"33423","statuses_count":10487,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 17:33:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":75,"description":"a many splendored thing","contributors_enabled":false,"profile_sidebar_fill_color":"D01212","followers_count":127,"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"8C0707","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2465301\/twitterbg.png","lang":"en","created_at":"Fri Apr 25 16:21:14 +0000 2008","profile_background_color":"B20505","location":"Somerville, Mass","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/53327678\/L1020938_normal.jpg","profile_text_color":"000000","name":"Sam","listed_count":7,"following":false,"friends_count":184,"screen_name":"redgears","id":14528563,"id_str":"14528563","statuses_count":2328,"utc_offset":-18000,"profile_link_color":"5D4040"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28613842727,"id_str":"28613842727","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 16:45:46 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":933,"time_zone":"Eastern Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":3,"profile_sidebar_fill_color":"99CC33","followers_count":50,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":null,"verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4310881\/punchout-night.jpg","follow_request_sent":false,"lang":"en","created_at":"Thu Oct 23 14:19:23 +0000 2008","profile_background_color":"352726","location":"Philadelphia, PA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/70022634\/ChrisFarleyDaBears_normal.jpg","profile_text_color":"3E4415","name":"mikemead","following":false,"screen_name":"mikemead","id":16927201,"id_str":"16927201","listed_count":4,"utc_offset":-18000,"friends_count":72,"profile_link_color":"D02B55"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28610549061,"id_str":"28610549061","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 15:32:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":1778,"time_zone":"Eastern Time (US & Canada)","description":"MBA Student, Philanthropist, Auteur","show_all_inline_media":false,"favourites_count":3,"profile_sidebar_fill_color":"7AC3EE","followers_count":58,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"65B0DA","url":"http:\/\/colorafi.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme13\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Tue Apr 07 21:59:39 +0000 2009","profile_background_color":"000000","location":"ON, NY, ETC, TBA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/552452151\/IMG_2142_normal.png","profile_text_color":"3D1957","name":"Robert Colorafi","following":false,"screen_name":"herbibore","id":29557556,"id_str":"29557556","listed_count":8,"utc_offset":-18000,"friends_count":107,"profile_link_color":"FF0000"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28605276175,"id_str":"28605276175","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:48:11 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":4895,"time_zone":"Eastern Time (US & Canada)","description":"This feed is rated NC-17. I'm a rude, loud and obnoxious twit who will lash out at anyone and everything. You've been warned. ;)","show_all_inline_media":false,"favourites_count":81,"profile_sidebar_fill_color":"252429","followers_count":157,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/xtex404.com","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3203060\/camo.jpg","follow_request_sent":false,"lang":"en","created_at":"Tue Aug 19 20:33:02 +0000 2008","profile_background_color":"1A1B1F","location":"L5P, Atlanta, Georgia","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/637954274\/head_normal.jpg","profile_text_color":"666666","name":"JD Matlock","following":false,"screen_name":"jdmatlock","id":15909175,"id_str":"15909175","listed_count":6,"utc_offset":-18000,"friends_count":106,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28601509735,"id_str":"28601509735","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91306,"listed_count":5072,"notifications":false,"friends_count":452,"statuses_count":10483,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","show_all_inline_media":false,"favourites_count":8600,"url":"http:\/\/daringfireball.net","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","geo_enabled":false,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","verified":false,"profile_text_color":"000000","name":"John Gruber","follow_request_sent":false,"following":false,"screen_name":"gruber","id":33423,"id_str":"33423","utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:11:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","description":"I am a self-employed software consultant, and I love working with .NET.","profile_sidebar_fill_color":"C0DFEC","followers_count":160,"listed_count":15,"notifications":false,"friends_count":102,"statuses_count":703,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","show_all_inline_media":false,"favourites_count":1,"url":"http:\/\/dandoes.net","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme15\/bg.png","lang":"en","geo_enabled":true,"created_at":"Tue Feb 26 17:35:21 +0000 2008","profile_background_color":"022330","location":"Portland, OR","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/109704486\/n601599551_1548968_5665_normal.jpg","verified":false,"profile_text_color":"333333","name":"Daniel Schaffer","follow_request_sent":false,"following":true,"screen_name":"DanielSchaffer","id":14015462,"id_str":"14015462","utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28598327299,"id_str":"28598327299","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91390,"verified":false,"notifications":null,"follow_request_sent":null,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","listed_count":5097,"profile_background_tile":false,"friends_count":452,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","statuses_count":10488,"profile_text_color":"000000","name":"John Gruber","show_all_inline_media":false,"following":null,"favourites_count":8601,"screen_name":"gruber","id":33423,"id_str":"33423","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"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":"Sun Oct 24 14:09:06 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"shiftless layabout","profile_sidebar_fill_color":"e0ff92","followers_count":204,"verified":false,"notifications":null,"follow_request_sent":null,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3931310\/black.png","lang":"en","created_at":"Fri Oct 27 15:39:37 +0000 2006","profile_background_color":"9ae4e8","location":"","listed_count":3,"profile_background_tile":true,"friends_count":202,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1105783659\/flash_me_normal.jpg","statuses_count":3639,"profile_text_color":"000000","name":"Ryan Cook","show_all_inline_media":true,"following":null,"favourites_count":22,"screen_name":"ryancook","id":10813,"id_str":"10813","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28598145627,"id_str":"28598145627","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:04:56 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":241,"time_zone":"Central Time (US & Canada)","description":"I am a biomedical engineer, tech enthusiast, cyclist, skier, snowboarder, recreational movie editor, and so much more.","show_all_inline_media":false,"favourites_count":10,"profile_sidebar_fill_color":"efefef","followers_count":36,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.johndbutler.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme14\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Mon Jul 14 17:03:06 +0000 2008","profile_background_color":"131516","location":"Minneapolis, MN","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1137917918\/IMG_0151_normal.jpg","profile_text_color":"333333","name":"johnbutler","following":false,"screen_name":"johnbutler","id":15429051,"id_str":"15429051","listed_count":1,"utc_offset":-21600,"friends_count":56,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28597778505,"id_str":"28597778505","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","verified":false,"profile_sidebar_fill_color":"dddddd","followers_count":91391,"follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","listed_count":5097,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","friends_count":452,"profile_background_color":"5D5D5D","location":"Philadelphia","statuses_count":10488,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","show_all_inline_media":false,"favourites_count":8601,"profile_text_color":"000000","name":"John Gruber","contributors_enabled":false,"following":true,"screen_name":"gruber","id":33423,"id_str":"33423","geo_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 13:16:34 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Quito","description":"http:\/\/stevelim.info","verified":false,"profile_sidebar_fill_color":"252429","followers_count":23,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/stevelim.info","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1285780147\/images\/themes\/theme9\/bg.gif","listed_count":1,"lang":"en","created_at":"Fri Jul 20 08:07:25 +0000 2007","friends_count":48,"profile_background_color":"1A1B1F","location":"NYC","statuses_count":318,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/119138669\/hi_normal.png","show_all_inline_media":false,"favourites_count":34,"profile_text_color":"666666","name":"Steve Lim","contributors_enabled":false,"following":false,"screen_name":"limster","id":7604372,"id_str":"7604372","geo_enabled":true,"utc_offset":-18000,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28593967502,"id_str":"28593967502","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","verified":false,"profile_sidebar_fill_color":"dddddd","followers_count":91305,"follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","listed_count":5072,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","friends_count":452,"profile_background_color":"5D5D5D","location":"Philadelphia","statuses_count":10483,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","show_all_inline_media":false,"favourites_count":8599,"profile_text_color":"000000","name":"John Gruber","contributors_enabled":false,"following":false,"screen_name":"gruber","id":33423,"id_str":"33423","geo_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"new_id":607968476513968128,"new_id_str":"607968476513968128","source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:59:54 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"college professor","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":270,"follow_request_sent":false,"notifications":true,"profile_use_background_image":false,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/peter.honeyman.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/161271833\/tanspose.jpg","listed_count":29,"lang":"en","created_at":"Wed Mar 21 02:58:37 +0000 2007","friends_count":230,"profile_background_color":"C0DEED","location":"ann arbor","statuses_count":6626,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/228143303\/Photo_5_normal.jpg","show_all_inline_media":false,"favourites_count":17,"profile_text_color":"333333","name":"peter honeyman","contributors_enabled":false,"following":false,"screen_name":"peterhoneyman","id":1705871,"id_str":"1705871","geo_enabled":true,"utc_offset":-18000,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28592716957,"id_str":"28592716957","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:50:33 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":102,"time_zone":null,"description":"GET AT THESE BALLZ","show_all_inline_media":false,"favourites_count":12,"profile_sidebar_fill_color":"DDEEF6","followers_count":16,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/YOUR ALL OVER THESE BALLZ","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","follow_request_sent":false,"lang":"en","created_at":"Thu Dec 31 21:30:55 +0000 2009","profile_background_color":"C0DEED","location":"GET THESE BALLZ","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/704886761\/image_normal.jpg","profile_text_color":"333333","name":"Chris Vasilik","following":false,"screen_name":"ChrisVasilik","id":100847902,"id_str":"100847902","listed_count":0,"utc_offset":null,"friends_count":52,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28592060615,"id_str":"28592060615","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:02:04 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":2044,"time_zone":"Central Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":13,"profile_sidebar_fill_color":"ffffff","followers_count":7,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","url":null,"verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3135526\/2001_hal_shutdown.jpg","follow_request_sent":false,"lang":"en","created_at":"Tue Jun 24 22:33:44 +0000 2008","profile_background_color":"9ae4e8","location":"Milwaukee, WI","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/115047715\/th_hal2_normal.jpg","profile_text_color":"000000","name":"John T.","following":false,"screen_name":"xraydelta1","id":15224819,"id_str":"15224819","listed_count":2,"utc_offset":-21600,"friends_count":65,"profile_link_color":"2117FF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28588888640,"id_str":"28588888640","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"listed_count":5071,"time_zone":"Eastern Time (US & Canada)","friends_count":452,"description":"Raconteur.","statuses_count":10483,"profile_sidebar_fill_color":"dddddd","followers_count":91301,"show_all_inline_media":false,"notifications":false,"favourites_count":8599,"contributors_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","geo_enabled":false,"url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","verified":false,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:39:21 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"listed_count":0,"time_zone":"Eastern Time (US & Canada)","friends_count":197,"description":"","statuses_count":268,"profile_sidebar_fill_color":"DDFFCC","followers_count":14,"show_all_inline_media":false,"notifications":false,"favourites_count":5,"contributors_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"BDDCAD","geo_enabled":false,"url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","verified":false,"created_at":"Thu Oct 23 15:17:01 +0000 2008","profile_background_color":"5d862d","location":"NJ","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/150390715\/fu_yankke_game_lo_normal.jpg","profile_text_color":"333333","name":"maxwinkler","following":true,"screen_name":"maxwinkler","id":16928337,"id_str":"16928337","utc_offset":-18000,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28587550180,"id_str":"28587550180","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91300,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","listed_count":5070,"friends_count":452,"url":"http:\/\/daringfireball.net","statuses_count":10483,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","show_all_inline_media":false,"lang":"en","favourites_count":8599,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","geo_enabled":false,"profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","verified":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:39:17 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","description":"if you need to know, you probably do. Currently CTO of @ecoReserve, I've done online music, corporate tech, artist management, and other fun stuff... ","profile_sidebar_fill_color":"DDFFCC","followers_count":200,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","listed_count":6,"friends_count":284,"url":"http:\/\/ecoreserve.org","statuses_count":2991,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3309085\/dudesleep.jpg","show_all_inline_media":false,"lang":"en","favourites_count":0,"created_at":"Wed Oct 22 10:17:51 +0000 2008","profile_background_color":"9AE4E8","location":"iPhone: 34.152664,-118.418541","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1101753935\/headshot2_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"James Lynch III","following":true,"screen_name":"jlynch3","id":16903243,"id_str":"16903243","verified":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28587546699,"id_str":"28587546699","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:26:39 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":369,"time_zone":"Eastern Time (US & Canada)","description":"Vanguard, Kosmic4, Def City Vets, Using The Imagination, Busting Loose Always, Top Choice Masterpieces.","show_all_inline_media":false,"favourites_count":1,"profile_sidebar_fill_color":"efefef","followers_count":34,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/vanguardmovement.com","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/135928867\/orion-nebula.jpg","follow_request_sent":false,"lang":"en","created_at":"Wed Aug 04 04:32:45 +0000 2010","profile_background_color":"131516","location":"Hell Bent, USA","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1095182701\/DuvRoc_normal.jpg","profile_text_color":"333333","name":"DoverPeterson","following":false,"screen_name":"DoveRoc","id":174534061,"id_str":"174534061","listed_count":1,"utc_offset":-18000,"friends_count":47,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28586847755,"id_str":"28586847755","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 10:27:34 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":761,"time_zone":"Pacific Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":70,"profile_sidebar_fill_color":"C6C6C6","followers_count":130,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFE4E6","url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","follow_request_sent":false,"lang":"en","created_at":"Sat Dec 02 04:37:44 +0000 2006","profile_background_color":"303030","location":"Bay Area, California","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/436824810\/eafe0b9a2b464ac4b0285da4f3ff2a43ce4b4130_full__1__normal.jpg","profile_text_color":"0D0D0D","name":"tumult","following":false,"screen_name":"tumult","id":36433,"id_str":"36433","listed_count":9,"utc_offset":-28800,"friends_count":52,"profile_link_color":"353A44"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28583768789,"id_str":"28583768789","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."}]
@@ -0,0 +1 @@
1
+ {"position":null,"query":"twitter","created_at":"Tue Oct 26 21:49:01 +0000 2010","id_str":"16129012","name":"twitter","id":16129012}
@@ -0,0 +1 @@
1
+ [{"position":null,"query":"twitter","created_at":"Tue Oct 26 21:49:01 +0000 2010","id_str":"16129012","name":"twitter","id":16129012}]
@@ -0,0 +1 @@
1
+ {"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 22:41:52 +0000 2012","id":247827742178021376,"id_str":"247827742178021376","text":"Bubble Mailer #freebandnames","source":"\u003ca href=\"http:\/\/tapbots.com\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":671293,"id_str":"671293","name":"Richard Allen","screen_name":"richrad","location":"Kansas City","url":"http:\/\/richardallen.me","description":"Give me a break, Jeffery.","protected":false,"followers_count":174,"friends_count":273,"listed_count":2,"created_at":"Sat Jan 20 16:02:45 +0000 2007","favourites_count":383,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1370,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[14,28]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 21:38:09 +0000 2012","id":247811706061979648,"id_str":"247811706061979648","text":"Hair of the Frog \n\n(seriously, think about it) \n\n#freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349187102,"id_str":"349187102","name":"Drew Shields","screen_name":"dswordsNshields","location":"Buffalo, NY","url":"http:\/\/drewcshields.com","description":"Copywriter intern @CPBgroup Boulder. Recent SU grad in Advertising & International Relations. Pop culture devourer. Great guy to have a beer with.","protected":false,"followers_count":232,"friends_count":287,"listed_count":9,"created_at":"Fri Aug 05 18:09:00 +0000 2011","favourites_count":2,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3366,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0074AA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_link_color":"0074AA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[49,63]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"de"},"created_at":"Sat Sep 15 04:19:13 +0000 2012","id":246825473785606145,"id_str":"246825473785606145","text":"Wussies and pussies #goddylan #freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230804589,"id_str":"230804589","name":"The Dunnie Bobos ","screen_name":"thedunniebobos","location":"New York, NY","url":"http:\/\/bobomedia.tumblr.com\/","description":"The Coveted Blue Checkmark","protected":false,"followers_count":164,"friends_count":126,"listed_count":5,"created_at":"Sun Dec 26 18:47:44 +0000 2010","favourites_count":82,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":930,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C1E2EB","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFFAE8","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"goddylan","indices":[20,29]},{"text":"freebandnames","indices":[30,44]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Fri Sep 14 17:46:33 +0000 2012","id":246666260270702592,"id_str":"246666260270702592","text":"#FreeBandNames Asterisks and Thunderstorms","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21434745,"id_str":"21434745","name":"StrongPROGressRyan ","screen_name":"StrongPROGress","location":"Mound (not the Phish song), MN","url":"http:\/\/strongprogress.wordpress.com\/","description":"Lover of Heavy Progressive Musics, writes Strong PROGress: an audiobiographical music blog. Father\/Husband\/Musician; digs @thebigwu @phish, One Among The Fence","protected":false,"followers_count":666,"friends_count":748,"listed_count":13,"created_at":"Fri Feb 20 21:15:32 +0000 2009","favourites_count":629,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":8040,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"FreeBandNames","indices":[0,14]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false}],"search_metadata":{"completed_in":0.029,"max_id":250126199840518145,"max_id_str":"250126199840518145","next_page":"?page=2&max_id=250126199840518145&q=%23freebandnames&rpp=4&include_entities=1&result_type=mixed","page":1,"query":"%23freebandnames","refresh_url":"?since_id=250126199840518145&q=%23freebandnames&result_type=mixed&include_entities=1","results_per_page":4,"since_id":24012619984051000,"since_id_str":"24012619984051000"}}
@@ -0,0 +1 @@
1
+ {"max_id":28857935752,"since_id":0,"refresh_url":"?since_id=28857935752&q=twitter","next_page":"?page=2&max_id=28857935752&q=twitter","results_per_page":15,"page":1,"completed_in":0.017349,"since_id_str":"0","max_id_str":"28857935752","query":"twitter"}
@@ -0,0 +1 @@
1
+ {"error":"Service Unavailable","request":"/1/statuses/show/1.json"}
@@ -0,0 +1 @@
1
+ {"language":"en","discoverable_by_email":true,"trend_location":[{"url":"http:\/\/where.yahooapis.com\/v1\/place\/23424803","parentid":1,"name":"Ireland","countryCode":"IE","placeType":{"name":"Country","code":12},"woeid":23424803,"country":"Ireland"}],"sleep_time":{"enabled":false,"start_time":0,"end_time":0},"geo_enabled":true,"time_zone":{"name":"Eastern Time (US & Canada)","utc_offset":-18000,"tzinfo_name":"America\/New_York"},"always_use_https":true}
@@ -0,0 +1 @@
1
+ {"show_all_inline_media":true,"lang":"en","geo_enabled":true,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","created_at":"Mon Jul 16 12:59:01 +0000 2007","description":"A mind forever voyaging through strange seas of thought, alone.","screen_name":"sferik","url":"https:\/\/github.com\/sferik","status":{"retweeted_status":{"coordinates":null,"retweeted":false,"retweet_count":8,"created_at":"Sun Jan 16 20:57:21 +0000 2011","in_reply_to_user_id":null,"place":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"id_str":"26744838716133376","geo":null,"contributors":null,"in_reply_to_screen_name":null,"id":26744838716133376,"in_reply_to_user_id_str":null,"text":"[ANN] sqlite3-ruby =&gt; sqlite3"},"coordinates":null,"retweeted":false,"retweet_count":8,"created_at":"Sun Jan 16 21:38:25 +0000 2011","in_reply_to_user_id":null,"place":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"id_str":"26755176471724032","geo":null,"contributors":null,"in_reply_to_screen_name":null,"id":26755176471724032,"in_reply_to_user_id_str":null,"text":"RT @tenderlove: [ANN] sqlite3-ruby =&gt; sqlite3"},"profile_text_color":"333333","followers_count":1048,"listed_count":41,"following":false,"favourites_count":1040,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","profile_background_tile":false,"time_zone":"Pacific Time (US & Canada)","contributors_enabled":false,"statuses_count":3479,"profile_link_color":"0084B4","is_translator":false,"profile_sidebar_border_color":"C0DEED","protected":false,"id_str":"7505382","name":"Erik Michaels-Ober","verified":false,"notifications":false,"profile_use_background_image":true,"friends_count":197,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1186912733\/Github_Square_normal.jpg","id":7505382,"follow_request_sent":false,"utc_offset":-28800,"profile_background_color":"000000"}
@@ -0,0 +1 @@
1
+ {"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/41bcb736f84a799e.json","country":"The United States of America","attributes":{},"full_name":"Mission Bay, San Francisco","name":"Mission Bay","id":"41bcb736f84a799e","bounding_box":{"type":"Polygon","coordinates":[[[-122.40618084,37.76405301],[-122.38151184,37.76405301],[-122.38151184,37.78199199],[-122.40618084,37.78199199]]]}},"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 01:43:44 +0000 2010","in_reply_to_user_id":3191321,"favorited":false,"in_reply_to_user_id_str":"3191321","user":{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"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:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","listed_count":28,"friends_count":88,"profile_text_color":"333333","name":"Erik Michaels-Ober","statuses_count":2968,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","show_all_inline_media":true,"utc_offset":-28800,"favourites_count":727,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":"noradio","id":25938088801,"id_str":"25938088801","text":"@noradio working on implementing #NewTwitter API methods in the twitter gem. Twurl is making it easy. Thank you!"}
@@ -0,0 +1,104 @@
1
+ {
2
+ "in_reply_to_status_id": null,
3
+ "created_at": "Mon Aug 29 03:48:06 +0000 2011",
4
+ "geo": null,
5
+ "user": {
6
+ "profile_background_tile": true,
7
+ "protected": false,
8
+ "url": "http://www.beforeitwasround.com",
9
+ "listed_count": 21,
10
+ "name": "Steve Agalloco",
11
+ "profile_link_color": "009999",
12
+ "following": true,
13
+ "utc_offset": -18000,
14
+ "profile_sidebar_border_color": "eeeeee",
15
+ "description": "ruby, rails, node, nosql, husband, father, golfer. not necessarily in that order.",
16
+ "time_zone": "Eastern Time (US & Canada)",
17
+ "created_at": "Wed Aug 23 01:12:20 +0000 2006",
18
+ "friends_count": 380,
19
+ "profile_image_url": "http://a3.twimg.com/profile_images/1376908742/social_network_icon_normal.jpg",
20
+ "default_profile_image": false,
21
+ "show_all_inline_media": true,
22
+ "contributors_enabled": false,
23
+ "geo_enabled": true,
24
+ "profile_use_background_image": false,
25
+ "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/140563920/116775_0147_ful.jpg",
26
+ "profile_background_color": "131516",
27
+ "screen_name": "anno",
28
+ "is_translator": false,
29
+ "profile_background_image_url": "http://a3.twimg.com/profile_background_images/140563920/116775_0147_ful.jpg",
30
+ "profile_image_url_https": "https://si0.twimg.com/profile_images/1376908742/social_network_icon_normal.jpg",
31
+ "follow_request_sent": false,
32
+ "statuses_count": 2013,
33
+ "favourites_count": 383,
34
+ "id_str": "4618",
35
+ "lang": "en",
36
+ "verified": false,
37
+ "profile_text_color": "333333",
38
+ "location": "Charlotte, NC",
39
+ "id": 4618,
40
+ "default_profile": false,
41
+ "notifications": false,
42
+ "profile_sidebar_fill_color": "efefef",
43
+ "followers_count": 396
44
+ },
45
+ "in_reply_to_user_id": null,
46
+ "truncated": false,
47
+ "coordinates": null,
48
+ "favorited": false,
49
+ "possibly_sensitive": false,
50
+ "in_reply_to_status_id_str": null,
51
+ "in_reply_to_screen_name": null,
52
+ "source": "<a href=\"http://beforeitwasround.com\" rel=\"nofollow\">Tweetstreamie</a>",
53
+ "in_reply_to_user_id_str": null,
54
+ "id_str": "108023089715089408",
55
+ "entities": {
56
+ "hashtags": [],
57
+ "media": [
58
+ {
59
+ "type": "photo",
60
+ "url": "http://t.co/CBYa7Ri",
61
+ "media_url": "http://p.twimg.com/AX_GbYJCEAAldJ7.jpg",
62
+ "display_url": "pic.twitter.com/CBYa7Ri",
63
+ "expanded_url": "http://twitter.com/anno/status/108023089715089408/photo/1",
64
+ "media_url_https": "https://p.twimg.com/AX_GbYJCEAAldJ7.jpg",
65
+ "indices": [
66
+ 24,
67
+ 43
68
+ ],
69
+ "sizes": {
70
+ "small": {
71
+ "h": 81,
72
+ "w": 94,
73
+ "resize": "fit"
74
+ },
75
+ "medium": {
76
+ "h": 81,
77
+ "w": 94,
78
+ "resize": "fit"
79
+ },
80
+ "large": {
81
+ "h": 81,
82
+ "w": 94,
83
+ "resize": "fit"
84
+ },
85
+ "thumb": {
86
+ "h": 81,
87
+ "w": 94,
88
+ "resize": "crop"
89
+ }
90
+ },
91
+ "id": 108023089719283710,
92
+ "id_str": "108023089719283712"
93
+ }
94
+ ],
95
+ "urls": [],
96
+ "user_mentions": []
97
+ },
98
+ "id": 108023089715089400,
99
+ "contributors": null,
100
+ "place": null,
101
+ "retweeted": false,
102
+ "retweet_count": 0,
103
+ "text": "You always have options http://t.co/CBYa7Ri"
104
+ }
@@ -0,0 +1 @@
1
+ [{"created_at":"Fri Sep 07 16:35:24 +0000 2012","id":244111636544225280,"id_str":"244111636544225280","text":"Happy Birthday @imdane. Watch out for those @rally pranksters!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5819322,"id_str":"5819322","name":"Maggie Utgoff","screen_name":"mutgoff","location":"san francisco","description":"I live every week like it's Shark Week. ","url":"http:\/\/www.mutgoff.com","entities":{"url":{"urls":[{"url":"http:\/\/www.mutgoff.com","expanded_url":null,"indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":263063,"friends_count":708,"listed_count":534,"created_at":"Mon May 07 01:02:52 +0000 2007","favourites_count":444,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4604,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/344662358\/x88fe902ff835983434794eb1f9d7370.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/344662358\/x88fe902ff835983434794eb1f9d7370.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1199277090\/Screen_shot_2010-12-26_at_11.31.51_AM_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1199277090\/Screen_shot_2010-12-26_at_11.31.51_AM_normal.png","profile_link_color":"9DDD95","profile_sidebar_border_color":"A0EEF5","profile_sidebar_fill_color":"1A3F57","profile_text_color":"72B9BF","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[43.46481998,-73.64247884]},"coordinates":{"type":"Point","coordinates":[-73.64247884,43.46481998]},"place":{"id":"003cd76c24b9fa3b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/003cd76c24b9fa3b.json","place_type":"city","name":"Bolton","full_name":"Bolton, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-73.750813,43.442073],[-73.525347,43.442073],[-73.525347,43.678377],[-73.750813,43.678377]]]},"attributes":{}},"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imdane","name":"Dane Hurtubise","id":14076314,"id_str":"14076314","indices":[15,22]},{"screen_name":"rally","name":"Rally","id":16364838,"id_str":"16364838","indices":[44,50]}]},"favorited":false,"retweeted":false},{"created_at":"Fri Sep 07 16:33:36 +0000 2012","id":244111183165157376,"id_str":"244111183165157376","text":"If you like good real-life stories, check out @NarrativelyNY\u2019s just-launched site http:\/\/t.co\/wiUL07jE (and also visit http:\/\/t.co\/ZoyQxqWA)","source":"\u003ca href=\"http:\/\/tapbots.com\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14163141,"id_str":"14163141","name":"David Friedman","screen_name":"ironicsans","location":"New York","description":"Photographer. Idea blogger. Occasional historian.","url":"http:\/\/www.davidfriedman.info","entities":{"url":{"urls":[{"url":"http:\/\/www.davidfriedman.info","expanded_url":null,"indices":[0,29]}]},"description":{"urls":[]}},"protected":false,"followers_count":4131,"friends_count":1270,"listed_count":220,"created_at":"Mon Mar 17 13:47:33 +0000 2008","favourites_count":1377,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4753,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"AAB4B5","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/66248418\/Untitled-1.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/66248418\/Untitled-1.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/427291735\/n645611374_892426_9102_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/427291735\/n645611374_892426_9102_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/wiUL07jE","expanded_url":"http:\/\/narrative.ly","display_url":"narrative.ly","indices":[82,102]},{"url":"http:\/\/t.co\/ZoyQxqWA","expanded_url":"http:\/\/www.kickstarter.com\/projects\/narratively\/narratively","display_url":"kickstarter.com\/projects\/narra\u2026","indices":[119,139]}],"user_mentions":[{"screen_name":"NarrativelyNY","name":"Narratively","id":576457087,"id_str":"576457087","indices":[46,60]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:30:14 +0000 2012","id":244110336414859264,"id_str":"244110336414859264","text":"Something else to vote for: \"New Rails workshops to bring more women into the Boston software scene\" http:\/\/t.co\/eNBuckHc \/cc @bostonrb","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43234200,"id_str":"43234200","name":"Pat Shaughnessy","screen_name":"pat_shaughnessy","location":"Boston","description":"Blogger, Rubyist, Writing a new eBook: http:\/\/patshaughnessy.net\/ruby-under-a-microscope","url":"http:\/\/patshaughnessy.net","entities":{"url":{"urls":[{"url":"http:\/\/patshaughnessy.net","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":734,"friends_count":362,"listed_count":38,"created_at":"Fri May 29 00:55:48 +0000 2009","favourites_count":35,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1620,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1950093297\/pat2_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1950093297\/pat2_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/eNBuckHc","expanded_url":"http:\/\/news.ycombinator.com\/item?id=4489199","display_url":"news.ycombinator.com\/item?id=4489199","indices":[101,121]}],"user_mentions":[{"screen_name":"bostonrb","name":"Boston Ruby Group","id":21431343,"id_str":"21431343","indices":[126,135]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:28:05 +0000 2012","id":244109797308379136,"id_str":"244109797308379136","text":"Pushing the button to launch the site. http:\/\/t.co\/qLoEn5jG","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1882641,"id_str":"1882641","name":"Caleb Elston","screen_name":"calebelston","location":"San Francisco","description":"Co-founder & CEO of Yobongo. Dubious of people who claim to be experts. Formerly VP Products at Justin.tv. Advisor to Simpler.","url":"http:\/\/www.calebelston.com","entities":{"url":{"urls":[{"url":"http:\/\/www.calebelston.com","expanded_url":null,"indices":[0,26]}]},"description":{"urls":[]}},"protected":false,"followers_count":1960,"friends_count":151,"listed_count":136,"created_at":"Thu Mar 22 14:34:22 +0000 2007","favourites_count":815,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":7068,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"666666","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_link_color":"0099CC","profile_sidebar_border_color":"E3E3E3","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"292E38","profile_use_background_image":false,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/qLoEn5jG","expanded_url":"http:\/\/instagr.am\/p\/PR7YFvRhiO\/","display_url":"instagr.am\/p\/PR7YFvRhiO\/","indices":[39,59]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:23:50 +0000 2012","id":244108728834592770,"id_str":"244108728834592770","text":"RT @olivercameron: Mosaic looks cool: http:\/\/t.co\/A8013C9k","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1882641,"id_str":"1882641","name":"Caleb Elston","screen_name":"calebelston","location":"San Francisco","description":"Co-founder & CEO of Yobongo. Dubious of people who claim to be experts. Formerly VP Products at Justin.tv. Advisor to Simpler.","url":"http:\/\/www.calebelston.com","entities":{"url":{"urls":[{"url":"http:\/\/www.calebelston.com","expanded_url":null,"indices":[0,26]}]},"description":{"urls":[]}},"protected":false,"followers_count":1960,"friends_count":151,"listed_count":136,"created_at":"Thu Mar 22 14:34:22 +0000 2007","favourites_count":815,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":7068,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"666666","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_link_color":"0099CC","profile_sidebar_border_color":"E3E3E3","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"292E38","profile_use_background_image":false,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 16:12:47 +0000 2012","id":244105944508796931,"id_str":"244105944508796931","text":"Mosaic looks cool: http:\/\/t.co\/A8013C9k","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13634322,"id_str":"13634322","name":"Oliver Cameron","screen_name":"olivercameron","location":"Palo Alto, CA","description":"Co-founder of @everyme.","url":"http:\/\/everyme.com","entities":{"url":{"urls":[{"url":"http:\/\/everyme.com","expanded_url":null,"indices":[0,18]}]},"description":{"urls":[]}},"protected":false,"followers_count":1365,"friends_count":218,"listed_count":57,"created_at":"Mon Feb 18 18:08:32 +0000 2008","favourites_count":8,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":3346,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/5435833\/pat_20060420022220.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5435833\/pat_20060420022220.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1237999642\/Oliver_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1237999642\/Oliver_normal.png","profile_link_color":"454545","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/A8013C9k","expanded_url":"http:\/\/heymosaic.com\/i\/1Z8ssK","display_url":"heymosaic.com\/i\/1Z8ssK","indices":[19,39]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/A8013C9k","expanded_url":"http:\/\/heymosaic.com\/i\/1Z8ssK","display_url":"heymosaic.com\/i\/1Z8ssK","indices":[38,58]}],"user_mentions":[{"screen_name":"olivercameron","name":"Oliver Cameron","id":13634322,"id_str":"13634322","indices":[3,17]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:20:31 +0000 2012","id":244107890632294400,"id_str":"244107890632294400","text":"The Weatherman is Not a Moron: http:\/\/t.co\/ZwL5Gnq5. An excerpt from my book, THE SIGNAL AND THE NOISE (http:\/\/t.co\/fNXj8vCE)","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16017475,"id_str":"16017475","name":"Nate Silver","screen_name":"fivethirtyeight","location":"New York","description":"FiveThirtyEight blogger (http:\/\/nyti.ms\/Qp8cqb). Author, The Signal and the Noise (http:\/\/amzn.to\/QdyFYV). Sports\/politics\/food geek.","url":"http:\/\/amzn.to\/QdyFYV","entities":{"url":{"urls":[{"url":"http:\/\/amzn.to\/QdyFYV","expanded_url":null,"indices":[0,21]}]},"description":{"urls":[]}},"protected":false,"followers_count":183238,"friends_count":475,"listed_count":8160,"created_at":"Wed Aug 27 20:56:45 +0000 2008","favourites_count":6,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":6786,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1110592135\/fivethirtyeight73_twitter_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1110592135\/fivethirtyeight73_twitter_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":19,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/ZwL5Gnq5","expanded_url":"http:\/\/nyti.ms\/OW7n5p","display_url":"nyti.ms\/OW7n5p","indices":[31,51]},{"url":"http:\/\/t.co\/fNXj8vCE","expanded_url":"http:\/\/amzn.to\/Qg2SEu","display_url":"amzn.to\/Qg2SEu","indices":[104,124]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:20:15 +0000 2012","id":244107823733174272,"id_str":"244107823733174272","text":"RT @randomhacks: Going to Code Across Austin II: Y'all Come Hack Now, Sat, Sep 8 http:\/\/t.co\/Sk5BM7U3 We'll see y'all there! #rhok @cod ...","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64482503,"id_str":"64482503","name":"Code for America","screen_name":"codeforamerica","location":"San Francisco, California","description":"Code for America helps governments work better for everyone with the people and the power of the web.","url":"http:\/\/www.codeforamerica.org","entities":{"url":{"urls":[{"url":"http:\/\/www.codeforamerica.org","expanded_url":null,"indices":[0,29]}]},"description":{"urls":[]}},"protected":false,"followers_count":11824,"friends_count":783,"listed_count":981,"created_at":"Mon Aug 10 18:59:29 +0000 2009","favourites_count":20,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3611,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1118630094\/logosquare_bigger_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1118630094\/logosquare_bigger_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 16:11:02 +0000 2012","id":244105505390350336,"id_str":"244105505390350336","text":"Going to Code Across Austin II: Y'all Come Hack Now, Sat, Sep 8 http:\/\/t.co\/Sk5BM7U3 We'll see y'all there! #rhok @codeforamerica @TheaClay","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75361247,"id_str":"75361247","name":"Random Hacks","screen_name":"randomhacks","location":"USA","description":"Official Twitter account for Random Hacks of Kindness.","url":"http:\/\/www.rhok.org","entities":{"url":{"urls":[{"url":"http:\/\/www.rhok.org","expanded_url":null,"indices":[0,19]}]},"description":{"urls":[]}},"protected":false,"followers_count":3917,"friends_count":202,"listed_count":209,"created_at":"Fri Sep 18 19:22:26 +0000 2009","favourites_count":1,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1173,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/102109549\/rhok_social_media_wallpaper.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/102109549\/rhok_social_media_wallpaper.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/905274924\/rhok_social_media_logo_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/905274924\/rhok_social_media_logo_normal.png","profile_link_color":"2087E7","profile_sidebar_border_color":"2087E7","profile_sidebar_fill_color":"E8E7E7","profile_text_color":"030303","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"entities":{"hashtags":[{"text":"rhok","indices":[109,114]}],"urls":[{"url":"http:\/\/t.co\/Sk5BM7U3","expanded_url":"http:\/\/zvents.com\/e\/IhP3T\/7o","display_url":"zvents.com\/e\/IhP3T\/7o","indices":[64,84]}],"user_mentions":[{"screen_name":"codeforamerica","name":"Code for America","id":64482503,"id_str":"64482503","indices":[115,130]},{"screen_name":"TheaClay","name":"Thea Clay","id":34324747,"id_str":"34324747","indices":[131,140]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":2,"entities":{"hashtags":[{"text":"rhok","indices":[126,131]}],"urls":[{"url":"http:\/\/t.co\/Sk5BM7U3","expanded_url":"http:\/\/zvents.com\/e\/IhP3T\/7o","display_url":"zvents.com\/e\/IhP3T\/7o","indices":[81,101]}],"user_mentions":[{"screen_name":"randomhacks","name":"Random Hacks","id":75361247,"id_str":"75361247","indices":[3,15]},{"screen_name":"cod","name":"Chris OBrien","id":13791662,"id_str":"13791662","indices":[132,136]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:17:55 +0000 2012","id":244107236262170624,"id_str":"244107236262170624","text":"RT @jondot: Just published: \"Pragmatic Concurrency With #Ruby\" http:\/\/t.co\/kGEykswZ \/cc @JRuby @headius","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":10248172,"id_str":"10248172","name":"Fredrik Bj\u00f6rk","screen_name":"fbjork","location":"San Francisco, CA","description":"Director of Engineering at @banjo","url":"http:\/\/ban.jo","entities":{"url":{"urls":[{"url":"http:\/\/ban.jo","expanded_url":null,"indices":[0,13]}]},"description":{"urls":[]}},"protected":false,"followers_count":266,"friends_count":343,"listed_count":18,"created_at":"Wed Nov 14 14:58:28 +0000 2007","favourites_count":7,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":944,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2167836514\/252562_10150648192185221_786305220_19068177_4887761_n_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2167836514\/252562_10150648192185221_786305220_19068177_4887761_n_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 15:53:34 +0000 2012","id":244101108983803904,"id_str":"244101108983803904","text":"Just published: \"Pragmatic Concurrency With #Ruby\" http:\/\/t.co\/kGEykswZ \/cc @JRuby @headius","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25607541,"id_str":"25607541","name":"dotan nahum","screen_name":"jondot","location":"","description":"I'm just a mean code machine. Constantly scanning, hunting and building the next big thing.","url":"http:\/\/blog.paracode.com","entities":{"url":{"urls":[{"url":"http:\/\/blog.paracode.com","expanded_url":null,"indices":[0,24]}]},"description":{"urls":[]}},"protected":false,"followers_count":410,"friends_count":85,"listed_count":13,"created_at":"Sat Mar 21 00:26:10 +0000 2009","favourites_count":0,"utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"verified":false,"statuses_count":784,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B1F44","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/437973354\/nwgrand_516_142243.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/437973354\/nwgrand_516_142243.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1181955409\/nd_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1181955409\/nd_normal.png","profile_link_color":"1C62B9","profile_sidebar_border_color":"F1A253","profile_sidebar_fill_color":"221309","profile_text_color":"755C8A","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":8,"entities":{"hashtags":[{"text":"Ruby","indices":[44,49]}],"urls":[{"url":"http:\/\/t.co\/kGEykswZ","expanded_url":"http:\/\/blog.paracode.com\/2012\/09\/07\/pragmatic-concurrency-with-ruby\/","display_url":"blog.paracode.com\/2012\/09\/07\/pra\u2026","indices":[51,71]}],"user_mentions":[{"screen_name":"jruby","name":"JRuby Dev Team","id":16132186,"id_str":"16132186","indices":[78,84]},{"screen_name":"headius","name":"Charles Nutter","id":9989362,"id_str":"9989362","indices":[85,93]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":8,"entities":{"hashtags":[{"text":"Ruby","indices":[56,61]}],"urls":[{"url":"http:\/\/t.co\/kGEykswZ","expanded_url":"http:\/\/blog.paracode.com\/2012\/09\/07\/pragmatic-concurrency-with-ruby\/","display_url":"blog.paracode.com\/2012\/09\/07\/pra\u2026","indices":[63,83]}],"user_mentions":[{"screen_name":"jondot","name":"dotan nahum","id":25607541,"id_str":"25607541","indices":[3,10]},{"screen_name":"jruby","name":"JRuby Dev Team","id":16132186,"id_str":"16132186","indices":[90,96]},{"screen_name":"headius","name":"Charles Nutter","id":9989362,"id_str":"9989362","indices":[97,105]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:14:53 +0000 2012","id":244106476048764928,"id_str":"244106476048764928","text":"If you are wondering how we computed the split bubbles: http:\/\/t.co\/BcaqSs5u","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43593,"id_str":"43593","name":"Mike Bostock","screen_name":"mbostock","location":"San Francisco, CA","description":"Purveyor of fine misinformations.","url":"http:\/\/bost.ocks.org","entities":{"url":{"urls":[{"url":"http:\/\/bost.ocks.org","expanded_url":null,"indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":4090,"friends_count":181,"listed_count":227,"created_at":"Tue Dec 05 21:57:30 +0000 2006","favourites_count":124,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2237,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1434042628\/mbostock-sf_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1434042628\/mbostock-sf_normal.png","profile_link_color":"9F0606","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/BcaqSs5u","expanded_url":"http:\/\/bl.ocks.org\/3422480","display_url":"bl.ocks.org\/3422480","indices":[56,76]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:11:24 +0000 2012","id":244105599351148544,"id_str":"244105599351148544","text":"\u201cWrite drunk. Edit sober.\u201d\u2014Ernest Hemingway","source":"\u003ca href=\"http:\/\/stone.com\/neue\" rel=\"nofollow\"\u003eTwittelator Neue\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":485409945,"id_str":"485409945","name":"Fake Jack Dorsey","screen_name":"FakeDorsey","location":"San Francisco","description":"Simplify, bitches.","url":"http:\/\/square.twitter.com","entities":{"url":{"urls":[{"url":"http:\/\/square.twitter.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":3275,"friends_count":1,"listed_count":61,"created_at":"Tue Feb 07 05:16:26 +0000 2012","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":86,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1810072255\/Untitled_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1810072255\/Untitled_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"created_at":"Fri Sep 07 16:07:16 +0000 2012","id":244104558433951744,"id_str":"244104558433951744","text":"RT @wcmaier: Better banking through better ops: build something new with us @Simplify (remote, PDX) http:\/\/t.co\/8WgzKZH3","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18713,"id_str":"18713","name":"Alex Payne","screen_name":"al3x","location":"Berlin (Aug 31 - Sept 21)","description":"Programmer. Writer. Secular Humanist.","url":"http:\/\/al3x.net","entities":{"url":{"urls":[{"url":"http:\/\/al3x.net","expanded_url":null,"indices":[0,15]}]},"description":{"urls":[]}},"protected":false,"followers_count":36487,"friends_count":323,"listed_count":2272,"created_at":"Thu Nov 23 19:29:11 +0000 2006","favourites_count":4615,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"verified":false,"statuses_count":23134,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E5E9EB","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/357750272\/small_3_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/357750272\/small_3_normal.png","profile_link_color":"336699","profile_sidebar_border_color":"333333","profile_sidebar_fill_color":"C3CBD0","profile_text_color":"232323","profile_use_background_image":false,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 15:27:38 +0000 2012","id":244094582411890689,"id_str":"244094582411890689","text":"Better banking through better ops: build something new with us @Simplify (remote, PDX) http:\/\/t.co\/8WgzKZH3","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11125102,"id_str":"11125102","name":"Will Maier","screen_name":"wcmaier","location":"Madison, WI, USA","description":"I help @Simplify ship beautiful things. Previously @lt_kije.","url":"http:\/\/wcm.aier.us\/","entities":{"url":{"urls":[{"url":"http:\/\/wcm.aier.us\/","expanded_url":null,"indices":[0,19]}]},"description":{"urls":[]}},"protected":false,"followers_count":240,"friends_count":193,"listed_count":16,"created_at":"Thu Dec 13 12:35:31 +0000 2007","favourites_count":2,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3898,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/39909052\/kije-final_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/39909052\/kije-final_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/8WgzKZH3","expanded_url":"http:\/\/careers.simple.com\/apply\/LKW4tQ\/Operations-Engineer.html","display_url":"careers.simple.com\/apply\/LKW4tQ\/O\u2026","indices":[87,107]}],"user_mentions":[{"screen_name":"Simplify","name":"Simple","id":71165241,"id_str":"71165241","indices":[63,72]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":3,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/8WgzKZH3","expanded_url":"http:\/\/careers.simple.com\/apply\/LKW4tQ\/Operations-Engineer.html","display_url":"careers.simple.com\/apply\/LKW4tQ\/O\u2026","indices":[100,120]}],"user_mentions":[{"screen_name":"wcmaier","name":"Will Maier","id":11125102,"id_str":"11125102","indices":[3,11]},{"screen_name":"Simplify","name":"Simple","id":71165241,"id_str":"71165241","indices":[76,85]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:05:38 +0000 2012","id":244104146997870594,"id_str":"244104146997870594","text":"We just announced Mosaic, what we've been working on since the Yobongo acquisition. My personal post, http:\/\/t.co\/ELOyIRZU @heymosaic","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1882641,"id_str":"1882641","name":"Caleb Elston","screen_name":"calebelston","location":"San Francisco","description":"Co-founder & CEO of Yobongo. Dubious of people who claim to be experts. Formerly VP Products at Justin.tv. Advisor to Simpler.","url":"http:\/\/www.calebelston.com","entities":{"url":{"urls":[{"url":"http:\/\/www.calebelston.com","expanded_url":null,"indices":[0,26]}]},"description":{"urls":[]}},"protected":false,"followers_count":1960,"friends_count":151,"listed_count":136,"created_at":"Thu Mar 22 14:34:22 +0000 2007","favourites_count":815,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":7068,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"666666","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322151965\/ngb.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2584558450\/elyaf9epw0kcnh9gxglp_normal.jpeg","profile_link_color":"0099CC","profile_sidebar_border_color":"E3E3E3","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"292E38","profile_use_background_image":false,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":4,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/ELOyIRZU","expanded_url":"http:\/\/calebelston.com\/2012\/09\/07\/meet-mosaic\/","display_url":"calebelston.com\/2012\/09\/07\/mee\u2026","indices":[102,122]}],"user_mentions":[{"screen_name":"heymosaic","name":"Mosaic","id":772256556,"id_str":"772256556","indices":[123,133]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:01:18 +0000 2012","id":244103057175113729,"id_str":"244103057175113729","text":"Donate $10 or more --&gt; get your favorite car magnet: http:\/\/t.co\/NfRhl2s2 #Obama2012","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813286,"id_str":"813286","name":"Barack Obama","screen_name":"BarackObama","location":"Washington, DC","description":"This account is run by #Obama2012 campaign staff. Tweets from the President are signed -bo.","url":"http:\/\/www.barackobama.com","entities":{"url":{"urls":[{"url":"http:\/\/www.barackobama.com","expanded_url":null,"indices":[0,26]}]},"description":{"urls":[]}},"protected":false,"followers_count":19449227,"friends_count":673288,"listed_count":175179,"created_at":"Mon Mar 05 22:08:25 +0000 2007","favourites_count":0,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":5968,"lang":"en","contributors_enabled":true,"is_translator":false,"profile_background_color":"77B0DC","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/584034019\/tkwyaf768hs9bylnus1k.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/584034019\/tkwyaf768hs9bylnus1k.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2325704772\/wrrmef61i6jl91kwkmzq_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2325704772\/wrrmef61i6jl91kwkmzq_normal.png","profile_link_color":"2574AD","profile_sidebar_border_color":"C2E0F6","profile_sidebar_fill_color":"C2E0F6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":147,"entities":{"hashtags":[{"text":"Obama2012","indices":[77,87]}],"urls":[{"url":"http:\/\/t.co\/NfRhl2s2","expanded_url":"http:\/\/OFA.BO\/eWNq2T","display_url":"OFA.BO\/eWNq2T","indices":[56,76]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:00:25 +0000 2012","id":244102834398851073,"id_str":"244102834398851073","text":"RT @tenderlove: If corporations are people, can we use them to drive in the carpool lane?","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20941662,"id_str":"20941662","name":"James Edward Gray II","screen_name":"JEG2","location":"Edmond, OK","description":"Rubyist, Husband, Father, Atheist, Oklahoman, and all around weird guy.","url":"http:\/\/blog.grayproductions.net","entities":{"url":{"urls":[{"url":"http:\/\/blog.grayproductions.net","expanded_url":null,"indices":[0,31]}]},"description":{"urls":[]}},"protected":false,"followers_count":4206,"friends_count":174,"listed_count":389,"created_at":"Sun Feb 15 22:05:54 +0000 2009","favourites_count":0,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":11780,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2311650093\/fkgorpzafxmsafxpf6wi_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2311650093\/fkgorpzafxmsafxpf6wi_normal.png","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 15:57:28 +0000 2012","id":244102091730210816,"id_str":"244102091730210816","text":"If corporations are people, can we use them to drive in the carpool lane?","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14761655,"id_str":"14761655","name":"Aaron Patterson","screen_name":"tenderlove","location":"Seattle, WA","description":"\u3072\u3052\u306e\u5c71\u7537\u3002 When I'm not trimming my beard, I'm hanging out with my lady, @ebiltwin.","url":"http:\/\/tenderlovemaking.com","entities":{"url":{"urls":[{"url":"http:\/\/tenderlovemaking.com","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":10869,"friends_count":365,"listed_count":862,"created_at":"Tue May 13 17:25:31 +0000 2008","favourites_count":275,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":14623,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1261953917\/headshot_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1261953917\/headshot_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"retweet_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tenderlove","name":"Aaron Patterson","id":14761655,"id_str":"14761655","indices":[3,14]}]},"favorited":false,"retweeted":false},{"created_at":"Fri Sep 07 16:00:03 +0000 2012","id":244102741125890048,"id_str":"244102741125890048","text":"LDN\u2014Obama's nomination; Putin woos APEC; Bombs hit Damascus; Quakes shake China; Canada cuts Iran ties; weekend read: http:\/\/t.co\/OFs6dVW4","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":632391565,"id_str":"632391565","name":"Evening Edition","screen_name":"eveningedition","location":"","description":"The perfect commute-sized way to catch up on the day\u2019s news after a long day at work. Brought to you by @MuleDesign.","url":"http:\/\/evening-edition.com","entities":{"url":{"urls":[{"url":"http:\/\/evening-edition.com","expanded_url":null,"indices":[0,26]}]},"description":{"urls":[]}},"protected":false,"followers_count":3357,"friends_count":3,"listed_count":115,"created_at":"Tue Jul 10 23:02:44 +0000 2012","favourites_count":19,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2406639576\/q8cnprnmdv0z0gt6wtda_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2406639576\/q8cnprnmdv0z0gt6wtda_normal.png","profile_link_color":"CC3333","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/OFs6dVW4","expanded_url":"http:\/\/evening-edition.com","display_url":"evening-edition.com","indices":[118,138]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 16:00:00 +0000 2012","id":244102729860009984,"id_str":"244102729860009984","text":"RT @ggreenwald: Democrats parade Osama bin Laden's corpse as their proudest achievement: why this goulish jingoism is so warped http:\/\/t ...","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14561327,"id_str":"14561327","name":"DHH","screen_name":"dhh","location":"Chicago, USA","description":"Creator of Ruby on Rails, Partner at 37signals, Co-author of NYT Best-Seller Rework, and racing driver in ALMS.","url":"http:\/\/david.heinemeierhansson.com","entities":{"url":{"urls":[{"url":"http:\/\/david.heinemeierhansson.com","expanded_url":null,"indices":[0,34]}]},"description":{"urls":[]}},"protected":false,"followers_count":63074,"friends_count":140,"listed_count":4874,"created_at":"Sun Apr 27 20:19:25 +0000 2008","favourites_count":5,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":true,"statuses_count":8710,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2556368541\/alng5gtlmjhrdlr3qxqv_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 07 15:23:23 +0000 2012","id":244093513216696321,"id_str":"244093513216696321","text":"Democrats parade Osama bin Laden's corpse as their proudest achievement: why this goulish jingoism is so warped http:\/\/t.co\/kood278s","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16076032,"id_str":"16076032","name":"Glenn Greenwald","screen_name":"ggreenwald","location":"","description":"Columnist & blogger for the Guardian (http:\/\/is.gd\/WWjIKY) - author, With Liberty and Justice for Some - dog\/animal fanatic ","url":"http:\/\/is.gd\/WWjIKY","entities":{"url":{"urls":[{"url":"http:\/\/is.gd\/WWjIKY","expanded_url":null,"indices":[0,19]}]},"description":{"urls":[]}},"protected":false,"followers_count":93616,"friends_count":610,"listed_count":5680,"created_at":"Mon Sep 01 03:13:32 +0000 2008","favourites_count":22,"utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"verified":true,"statuses_count":22441,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2182259529\/glenn_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2182259529\/glenn_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":95,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/kood278s","expanded_url":"http:\/\/is.gd\/6rrjXd","display_url":"is.gd\/6rrjXd","indices":[112,132]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":95,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ggreenwald","name":"Glenn Greenwald","id":16076032,"id_str":"16076032","indices":[3,14]}]},"favorited":false,"retweeted":false},{"created_at":"Fri Sep 07 15:59:03 +0000 2012","id":244102490646278146,"id_str":"244102490646278146","text":"The story of Mars Curiosity's gears, made by a factory in Rockford, IL: http:\/\/t.co\/MwCRsHQg","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14372143,"id_str":"14372143","name":"Jason Fried","screen_name":"jasonfried","location":"Chicago, IL","description":"Founder of 37signals. Co-author of REWORK. Credo: It's simple until you make it complicated.","url":"http:\/\/www.37signals.com","entities":{"url":{"urls":[{"url":"http:\/\/www.37signals.com","expanded_url":null,"indices":[0,24]}]},"description":{"urls":[]}},"protected":false,"followers_count":90623,"friends_count":94,"listed_count":6724,"created_at":"Sun Apr 13 01:31:17 +0000 2008","favourites_count":502,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":true,"statuses_count":11501,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/157820538\/37sicon1.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/157820538\/37sicon1.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/585991126\/jasonfried-avatar_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/585991126\/jasonfried-avatar_normal.jpg","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"000000","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":4,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/MwCRsHQg","expanded_url":"http:\/\/kottke.org\/12\/09\/the-story-of-mars-curiositys-gears","display_url":"kottke.org\/12\/09\/the-stor\u2026","indices":[72,92]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 15:57:56 +0000 2012","id":244102209942458368,"id_str":"244102209942458368","text":"@episod @twitterapi now https:\/\/t.co\/I17jUTu2 and https:\/\/t.co\/deDu4Hgw seem to be missing \"1.1\" from the URL.","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":244100786940964865,"in_reply_to_status_id_str":"244100786940964865","in_reply_to_user_id":819797,"in_reply_to_user_id_str":"819797","in_reply_to_screen_name":"episod","user":{"id":7505382,"id_str":"7505382","name":"Erik Michaels-Ober","screen_name":"sferik","location":"San Francisco","description":"Vagabond.","url":"https:\/\/github.com\/sferik","entities":{"url":{"urls":[{"url":"https:\/\/github.com\/sferik","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":2383,"friends_count":210,"listed_count":126,"created_at":"Mon Jul 16 12:59:01 +0000 2007","favourites_count":4157,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8342,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/643217856\/we_concept_bg2.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/643217856\/we_concept_bg2.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I17jUTu2","expanded_url":"https:\/\/dev.twitter.com\/docs\/api\/post\/direct_messages\/destroy","display_url":"dev.twitter.com\/docs\/api\/post\/\u2026","indices":[24,45]},{"url":"https:\/\/t.co\/deDu4Hgw","expanded_url":"https:\/\/dev.twitter.com\/docs\/api\/post\/direct_messages\/new","display_url":"dev.twitter.com\/docs\/api\/post\/\u2026","indices":[50,71]}],"user_mentions":[{"screen_name":"episod","name":"Taylor Singletary","id":819797,"id_str":"819797","indices":[0,7]},{"screen_name":"twitterapi","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[8,19]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 15:50:47 +0000 2012","id":244100411563339777,"id_str":"244100411563339777","text":"@episod @twitterapi Did you catch https:\/\/t.co\/VHsQvZT0 as well?","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":244097234432565248,"in_reply_to_status_id_str":"244097234432565248","in_reply_to_user_id":819797,"in_reply_to_user_id_str":"819797","in_reply_to_screen_name":"episod","user":{"id":7505382,"id_str":"7505382","name":"Erik Michaels-Ober","screen_name":"sferik","location":"San Francisco","description":"Vagabond.","url":"https:\/\/github.com\/sferik","entities":{"url":{"urls":[{"url":"https:\/\/github.com\/sferik","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":2383,"friends_count":210,"listed_count":126,"created_at":"Mon Jul 16 12:59:01 +0000 2007","favourites_count":4157,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8342,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/643217856\/we_concept_bg2.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/643217856\/we_concept_bg2.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VHsQvZT0","expanded_url":"https:\/\/twitter.com\/sferik\/status\/243988000076337152","display_url":"twitter.com\/sferik\/status\/\u2026","indices":[34,55]}],"user_mentions":[{"screen_name":"episod","name":"Taylor Singletary","id":819797,"id_str":"819797","indices":[0,7]},{"screen_name":"twitterapi","name":"Twitter API","id":6253282,"id_str":"6253282","indices":[8,19]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},{"created_at":"Fri Sep 07 15:47:01 +0000 2012","id":244099460672679938,"id_str":"244099460672679938","text":"Gentlemen, you can't fight in here! This is the war room! http:\/\/t.co\/kMxMYyqF","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897431,"id_str":"2897431","name":"Dave Wiskus ","screen_name":"dwiskus","location":"Denver \/ Amsterdam","description":"I draw pictures of software for money.","url":"http:\/\/betterelevation.com\/","entities":{"url":{"urls":[{"url":"http:\/\/betterelevation.com\/","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":2367,"friends_count":271,"listed_count":187,"created_at":"Thu Mar 29 21:37:02 +0000 2007","favourites_count":3314,"utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":12827,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1514640834\/dwiskus-avatar-2011_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1514640834\/dwiskus-avatar-2011_normal.png","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/kMxMYyqF","expanded_url":"http:\/\/instagr.am\/p\/PR5cDLzFz5\/","display_url":"instagr.am\/p\/PR5cDLzFz5\/","indices":[58,78]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false}]
@@ -0,0 +1 @@
1
+ [{"size":56,"slug":"art-design","name":"Art & Design"},{"size":72,"slug":"books","name":"Books"},{"size":65,"slug":"business","name":"Business"},{"size":82,"slug":"charity","name":"Charity"},{"size":32,"slug":"deals-discounts","name":"Deals & Discounts"},{"size":125,"slug":"entertainment","name":"Entertainment"},{"size":55,"slug":"family","name":"Family"},{"size":56,"slug":"fashion","name":"Fashion"},{"size":81,"slug":"food-drink","name":"Food & Drink"},{"size":69,"slug":"funny","name":"Funny"},{"size":51,"slug":"health","name":"Health"},{"size":117,"slug":"music","name":"Music"},{"size":59,"slug":"news","name":"News"},{"size":81,"slug":"politics","name":"Politics"},{"size":53,"slug":"science","name":"Science"},{"size":114,"slug":"sports","name":"Sports"},{"size":96,"slug":"staff-picks","name":"Staff Picks"},{"size":60,"slug":"technology","name":"Technology"},{"size":56,"slug":"travel","name":"Travel"},{"size":16,"slug":"twitter","name":"Twitter"}]
@@ -0,0 +1 @@
1
+ {"tos":"Terms of Service\n\n\nThese Terms of Service (\"Terms\") govern your access to and use of the services and Twitter\u2019s websites (the \"Services\"), and any information, text, graphics, photos or other materials uploaded, downloaded or appearing on the Services (collectively referred to as \"Content\"). Your access to and use of the Services is conditioned on your acceptance of and compliance with these Terms. By accessing or using the Services you agree to be bound by these Terms.\n\n\nBasic Terms\n\nYou are responsible for your use of the Services, for any Content you post to the Services, and for any consequences thereof. The Content you submit, post, or display will be able to be viewed by other users of the Services and through third party services and websites (go to the account settings (http:\/\/twitter.com\/account\/settings) page to control who sees your Content). You should only provide Content that you are comfortable sharing with others under these Terms.\n\nTip What you say on Twitter may be viewed all around the world instantly. You are what you Tweet!\n\nYou may use the Services only if you can form a binding contract with Twitter and are not a person barred from receiving services under the laws of the United States or other applicable jurisdiction. You may use the Services only in compliance with these Terms and all applicable local, state, national, and international laws, rules and regulations.\n\nThe Services that Twitter provides are always evolving and the form and nature of the Services that Twitter provides may change from time to time without prior notice to you. In addition, Twitter may stop (permanently or temporarily) providing the Services (or any features within the Services) to you or to users generally and may not be able to provide you with prior notice. We also retain the right to create limits on use and storage at our sole discretion at any time without prior notice to you.\n\nThe Services may include advertisements, which may be targeted to the Content or information on the Services, queries made through the Services, or other information. The types and extent of advertising by Twitter on the Services are subject to change. In consideration for Twitter granting you access to and use of the Services, you agree that Twitter and its third party providers and partners may place such advertising on the Services or in connection with the display of Content or information from the Services whether submitted by you or others.\n\nPrivacy\n\n\nAny information that you provide to Twitter is subject to our Privacy Policy (http:\/\/twitter.com\/privacy), which governs our collection and use of your information. You understand that through your use of the Services you consent to the collection and use (as set forth in the Privacy Policy) of this information, including the transfer of this information to the United States and\/or other countries for storage, processing and use by Twitter. As part of providing you the Services, we may need to provide you with certain communications, such as service announcements and administrative messages. These communications are considered part of the Services and your Twitter account, which you may not be able to opt-out from receiving.\n\nTip You can opt-out of most communications from Twitter including our newsletter, new follower emails, etc. Please see the Notifications tab of Settings for more.\n\nPasswords\n\nYou are responsible for safeguarding the password that you use to access the Services and for any activities or actions under your password. We encourage you to use \"strong\" passwords (passwords that use a combination of upper and lower case letters, numbers and symbols) with your account. Twitter cannot and will not be liable for any loss or damage arising from your failure to comply with the above requirements.\n\nContent on the Services\n\nAll Content, whether publicly posted or privately transmitted, is the sole responsibility of the person who originated such Content. We may not monitor or control the Content posted via the Services and, we cannot take responsibility for such Content. Any use or reliance on any Content or materials posted via the Services or obtained by you through the Services is at your own risk.\n\nWe do not endorse, support, represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Content or communications posted via the Services or endorse any opinions expressed via the Services. You understand that by using the Services, you may be exposed to Content that might be offensive, harmful, inaccurate or otherwise inappropriate, or in some cases, postings that have been mislabeled or are otherwise deceptive. Under no circumstances will Twitter be liable in any way for any Content, including, but not limited to, any errors or omissions in any Content, or any loss or damage of any kind incurred as a result of the use of any Content posted, emailed, transmitted or otherwise made available via the Services or broadcast elsewhere.\n\nYour Rights\n\nYou retain your rights to any Content you submit, post or display on or through the Services. By submitting, posting or displaying Content on or through the Services, you grant us a worldwide, non-exclusive, royalty-free license (with the right to sublicense) to use, copy, reproduce, process, adapt, modify, publish, transmit, display and distribute such Content in any and all media or distribution methods (now known or later developed).\n\nTip This license is you authorizing us to make your Tweets available to the rest of the world and to let others do the same.\n\nYou agree that this license includes the right for Twitter to make such Content available to other companies, organizations or individuals who partner with Twitter for the syndication, broadcast, distribution or publication of such Content on other media and services, subject to our terms and conditions for such Content use. \n\n\nTip Twitter has an evolving set of rules (http:\/\/twitter.com\/apirules) for how ecosystem partners can interact with your content. These rules exist to enable an open ecosystem with your rights in mind. But what\u2019s yours is yours \u2013 you own your Content (and your photos are part of that Content)\n\nSuch additional uses by Twitter, or other companies, organizations or individuals who partner with Twitter, may be made with no compensation paid to you with respect to the Content that you submit, post, transmit or otherwise make available through the Services.\n\nWe may modify or adapt your Content in order to transmit, display or distribute it over computer networks and in various media and\/or make changes to your Content as are necessary to conform and adapt that Content to any requirements or limitations of any networks, devices, services or media.\n\nYou are responsible for your use of the Services, for any Content you provide, and for any consequences thereof, including the use of your Content by other users and our third party partners. You understand that your Content may be rebroadcasted by our partners and if you do not have the right to submit Content for such use, it may subject you to liability. Twitter will not be responsible or liable for any use of your Content by Twitter in accordance with these Terms. You represent and warrant that you have all the rights, power and authority necessary to grant the rights granted herein to any Content that you submit.\n\nTwitter gives you a personal, worldwide, royalty-free, non-assignable and non-exclusive license to use the software that is provided to you by Twitter as part of the Services. This license is for the sole purpose of enabling you to use and enjoy the benefit of the Services as provided by Twitter, in the manner permitted by these Terms.\n\nTwitter Rights\n\nAll right, title, and interest in and to the Services (excluding Content provided by users) are and will remain the exclusive property of Twitter and its licensors. The Services are protected by copyright, trademark, and other laws of both the United States and foreign countries. Nothing in the Terms gives you a right to use the Twitter name or any of the Twitter trademarks, logos, domain names, and other distinctive brand features. Any feedback, comments, or suggestions you may provide regarding Twitter, or the Services is entirely voluntary and we will be free to use such feedback, comments or suggestions as we see fit and without any obligation to you.\n\nRestrictions on Content and Use of the Services\n\n\nWe reserve the right at all times (but will not have an obligation) to remove or refuse to distribute any Content on the Services and to terminate users or reclaim usernames. Please review the Twitter Rules ( http:\/\/support.twitter.com\/articles\/18311-the-twitter-rules ) (which are part of these Terms) to better understand what is prohibited on the Service. We also reserve the right to access, read, preserve, and disclose any information as we reasonably believe is necessary to (i) satisfy any applicable law, regulation, legal process or governmental request, (ii) enforce the Terms, including investigation of potential violations hereof, (iii) detect, prevent, or otherwise address fraud, security or technical issues, (iv) respond to user support requests, or (v) protect the rights, property or safety of Twitter, its users and the public.\n\nTip Twitter does not disclose personally identifying information to third parties except in accordance with our Privacy Policy.\n\n\nExcept as permitted through the Services (or these Terms), you have to use the Twitter API (http:\/\/dev.twitter.com if you want to reproduce, modify, create derivative works, distribute, sell, transfer, publicly display, publicly perform, transmit, or otherwise use the Content or Services.\n\nTip We encourage and permit broad re-use of Content. The Twitter API exists to enable this.\n\nYou may not do any of the following while accessing or using the Services: (i) access, tamper with, or use non-public areas of the Services, Twitter\u2019s computer systems, or the technical delivery systems of Twitter\u2019s providers; (ii) probe, scan, or test the vulnerability of any system or network or breach or circumvent any security or authentication measures; (iii) access or search or attempt to access or search the Services by any means (automated or otherwise) other than through our currently available, published interfaces that are provided by Twitter (and only pursuant to those terms and conditions), unless you have been specifically allowed to do so in a separate agreement with Twitter (NOTE: crawling the Services is permissible if done in accordance with the provisions of the robots.txt file, however, scraping the Services without the prior consent of Twitter is expressly prohibited); (iv) forge any TCP\/IP packet header or any part of the header information in any email or posting, or in any way use the Services to send altered, deceptive or false source-identifying information; or (v) interfere with, or disrupt, (or attempt to do so), the access of any user, host or network, including, without limitation, sending a virus, overloading, flooding, spamming, mail-bombing the Services, or by scripting the creation of Content in such a manner as to interfere with or create an undue burden on the Services.\n\nCopyright Policy\n\nTwitter respects the intellectual property rights of others and expects users of the Services to do the same. We will respond to notices of alleged copyright infringement that comply with applicable law and are properly provided to us. If you believe that your Content has been copied in a way that constitutes copyright infringement, please provide us with the following information: (i) a physical or electronic signature of the copyright owner or a person authorized to act on their behalf; (ii) identification of the copyrighted work claimed to have been infringed; (iii) identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit us to locate the material; (iv) your contact information, including your address, telephone number, and an email address; (v) a statement by you that you have a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and (vi) a statement that the information in the notification is accurate, and, under penalty of perjury, that you are authorized to act on behalf of the copyright owner.\n\nWe reserve the right to remove Content alleged to be infringing without prior notice and at our sole discretion. In appropriate circumstances, Twitter will also terminate a user\u2019s account if the user is determined to be a repeat infringer. Our designated copyright agent for notice of alleged copyright infringement appearing on the Services is:\n\nTwitter, Inc. Attn: Copyright Agent 795 Folsom Street, Suite 600 San Francisco, CA 94107 Email: copyright@twitter.com\n\nThe Services are Available \"AS-IS\"\nYour access to and use of the Services or any Content is at your own risk. You understand and agree that the Services is provided to you on an \"AS IS\" and \"AS AVAILABLE\" basis. Without limiting the foregoing, TWITTER AND ITS PARTNERS DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. We make no warranty and disclaim all responsibility and liability for the completeness, accuracy, availability, timeliness, security or reliability of the Services or any content thereon. Twitter will not be responsible or liable for any harm to your computer system, loss of data, or other harm that results from your access to or use of the Services, or any Content. You also agree that Twitter has no responsibility or liability for the deletion of, or the failure to store or to transmit, any Content and other communications maintained by the Services. We make no warranty that the Services will meet your requirements or be available on an uninterrupted, secure, or error-free basis. No advice or information, whether oral or written, obtained from Twitter or through the Services, will create any warranty not expressly made herein.\n\nLinks\nThe Services may contain links to third-party websites or resources. You acknowledge and agree that we are not responsible or liable for: (i) the availability or accuracy of such websites or resources; or (ii) the content, products, or services on or available from such websites or resources. Links to such websites or resources do not imply any endorsement by Twitter of such websites or resources or the content, products, or services available from such websites or resources. You acknowledge sole responsibility for and assume all risk arising from your use of any such websites or resources.\n\nLimitation of Liability\nTO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, TWITTER AND ITS SUBSIDIARIES, AFFILIATES, OFFICERS, EMPLOYEES, AGENTS, PARTNERS AND LICENSORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, INCLUDING WITHOUT LIMITATION, LOSS OF PROFITS, DATA, USE, GOOD-WILL, OR OTHER INTANGIBLE LOSSES, RESULTING FROM (i) YOUR ACCESS TO OR USE OF OR INABILITY TO ACCESS OR USE THE SERVICES; (ii) ANY CONDUCT OR CONTENT OF ANY THIRD PARTY ON THE SERVICES, INCLUDING WITHOUT LIMITATION, ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR THIRD PARTIES; (iii) ANY CONTENT OBTAINED FROM THE SERVICES; AND (iv) UNAUTHORIZED ACCESS, USE OR ALTERATION OF YOUR TRANSMISSIONS OR CONTENT, WHETHER BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE) OR ANY OTHER LEGAL THEORY, WHETHER OR NOT TWITTER HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGE, AND EVEN IF A REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE.\n\nExclusions\nSome jurisdictions do not allow the exclusion of certain warranties or the exclusion or limitation of liability for consequential or incidental damages, so the limitations above may not apply to you.\n\nWaiver and Severability\nThe failure of Twitter to enforce any right or provision of these Terms will not be deemed a waiver of such right or provision. In the event that any provision of these Terms is held to be invalid or unenforceable, the remaining provisions of these Terms will remain in full force and effect.\n\nControlling Law and Jurisdiction\nThese Terms and any action related thereto will be governed by the laws of the State of California without regard to or application of its conflict of law provisions or your state or country of residence. All claims, legal proceedings or litigation arising in connection with the Services will be brought solely in San Francisco County, California, and you consent to the jurisdiction of and venue in such courts and waive any objection as to inconvenient forum. If you are accepting these Terms on behalf of a United States federal government entity that is legally unable to accept the controlling law, jurisdiction or venue clauses above, then those clauses do not apply to you but instead these Terms and any action related thereto will be will be governed by the laws of the United States of America (without reference to conflict of laws) and, in the absence of federal law and to the extent permitted under federal law, the laws of the State of California (excluding choice of law).\n\nEntire Agreement\nThese Terms, the Twitter Rules and our Privacy Policy are the entire and exclusive agreement between Twitter and you regarding the Services (excluding any services for which you have a separate agreement with Twitter that is explicitly in addition or in place of these Terms), and these Terms supersede and replace any prior agreements between Twitter and you regarding the Services. Other than members of the group of companies of which Twitter is the parent, no other person or company will be third party beneficiaries to the Terms.\n\n\nWe may revise these Terms from time to time, the most current version will always be at http:\/\/twitter.com\/tos. If the revision, in our sole discretion, is material we will notify you via an @Twitter update or e-mail to the email associated with your account. By continuing to access or use the Services after those revisions become effective, you agree to be bound by the revised Terms.\n\n\nThese Services are operated and provided by Twitter Inc., 795 Folsom Street, Suite 600, San Francisco, CA 94107. If you have any questions about these Terms, please contact us (http:\/\/twitter.com\/about\/contact).\n\nEffective: June 01, 2011"}
@@ -0,0 +1 @@
1
+ {"favorites":2811,"updates":4109,"followers":475,"friends":1994}
@@ -0,0 +1 @@
1
+ {"trends":[{"url":"http:\/\/search.twitter.com\/search?q=Isaacs","name":"Isaacs"},{"url":"http:\/\/search.twitter.com\/search?q=%23speaknow","name":"#speaknow"},{"url":"http:\/\/search.twitter.com\/search?q=Walkman","name":"Walkman"},{"url":"http:\/\/search.twitter.com\/search?q=%23dia31vote13","name":"#dia31vote13"},{"url":"http:\/\/search.twitter.com\/search?q=Jay+Bum","name":"Jay Bum"},{"url":"http:\/\/search.twitter.com\/search?q=Allen+Iverson","name":"Allen Iverson"},{"url":"http:\/\/search.twitter.com\/search?q=RIP+Gregory","name":"RIP Gregory"},{"url":"http:\/\/search.twitter.com\/search?q=Issacs","name":"Issacs"},{"url":"http:\/\/search.twitter.com\/search?q=Night+Nurse","name":"Night Nurse"},{"url":"http:\/\/search.twitter.com\/search?q=VLC","name":"VLC"}],"as_of":"Mon, 25 Oct 2010 15:50:02 +0000"}
@@ -0,0 +1 @@
1
+ {"as_of":1288021711,"trends":{"2010-10-25 16:00:00":[{"query":"Isaacs","name":"Isaacs","events":null,"promoted_content":null},{"query":"#speaknow","name":"#speaknow","events":null,"promoted_content":null},{"query":"Walkman","name":"Walkman","events":null,"promoted_content":null},{"query":"#dia31vote13","name":"#dia31vote13","events":null,"promoted_content":null},{"query":"Jay Bum","name":"Jay Bum","events":null,"promoted_content":null},{"query":"RIP Gregory","name":"RIP Gregory","events":null,"promoted_content":null},{"query":"Allen Iverson","name":"Allen Iverson","events":null,"promoted_content":null},{"query":"Issacs","name":"Issacs","events":null,"promoted_content":null},{"query":"Night Nurse","name":"Night Nurse","events":null,"promoted_content":null},{"query":"VLC","name":"VLC","events":null,"promoted_content":null}]}}
@@ -0,0 +1 @@
1
+ {"as_of":1288021851,"trends":{"2010-10-24 17:00":[{"query":"#bigbangcomeback","promoted_content":null,"name":"#bigbangcomeback","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Epke","promoted_content":null,"name":"Epke","events":null},{"query":"Joe Hart","promoted_content":null,"name":"Joe Hart","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"#psvfey","promoted_content":null,"name":"#psvfey","events":null},{"query":"PSV Eindhoven","promoted_content":null,"name":"PSV Eindhoven","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Stoke City","promoted_content":null,"name":"Stoke City","events":null},{"query":"Bench Uncut","promoted_content":null,"name":"Bench Uncut","events":null},{"query":"Blackburn Rovers","promoted_content":null,"name":"Blackburn Rovers","events":null},{"query":"Zonderland","promoted_content":null,"name":"Zonderland","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Boyata","promoted_content":null,"name":"Boyata","events":null},{"query":"Gre-Nal","promoted_content":null,"name":"Gre-Nal","events":null},{"query":"Parab\u00e9ns Goi\u00e2nia","promoted_content":null,"name":"Parab\u00e9ns Goi\u00e2nia","events":null},{"query":"Mario Been","promoted_content":null,"name":"Mario Been","events":null}],"2010-10-24 19:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"Roddy White","promoted_content":null,"name":"Roddy White","events":null},{"query":"#bigbangcomeback","promoted_content":null,"name":"#bigbangcomeback","events":null},{"query":"STUCK TOGETHER","promoted_content":null,"name":"STUCK TOGETHER","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Hines Ward","promoted_content":null,"name":"Hines Ward","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Kerry Collins","promoted_content":null,"name":"Kerry Collins","events":null},{"query":"Bouman","promoted_content":null,"name":"Bouman","events":null},{"query":"Mike Wallace","promoted_content":null,"name":"Mike Wallace","events":null},{"query":"Bendtner","promoted_content":null,"name":"Bendtner","events":null},{"query":"Drew Brees","promoted_content":null,"name":"Drew Brees","events":null},{"query":"Gre-Nal","promoted_content":null,"name":"Gre-Nal","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null}],"2010-10-24 18:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"#bigbangcomeback","promoted_content":null,"name":"#bigbangcomeback","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Bendtner","promoted_content":null,"name":"Bendtner","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"PSV Eindhoven","promoted_content":null,"name":"PSV Eindhoven","events":null},{"query":"Walcott","promoted_content":null,"name":"Walcott","events":null},{"query":"Studio Sport","promoted_content":null,"name":"Studio Sport","events":null},{"query":"Ziraldo","promoted_content":null,"name":"Ziraldo","events":null},{"query":"Gre-Nal","promoted_content":null,"name":"Gre-Nal","events":null},{"query":"Kuip","promoted_content":null,"name":"Kuip","events":null},{"query":"Joe Hart","promoted_content":null,"name":"Joe Hart","events":null},{"query":"PSV Hancurkan Feyenoord","promoted_content":null,"name":"PSV Hancurkan Feyenoord","events":null},{"query":"Parab\u00e9ns Goi\u00e2nia","promoted_content":null,"name":"Parab\u00e9ns Goi\u00e2nia","events":null},{"query":"Martinsville","promoted_content":null,"name":"Martinsville","events":null},{"query":"KLANTINK MENANG","promoted_content":null,"name":"KLANTINK MENANG","events":null}],"2010-10-25 15:00":[{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"#dia31vote13","promoted_content":null,"name":"#dia31vote13","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Issacs","promoted_content":null,"name":"Issacs","events":null},{"query":"Night Nurse","promoted_content":null,"name":"Night Nurse","events":null},{"query":"VLC","promoted_content":null,"name":"VLC","events":null},{"query":"Khadr","promoted_content":null,"name":"Khadr","events":null},{"query":"Hiccup","promoted_content":null,"name":"Hiccup","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"HappyBDayFiuk","promoted_content":null,"name":"HappyBDayFiuk","events":null},{"query":"Ruler","promoted_content":null,"name":"Ruler","events":null},{"query":"Lesnar","promoted_content":null,"name":"Lesnar","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Feyenoord","promoted_content":null,"name":"Feyenoord","events":null},{"query":"Wikileaks","promoted_content":null,"name":"Wikileaks","events":null}],"2010-10-25 16:00":[{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"#dia31vote13","promoted_content":null,"name":"#dia31vote13","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Issacs","promoted_content":null,"name":"Issacs","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Night Nurse","promoted_content":null,"name":"Night Nurse","events":null},{"query":"VLC","promoted_content":null,"name":"VLC","events":null},{"query":"Khadr","promoted_content":null,"name":"Khadr","events":null},{"query":"Hiccup","promoted_content":null,"name":"Hiccup","events":null},{"query":"HappyBDayFiuk","promoted_content":null,"name":"HappyBDayFiuk","events":null},{"query":"Guantanamo","promoted_content":null,"name":"Guantanamo","events":null},{"query":"Ruler","promoted_content":null,"name":"Ruler","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Lesnar","promoted_content":null,"name":"Lesnar","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Brock","promoted_content":null,"name":"Brock","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null}],"2010-10-24 23:00":[{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Cor\u00e9e","promoted_content":null,"name":"Cor\u00e9e","events":null},{"query":"F\u00e1bio Santos","promoted_content":null,"name":"F\u00e1bio Santos","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Valad\u00e3o","promoted_content":null,"name":"Valad\u00e3o","events":null},{"query":"Gianecchini","promoted_content":null,"name":"Gianecchini","events":null},{"query":"\u00d1ublense","promoted_content":null,"name":"\u00d1ublense","events":null},{"query":"EstareiContigoRestart","promoted_content":null,"name":"EstareiContigoRestart","events":null},{"query":"Martinsville","promoted_content":null,"name":"Martinsville","events":null},{"query":"Hamlin","promoted_content":null,"name":"Hamlin","events":null},{"query":"GALOOOO","promoted_content":null,"name":"GALOOOO","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Corpse Bride","promoted_content":null,"name":"Corpse Bride","events":null}],"2010-10-25 04:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"KUWTK","promoted_content":null,"name":"KUWTK","events":null},{"query":"Collinsworth","promoted_content":null,"name":"Collinsworth","events":null},{"query":"Percy Harvin","promoted_content":null,"name":"Percy Harvin","events":null},{"query":"Undercover Boss","promoted_content":null,"name":"Undercover Boss","events":null},{"query":"Prisioneros","promoted_content":null,"name":"Prisioneros","events":null},{"query":"WCAT","promoted_content":null,"name":"WCAT","events":null},{"query":"Jenner","promoted_content":null,"name":"Jenner","events":null},{"query":"Mysterio","promoted_content":null,"name":"Mysterio","events":null},{"query":"Team Smackdown","promoted_content":null,"name":"Team Smackdown","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Wade Barrett","promoted_content":null,"name":"Wade Barrett","events":null},{"query":"Greg Jennings","promoted_content":null,"name":"Greg Jennings","events":null},{"query":"Cardozo","promoted_content":null,"name":"Cardozo","events":null},{"query":"RKO","promoted_content":null,"name":"RKO","events":null}],"2010-10-25 06:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#tcap","promoted_content":null,"name":"#tcap","events":null},{"query":"Jeepers Creepers","promoted_content":null,"name":"Jeepers Creepers","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Jenner","promoted_content":null,"name":"Jenner","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"#frasesvenezolanas","promoted_content":null,"name":"#frasesvenezolanas","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Gladiator","promoted_content":null,"name":"Gladiator","events":null},{"query":"ASX","promoted_content":null,"name":"ASX","events":null},{"query":"Schule","promoted_content":null,"name":"Schule","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Predator","promoted_content":null,"name":"Predator","events":null}],"2010-10-25 01:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"Kris Brown","promoted_content":null,"name":"Kris Brown","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Corpse Bride","promoted_content":null,"name":"Corpse Bride","events":null},{"query":"Zap","promoted_content":null,"name":"Zap","events":null},{"query":"Daniel Bryan","promoted_content":null,"name":"Daniel Bryan","events":null},{"query":"Mad Black","promoted_content":null,"name":"Mad Black","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"Ziggler","promoted_content":null,"name":"Ziggler","events":null},{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"Goodall","promoted_content":null,"name":"Goodall","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"MARIADA","promoted_content":null,"name":"MARIADA","events":null},{"query":"PPV","promoted_content":null,"name":"PPV","events":null}],"2010-10-25 03:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"Percy Harvin","promoted_content":null,"name":"Percy Harvin","events":null},{"query":"Undercover Boss","promoted_content":null,"name":"Undercover Boss","events":null},{"query":"Buried Alive","promoted_content":null,"name":"Buried Alive","events":null},{"query":"Prisioneros","promoted_content":null,"name":"Prisioneros","events":null},{"query":"Mad Black","promoted_content":null,"name":"Mad Black","events":null},{"query":"Mysterio","promoted_content":null,"name":"Mysterio","events":null},{"query":"Quarless","promoted_content":null,"name":"Quarless","events":null},{"query":"Shiancoe","promoted_content":null,"name":"Shiancoe","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Reks","promoted_content":null,"name":"Reks","events":null},{"query":"KUWTK","promoted_content":null,"name":"KUWTK","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Gorete","promoted_content":null,"name":"Gorete","events":null}],"2010-10-25 05:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"KUWTK","promoted_content":null,"name":"KUWTK","events":null},{"query":"Collinsworth","promoted_content":null,"name":"Collinsworth","events":null},{"query":"Percy Harvin","promoted_content":null,"name":"Percy Harvin","events":null},{"query":"Undercover Boss","promoted_content":null,"name":"Undercover Boss","events":null},{"query":"Prisioneros","promoted_content":null,"name":"Prisioneros","events":null},{"query":"WCAT","promoted_content":null,"name":"WCAT","events":null},{"query":"Jenner","promoted_content":null,"name":"Jenner","events":null},{"query":"Mysterio","promoted_content":null,"name":"Mysterio","events":null},{"query":"Team Smackdown","promoted_content":null,"name":"Team Smackdown","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Wade Barrett","promoted_content":null,"name":"Wade Barrett","events":null},{"query":"Greg Jennings","promoted_content":null,"name":"Greg Jennings","events":null},{"query":"Cardozo","promoted_content":null,"name":"Cardozo","events":null},{"query":"RKO","promoted_content":null,"name":"RKO","events":null}],"2010-10-25 02:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Jared Allen","promoted_content":null,"name":"Jared Allen","events":null},{"query":"Otunga","promoted_content":null,"name":"Otunga","events":null},{"query":"Percy Harvin","promoted_content":null,"name":"Percy Harvin","events":null},{"query":"Daniel Bryan","promoted_content":null,"name":"Daniel Bryan","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Mad Black","promoted_content":null,"name":"Mad Black","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Ziggler","promoted_content":null,"name":"Ziggler","events":null},{"query":"Goldust","promoted_content":null,"name":"Goldust","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"DiBiase","promoted_content":null,"name":"DiBiase","events":null},{"query":"Byrd","promoted_content":null,"name":"Byrd","events":null},{"query":"Quarless","promoted_content":null,"name":"Quarless","events":null},{"query":"Standings","promoted_content":null,"name":"Standings","events":null},{"query":"ORGULHISTA","promoted_content":null,"name":"ORGULHISTA","events":null},{"query":"Buried Alive","promoted_content":null,"name":"Buried Alive","events":null}],"2010-10-25 13:00":[{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"#keepingitpeel","promoted_content":null,"name":"#keepingitpeel","events":null},{"query":"Issacs","promoted_content":null,"name":"Issacs","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Night Nurse","promoted_content":null,"name":"Night Nurse","events":null},{"query":"Karzai","promoted_content":null,"name":"Karzai","events":null},{"query":"#cr2","promoted_content":null,"name":"#cr2","events":null},{"query":"Ruler","promoted_content":null,"name":"Ruler","events":null},{"query":"HappyBDayFiuk","promoted_content":null,"name":"HappyBDayFiuk","events":null},{"query":"Hiccup","promoted_content":null,"name":"Hiccup","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"JWH","promoted_content":null,"name":"JWH","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Feyenoord","promoted_content":null,"name":"Feyenoord","events":null},{"query":"Lesnar","promoted_content":null,"name":"Lesnar","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null}],"2010-10-25 10:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"#keepingitpeel","promoted_content":null,"name":"#keepingitpeel","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Hurricane Richard","promoted_content":null,"name":"Hurricane Richard","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Be\u015fikta\u015f","promoted_content":null,"name":"Be\u015fikta\u015f","events":null},{"query":"ASX","promoted_content":null,"name":"ASX","events":null},{"query":"CBI","promoted_content":null,"name":"CBI","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"PSV","promoted_content":null,"name":"PSV","events":null},{"query":"Baas","promoted_content":null,"name":"Baas","events":null}],"2010-10-25 12:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"#keepingitpeel","promoted_content":null,"name":"#keepingitpeel","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"JWH","promoted_content":null,"name":"JWH","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Costello","promoted_content":null,"name":"Costello","events":null},{"query":"Rudd","promoted_content":null,"name":"Rudd","events":null},{"query":"Alan Jones","promoted_content":null,"name":"Alan Jones","events":null},{"query":"Karzai","promoted_content":null,"name":"Karzai","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Issacs","promoted_content":null,"name":"Issacs","events":null},{"query":"CBI","promoted_content":null,"name":"CBI","events":null},{"query":"Lesnar","promoted_content":null,"name":"Lesnar","events":null},{"query":"Howard","promoted_content":null,"name":"Howard","events":null}],"2010-10-25 14:00":[{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"#cr2","promoted_content":null,"name":"#cr2","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Issacs","promoted_content":null,"name":"Issacs","events":null},{"query":"Night Nurse","promoted_content":null,"name":"Night Nurse","events":null},{"query":"VLC","promoted_content":null,"name":"VLC","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Hiccup","promoted_content":null,"name":"Hiccup","events":null},{"query":"HappyBDayFiuk","promoted_content":null,"name":"HappyBDayFiuk","events":null},{"query":"Ruler","promoted_content":null,"name":"Ruler","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Lesnar","promoted_content":null,"name":"Lesnar","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Feyenoord","promoted_content":null,"name":"Feyenoord","events":null},{"query":"Wikileaks","promoted_content":null,"name":"Wikileaks","events":null},{"query":"Obina","promoted_content":null,"name":"Obina","events":null},{"query":"Russell Brand","promoted_content":null,"name":"Russell Brand","events":null}],"2010-10-25 11:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#keepingitpeel","promoted_content":null,"name":"#keepingitpeel","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Mario Been","promoted_content":null,"name":"Mario Been","events":null},{"query":"Beenhakker","promoted_content":null,"name":"Beenhakker","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Be\u015fikta\u015f","promoted_content":null,"name":"Be\u015fikta\u015f","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Hurricane Richard","promoted_content":null,"name":"Hurricane Richard","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Yoogeun","promoted_content":null,"name":"Yoogeun","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"PSV","promoted_content":null,"name":"PSV","events":null},{"query":"Celine Dion","promoted_content":null,"name":"Celine Dion","events":null},{"query":"India Rose","promoted_content":null,"name":"India Rose","events":null}],"2010-10-24 20:00":[{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Drew Brees","promoted_content":null,"name":"Drew Brees","events":null},{"query":"Roddy White","promoted_content":null,"name":"Roddy White","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"David Carr","promoted_content":null,"name":"David Carr","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"STUCK TOGETHER","promoted_content":null,"name":"STUCK TOGETHER","events":null},{"query":"Heap","promoted_content":null,"name":"Heap","events":null},{"query":"Hines Ward","promoted_content":null,"name":"Hines Ward","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Micheal Buble","promoted_content":null,"name":"Micheal Buble","events":null},{"query":"Bouman","promoted_content":null,"name":"Bouman","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Mike Wallace","promoted_content":null,"name":"Mike Wallace","events":null},{"query":"Carlinhos Para\u00edba","promoted_content":null,"name":"Carlinhos Para\u00edba","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null}],"2010-10-24 22:00":[{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Valad\u00e3o","promoted_content":null,"name":"Valad\u00e3o","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Sampdoria","promoted_content":null,"name":"Sampdoria","events":null},{"query":"Drew Brees","promoted_content":null,"name":"Drew Brees","events":null},{"query":"David Carr","promoted_content":null,"name":"David Carr","events":null},{"query":"Hamlin","promoted_content":null,"name":"Hamlin","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Roddy White","promoted_content":null,"name":"Roddy White","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"EstareiContigoRestart","promoted_content":null,"name":"EstareiContigoRestart","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Mark Martin","promoted_content":null,"name":"Mark Martin","events":null},{"query":"Cor\u00e9e","promoted_content":null,"name":"Cor\u00e9e","events":null}],"2010-10-24 21:00":[{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Roddy White","promoted_content":null,"name":"Roddy White","events":null},{"query":"David Carr","promoted_content":null,"name":"David Carr","events":null},{"query":"Drew Brees","promoted_content":null,"name":"Drew Brees","events":null},{"query":"Micheal Buble","promoted_content":null,"name":"Micheal Buble","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Trayc","promoted_content":null,"name":"Trayc","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Chezza","promoted_content":null,"name":"Chezza","events":null},{"query":"INTs","promoted_content":null,"name":"INTs","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"Gettis","promoted_content":null,"name":"Gettis","events":null},{"query":"Sampdoria","promoted_content":null,"name":"Sampdoria","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"EstareiContigoRestart","promoted_content":null,"name":"EstareiContigoRestart","events":null}],"2010-10-25 00:00":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Kris Brown","promoted_content":null,"name":"Kris Brown","events":null},{"query":"Corpse Bride","promoted_content":null,"name":"Corpse Bride","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"F\u00e1bio Santos","promoted_content":null,"name":"F\u00e1bio Santos","events":null},{"query":"Zap","promoted_content":null,"name":"Zap","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Norv Turner","promoted_content":null,"name":"Norv Turner","events":null},{"query":"Esquilos","promoted_content":null,"name":"Esquilos","events":null},{"query":"Raposa","promoted_content":null,"name":"Raposa","events":null},{"query":"EstareiContigoRestart","promoted_content":null,"name":"EstareiContigoRestart","events":null},{"query":"McDaniels","promoted_content":null,"name":"McDaniels","events":null},{"query":"Velasquez","promoted_content":null,"name":"Velasquez","events":null},{"query":"Tebow","promoted_content":null,"name":"Tebow","events":null}],"2010-10-25 07:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#frasesvenezolanas","promoted_content":null,"name":"#frasesvenezolanas","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Jeepers Creepers","promoted_content":null,"name":"Jeepers Creepers","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"ASX","promoted_content":null,"name":"ASX","events":null},{"query":"Schule","promoted_content":null,"name":"Schule","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Wikileaks","promoted_content":null,"name":"Wikileaks","events":null},{"query":"Feyenoord","promoted_content":null,"name":"Feyenoord","events":null},{"query":"Sherlock","promoted_content":null,"name":"Sherlock","events":null}],"2010-10-25 09:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Walk Level","promoted_content":null,"name":"Walk Level","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Be\u015fikta\u015f","promoted_content":null,"name":"Be\u015fikta\u015f","events":null},{"query":"ASX","promoted_content":null,"name":"ASX","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"PSV","promoted_content":null,"name":"PSV","events":null},{"query":"Celine Dion","promoted_content":null,"name":"Celine Dion","events":null},{"query":"Baas","promoted_content":null,"name":"Baas","events":null},{"query":"Peel","promoted_content":null,"name":"Peel","events":null},{"query":"Woche","promoted_content":null,"name":"Woche","events":null}],"2010-10-25 08:00":[{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#frasesvenezolanas","promoted_content":null,"name":"#frasesvenezolanas","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Jeepers Creepers","promoted_content":null,"name":"Jeepers Creepers","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"ASX","promoted_content":null,"name":"ASX","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"Belize","promoted_content":null,"name":"Belize","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Be\u015fikta\u015f","promoted_content":null,"name":"Be\u015fikta\u015f","events":null},{"query":"Woche","promoted_content":null,"name":"Woche","events":null},{"query":"Baas","promoted_content":null,"name":"Baas","events":null}]}}
@@ -0,0 +1 @@
1
+ {"as_of":1288021571,"trends":{"2010-10-23":[{"query":"#unfollowmeif","promoted_content":null,"name":"#unfollowmeif","events":null},{"query":"#youcantbeuglyand","promoted_content":null,"name":"#youcantbeuglyand","events":null},{"query":"#capslockday","promoted_content":null,"name":"#capslockday","events":null},{"query":"#howyouathug","promoted_content":null,"name":"#howyouathug","events":null},{"query":"#ss3beijing","promoted_content":null,"name":"#ss3beijing","events":null},{"query":"#globomente","promoted_content":null,"name":"#globomente","events":null},{"query":"Momsen","promoted_content":null,"name":"Momsen","events":null},{"query":"Iraq War","promoted_content":null,"name":"Iraq War","events":null},{"query":"INTERNATIONAL CAPS","promoted_content":null,"name":"INTERNATIONAL CAPS","events":null},{"query":"Diablo III","promoted_content":null,"name":"Diablo III","events":null},{"query":"Rio13thBornDay Rio13thBornDay","promoted_content":null,"name":"Rio13thBornDay Rio13thBornDay","events":null},{"query":"Demon Hunter","promoted_content":null,"name":"Demon Hunter","events":null},{"query":"Bilbo","promoted_content":null,"name":"Bilbo","events":null},{"query":"Mood Muzik","promoted_content":null,"name":"Mood Muzik","events":null},{"query":"Martin Freeman","promoted_content":null,"name":"Martin Freeman","events":null},{"query":"Willing Willie","promoted_content":null,"name":"Willing Willie","events":null},{"query":"#jyjontwitter","promoted_content":null,"name":"#jyjontwitter","events":null},{"query":"Slate","promoted_content":null,"name":"Slate","events":null},{"query":"Chumacero","promoted_content":null,"name":"Chumacero","events":null},{"query":"#sabesqueyavaliomadres","promoted_content":null,"name":"#sabesqueyavaliomadres","events":null},{"query":"YANKEES LOSE","promoted_content":null,"name":"YANKEES LOSE","events":null},{"query":"Gingerbread","promoted_content":null,"name":"Gingerbread","events":null},{"query":"Colby Lewis","promoted_content":null,"name":"Colby Lewis","events":null},{"query":"Quaid","promoted_content":null,"name":"Quaid","events":null},{"query":"Lady Hee","promoted_content":null,"name":"Lady Hee","events":null},{"query":"MacBook Air","promoted_content":null,"name":"MacBook Air","events":null},{"query":"Rei Pel\u00e9","promoted_content":null,"name":"Rei Pel\u00e9","events":null},{"query":"Dallas Clark","promoted_content":null,"name":"Dallas Clark","events":null},{"query":"VCR","promoted_content":null,"name":"VCR","events":null},{"query":"Irak","promoted_content":null,"name":"Irak","events":null}],"2010-10-24":[{"query":"#youcantbeuglyand","promoted_content":null,"name":"#youcantbeuglyand","events":null},{"query":"Velasquez","promoted_content":null,"name":"Velasquez","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"#sdr","promoted_content":null,"name":"#sdr","events":null},{"query":"#unfollowmeif","promoted_content":null,"name":"#unfollowmeif","events":null},{"query":"#bigbangcomeback","promoted_content":null,"name":"#bigbangcomeback","events":null},{"query":"#ufc121","promoted_content":null,"name":"#ufc121","events":null},{"query":"#excaja","promoted_content":null,"name":"#excaja","events":null},{"query":"#gokings","promoted_content":null,"name":"#gokings","events":null},{"query":"#askkanye","promoted_content":null,"name":"#askkanye","events":null},{"query":"#alonso","promoted_content":null,"name":"#alonso","events":null},{"query":"Safety Car","promoted_content":null,"name":"Safety Car","events":null},{"query":"#psvfey","promoted_content":null,"name":"#psvfey","events":null},{"query":"#neversaynever3d","promoted_content":null,"name":"#neversaynever3d","events":null},{"query":"#runaway","promoted_content":null,"name":"#runaway","events":null},{"query":"#gaga1billion","promoted_content":null,"name":"#gaga1billion","events":null},{"query":"#snsdhoot","promoted_content":null,"name":"#snsdhoot","events":null},{"query":"Korean Grand","promoted_content":null,"name":"Korean Grand","events":null},{"query":"#koreangp","promoted_content":null,"name":"#koreangp","events":null},{"query":"Stackhouse","promoted_content":null,"name":"Stackhouse","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Raab","promoted_content":null,"name":"Raab","events":null},{"query":"Rosberg","promoted_content":null,"name":"Rosberg","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Rei Pel\u00e9","promoted_content":null,"name":"Rei Pel\u00e9","events":null},{"query":"SS3 Beijing","promoted_content":null,"name":"SS3 Beijing","events":null},{"query":"Momsen","promoted_content":null,"name":"Momsen","events":null},{"query":"Wegereef","promoted_content":null,"name":"Wegereef","events":null},{"query":"Last Dragon","promoted_content":null,"name":"Last Dragon","events":null},{"query":"#worldseries","promoted_content":null,"name":"#worldseries","events":null}],"2010-10-25":[{"query":"#speaknow","promoted_content":null,"name":"#speaknow","events":null},{"query":"#worstrappersofthedecade","promoted_content":null,"name":"#worstrappersofthedecade","events":null},{"query":"#justinthanksfor","promoted_content":null,"name":"#justinthanksfor","events":null},{"query":"Walkman","promoted_content":null,"name":"Walkman","events":null},{"query":"#beliebersowntwitter","promoted_content":null,"name":"#beliebersowntwitter","events":null},{"query":"Brock Lesnar","promoted_content":null,"name":"Brock Lesnar","events":null},{"query":"Isaacs","promoted_content":null,"name":"Isaacs","events":null},{"query":"Jay Bum","promoted_content":null,"name":"Jay Bum","events":null},{"query":"Bragging Rights","promoted_content":null,"name":"Bragging Rights","events":null},{"query":"#bigbangcomeback","promoted_content":null,"name":"#bigbangcomeback","events":null},{"query":"#wakeywakeyjustin","promoted_content":null,"name":"#wakeywakeyjustin","events":null},{"query":"Pretty Woman","promoted_content":null,"name":"Pretty Woman","events":null},{"query":"Adobe AIR","promoted_content":null,"name":"Adobe AIR","events":null},{"query":"Allen Iverson","promoted_content":null,"name":"Allen Iverson","events":null},{"query":"Fr\u00eache","promoted_content":null,"name":"Fr\u00eache","events":null},{"query":"Kenny Britt","promoted_content":null,"name":"Kenny Britt","events":null},{"query":"Lange Frans","promoted_content":null,"name":"Lange Frans","events":null},{"query":"McFadden","promoted_content":null,"name":"McFadden","events":null},{"query":"#keepingitpeel","promoted_content":null,"name":"#keepingitpeel","events":null},{"query":"#frasesvenezolanas","promoted_content":null,"name":"#frasesvenezolanas","events":null},{"query":"DeAngelo Hall","promoted_content":null,"name":"DeAngelo Hall","events":null},{"query":"Reggie Bush","promoted_content":null,"name":"Reggie Bush","events":null},{"query":"Lambeau","promoted_content":null,"name":"Lambeau","events":null},{"query":"Maluquinho","promoted_content":null,"name":"Maluquinho","events":null},{"query":"Childress","promoted_content":null,"name":"Childress","events":null},{"query":"Cain Velasquez","promoted_content":null,"name":"Cain Velasquez","events":null},{"query":"Jeepers Creepers","promoted_content":null,"name":"Jeepers Creepers","events":null},{"query":"Hoot","promoted_content":null,"name":"Hoot","events":null},{"query":"RIP Gregory","promoted_content":null,"name":"RIP Gregory","events":null},{"query":"Wikileaks","promoted_content":null,"name":"Wikileaks","events":null}],"2010-10-19":[{"query":"Barbara Billingsley","promoted_content":null,"name":"Barbara Billingsley","events":null},{"query":"#igohard","promoted_content":null,"name":"#igohard","events":null},{"query":"#top10rappers","promoted_content":null,"name":"#top10rappers","events":null},{"query":"Lovely Bones","promoted_content":null,"name":"Lovely Bones","events":null},{"query":"#mygreatestfear","promoted_content":null,"name":"#mygreatestfear","events":null},{"query":"#whowantedtobe","promoted_content":null,"name":"#whowantedtobe","events":null},{"query":"#niconicosports","promoted_content":null,"name":"#niconicosports","events":null},{"query":"Merseyside derby","promoted_content":null,"name":"Merseyside derby","events":null},{"query":"Jackass","promoted_content":null,"name":"Jackass","events":null},{"query":"Scream Awards","promoted_content":null,"name":"Scream Awards","events":null},{"query":"Top Ten Rappers","promoted_content":null,"name":"Top Ten Rappers","events":null},{"query":"#beforeidie","promoted_content":null,"name":"#beforeidie","events":null},{"query":"Cleaver","promoted_content":null,"name":"Cleaver","events":null},{"query":"Badgers","promoted_content":null,"name":"Badgers","events":null},{"query":"Paypal","promoted_content":null,"name":"Paypal","events":null},{"query":"Everton","promoted_content":null,"name":"Everton","events":null},{"query":"Bisping","promoted_content":null,"name":"Bisping","events":null},{"query":"Marathon","promoted_content":null,"name":"Marathon","events":null},{"query":"Everton 2-0 Liverpool","promoted_content":null,"name":"Everton 2-0 Liverpool","events":null},{"query":"Everton 1-0 Liverpool","promoted_content":null,"name":"Everton 1-0 Liverpool","events":null},{"query":"#buitenhof","promoted_content":null,"name":"#buitenhof","events":null},{"query":"#betyouwontdothatagain","promoted_content":null,"name":"#betyouwontdothatagain","events":null},{"query":"Sweetest","promoted_content":null,"name":"Sweetest","events":null},{"query":"#idhavetoslapyou","promoted_content":null,"name":"#idhavetoslapyou","events":null},{"query":"Mandelbrot","promoted_content":null,"name":"Mandelbrot","events":null},{"query":"Ohio State","promoted_content":null,"name":"Ohio State","events":null},{"query":"Sundays","promoted_content":null,"name":"Sundays","events":null},{"query":"Maclin","promoted_content":null,"name":"Maclin","events":null},{"query":"Heap","promoted_content":null,"name":"Heap","events":null},{"query":"#loliter","promoted_content":null,"name":"#loliter","events":null}],"2010-10-20":[{"query":"Barbara Billingsley","promoted_content":null,"name":"Barbara Billingsley","events":null},{"query":"#igohard","promoted_content":null,"name":"#igohard","events":null},{"query":"#top10rappers","promoted_content":null,"name":"#top10rappers","events":null},{"query":"Lovely Bones","promoted_content":null,"name":"Lovely Bones","events":null},{"query":"#mygreatestfear","promoted_content":null,"name":"#mygreatestfear","events":null},{"query":"#whowantedtobe","promoted_content":null,"name":"#whowantedtobe","events":null},{"query":"#niconicosports","promoted_content":null,"name":"#niconicosports","events":null},{"query":"Merseyside derby","promoted_content":null,"name":"Merseyside derby","events":null},{"query":"Jackass","promoted_content":null,"name":"Jackass","events":null},{"query":"Scream Awards","promoted_content":null,"name":"Scream Awards","events":null},{"query":"Top Ten Rappers","promoted_content":null,"name":"Top Ten Rappers","events":null},{"query":"#beforeidie","promoted_content":null,"name":"#beforeidie","events":null},{"query":"Cleaver","promoted_content":null,"name":"Cleaver","events":null},{"query":"Badgers","promoted_content":null,"name":"Badgers","events":null},{"query":"Paypal","promoted_content":null,"name":"Paypal","events":null},{"query":"Everton","promoted_content":null,"name":"Everton","events":null},{"query":"Bisping","promoted_content":null,"name":"Bisping","events":null},{"query":"Marathon","promoted_content":null,"name":"Marathon","events":null},{"query":"Everton 2-0 Liverpool","promoted_content":null,"name":"Everton 2-0 Liverpool","events":null},{"query":"Everton 1-0 Liverpool","promoted_content":null,"name":"Everton 1-0 Liverpool","events":null},{"query":"#buitenhof","promoted_content":null,"name":"#buitenhof","events":null},{"query":"#betyouwontdothatagain","promoted_content":null,"name":"#betyouwontdothatagain","events":null},{"query":"Sweetest","promoted_content":null,"name":"Sweetest","events":null},{"query":"#idhavetoslapyou","promoted_content":null,"name":"#idhavetoslapyou","events":null},{"query":"Mandelbrot","promoted_content":null,"name":"Mandelbrot","events":null},{"query":"Ohio State","promoted_content":null,"name":"Ohio State","events":null},{"query":"Sundays","promoted_content":null,"name":"Sundays","events":null},{"query":"Maclin","promoted_content":null,"name":"Maclin","events":null},{"query":"Heap","promoted_content":null,"name":"Heap","events":null},{"query":"#loliter","promoted_content":null,"name":"#loliter","events":null}],"2010-10-21":[{"query":"#themwasthedays","promoted_content":null,"name":"#themwasthedays","events":null},{"query":"#yeaisaidit","promoted_content":null,"name":"#yeaisaidit","events":null},{"query":"#mickyyoochun","promoted_content":null,"name":"#mickyyoochun","events":null},{"query":"#bbccuts","promoted_content":null,"name":"#bbccuts","events":null},{"query":"Guccione","promoted_content":null,"name":"Guccione","events":null},{"query":"Mac App","promoted_content":null,"name":"Mac App","events":null},{"query":"#younglove","promoted_content":null,"name":"#younglove","events":null},{"query":"Slits","promoted_content":null,"name":"Slits","events":null},{"query":"iLife","promoted_content":null,"name":"iLife","events":null},{"query":"#serrarojas","promoted_content":null,"name":"#serrarojas","events":null},{"query":"Pocus","promoted_content":null,"name":"Pocus","events":null},{"query":"Gillespie","promoted_content":null,"name":"Gillespie","events":null},{"query":"#getwellsoonhongki","promoted_content":null,"name":"#getwellsoonhongki","events":null},{"query":"#sikofuu","promoted_content":null,"name":"#sikofuu","events":null},{"query":"Beyonce Pregnant","promoted_content":null,"name":"Beyonce Pregnant","events":null},{"query":"MacBook Air","promoted_content":null,"name":"MacBook Air","events":null},{"query":"Law & Order","promoted_content":null,"name":"Law & Order","events":null},{"query":"Apple Killed","promoted_content":null,"name":"Apple Killed","events":null},{"query":"Fallout","promoted_content":null,"name":"Fallout","events":null},{"query":"Loki Schmidt","promoted_content":null,"name":"Loki Schmidt","events":null},{"query":"Penthouse","promoted_content":null,"name":"Penthouse","events":null},{"query":"FaceTime","promoted_content":null,"name":"FaceTime","events":null},{"query":"RIP Ari","promoted_content":null,"name":"RIP Ari","events":null},{"query":"Beringhs","promoted_content":null,"name":"Beringhs","events":null},{"query":"Tweet-Sen\u3011100\u540d\u69d8\u300d\uff01","promoted_content":null,"name":"Tweet-Sen\u3011100\u540d\u69d8\u300d\uff01","events":null},{"query":"Fari\u00f1as","promoted_content":null,"name":"Fari\u00f1as","events":null},{"query":"Aretuza","promoted_content":null,"name":"Aretuza","events":null},{"query":"Gareth Bale","promoted_content":null,"name":"Gareth Bale","events":null},{"query":"RIP Tom","promoted_content":null,"name":"RIP Tom","events":null},{"query":"Goonies","promoted_content":null,"name":"Goonies","events":null}],"2010-10-22":[{"query":"#badcombo","promoted_content":null,"name":"#badcombo","events":null},{"query":"#mygrandma","promoted_content":null,"name":"#mygrandma","events":null},{"query":"#serrarojas","promoted_content":null,"name":"#serrarojas","events":null},{"query":"#capslockday","promoted_content":null,"name":"#capslockday","events":null},{"query":"#kimjaejoong","promoted_content":null,"name":"#kimjaejoong","events":null},{"query":"Bilbo","promoted_content":null,"name":"Bilbo","events":null},{"query":"INTERNATIONAL CAPS","promoted_content":null,"name":"INTERNATIONAL CAPS","events":null},{"query":"Martin Freeman","promoted_content":null,"name":"Martin Freeman","events":null},{"query":"#jyjontwitter","promoted_content":null,"name":"#jyjontwitter","events":null},{"query":"Sharapova","promoted_content":null,"name":"Sharapova","events":null},{"query":"Baracka Flacka","promoted_content":null,"name":"Baracka Flacka","events":null},{"query":"Baggins","promoted_content":null,"name":"Baggins","events":null},{"query":"#kimjunsu","promoted_content":null,"name":"#kimjunsu","events":null},{"query":"Vujacic","promoted_content":null,"name":"Vujacic","events":null},{"query":"Ian Holloway","promoted_content":null,"name":"Ian Holloway","events":null},{"query":"Mac App","promoted_content":null,"name":"Mac App","events":null},{"query":"#yeah3x","promoted_content":null,"name":"#yeah3x","events":null},{"query":"#paranormalactivity2","promoted_content":null,"name":"#paranormalactivity2","events":null},{"query":"Europa League","promoted_content":null,"name":"Europa League","events":null},{"query":"#boladepapelfacts","promoted_content":null,"name":"#boladepapelfacts","events":null},{"query":"#bbccuts","promoted_content":null,"name":"#bbccuts","events":null},{"query":"MacBook Air","promoted_content":null,"name":"MacBook Air","events":null},{"query":"#sabesqueyavaliomadres","promoted_content":null,"name":"#sabesqueyavaliomadres","events":null},{"query":"FelizCumpleChristopher","promoted_content":null,"name":"FelizCumpleChristopher","events":null},{"query":"Lisa Marie","promoted_content":null,"name":"Lisa Marie","events":null},{"query":"NPR","promoted_content":null,"name":"NPR","events":null},{"query":"iLife","promoted_content":null,"name":"iLife","events":null},{"query":"Hobbit","promoted_content":null,"name":"Hobbit","events":null},{"query":"Slate","promoted_content":null,"name":"Slate","events":null},{"query":"#badwrestlingnames","promoted_content":null,"name":"#badwrestlingnames","events":null}]}}
@@ -0,0 +1 @@
1
+ {"error":"Unauthorized","request":"/1/statuses/user_timeline.json?screen_name=protected"}
@@ -0,0 +1 @@
1
+ [{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","listed_count":29,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","statuses_count":2962,"profile_text_color":"333333","name":"Erik Michaels-Ober","show_all_inline_media":true,"following":true,"favourites_count":727,"screen_name":"sferik","id":7505382,"id_str":"7505382","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"}]
@@ -0,0 +1 @@
1
+ [{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","contributors":null,"in_reply_to_screen_name":"chriskottom","created_at":"Fri Oct 22 15:50:35 +0000 2010","user":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2961,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","show_all_inline_media":true,"favourites_count":724,"profile_background_color":"000000","url":null,"contributors_enabled":false,"profile_background_tile":false,"lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","protected":false,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","verified":false,"profile_link_color":"0084B4","followers_count":899,"name":"Erik Michaels-Ober","follow_request_sent":false,"following":true,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"retweet_count":null,"coordinates":null,"in_reply_to_status_id":28416708070,"id":28416898759,"retweeted":false,"in_reply_to_user_id":14565733,"text":"@chriskottom Thanks for the heads up. Doing some major refactoring. I'll fix it as soon as that's done. /cc @jnunemaker @pengwynn"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":28042243078,"created_at":"Thu Oct 21 16:42:43 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":28042775509,"truncated":false,"text":"@scottsil Like @marcoarment, I also owned a 1G MacBook Air. He didn't mention it got *very* hot. Make sure to feel the bottom before buying."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"hurrycane","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":28005857348,"created_at":"Thu Oct 21 08:04:41 +0000 2010","retweeted":false,"in_reply_to_user_id":6238622,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":28006971270,"truncated":false,"text":"@hurrycane Looks like it's back up now!"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 03:38:42 +0000 2010","favorited":false,"coordinates":null,"user":{"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":902,"description":"Adventures in hunger and foolishness.","listed_count":29,"statuses_count":2958,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","contributors_enabled":false,"profile_background_color":"000000","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","follow_request_sent":false,"favourites_count":716,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"show_all_inline_media":true,"utc_offset":-28800},"id":27993658063,"text":"GO GIANTS! Just 1 game away from the World Series! Can't believe it!"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:13:43 +0000 2010","favorited":false,"coordinates":null,"user":{"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2956,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","favourites_count":716,"profile_background_color":"000000","contributors_enabled":false,"profile_background_tile":false,"url":null,"geo_enabled":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","verified":false,"profile_link_color":"0084B4","protected":false,"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27987592965,"text":"Or not."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:11:20 +0000 2010","favorited":false,"coordinates":null,"user":{"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","profile_background_color":"000000","show_all_inline_media":true,"profile_background_tile":false,"friends_count":88,"url":null,"statuses_count":2955,"profile_text_color":"333333","lang":"en","favourites_count":716,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","contributors_enabled":false,"profile_link_color":"0084B4","protected":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"verified":false,"utc_offset":-28800},"id":27987409907,"text":"That blown call could cost the Giants the series. Shameful."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:07:17 +0000 2010","favorited":false,"coordinates":null,"user":{"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"show_all_inline_media":true,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","friends_count":88,"statuses_count":2954,"profile_background_color":"000000","profile_background_tile":false,"favourites_count":716,"url":null,"contributors_enabled":false,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","follow_request_sent":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27987099418,"text":"Cody Ross, Hero."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27957622120,"created_at":"Wed Oct 20 23:35:34 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27975367793,"truncated":false,"text":"@scottsil This analysis by @marcoarment is a must-read for you. I agree with every word of it: http://www.marco.org/1361316116"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27956553627,"created_at":"Wed Oct 20 19:00:17 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27956658336,"truncated":false,"text":"@scottsil Why do you care about the footprint? Do you have an unusually small desk or lap? ;)"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27954840818,"created_at":"Wed Oct 20 18:45:01 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27955605710,"truncated":false,"text":"@scottsil Where will you take the 11 that you can't take the 13? It still won't fit in your pocket. The only benefit is that it's cheaper."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27954840818,"created_at":"Wed Oct 20 18:42:27 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27955429909,"truncated":false,"text":"@scottsil I'd go with the 13. The extra screen space doesn't really come at the cost of mobility. Plus: faster processor and bigger battery."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"hurrycane","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27924357919,"created_at":"Wed Oct 20 18:34:27 +0000 2010","retweeted":false,"in_reply_to_user_id":6238622,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27954856269,"truncated":false,"text":"@hurrycane Make sure you don't miss the @github meetup http://github.com/blog/735-github-meetup-in-amsterdam"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Wed Oct 20 18:01:58 +0000 2010","favorited":false,"coordinates":null,"user":{"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"follow_request_sent":false,"notifications":false,"verified":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","profile_background_color":"000000","profile_background_tile":false,"url":null,"show_all_inline_media":true,"profile_text_color":"333333","lang":"en","statuses_count":2959,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","friends_count":88,"profile_link_color":"0084B4","protected":false,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"favourites_count":723,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27952587995,"text":"Inevitable developer freakout about Mac App Store commencing in 3, 2, 1..."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Wed Oct 20 17:22:55 +0000 2010","favorited":false,"coordinates":null,"user":{"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","show_all_inline_media":true,"profile_background_color":"000000","statuses_count":2946,"profile_background_tile":false,"url":null,"friends_count":88,"profile_text_color":"333333","contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","favourites_count":715,"profile_link_color":"0084B4","protected":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"follow_request_sent":false,"utc_offset":-28800},"id":27949759640,"text":"Apple just announced a bookmaking service. How quaint."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"gruber","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"created_at":"Wed Oct 20 04:14:47 +0000 2010","retweeted":false,"in_reply_to_user_id":33423,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27900704553,"truncated":false,"text":"@gruber it's hard to imagine the Yankees winning the series, having to go through Cliff Lee in a potential game 7. Time to bring the \u272a back?"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"theobermeister","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27899586377,"created_at":"Wed Oct 20 04:07:59 +0000 2010","retweeted":false,"in_reply_to_user_id":18470183,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27900276587,"truncated":false,"text":"@theobermeister San Francisco is much warmer than Banff in December. Are you comfortable biking in 9 \u00b0C weather? http://bit.ly/cXHZHh"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"gruber","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"created_at":"Wed Oct 20 03:59:33 +0000 2010","retweeted":false,"in_reply_to_user_id":33423,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27899716022,"truncated":false,"text":"@gruber there goes another one in your direction!"}]
@@ -0,0 +1 @@
1
+ [{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","listed_count":29,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","statuses_count":2962,"profile_text_color":"333333","name":"Erik Michaels-Ober","show_all_inline_media":true,"following":true,"favourites_count":727,"screen_name":"sferik","id":7505382,"id_str":"7505382","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"Christian husband and father. Dev Experience @ HP Cloud Services. Co-host of the @changelogshow. Mashup of design & development.","profile_sidebar_fill_color":"dddddd","followers_count":2767,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28008649044,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28008649044","created_at":"Thu Oct 21 10:33:15 +0000 2010","in_reply_to_user_id":11502142,"favorited":false,"in_reply_to_user_id_str":"11502142","contributors":null,"coordinates":null,"in_reply_to_screen_name":"benfawkes","id":28014236998,"id_str":"28014236998","text":"@benfawkes Surely. Just email wynn at the changelog dot com."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/wynnnetherland.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/61741268\/twitter-small.png","lang":"en","created_at":"Sat Mar 08 16:34:22 +0000 2008","profile_background_color":"efefef","location":"Dallas, TX","listed_count":185,"profile_background_tile":false,"friends_count":1871,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/485575482\/komikazee_normal.png","statuses_count":3913,"profile_text_color":"666666","name":"Wynn Netherland","show_all_inline_media":false,"following":true,"favourites_count":32,"screen_name":"pengwynn","id":14100886,"id_str":"14100886","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"35abe9"}]
@@ -0,0 +1 @@
1
+ {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":"Arizona","favourites_count":200,"description":"Chief hamradio operator (N7ICE) & creator of 73s.org. Founder of Teleku, SurfByTel, Numly, Gospelr, Chug'd, & Spree.ly. Host of Rubyology and HamBrief.TV.","contributors_enabled":false,"profile_sidebar_fill_color":"FFE15C","followers_count":1961,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 05:17:26 +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":28568059801,"id_str":"28568059801","text":"RT @vivagrams: Today's design, coding & biz dev brought to you by donuts - contributor to our happiness factor! http:\/\/bit.ly\/aGeTNT #swphx"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"7E8279","verified":false,"url":"http:\/\/ChrisMatthieu.com","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/10843800\/Chris_Superman2.jpg","lang":"en","created_at":"Mon Feb 18 01:30:03 +0000 2008","profile_background_color":"c4c4c4","location":"Phoenix, Arizona","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/918916153\/SuperChrisSmall_normal.jpg","profile_text_color":"422828","name":"Chris Matthieu N7ICE","listed_count":158,"following":false,"friends_count":1019,"screen_name":"chrismatthieu","id":13604142,"id_str":"13604142","statuses_count":8877,"utc_offset":-25200,"profile_link_color":"E81717"},{"time_zone":"Eastern Time (US & Canada)","description":"i be mig","profile_sidebar_fill_color":"edffcc","followers_count":0,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":1130221444,"source":"\u003Ca href=\"http:\/\/splitweet.com\" rel=\"nofollow\"\u003ESplitweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"1130221444","created_at":"Mon Jan 19 17:13:27 +0000 2009","in_reply_to_user_id":9885102,"favorited":false,"in_reply_to_user_id_str":"9885102","contributors":null,"coordinates":null,"in_reply_to_screen_name":"drnic","id":1130874731,"id_str":"1130874731","text":"@drnic you are looking for http:\/\/github.com\/potionfactory\/potionstore\/ no?"},"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":3,"profile_use_background_image":false,"profile_sidebar_border_color":"dcdbad","show_all_inline_media":false,"favourites_count":0,"url":"http:\/\/google.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":true,"created_at":"Thu Nov 20 05:46:54 +0000 2008","profile_background_color":"25618e","location":"washington dc","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/69434006\/spudd_normal.jpg","verified":false,"profile_text_color":"333333","name":"Mig Pggbee","follow_request_sent":false,"following":false,"screen_name":"pggbee","id":17505580,"id_str":"17505580","utc_offset":-18000,"profile_link_color":"0084B4"},{"time_zone":"Central Time (US & Canada)","description":"Entrepreneur, Rails Developer, Gamer, Single (divorced) guy in Houston","profile_sidebar_fill_color":"252429","followers_count":590,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twidroid.com\" rel=\"nofollow\"\u003Etwidroid\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 22 01:44:18 +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":21793039231,"id_str":"21793039231","text":"Gotta day the premier party is lots of fun. #GarbageMoguls"},"listed_count":13,"notifications":false,"statuses_count":336,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"url":"http:\/\/bcatherall.blogspot.com\/","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme9\/bg.gif","lang":"en","favourites_count":2,"created_at":"Tue Mar 13 20:09:00 +0000 2007","friends_count":679,"profile_background_color":"1A1B1F","location":"Houston, Texas","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/96813420\/me-in-hat_normal.jpg","geo_enabled":false,"profile_text_color":"666666","name":"Billy R Catherall","follow_request_sent":false,"following":false,"screen_name":"bcatherall","id":1112241,"id_str":"1112241","verified":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"},{"statuses_count":206,"profile_text_color":"3C3940","description":"die before you are dead","profile_background_tile":false,"favourites_count":2,"contributors_enabled":false,"profile_link_color":"0099B9","listed_count":4,"geo_enabled":false,"profile_sidebar_fill_color":"95E8EC","url":null,"verified":false,"notifications":null,"time_zone":"New Delhi","follow_request_sent":null,"lang":"en","created_at":"Sun Aug 12 17:33:09 +0000 2007","profile_sidebar_border_color":"5ED4DC","profile_image_url":"http://a1.twimg.com/profile_images/1082656833/sur_at_seashore_normal.jpg","location":"New Delhi, India","protected":true,"profile_use_background_image":true,"followers_count":198,"screen_name":"sur","name":"Sur","following":null,"profile_background_color":"0099B9","id":8143072,"show_all_inline_media":false,"profile_background_image_url":"http://s.twimg.com/a/1285694546/images/themes/theme4/bg.gif","utc_offset":19800,"friends_count":222},{"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Senior Ruby\/Javascript Developer\/Consultant","favourites_count":0,"profile_sidebar_fill_color":"252429","followers_count":99,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/seesmic.com\/seesmic_mobile\/android\/\" rel=\"nofollow\"\u003ESeesmic for Android\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:50:16 +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":27850500237,"id_str":"27850500237","text":"Some screen-like hotkeys for tmux http:\/\/bit.ly\/bZCgsT"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Tue Jan 13 23:14:33 +0000 2009","profile_background_color":"1A1B1F","location":"Toronto, Ontario, Canada","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/747713188\/profile_normal.jpg","listed_count":7,"profile_text_color":"666666","name":"Angelo","statuses_count":355,"following":false,"screen_name":"rubyblackbelt","id":18958056,"id_str":"18958056","show_all_inline_media":false,"utc_offset":-18000,"friends_count":139,"profile_link_color":"2FC2EF"},{"show_all_inline_media":false,"time_zone":"Amsterdam","favourites_count":0,"description":"I'm a Ruby (on Rails) (Web) Developer. Founder of Final Creation and StackFu. I'm a freelancer and I work with @webbynode.","contributors_enabled":false,"profile_sidebar_fill_color":"efefef","followers_count":209,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28553104064,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28553104064","created_at":"Sun Oct 24 01:58:51 +0000 2010","in_reply_to_user_id":16086543,"favorited":false,"in_reply_to_user_id_str":"16086543","contributors":null,"coordinates":null,"in_reply_to_screen_name":"grahamt1","id":28553915461,"id_str":"28553915461","text":"@grahamt1 tooshay ;) this is true. At least, I try to avoid using it as much as possible!"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","verified":false,"url":"http:\/\/michaelvanrooijen.com\/","follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue May 06 16:20:16 +0000 2008","profile_background_color":"131516","location":"The Netherlands","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1102719219\/Screen_shot_2010-08-14_at_10.14.35_PM_normal.png","profile_text_color":"333333","name":"Michael van Rooijen","listed_count":17,"following":false,"friends_count":117,"screen_name":"meskyanichi","id":14675249,"id_str":"14675249","statuses_count":3981,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":false,"time_zone":"London","description":"\u2665 I Follow Back! \u2665\r\nI'm Helping Find Madeleine McCann!\r\n\r\n~ Let's Make a difference to our World! ~\r\n(If you DM me please let me know by tweet!)","profile_sidebar_fill_color":"ff7700","followers_count":45777,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28495540934,"source":"web","truncated":false,"in_reply_to_status_id_str":"28495540934","created_at":"Sat Oct 23 22:36:06 +0000 2010","in_reply_to_user_id":204854823,"favorited":false,"in_reply_to_user_id_str":"204854823","contributors":null,"coordinates":null,"in_reply_to_screen_name":"msjanemarps","id":28539747916,"id_str":"28539747916","text":"@msjanemarps Your email address isn't working, sorry do you have another or might you have spelt it wrong? Could you post the link by tweet?"},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/facebook.com\/PrayMaddyMcCann","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70145334\/MadeleineMcCann_.jpg","lang":"en","created_at":"Fri May 15 21:33:52 +0000 2009","profile_background_color":"ff0808","location":"Uk","listed_count":2310,"profile_background_tile":false,"friends_count":50324,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/981932263\/mail-6-1-08-km_normal.jpg","statuses_count":7528,"profile_text_color":"000000","name":"For Madeleine McCann","show_all_inline_media":true,"following":false,"favourites_count":9,"screen_name":"PrayMaddyMcCann","id":40339213,"id_str":"40339213","contributors_enabled":false,"utc_offset":0,"profile_link_color":"430082"},{"time_zone":null,"description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":17,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":false,"favourites_count":1,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":false,"created_at":"Mon Sep 21 16:48:22 +0000 2009","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/default_profile_2_normal.png","verified":false,"profile_text_color":"333333","name":"Nikolai Lugovoi","follow_request_sent":false,"following":false,"screen_name":"n_lugovoi","id":76073923,"id_str":"76073923","utc_offset":null,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":null,"description":"def method_missing m; \r\nprint m; \r\nend\r\nself.new.i.l.u.v.r.u.b.y","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":37,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Sep 07 06:27:29 +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":23214805288,"id_str":"23214805288","text":"rubyquicktips: http:\/\/tumblr.com\/xg2huvtm0"},"notifications":null,"profile_use_background_image":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","friends_count":141,"url":"http:\/\/milandobrota.tumblr.com","follow_request_sent":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/81257060\/4056385100_3a2470256b_o.jpg","lang":"en","verified":false,"created_at":"Sat Mar 06 21:24:58 +0000 2010","profile_background_color":"C0DEED","location":"Ann Arbor, Michigan","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/915216298\/ruby_normal.png","profile_text_color":"333333","name":"Elite Coding","listed_count":5,"following":null,"screen_name":"elitecoding","id":120569549,"id_str":"120569549","statuses_count":100,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4"},{"time_zone":"New Delhi","description":"Linux Administrator from Hyderabad,India.","profile_sidebar_fill_color":"252429","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":224,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"favourites_count":412,"url":"http:\/\/www.kanthi.in","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/35771977\/king_twitter_wall.png","lang":"en","geo_enabled":false,"created_at":"Wed May 21 15:49:39 +0000 2008","profile_background_color":"1A1B1F","location":"India","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/402524737\/k3_normal.png","verified":false,"profile_text_color":"666666","name":"\u007B k.i.n.g \u007D","follow_request_sent":false,"following":false,"screen_name":"nkanthikiran","id":14857890,"id_str":"14857890","utc_offset":19800,"profile_link_color":"2FC2EF"},{"time_zone":"Quito","favourites_count":9,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"99CC33","followers_count":67,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 15:21:53 +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":27843044713,"id_str":"27843044713","text":"A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tumblr.com\/xaumcrhf6"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":true,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:10:31 +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":27847285170,"id_str":"27847285170","text":"RT @shoooesrb: A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tu ..."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/stwerner.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","lang":"en","created_at":"Wed Jul 08 15:19:06 +0000 2009","profile_background_color":"352726","location":"Pittsburgh","listed_count":8,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/305051659\/scott_normal.jpg","statuses_count":188,"profile_text_color":"3E4415","name":"Scott Werner","show_all_inline_media":false,"following":false,"friends_count":109,"screen_name":"scottwisme","id":54925281,"id_str":"54925281","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"D02B55"},{"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":32,"description":"Rails developer","listed_count":11,"statuses_count":81,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":"anutron","in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://twitter.com\" rel=\"nofollow\">Tweetie for Mac</a>","retweet_count":null,"in_reply_to_user_id":9555952,"created_at":"Wed Oct 20 17:45:04 +0000 2010","favorited":false,"coordinates":null,"id":27951368992,"text":"@anutron The /Test directory is automated via your mootools-test-runner?"},"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","contributors_enabled":false,"profile_background_color":"C0DEED","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Tue Feb 09 18:10:38 +0000 2010","friends_count":179,"profile_image_url":"http://a0.twimg.com/profile_images/685636564/greg_normal.jpg","location":"Los Angeles, CA","follow_request_sent":false,"favourites_count":1,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"gregmoeck","name":"Gregory Moeck","following":false,"profile_sidebar_fill_color":"DDEEF6","id":112784958,"show_all_inline_media":false,"utc_offset":-28800},{"time_zone":"Hawaii","description":"","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":0,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/polecane.pl","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","listed_count":0,"lang":"en","created_at":"Sun Jan 03 09:22:16 +0000 2010","friends_count":0,"profile_background_color":"C0DEED","location":"","statuses_count":1,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/default_profile_5_normal.png","show_all_inline_media":false,"favourites_count":0,"profile_text_color":"333333","name":"kompostownik","contributors_enabled":false,"following":false,"screen_name":"kompostownik","id":101441401,"id_str":"101441401","geo_enabled":false,"utc_offset":-36000,"profile_link_color":"0084B4"},{"verified":false,"description":"Search architect, web developer, product manager, father, runner, DIY geek, Ruby on Rails, Java, Linux","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","status":{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"web","contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 18 18:03:00 +0000 2010","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"id":27756969535,"retweeted":false,"in_reply_to_user_id":null,"text":"I knew updating my iTunes bloatware was a bad idea. It is so much more bloated that it froze on me. :( #fb"},"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","profile_background_color":"022330","url":null,"listed_count":8,"profile_background_tile":false,"friends_count":98,"lang":"en","statuses_count":281,"created_at":"Fri May 22 02:20:32 +0000 2009","profile_text_color":"333333","location":"Montreal, QC","show_all_inline_media":false,"favourites_count":0,"protected":false,"profile_image_url":"http://a2.twimg.com/profile_images/383563406/profile-on-grass-square_normal.JPG","contributors_enabled":false,"profile_link_color":"0084B4","followers_count":128,"name":"Marc Lavigne-Gagnon","following":false,"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","screen_name":"lavignegagnon","id":41731143,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC"},{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"do what you love well","geo_enabled":false,"profile_sidebar_fill_color":"F3F3F3","followers_count":246,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 04:27:12 +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":28564806646,"id_str":"28564806646","text":"North Beach is on fire right now"},"notifications":false,"verified":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFDFDF","follow_request_sent":false,"url":"http:\/\/parameterized.net","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3808550\/radiohead.14.jpg","lang":"en","created_at":"Sun Mar 11 01:42:58 +0000 2007","profile_background_color":"EBEBEB","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/651329954\/mug2_normal.jpg","listed_count":12,"friends_count":286,"profile_text_color":"333333","name":"Mike Wadhera","statuses_count":1166,"following":false,"screen_name":"mikewadhera","id":894801,"id_str":"894801","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":3,"profile_link_color":"990000"},{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","description":"Hacker, mathematician, creative developer of web applications. Interested in creating innovative apps. I tweet about #ruby, #coding, #tech, #music and #life. ","contributors_enabled":false,"profile_sidebar_fill_color":"95E8EC","followers_count":1882,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:08:23 +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":28559074728,"id_str":"28559074728","text":"Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:10:42 +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":28559252000,"id_str":"28559252000","text":"RT @MWilliams831: Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"notifications":false,"friends_count":1815,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","geo_enabled":true,"url":"http:\/\/maggit.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28562826\/music-1.jpg","lang":"en","verified":false,"favourites_count":348,"created_at":"Mon Feb 19 21:37:08 +0000 2007","profile_background_color":"0099B9","location":"New York, NY","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1136807699\/IMG_0501_normal.JPG","profile_text_color":"3C3940","name":"Raquel Hern\u00e1ndez","listed_count":100,"following":false,"screen_name":"maggit","id":781314,"id_str":"781314","statuses_count":9431,"utc_offset":-18000,"profile_link_color":"0099B9"},{"listed_count":11,"time_zone":"Eastern Time (US & Canada)","friends_count":280,"description":"Old pro who likes new tools.","statuses_count":622,"profile_sidebar_fill_color":"e0ff92","followers_count":170,"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":"Fri Oct 22 13:57:10 +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":28406803592,"id_str":"28406803592","text":"My body is still in the office but my mind is on US1 headed down to the keys."},"show_all_inline_media":false,"notifications":false,"favourites_count":1,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","geo_enabled":true,"url":"https:\/\/workbeast.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/32465356\/peachleaf_and_turd.jpg","lang":"en","verified":false,"created_at":"Mon Feb 25 15:13:21 +0000 2008","profile_background_color":"9ae4e8","location":"Miami, Florida","follow_request_sent":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/574757590\/oldhat_normal.jpg","profile_text_color":"000000","name":"Scott Moe","following":false,"screen_name":"scotchmoose","id":13943122,"id_str":"13943122","utc_offset":-18000,"profile_link_color":"0000ff"},{"follow_request_sent":false,"time_zone":"Madrid","description":"","profile_sidebar_fill_color":"efefef","followers_count":69,"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":"Sat Oct 23 08:01:27 +0000 2010","in_reply_to_user_id":6505422,"favorited":false,"in_reply_to_user_id_str":"6505422","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jyurek","id":28482039882,"id_str":"28482039882","text":"@jyurek @elise_huard really enjoyed talking with you during the dinner. Still thinking about the best way to test Websockets... :)"},"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","listed_count":5,"friends_count":95,"url":"http:\/\/codegram.com","statuses_count":209,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme14\/bg.gif","show_all_inline_media":false,"lang":"en","favourites_count":3,"created_at":"Wed Jun 20 13:00:41 +0000 2007","profile_background_color":"131516","location":"Barcelona, Spain","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/705579346\/22157_298504914874_702129874_3297028_6073629_n_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"Josep Jaume","following":false,"screen_name":"josepjaume","id":6965262,"id_str":"6965262","verified":false,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"In pursuit of the Unix philosophy : http:\/\/www.faqs.org\/docs\/artu\/ch01s06.html","profile_sidebar_fill_color":"252429","followers_count":591,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28556641497,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28556641497","created_at":"Sun Oct 24 02:36:50 +0000 2010","in_reply_to_user_id":6614702,"favorited":false,"in_reply_to_user_id_str":"6614702","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jmettraux","id":28556716852,"id_str":"28556716852","text":"@jmettraux \" srm removes each specified file by overwriting, renaming, and truncating it before unlinking.\""},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/nepcoder.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","profile_background_color":"1A1B1F","location":"Mountain View, CA","listed_count":44,"profile_background_tile":false,"friends_count":1778,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112504408\/profile_normal.jpeg","statuses_count":3157,"profile_text_color":"666666","name":"Himanshu Chhetri","show_all_inline_media":false,"following":false,"favourites_count":395,"screen_name":"himanshuc","id":12474212,"id_str":"12474212","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"}], "next_cursor":1322801608223717003, "previous_cursor":0, "next_cursor_str":"1322801608223717003", "previous_cursor_str":"0"}
@@ -0,0 +1 @@
1
+ [{"id_str":"107989062362734594","in_reply_to_status_id":null,"truncated":false,"user":{"default_profile":false,"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"28201743","notifications":null,"profile_background_tile":false,"screen_name":"VEVO","name":"VEVO","listed_count":2587,"location":"US, Canada, UK, Ireland","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"df2100","description":"VEVO: Music Evolution Revolution! Music videos and more...","profile_sidebar_border_color":"6f7172","url":"http:\/\/www.vevo.com\/","time_zone":"Eastern Time (US & Canada)","default_profile_image":false,"statuses_count":3510,"profile_use_background_image":true,"verified":false,"favourites_count":667,"friends_count":1095,"profile_background_color":"df2100","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/94390739\/vevo_logo.jpg","created_at":"Wed Apr 01 21:32:48 +0000 2009","followers_count":130612,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/94390739\/vevo_logo.jpg","id":28201743,"profile_text_color":"6f7172","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465999828\/v_logo_youtube_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1465999828\/v_logo_youtube_normal.jpg"},"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":"foofighters","in_reply_to_user_id_str":"19081001","coordinates":null,"in_reply_to_user_id":19081001,"source":"web","created_at":"Mon Aug 29 01:32:53 +0000 2011","contributors":null,"retweeted":false,"retweet_count":8,"id":107989062362734594,"place":null,"text":"@Foofighters LEGENDS with a Legendary set of Music Videos http:\/\/t.co\/IcVGIQO #VMA #VEVO","url":"http:\/\/vevo.com\/artist\/foo-fighters"}]
@@ -0,0 +1,53 @@
1
+ unless ENV['CI']
2
+ require 'simplecov'
3
+ SimpleCov.start do
4
+ add_filter 'spec'
5
+ end
6
+ end
7
+
8
+ require 'twitter'
9
+ require 'rspec'
10
+ require 'stringio'
11
+ require 'tempfile'
12
+ require 'timecop'
13
+ require 'webmock/rspec'
14
+
15
+ def a_delete(path)
16
+ a_request(:delete, 'https://api.twitter.com' + path)
17
+ end
18
+
19
+ def a_get(path)
20
+ a_request(:get, 'https://api.twitter.com' + path)
21
+ end
22
+
23
+ def a_post(path)
24
+ a_request(:post, 'https://api.twitter.com' + path)
25
+ end
26
+
27
+ def a_put(path)
28
+ a_request(:put, 'https://api.twitter.com' + path)
29
+ end
30
+
31
+ def stub_delete(path)
32
+ stub_request(:delete, 'https://api.twitter.com' + path)
33
+ end
34
+
35
+ def stub_get(path)
36
+ stub_request(:get, 'https://api.twitter.com' + path)
37
+ end
38
+
39
+ def stub_post(path)
40
+ stub_request(:post, 'https://api.twitter.com' + path)
41
+ end
42
+
43
+ def stub_put(path)
44
+ stub_request(:put, 'https://api.twitter.com' + path)
45
+ end
46
+
47
+ def fixture_path
48
+ File.expand_path("../fixtures", __FILE__)
49
+ end
50
+
51
+ def fixture(file)
52
+ File.new(fixture_path + '/' + file)
53
+ end
@@ -0,0 +1,29 @@
1
+ require 'helper'
2
+
3
+ describe Twitter::Action::Favorite do
4
+
5
+ describe "#sources" do
6
+ it "returns a collection of users who favorited a Tweet" do
7
+ sources = Twitter::Action::Favorite.new(:sources => [{:id => 7505382}]).sources
8
+ sources.should be_an Array
9
+ sources.first.should be_a Twitter::User
10
+ end
11
+ it "is empty when not set" do
12
+ sources = Twitter::Action::Favorite.new.sources
13
+ sources.should be_empty
14
+ end
15
+ end
16
+
17
+ describe "#targets" do
18
+ it "returns a collection containing the favorited Tweet" do
19
+ targets = Twitter::Action::Favorite.new(:targets => [{:id => 25938088801}]).targets
20
+ targets.should be_an Array
21
+ targets.first.should be_a Twitter::Tweet
22
+ end
23
+ it "is empty when not set" do
24
+ targets = Twitter::Action::Favorite.new.targets
25
+ targets.should be_empty
26
+ end
27
+ end
28
+
29
+ end