ifttt-twitter 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (217) hide show
  1. data/.gemtest +0 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +9 -0
  5. data/.yardopts +8 -0
  6. data/Gemfile +7 -0
  7. data/HISTORY.md +520 -0
  8. data/LICENSE.md +20 -0
  9. data/README.md +251 -0
  10. data/Rakefile +13 -0
  11. data/lib/twitter.rb +24 -0
  12. data/lib/twitter/action.rb +9 -0
  13. data/lib/twitter/action_factory.rb +28 -0
  14. data/lib/twitter/authenticatable.rb +24 -0
  15. data/lib/twitter/base.rb +40 -0
  16. data/lib/twitter/client.rb +126 -0
  17. data/lib/twitter/client/accounts.rb +180 -0
  18. data/lib/twitter/client/activity.rb +48 -0
  19. data/lib/twitter/client/block.rb +104 -0
  20. data/lib/twitter/client/direct_messages.rb +110 -0
  21. data/lib/twitter/client/favorites.rb +82 -0
  22. data/lib/twitter/client/friends_and_followers.rb +293 -0
  23. data/lib/twitter/client/help.rb +38 -0
  24. data/lib/twitter/client/legal.rb +32 -0
  25. data/lib/twitter/client/lists.rb +643 -0
  26. data/lib/twitter/client/local_trends.rb +46 -0
  27. data/lib/twitter/client/notification.rb +49 -0
  28. data/lib/twitter/client/places_and_geo.rb +113 -0
  29. data/lib/twitter/client/saved_searches.rb +73 -0
  30. data/lib/twitter/client/search.rb +94 -0
  31. data/lib/twitter/client/spam_reporting.rb +30 -0
  32. data/lib/twitter/client/suggested_users.rb +60 -0
  33. data/lib/twitter/client/timelines.rb +265 -0
  34. data/lib/twitter/client/trends.rb +55 -0
  35. data/lib/twitter/client/tweets.rb +191 -0
  36. data/lib/twitter/client/urls.rb +26 -0
  37. data/lib/twitter/client/users.rb +203 -0
  38. data/lib/twitter/config.rb +106 -0
  39. data/lib/twitter/configuration.rb +20 -0
  40. data/lib/twitter/connection.rb +43 -0
  41. data/lib/twitter/core_ext/hash.rb +81 -0
  42. data/lib/twitter/creatable.rb +14 -0
  43. data/lib/twitter/cursor.rb +44 -0
  44. data/lib/twitter/direct_message.rb +27 -0
  45. data/lib/twitter/error.rb +37 -0
  46. data/lib/twitter/error/bad_gateway.rb +7 -0
  47. data/lib/twitter/error/bad_request.rb +7 -0
  48. data/lib/twitter/error/client_error.rb +7 -0
  49. data/lib/twitter/error/enhance_your_calm.rb +13 -0
  50. data/lib/twitter/error/forbidden.rb +7 -0
  51. data/lib/twitter/error/internal_server_error.rb +7 -0
  52. data/lib/twitter/error/not_acceptable.rb +7 -0
  53. data/lib/twitter/error/not_found.rb +7 -0
  54. data/lib/twitter/error/server_error.rb +7 -0
  55. data/lib/twitter/error/service_unavailable.rb +7 -0
  56. data/lib/twitter/error/unauthorized.rb +7 -0
  57. data/lib/twitter/favorite.rb +28 -0
  58. data/lib/twitter/follow.rb +27 -0
  59. data/lib/twitter/geo_factory.rb +22 -0
  60. data/lib/twitter/language.rb +7 -0
  61. data/lib/twitter/list.rb +22 -0
  62. data/lib/twitter/list_member_added.rb +36 -0
  63. data/lib/twitter/media_factory.rb +21 -0
  64. data/lib/twitter/mention.rb +43 -0
  65. data/lib/twitter/metadata.rb +7 -0
  66. data/lib/twitter/oembed.rb +8 -0
  67. data/lib/twitter/photo.rb +24 -0
  68. data/lib/twitter/place.rb +36 -0
  69. data/lib/twitter/point.rb +27 -0
  70. data/lib/twitter/polygon.rb +14 -0
  71. data/lib/twitter/rate_limit_status.rb +15 -0
  72. data/lib/twitter/relationship.rb +18 -0
  73. data/lib/twitter/reply.rb +36 -0
  74. data/lib/twitter/request.rb +38 -0
  75. data/lib/twitter/request/gateway.rb +20 -0
  76. data/lib/twitter/request/multipart_with_file.rb +37 -0
  77. data/lib/twitter/request/oauth.rb +26 -0
  78. data/lib/twitter/request/phoenix.rb +22 -0
  79. data/lib/twitter/response/parse_json.rb +28 -0
  80. data/lib/twitter/response/raise_client_error.rb +49 -0
  81. data/lib/twitter/response/raise_server_error.rb +23 -0
  82. data/lib/twitter/retweet.rb +36 -0
  83. data/lib/twitter/saved_search.rb +16 -0
  84. data/lib/twitter/settings.rb +17 -0
  85. data/lib/twitter/size.rb +16 -0
  86. data/lib/twitter/status.rb +80 -0
  87. data/lib/twitter/suggestion.rb +22 -0
  88. data/lib/twitter/trend.rb +14 -0
  89. data/lib/twitter/user.rb +65 -0
  90. data/lib/twitter/version.rb +30 -0
  91. data/spec/faraday/request_spec.rb +25 -0
  92. data/spec/faraday/response_spec.rb +68 -0
  93. data/spec/fixtures/about_me.json +1 -0
  94. data/spec/fixtures/all.json +1 -0
  95. data/spec/fixtures/bad_gateway.json +1 -0
  96. data/spec/fixtures/bad_request.json +1 -0
  97. data/spec/fixtures/by_friends.json +1 -0
  98. data/spec/fixtures/category.json +1 -0
  99. data/spec/fixtures/configuration.json +1 -0
  100. data/spec/fixtures/contributees.json +1 -0
  101. data/spec/fixtures/contributors.json +1 -0
  102. data/spec/fixtures/direct_message.json +1 -0
  103. data/spec/fixtures/direct_messages.json +1 -0
  104. data/spec/fixtures/end_session.json +1 -0
  105. data/spec/fixtures/enhance_your_calm.text +11 -0
  106. data/spec/fixtures/false.json +1 -0
  107. data/spec/fixtures/favorites.json +1 -0
  108. data/spec/fixtures/forbidden.json +1 -0
  109. data/spec/fixtures/friendships.json +1 -0
  110. data/spec/fixtures/id_list.json +1 -0
  111. data/spec/fixtures/ids.json +1 -0
  112. data/spec/fixtures/image_facets.json +1 -0
  113. data/spec/fixtures/internal_server_error.json +1 -0
  114. data/spec/fixtures/languages.json +1 -0
  115. data/spec/fixtures/list.json +1 -0
  116. data/spec/fixtures/lists.json +1 -0
  117. data/spec/fixtures/locations.json +1 -0
  118. data/spec/fixtures/matching_trends.json +1 -0
  119. data/spec/fixtures/me.jpeg +0 -0
  120. data/spec/fixtures/media_timeline.json +1 -0
  121. data/spec/fixtures/members.json +1 -0
  122. data/spec/fixtures/n605431196_2079896_558_normal.jpg +0 -0
  123. data/spec/fixtures/no_user_matches.json +1 -0
  124. data/spec/fixtures/not_acceptable.json +1 -0
  125. data/spec/fixtures/not_found.json +1 -0
  126. data/spec/fixtures/oembed.json +1 -0
  127. data/spec/fixtures/pengwynn.json +1 -0
  128. data/spec/fixtures/phoenix_search.phoenix +1 -0
  129. data/spec/fixtures/place.json +1 -0
  130. data/spec/fixtures/places.json +1 -0
  131. data/spec/fixtures/privacy.json +1 -0
  132. data/spec/fixtures/profile_image.text +24 -0
  133. data/spec/fixtures/rate_limit_status.json +1 -0
  134. data/spec/fixtures/recommendations.json +1 -0
  135. data/spec/fixtures/relationship.json +1 -0
  136. data/spec/fixtures/resolve.json +1 -0
  137. data/spec/fixtures/retweet.json +1 -0
  138. data/spec/fixtures/retweeters_of.json +1 -0
  139. data/spec/fixtures/retweets.json +1 -0
  140. data/spec/fixtures/saved_search.json +1 -0
  141. data/spec/fixtures/saved_searches.json +1 -0
  142. data/spec/fixtures/search.json +1 -0
  143. data/spec/fixtures/service_unavailable.json +1 -0
  144. data/spec/fixtures/settings.json +1 -0
  145. data/spec/fixtures/sferik.json +1 -0
  146. data/spec/fixtures/status.json +1 -0
  147. data/spec/fixtures/status_with_media.json +104 -0
  148. data/spec/fixtures/statuses.json +1 -0
  149. data/spec/fixtures/suggestions.json +1 -0
  150. data/spec/fixtures/tos.json +1 -0
  151. data/spec/fixtures/totals.json +1 -0
  152. data/spec/fixtures/trends.json +1 -0
  153. data/spec/fixtures/trends_current.json +1 -0
  154. data/spec/fixtures/trends_daily.json +1 -0
  155. data/spec/fixtures/trends_weekly.json +1 -0
  156. data/spec/fixtures/true.json +1 -0
  157. data/spec/fixtures/unauthorized.json +1 -0
  158. data/spec/fixtures/user_search.json +1 -0
  159. data/spec/fixtures/user_timeline.json +1 -0
  160. data/spec/fixtures/users.json +1 -0
  161. data/spec/fixtures/users_list.json +1 -0
  162. data/spec/fixtures/video_facets.json +1 -0
  163. data/spec/fixtures/we_concept_bg2.png +0 -0
  164. data/spec/helper.rb +49 -0
  165. data/spec/twitter/action_factory_spec.rb +37 -0
  166. data/spec/twitter/action_spec.rb +16 -0
  167. data/spec/twitter/base_spec.rb +29 -0
  168. data/spec/twitter/client/accounts_spec.rb +181 -0
  169. data/spec/twitter/client/activity_spec.rb +43 -0
  170. data/spec/twitter/client/block_spec.rb +106 -0
  171. data/spec/twitter/client/direct_messages_spec.rb +98 -0
  172. data/spec/twitter/client/favorites_spec.rb +80 -0
  173. data/spec/twitter/client/friends_and_followers_spec.rb +478 -0
  174. data/spec/twitter/client/help_spec.rb +44 -0
  175. data/spec/twitter/client/legal_spec.rb +41 -0
  176. data/spec/twitter/client/lists_spec.rb +1104 -0
  177. data/spec/twitter/client/local_trends_spec.rb +58 -0
  178. data/spec/twitter/client/notification_spec.rb +47 -0
  179. data/spec/twitter/client/places_and_geo_spec.rb +100 -0
  180. data/spec/twitter/client/saved_searches_spec.rb +80 -0
  181. data/spec/twitter/client/search_spec.rb +92 -0
  182. data/spec/twitter/client/spam_reporting_spec.rb +28 -0
  183. data/spec/twitter/client/suggested_users_spec.rb +65 -0
  184. data/spec/twitter/client/timelines_spec.rb +231 -0
  185. data/spec/twitter/client/trends_spec.rb +51 -0
  186. data/spec/twitter/client/tweets_spec.rb +189 -0
  187. data/spec/twitter/client/urls_spec.rb +31 -0
  188. data/spec/twitter/client/users_spec.rb +323 -0
  189. data/spec/twitter/client_spec.rb +94 -0
  190. data/spec/twitter/configuration_spec.rb +17 -0
  191. data/spec/twitter/cursor_spec.rb +43 -0
  192. data/spec/twitter/direct_message_spec.rb +56 -0
  193. data/spec/twitter/favorite_spec.rb +29 -0
  194. data/spec/twitter/follow_spec.rb +29 -0
  195. data/spec/twitter/geo_factory_spec.rb +21 -0
  196. data/spec/twitter/list_spec.rb +34 -0
  197. data/spec/twitter/media_factory_spec.rb +17 -0
  198. data/spec/twitter/mention_spec.rb +52 -0
  199. data/spec/twitter/oembed_spec.rb +145 -0
  200. data/spec/twitter/photo_spec.rb +35 -0
  201. data/spec/twitter/place_spec.rb +75 -0
  202. data/spec/twitter/point_spec.rb +32 -0
  203. data/spec/twitter/polygon_spec.rb +18 -0
  204. data/spec/twitter/rate_limit_status_spec.rb +16 -0
  205. data/spec/twitter/relationship_spec.rb +27 -0
  206. data/spec/twitter/reply_spec.rb +41 -0
  207. data/spec/twitter/retweet_spec.rb +41 -0
  208. data/spec/twitter/saved_search_spec.rb +34 -0
  209. data/spec/twitter/settings_spec.rb +16 -0
  210. data/spec/twitter/size_spec.rb +18 -0
  211. data/spec/twitter/status_spec.rb +148 -0
  212. data/spec/twitter/suggestion_spec.rb +20 -0
  213. data/spec/twitter/trend_spec.rb +20 -0
  214. data/spec/twitter/user_spec.rb +50 -0
  215. data/spec/twitter_spec.rb +91 -0
  216. data/twitter.gemspec +42 -0
  217. metadata +564 -0
@@ -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
+ false
@@ -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
+ {"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
+ {"previous_cursor_str":"0","next_cursor":0,"ids":[146197851,145833898,90678091,63267186,142867146,18443187,84722702,9607792,18589926,17831966,103213461,6734842,45322951,14517078,70353603,133143291,54368334,127522778,128046728,95206919,128441606,91078264,126052250,8285392,16314440],"previous_cursor":0,"next_cursor_str":"0"}
@@ -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
+ [{"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
+ {"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"}
@@ -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
+ {"relationship":{"target":{"followed_by":true,"id_str":"14100886","following":true,"screen_name":"pengwynn","id":14100886},"source":{"marked_spam":false,"notifications_enabled":false,"followed_by":true,"want_retweets":true,"id_str":"7505382","blocking":false,"all_replies":false,"following":true,"screen_name":"sferik","id":7505382}}}
@@ -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
+ [{"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
+ {"results":[{"from_user_id_str":"10689529","profile_image_url":"http://a3.twimg.com/profile_images/1038143835/killermelons_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:39 +0000","from_user":"killermelons","id_str":"28857935752","metadata":{"result_type":"recent"},"to_user_id":119182,"text":"@KaiserKuo from not too far away your new twitter icon looks like Vader.","id":28857935752,"from_user_id":10689529,"to_user":"kaiserkuo","geo":null,"iso_language_code":"en","to_user_id_str":"119182","source":"&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;"},{"from_user_id_str":"75748616","profile_image_url":"http://a2.twimg.com/profile_images/1108768290/61821513-44e3-4d1c-9033-5030923fc08c_normal.png","created_at":"Wed, 27 Oct 2010 03:56:38 +0000","from_user":"FelipeNoMore","id_str":"28857935253","metadata":{"result_type":"recent"},"to_user_id":null,"text":"RT @nicoMaiden: RT @golden254: Quien habra sido el habil en decirle al negro pi\u00f1era que era cantante?/el mismo que le dijo a @copano que la lleva en twitter","id":28857935253,"from_user_id":75748616,"geo":null,"iso_language_code":"es","to_user_id_str":null,"source":"&lt;a href=&quot;http://www.tweetdeck.com&quot; rel=&quot;nofollow&quot;&gt;TweetDeck&lt;/a&gt;"},{"from_user_id_str":"54285861","profile_image_url":"http://a1.twimg.com/profile_images/1111746765/C_pia_de_P7280092_normal.JPG","created_at":"Wed, 27 Oct 2010 03:56:37 +0000","from_user":"Je_eF","id_str":"28857934155","metadata":{"result_type":"recent"},"to_user_id":null,"text":"\u00e9 cada louco que tem nesse twitter que o vicio nao me deixa largar isso jam\u00e9","id":28857934155,"from_user_id":54285861,"geo":null,"iso_language_code":"pt","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;"},{"from_user_id_str":"34333644","profile_image_url":"http://a2.twimg.com/profile_images/1153163678/small2-1_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:37 +0000","from_user":"TriceyTrice2U","id_str":"28857933830","metadata":{"result_type":"recent"},"to_user_id":164868506,"text":"@Jae_Savage same name as twitter","id":28857933830,"from_user_id":34333644,"to_user":"Jae_Savage","geo":null,"iso_language_code":"nl","to_user_id_str":"164868506","source":"&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;"},{"from_user_id_str":"11855839","profile_image_url":"http://a0.twimg.com/profile_images/1153381236/72714_1438672812308_1397641096_31000422_3363391_n_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:36 +0000","from_user":"eternity4","id_str":"28857932968","metadata":{"result_type":"recent"},"to_user_id":9612177,"text":"@enishi39 Its awesome huh? Its ALL Spn anime epicness!! I had a tough time getting twitter to put it up.xD","id":28857932968,"from_user_id":11855839,"to_user":"enishi39","geo":null,"iso_language_code":"en","to_user_id_str":"9612177","source":"&lt;a href=&quot;http://mobile.twitter.com&quot; rel=&quot;nofollow&quot;&gt;Mobile Web&lt;/a&gt;"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:34 +0000","from_user":"twittag","id_str":"28857930925","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u8239\u4e95\u7dcf\u7814\u767a\uff01\u4e00\u756a\u5e97\u306e\u6cd5\u5247\uff5e\u5b9f\u8cbb\u578b\u6cbb\u7642\u9662\uff08\u6574\u9aa8\u9662\u30fb\u63a5\u9aa8\u9662\uff09\u30fb\u30b5\u30ed\u30f3\u7d4c\u55b6\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u30d6\u30ed\u30b0\uff5e http://bit.ly/cxoSGL","id":28857930925,"from_user_id":115719,"geo":null,"iso_language_code":"zh","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:34 +0000","from_user":"twittag","id_str":"28857930608","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u30cb\u30d5\u30c6\u30a3\u30af\u30e9\u30a6\u30c9\u3001\u660e\u65e5\u3088\u308a\u300c\u30b5\u30fc\u30d0\u30fc\u30b3\u30d4\u30fc\u300d\u3001\u300c\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30a4\u30e1\u30fc\u30b8\u300d\u3001\u300c\u30aa\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb\u300d\u3001\u300c\u57fa\u672c\u76e3\u8996\u30fb\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e3\u30fc\u30c8\u300d\u3092\u516c\u958b | P2P today \u30c0\u30d6\u30eb\u30b9\u30e9\u30c3\u30b7\u30e5 http://wslash.com/?p=2959","id":28857930608,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857930295","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u30cb\u30d5\u30c6\u30a3\u30af\u30e9\u30a6\u30c9\u3001\u660e\u65e5\u3088\u308a\u300c\u30b5\u30fc\u30d0\u30fc\u30b3\u30d4\u30fc\u300d\u3001\u300c\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u30a4\u30e1\u30fc\u30b8\u300d\u3001\u300c\u30aa\u30fc\u30c8\u30b9\u30b1\u30fc\u30eb\u300d\u3001\u300c\u57fa\u672c\u76e3\u8996\u30fb\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30c1\u30e3\u30fc\u30c8\u300d\u3092\u516c\u958b | P2P today \u30c0\u30d6\u30eb\u30b9\u30e9\u30c3\u30b7\u30e5 http://bit.ly/aziQQo","id":28857930295,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;"},{"from_user_id_str":"51826863","profile_image_url":"http://a3.twimg.com/profile_images/1125777915/tarcanngelhak_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"ArcangelHak","id_str":"28857930186","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Bueno pues me desconect\u00f3 de twitter al tatto le falta todav\u00eda un rato y ya casi tengo sue\u00f1o","id":28857930186,"from_user_id":51826863,"geo":null,"iso_language_code":"es","to_user_id_str":null,"source":"&lt;a href=&quot;http://mobileways.de/gravity&quot; rel=&quot;nofollow&quot;&gt;Gravity&lt;/a&gt;"},{"from_user_id_str":"1300997","profile_image_url":"http://a3.twimg.com/profile_images/1144220811/48902_681914513_3112_q_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"recycledhumor","id_str":"28857930102","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Just in case you are wondering, Weird Al (@alyankovic) has 1,862,789 followers on Twitter. Correction: 1,862,790 followers on Twitter.","id":28857930102,"from_user_id":1300997,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitter.com/&quot;&gt;web&lt;/a&gt;"},{"from_user_id_str":"19693812","profile_image_url":"http://a0.twimg.com/profile_images/1101236132/IMG00191_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"junitaaa","id_str":"28857930059","metadata":{"result_type":"recent"},"to_user_id":null,"text":"Lama&quot; chat di twitter nih..hahaha RT @buntutbabi: Lo yg mulai juga,siiietRT @Junitaaa: Kelakuan @buntutbabi (cont) http://tl.gd/6m1dcv","id":28857930059,"from_user_id":19693812,"geo":null,"iso_language_code":"id","to_user_id_str":null,"source":"&lt;a href=&quot;http://www.ubertwitter.com/bb/download.php&quot; rel=&quot;nofollow&quot;&gt;\u00dcberTwitter&lt;/a&gt;"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857929957","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] \u300e\u304b\u3061\u3073\u3068.net\u300f \u306e\u4eba\u6c17\u30a8\u30f3\u30c8\u30ea\u30fc - \u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af http://bit.ly/9Yx6xS","id":28857929957,"from_user_id":115719,"geo":null,"iso_language_code":"ja","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;"},{"from_user_id_str":"85186425","profile_image_url":"http://a2.twimg.com/profile_images/1129468058/avexnews3_normal.jpg","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"avexnews","id_str":"28857929746","metadata":{"result_type":"recent"},"to_user_id":149063052,"text":"@ICONIQ_NEWS opened!She gain attention by collaboration song\u300cI'm lovin' you\u300dwif EXILE\u30fbATSUSHI.Get her newest info here! http://bit.ly/dymm8v","id":28857929746,"from_user_id":85186425,"to_user":"ICONIQ_NEWS","geo":null,"iso_language_code":"en","to_user_id_str":"149063052","source":"&lt;a href=&quot;http://twittbot.net/&quot; rel=&quot;nofollow&quot;&gt;twittbot.net&lt;/a&gt;"},{"from_user_id_str":"117334023","profile_image_url":"http://a2.twimg.com/profile_images/1152607458/2097d325-a9ab-4a76-8b43-daf1f110c2e4_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"WildIvory92","id_str":"28857929614","metadata":{"result_type":"recent"},"to_user_id":null,"text":"RT @FiercePrinceJ: People on Twitter Gossip about other People, Hate others? This Is Twitter Nothing More, Nothing Less.","id":28857929614,"from_user_id":117334023,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"&lt;a href=&quot;http://mobile.twitter.com&quot; rel=&quot;nofollow&quot;&gt;Mobile Web&lt;/a&gt;"},{"from_user_id_str":"115719","profile_image_url":"http://a0.twimg.com/profile_images/26756152/twittag_normal.png","created_at":"Wed, 27 Oct 2010 03:56:33 +0000","from_user":"twittag","id_str":"28857929607","metadata":{"result_type":"recent"},"to_user_id":null,"text":"[Twitter*feed] Now Playing Friends - \u30ea\u30cb\u30e5\u30fc\u30a2\u30eb\u5f0f : R49 http://bit.ly/bmlA5g","id":28857929607,"from_user_id":115719,"geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;"}],"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
+ [{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Oct 16 17:07:46 +0000 2010","retweeted":false,"id_str":"27558893223","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":27558893223,"truncated":false,"text":"Ruby is the best programming language for hiding the ugly bits."},{"place":null,"coordinates":null,"retweet_count":null,"geo":null,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","in_reply_to_status_id":null,"created_at":"Fri Oct 15 18:26:47 +0000 2010","contributors":null,"in_reply_to_user_id":null,"user":{"friends_count":112,"description":"degradable","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"profile_background_image_url":"http://a1.twimg.com/profile_background_images/133569392/nature02922-f1.2.jpg","profile_background_color":"C0DEED","url":null,"show_all_inline_media":true,"notifications":false,"profile_background_tile":true,"lang":"en","statuses_count":2915,"geo_enabled":true,"favourites_count":707,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","protected":false,"contributors_enabled":false,"profile_link_color":"0084B4","screen_name":"sferik","name":"Erik Michaels-Ober","listed_count":28,"following":true,"time_zone":"Pacific Time (US & Canada)","followers_count":894,"id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"truncated":false,"in_reply_to_screen_name":null,"id":27467028175,"retweeted":false,"text":"There are 1.3 billion people in China; when people say there are 1 billion they are rounding off the entire population of the United States."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Oct 11 20:57:56 +0000 2010","id_str":"27068258331","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":27068258331,"truncated":false,"text":"The new Windows Phone campaign is the best advertising from Microsoft since \"Start Me Up\" (1995). Great work by CP+B. http:\/\/t.co\/tIzxopI"},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"city","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4552eed9a8b61ff9.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-123.632497,38.29571],[-122.833844,38.29571],[-122.833844,38.808369],[-123.632497,38.808369]]]},"attributes":{},"full_name":"Russian River-Coastal, CA","name":"Russian River-Coastal","id":"4552eed9a8b61ff9"},"geo":{"type":"Point","coordinates":[38.524535,-123.088368]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Sun Oct 10 18:26:22 +0000 2010","id_str":"26959930192","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-123.088368,38.524535]},"id":26959930192,"truncated":false,"text":"Fear not to sow seeds because of the birds. http:\/\/twitpic.com\/2wg621"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Oct 06 00:03:47 +0000 2010","id_str":"26503221778","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":26503221778,"truncated":false,"text":"Speaking of things that are maddening: the interview with the Wall Street guys on the most recent This American Life http:\/\/bit.ly\/af9pSD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Wed Sep 29 00:49:44 +0000 2010","retweeted":false,"id_str":"25836892941","user":{"follow_request_sent":false,"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"favourites_count":729,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"statuses_count":2968,"show_all_inline_media":true,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","contributors_enabled":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","friends_count":88,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":25836892941,"truncated":false,"text":"Holy cow! RailsAdmin is up to 200 watchers (from 100 yesterday). http:\/\/github.com\/sferik\/rails_admin"},{"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":"Mon Sep 27 23:35:56 +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":"Adventures in hunger and foolishness.","profile_sidebar_fill_color":"DDEEF6","followers_count":898,"listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2962,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":true,"favourites_count":727,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","geo_enabled":true,"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","verified":false,"profile_text_color":"333333","name":"Erik Michaels-Ober","follow_request_sent":false,"following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":25732982065,"id_str":"25732982065","text":"Kind of cool that Facebook acts as a mirror for open-source projects that they use or like http:\/\/mirror.facebook.net\/"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Mon Sep 27 14:55:28 +0000 2010","id_str":"25693598875","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":25693598875,"truncated":false,"text":"RailsAdmin already has 100 watchers, 12 forks, and 6 contributors in less than 2 months. Let's keep the momentum going! http:\/\/bit.ly\/cCMMqD"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Tue Sep 14 03:25:46 +0000 2010","retweeted":false,"id_str":"24443017910","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24443017910,"truncated":false,"text":"This week's This American Life is amazing. @JoeLipari is an American hero. http:\/\/bit.ly\/d9RbnB"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"created_at":"Sat Sep 11 02:17:29 +0000 2010","retweeted":false,"id_str":"24158227743","user":{"profile_background_color":"000000","description":"Adventures in hunger and foolishness.","verified":false,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","url":null,"listed_count":28,"lang":"en","profile_background_tile":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_sidebar_fill_color":"DDEEF6","location":"San Francisco","statuses_count":2968,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","name":"Erik Michaels-Ober","contributors_enabled":false,"following":false,"screen_name":"sferik","id":7505382,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","utc_offset":-28800,"followers_count":898},"coordinates":null,"id":24158227743,"truncated":false,"text":"RT @polyseme: OH: shofars should be called jewvuzelas."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:07:47 +0000 2010","id_str":"24126395365","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126395365,"truncated":false,"text":"Spent this morning fixing broken windows in RailsAdmin http:\/\/github.com\/sferik\/rails_admin\/compare\/ab6c598...0e3770f"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Sep 10 18:02:34 +0000 2010","id_str":"24126047148","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24126047148,"truncated":false,"text":"I'm a big believer that the broken windows theory applies to software development http:\/\/en.wikipedia.org\/wiki\/Broken_windows_theory"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Sep 09 17:12:21 +0000 2010","id_str":"24028079777","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":24028079777,"truncated":false,"text":"I hope you idiots are happy with your piece of shit Android phones. http:\/\/www.apple.com\/pr\/library\/2010\/09\/09statement.html"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:55:15 +0000 2010","id_str":"22728299854","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22728299854,"truncated":false,"text":"Ping: kills MySpace dead."},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 17:43:30 +0000 2010","id_str":"22727444431","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22727444431,"truncated":false,"text":"Crazy that iTunes Ping didn't leak a drop."},{"in_reply_to_status_id_str":null,"place":{"country_code":"US","place_type":"neighborhood","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5c92ab5379de3839.json","country":"The United States of America","bounding_box":{"type":"Polygon","coordinates":[[[-122.40348192,37.77752898],[-122.387436,37.77752898],[-122.387436,37.79448597],[-122.40348192,37.79448597]]]},"attributes":{},"full_name":"South Beach, San Francisco","name":"South Beach","id":"5c92ab5379de3839"},"geo":{"type":"Point","coordinates":[37.782365,-122.392431]},"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Wed Sep 01 05:53:01 +0000 2010","id_str":"22683247815","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":{"type":"Point","coordinates":[-122.392431,37.782365]},"id":22683247815,"truncated":false,"text":"The plot thickens http:\/\/twitpic.com\/2k5lt2"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 23:01:19 +0000 2010","id_str":"22305399947","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22305399947,"truncated":false,"text":"140 Proof Provides A Piece Of The Twitter Advertising\u00a0Puzzle http:\/\/t.co\/R2cUSDe via @techcrunch"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Fri Aug 27 22:33:42 +0000 2010","id_str":"22303907694","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":22303907694,"truncated":false,"text":"Try as you may http:\/\/www.thedoghousediaries.com\/?p=1940"},{"in_reply_to_status_id_str":null,"place":null,"geo":null,"favorited":false,"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","retweet_count":null,"created_at":"Thu Aug 19 01:38:01 +0000 2010","id_str":"21538122473","retweeted":false,"user":{"statuses_count":2972,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":729,"profile_sidebar_border_color":"C0DEED","contributors_enabled":false,"notifications":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","url":null,"verified":false,"follow_request_sent":false,"lang":"en","profile_use_background_image":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","id_str":"7505382","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","name":"Erik Michaels-Ober","following":false,"followers_count":897,"screen_name":"sferik","id":7505382,"listed_count":28,"profile_background_tile":false,"utc_offset":-28800,"friends_count":89,"profile_sidebar_fill_color":"DDEEF6"},"coordinates":null,"id":21538122473,"truncated":false,"text":"I know @SarahPalinUSA has a right to use Twitter, but should she?"}]
@@ -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
+ true
@@ -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"}]
Binary file
data/spec/helper.rb ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+ unless ENV['CI']
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+ end
6
+
7
+ require 'twitter'
8
+ require 'rspec'
9
+ require 'webmock/rspec'
10
+
11
+ def a_delete(path, endpoint=Twitter.endpoint)
12
+ a_request(:delete, endpoint + path)
13
+ end
14
+
15
+ def a_get(path, endpoint=Twitter.endpoint)
16
+ a_request(:get, endpoint + path)
17
+ end
18
+
19
+ def a_post(path, endpoint=Twitter.endpoint)
20
+ a_request(:post, endpoint + path)
21
+ end
22
+
23
+ def a_put(path, endpoint=Twitter.endpoint)
24
+ a_request(:put, endpoint + path)
25
+ end
26
+
27
+ def stub_delete(path, endpoint=Twitter.endpoint)
28
+ stub_request(:delete, endpoint + path)
29
+ end
30
+
31
+ def stub_get(path, endpoint=Twitter.endpoint)
32
+ stub_request(:get, endpoint + path)
33
+ end
34
+
35
+ def stub_post(path, endpoint=Twitter.endpoint)
36
+ stub_request(:post, endpoint + path)
37
+ end
38
+
39
+ def stub_put(path, endpoint=Twitter.endpoint)
40
+ stub_request(:put, endpoint + path)
41
+ end
42
+
43
+ def fixture_path
44
+ File.expand_path("../fixtures", __FILE__)
45
+ end
46
+
47
+ def fixture(file)
48
+ File.new(fixture_path + '/' + file)
49
+ end
@@ -0,0 +1,37 @@
1
+ require 'helper'
2
+
3
+ describe Twitter::ActionFactory do
4
+
5
+ describe ".new" do
6
+ it "should generate a Favorite" do
7
+ action = Twitter::ActionFactory.new('action' => 'favorite')
8
+ action.should be_a Twitter::Favorite
9
+ end
10
+ it "should generate a Follow" do
11
+ action = Twitter::ActionFactory.new('action' => 'follow')
12
+ action.should be_a Twitter::Follow
13
+ end
14
+ it "should generate a ListMemberAdded" do
15
+ action = Twitter::ActionFactory.new('action' => 'list_member_added')
16
+ action.should be_a Twitter::ListMemberAdded
17
+ end
18
+ it "should generate a Mention" do
19
+ action = Twitter::ActionFactory.new('action' => 'mention')
20
+ action.should be_a Twitter::Mention
21
+ end
22
+ it "should generate a Reply" do
23
+ action = Twitter::ActionFactory.new('action' => 'reply')
24
+ action.should be_a Twitter::Reply
25
+ end
26
+ it "should generate a Retweet" do
27
+ action = Twitter::ActionFactory.new('action' => 'retweet')
28
+ action.should be_a Twitter::Retweet
29
+ end
30
+ it "should raise an ArgumentError when action is not specified" do
31
+ lambda do
32
+ Twitter::ActionFactory.new({})
33
+ end.should raise_error(ArgumentError, "argument must have an 'action' key")
34
+ end
35
+ end
36
+
37
+ end
@@ -0,0 +1,16 @@
1
+ require 'helper'
2
+
3
+ describe Twitter::Action do
4
+
5
+ describe "#created_at" do
6
+ it "should return a Time when created_at is set" do
7
+ user = Twitter::User.new('created_at' => "Mon Jul 16 12:59:01 +0000 2007")
8
+ user.created_at.should be_a Time
9
+ end
10
+ it "should return nil when created_at is not set" do
11
+ user = Twitter::User.new
12
+ user.created_at.should be_nil
13
+ end
14
+ end
15
+
16
+ end
@@ -0,0 +1,29 @@
1
+ require 'helper'
2
+
3
+ describe Twitter::Base do
4
+
5
+ before do
6
+ @base = Twitter::Base.new('id' => 1)
7
+ end
8
+
9
+ describe "#[]" do
10
+ it "should be able to call methods using [] with symbol" do
11
+ @base[:object_id].should be_an Integer
12
+ end
13
+ it "should be able to call methods using [] with string" do
14
+ @base['object_id'].should be_an Integer
15
+ end
16
+ it "should return nil for missing method" do
17
+ @base[:foo].should be_nil
18
+ @base['foo'].should be_nil
19
+ end
20
+ end
21
+
22
+ describe "#to_hash" do
23
+ it "should return a hash" do
24
+ @base.to_hash.should be_a Hash
25
+ @base.to_hash['id'].should == 1
26
+ end
27
+ end
28
+
29
+ end