twitter 4.4.2 → 4.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. data/CHANGELOG.md +7 -0
  2. data/lib/twitter.rb +1 -1
  3. data/lib/twitter/api/arguments.rb +13 -0
  4. data/lib/twitter/api/direct_messages.rb +8 -7
  5. data/lib/twitter/api/favorites.rb +11 -10
  6. data/lib/twitter/api/friends_and_followers.rb +16 -31
  7. data/lib/twitter/api/help.rb +1 -1
  8. data/lib/twitter/api/lists.rb +41 -51
  9. data/lib/twitter/api/places_and_geo.rb +5 -5
  10. data/lib/twitter/api/saved_searches.rb +9 -8
  11. data/lib/twitter/api/spam_reporting.rb +1 -1
  12. data/lib/twitter/api/suggested_users.rb +6 -5
  13. data/lib/twitter/api/timelines.rb +6 -8
  14. data/lib/twitter/api/trends.rb +3 -3
  15. data/lib/twitter/api/tweets.rb +14 -13
  16. data/lib/twitter/api/undocumented.rb +7 -9
  17. data/lib/twitter/api/users.rb +22 -19
  18. data/lib/twitter/api/utils.rb +61 -62
  19. data/lib/twitter/base.rb +0 -1
  20. data/lib/twitter/configurable.rb +24 -5
  21. data/lib/twitter/core_ext/kernel.rb +0 -5
  22. data/lib/twitter/cursor.rb +1 -1
  23. data/lib/twitter/default.rb +9 -5
  24. data/lib/twitter/error/configuration_error.rb +8 -0
  25. data/lib/twitter/tweet.rb +6 -3
  26. data/lib/twitter/version.rb +1 -1
  27. data/spec/fixtures/about_me.json +1 -1
  28. data/spec/fixtures/by_friends.json +1 -1
  29. data/spec/fixtures/category.json +1 -1
  30. data/spec/fixtures/contributees.json +1 -1
  31. data/spec/fixtures/direct_messages.json +1 -1
  32. data/spec/fixtures/followers_list.json +1 -1
  33. data/spec/fixtures/followers_list2.json +1 -1
  34. data/spec/fixtures/friends_list.json +1 -1
  35. data/spec/fixtures/friends_list2.json +1 -1
  36. data/spec/fixtures/lists.json +1 -1
  37. data/spec/fixtures/locations.json +1 -1
  38. data/spec/fixtures/members.json +1 -1
  39. data/spec/fixtures/memberships.json +1 -1
  40. data/spec/fixtures/memberships2.json +1 -1
  41. data/spec/fixtures/retweets.json +1 -1
  42. data/spec/fixtures/search.json +1 -1
  43. data/spec/fixtures/search_malformed.json +1 -1
  44. data/spec/fixtures/subscriptions.json +1 -1
  45. data/spec/fixtures/subscriptions2.json +1 -1
  46. data/spec/fixtures/user_timeline.json +1 -1
  47. data/spec/fixtures/users_list.json +1 -1
  48. data/spec/fixtures/users_list2.json +1 -1
  49. data/spec/twitter/api/favorites_spec.rb +4 -4
  50. data/spec/twitter/api/friends_and_followers_spec.rb +32 -28
  51. data/spec/twitter/api/suggested_users_spec.rb +1 -1
  52. data/spec/twitter/api/tweets_spec.rb +4 -4
  53. data/spec/twitter/api/users_spec.rb +6 -6
  54. data/spec/twitter/client_spec.rb +1 -1
  55. data/spec/twitter_spec.rb +24 -0
  56. data/twitter.gemspec +3 -4
  57. metadata +10 -48
  58. data/spec/fixtures/all.json +0 -1
  59. data/spec/fixtures/contributors.json +0 -1
  60. data/spec/fixtures/enhance_your_calm.text +0 -11
  61. data/spec/fixtures/favorites.json +0 -1
  62. data/spec/fixtures/image_facets.json +0 -1
  63. data/spec/fixtures/media_timeline.json +0 -1
  64. data/spec/fixtures/profile_image.text +0 -24
  65. data/spec/fixtures/recommendations.json +0 -1
  66. data/spec/fixtures/related_results.json +0 -1
  67. data/spec/fixtures/retweeted_status.json +0 -1
  68. data/spec/fixtures/retweeters_of.json +0 -1
  69. data/spec/fixtures/status_with_media.json +0 -104
  70. data/spec/fixtures/trends_current.json +0 -1
  71. data/spec/fixtures/trends_daily.json +0 -1
  72. data/spec/fixtures/trends_weekly.json +0 -1
@@ -178,17 +178,17 @@ describe Twitter::API::Tweets do
178
178
 
179
179
  describe "#update_with_media" do
180
180
  before do
181
- stub_post("/1.1/statuses/update_with_media.json").to_return(:body => fixture("status_with_media.json"), :headers => {:content_type => "application/json; charset=utf-8"})
181
+ stub_post("/1.1/statuses/update_with_media.json").to_return(:body => fixture("status.json"), :headers => {:content_type => "application/json; charset=utf-8"})
182
182
  end
183
183
  context "a gif image" do
184
184
  it "requests the correct resource" do
185
- @client.update_with_media("You always have options", fixture("pbjt.gif"))
185
+ @client.update_with_media("The problem with your code is that it's doing exactly what you told it to do.", fixture("pbjt.gif"))
186
186
  expect(a_post("/1.1/statuses/update_with_media.json")).to have_been_made
187
187
  end
188
188
  it "returns a Tweet" do
189
- tweet = @client.update_with_media("You always have options", fixture("pbjt.gif"))
189
+ tweet = @client.update_with_media("The problem with your code is that it's doing exactly what you told it to do.", fixture("pbjt.gif"))
190
190
  expect(tweet).to be_a Twitter::Tweet
191
- expect(tweet.text).to eq "You always have options http://t.co/CBYa7Ri"
191
+ expect(tweet.text).to eq "The problem with your code is that it's doing exactly what you told it to do."
192
192
  end
193
193
  end
194
194
  context "a jpe image" do
@@ -167,7 +167,7 @@ describe Twitter::API::Users do
167
167
  suggest_users = @client.suggest_users("art-design")
168
168
  expect(suggest_users).to be_an Array
169
169
  expect(suggest_users.first).to be_a Twitter::User
170
- expect(suggest_users.first.name).to eq "OMGFacts"
170
+ expect(suggest_users.first.id).to eq 13
171
171
  end
172
172
  end
173
173
 
@@ -573,7 +573,7 @@ describe Twitter::API::Users do
573
573
  describe "#contributors" do
574
574
  context "with a screen name passed" do
575
575
  before do
576
- stub_get("/1.1/users/contributors.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("contributors.json"), :headers => {:content_type => "application/json; charset=utf-8"})
576
+ stub_get("/1.1/users/contributors.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("members.json"), :headers => {:content_type => "application/json; charset=utf-8"})
577
577
  end
578
578
  it "requests the correct resource" do
579
579
  @client.contributors("sferik")
@@ -583,12 +583,12 @@ describe Twitter::API::Users do
583
583
  contributors = @client.contributors("sferik")
584
584
  expect(contributors).to be_an Array
585
585
  expect(contributors.first).to be_a Twitter::User
586
- expect(contributors.first.name).to eq "Biz Stone"
586
+ expect(contributors.first.id).to eq 13
587
587
  end
588
588
  end
589
589
  context "with a user ID passed" do
590
590
  before do
591
- stub_get("/1.1/users/contributors.json").with(:query => {:user_id => "7505382"}).to_return(:body => fixture("contributors.json"), :headers => {:content_type => "application/json; charset=utf-8"})
591
+ stub_get("/1.1/users/contributors.json").with(:query => {:user_id => "7505382"}).to_return(:body => fixture("members.json"), :headers => {:content_type => "application/json; charset=utf-8"})
592
592
  end
593
593
  it "requests the correct resource" do
594
594
  @client.contributors(7505382)
@@ -598,7 +598,7 @@ describe Twitter::API::Users do
598
598
  context "without arguments passed" do
599
599
  before do
600
600
  stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
601
- stub_get("/1.1/users/contributors.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("contributors.json"), :headers => {:content_type => "application/json; charset=utf-8"})
601
+ stub_get("/1.1/users/contributors.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("members.json"), :headers => {:content_type => "application/json; charset=utf-8"})
602
602
  end
603
603
  it "requests the correct resource" do
604
604
  @client.contributors
@@ -608,7 +608,7 @@ describe Twitter::API::Users do
608
608
  contributors = @client.contributors
609
609
  expect(contributors).to be_an Array
610
610
  expect(contributors.first).to be_a Twitter::User
611
- expect(contributors.first.name).to eq "Biz Stone"
611
+ expect(contributors.first.id).to eq 13
612
612
  end
613
613
  end
614
614
  end
@@ -125,7 +125,7 @@ describe Twitter::Client do
125
125
  expect(a_post("/1.1/statuses/update.json").with(:body => {:status => "Update"})).to have_been_made
126
126
  end
127
127
  it "encodes none of the body when uploaded media is present" do
128
- stub_post("/1.1/statuses/update_with_media.json").to_return(:body => fixture("status_with_media.json"), :headers => {:content_type => "application/json; charset=utf-8"})
128
+ stub_post("/1.1/statuses/update_with_media.json")
129
129
  subject.update_with_media("Update", fixture("pbjt.gif"))
130
130
  expect(a_post("/1.1/statuses/update_with_media.json")).to have_been_made
131
131
  end
@@ -64,6 +64,30 @@ describe Twitter do
64
64
  expect(Twitter.instance_variable_get(:"@#{key}")).to eq key
65
65
  end
66
66
  end
67
+
68
+ context "when invalid credentials are provided" do
69
+ it "raises a ConfigurationError exception" do
70
+ expect {
71
+ Twitter.configure do |config|
72
+ config.consumer_key = [12345, 54321]
73
+ config.consumer_secret = 'valid_data'
74
+ end
75
+ }.to raise_exception(Twitter::Error::ConfigurationError)
76
+ end
77
+ end
78
+
79
+ context "when no credentials are provided" do
80
+ it "does not raise an exception" do
81
+ expect {
82
+ Twitter.configure do |config|
83
+ config.consumer_key = nil
84
+ config.consumer_secret = nil
85
+ config.oauth_token = nil
86
+ config.oauth_token_secret = nil
87
+ end
88
+ }.to_not raise_exception(Twitter::Error::ConfigurationError)
89
+ end
90
+ end
67
91
  end
68
92
 
69
93
  describe ".credentials?" do
@@ -2,12 +2,11 @@
2
2
  require File.expand_path('../lib/twitter/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
- spec.add_dependency 'faraday', '~> 0.8'
6
- spec.add_dependency 'multi_json', '~> 1.3'
7
- spec.add_dependency 'simple_oauth', '~> 0.2'
5
+ spec.add_dependency 'faraday', ['~> 0.8', '< 0.10']
6
+ spec.add_dependency 'multi_json', ['~> 1.3']
7
+ spec.add_dependency 'simple_oauth', ['~> 0.2']
8
8
  spec.add_development_dependency 'kramdown'
9
9
  spec.add_development_dependency 'pry'
10
- spec.add_development_dependency 'pry-debugger'
11
10
  spec.add_development_dependency 'simplecov'
12
11
  spec.authors = ["John Nunemaker", "Wynn Netherland", "Erik Michaels-Ober", "Steve Richert"]
13
12
  spec.description = %q{A Ruby interface to the Twitter API.}
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: twitter
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 4.4.2
5
+ version: 4.4.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - John Nunemaker
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2012-12-20 00:00:00.000000000 Z
15
+ date: 2013-01-06 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  version_requirements: !ruby/object:Gem::Requirement
@@ -20,6 +20,9 @@ dependencies:
20
20
  - - ~>
21
21
  - !ruby/object:Gem::Version
22
22
  version: '0.8'
23
+ - - <
24
+ - !ruby/object:Gem::Version
25
+ version: '0.10'
23
26
  none: false
24
27
  name: faraday
25
28
  type: :runtime
@@ -29,6 +32,9 @@ dependencies:
29
32
  - - ~>
30
33
  - !ruby/object:Gem::Version
31
34
  version: '0.8'
35
+ - - <
36
+ - !ruby/object:Gem::Version
37
+ version: '0.10'
32
38
  none: false
33
39
  - !ruby/object:Gem::Dependency
34
40
  version_requirements: !ruby/object:Gem::Requirement
@@ -94,22 +100,6 @@ dependencies:
94
100
  - !ruby/object:Gem::Version
95
101
  version: '0'
96
102
  none: false
97
- - !ruby/object:Gem::Dependency
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - ! '>='
101
- - !ruby/object:Gem::Version
102
- version: '0'
103
- none: false
104
- name: pry-debugger
105
- type: :development
106
- prerelease: false
107
- requirement: !ruby/object:Gem::Requirement
108
- requirements:
109
- - - ! '>='
110
- - !ruby/object:Gem::Version
111
- version: '0'
112
- none: false
113
103
  - !ruby/object:Gem::Dependency
114
104
  version_requirements: !ruby/object:Gem::Requirement
115
105
  requirements:
@@ -151,6 +141,7 @@ files:
151
141
  - lib/twitter/action/retweet.rb
152
142
  - lib/twitter/action/tweet.rb
153
143
  - lib/twitter/action_factory.rb
144
+ - lib/twitter/api/arguments.rb
154
145
  - lib/twitter/api/direct_messages.rb
155
146
  - lib/twitter/api/favorites.rb
156
147
  - lib/twitter/api/friends_and_followers.rb
@@ -187,6 +178,7 @@ files:
187
178
  - lib/twitter/error/bad_gateway.rb
188
179
  - lib/twitter/error/bad_request.rb
189
180
  - lib/twitter/error/client_error.rb
181
+ - lib/twitter/error/configuration_error.rb
190
182
  - lib/twitter/error/decode_error.rb
191
183
  - lib/twitter/error/forbidden.rb
192
184
  - lib/twitter/error/gateway_timeout.rb
@@ -235,7 +227,6 @@ files:
235
227
  - lib/twitter.rb
236
228
  - spec/fixtures/about_me.json
237
229
  - spec/fixtures/activity_summary.json
238
- - spec/fixtures/all.json
239
230
  - spec/fixtures/already_favorited.json
240
231
  - spec/fixtures/already_retweeted.json
241
232
  - spec/fixtures/bad_gateway.json
@@ -244,13 +235,10 @@ files:
244
235
  - spec/fixtures/category.json
245
236
  - spec/fixtures/configuration.json
246
237
  - spec/fixtures/contributees.json
247
- - spec/fixtures/contributors.json
248
238
  - spec/fixtures/direct_message.json
249
239
  - spec/fixtures/direct_messages.json
250
240
  - spec/fixtures/empty.json
251
241
  - spec/fixtures/end_session.json
252
- - spec/fixtures/enhance_your_calm.text
253
- - spec/fixtures/favorites.json
254
242
  - spec/fixtures/followers_list.json
255
243
  - spec/fixtures/followers_list2.json
256
244
  - spec/fixtures/following.json
@@ -261,7 +249,6 @@ files:
261
249
  - spec/fixtures/ids.json
262
250
  - spec/fixtures/ids_list.json
263
251
  - spec/fixtures/ids_list2.json
264
- - spec/fixtures/image_facets.json
265
252
  - spec/fixtures/internal_server_error.json
266
253
  - spec/fixtures/languages.json
267
254
  - spec/fixtures/list.json
@@ -269,7 +256,6 @@ files:
269
256
  - spec/fixtures/locations.json
270
257
  - spec/fixtures/matching_trends.json
271
258
  - spec/fixtures/me.jpeg
272
- - spec/fixtures/media_timeline.json
273
259
  - spec/fixtures/members.json
274
260
  - spec/fixtures/memberships.json
275
261
  - spec/fixtures/memberships2.json
@@ -284,14 +270,9 @@ files:
284
270
  - spec/fixtures/places.json
285
271
  - spec/fixtures/privacy.json
286
272
  - spec/fixtures/profile_banner.json
287
- - spec/fixtures/profile_image.text
288
273
  - spec/fixtures/rate_limit_status.json
289
- - spec/fixtures/recommendations.json
290
- - spec/fixtures/related_results.json
291
274
  - spec/fixtures/resolve.json
292
275
  - spec/fixtures/retweet.json
293
- - spec/fixtures/retweeted_status.json
294
- - spec/fixtures/retweeters_of.json
295
276
  - spec/fixtures/retweets.json
296
277
  - spec/fixtures/saved_search.json
297
278
  - spec/fixtures/saved_searches.json
@@ -301,7 +282,6 @@ files:
301
282
  - spec/fixtures/settings.json
302
283
  - spec/fixtures/sferik.json
303
284
  - spec/fixtures/status.json
304
- - spec/fixtures/status_with_media.json
305
285
  - spec/fixtures/statuses.json
306
286
  - spec/fixtures/subscriptions.json
307
287
  - spec/fixtures/subscriptions2.json
@@ -309,9 +289,6 @@ files:
309
289
  - spec/fixtures/tos.json
310
290
  - spec/fixtures/totals.json
311
291
  - spec/fixtures/trends.json
312
- - spec/fixtures/trends_current.json
313
- - spec/fixtures/trends_daily.json
314
- - spec/fixtures/trends_weekly.json
315
292
  - spec/fixtures/unauthorized.json
316
293
  - spec/fixtures/user_search.json
317
294
  - spec/fixtures/user_timeline.json
@@ -406,7 +383,6 @@ summary: A Ruby interface to the Twitter API.
406
383
  test_files:
407
384
  - spec/fixtures/about_me.json
408
385
  - spec/fixtures/activity_summary.json
409
- - spec/fixtures/all.json
410
386
  - spec/fixtures/already_favorited.json
411
387
  - spec/fixtures/already_retweeted.json
412
388
  - spec/fixtures/bad_gateway.json
@@ -415,13 +391,10 @@ test_files:
415
391
  - spec/fixtures/category.json
416
392
  - spec/fixtures/configuration.json
417
393
  - spec/fixtures/contributees.json
418
- - spec/fixtures/contributors.json
419
394
  - spec/fixtures/direct_message.json
420
395
  - spec/fixtures/direct_messages.json
421
396
  - spec/fixtures/empty.json
422
397
  - spec/fixtures/end_session.json
423
- - spec/fixtures/enhance_your_calm.text
424
- - spec/fixtures/favorites.json
425
398
  - spec/fixtures/followers_list.json
426
399
  - spec/fixtures/followers_list2.json
427
400
  - spec/fixtures/following.json
@@ -432,7 +405,6 @@ test_files:
432
405
  - spec/fixtures/ids.json
433
406
  - spec/fixtures/ids_list.json
434
407
  - spec/fixtures/ids_list2.json
435
- - spec/fixtures/image_facets.json
436
408
  - spec/fixtures/internal_server_error.json
437
409
  - spec/fixtures/languages.json
438
410
  - spec/fixtures/list.json
@@ -440,7 +412,6 @@ test_files:
440
412
  - spec/fixtures/locations.json
441
413
  - spec/fixtures/matching_trends.json
442
414
  - spec/fixtures/me.jpeg
443
- - spec/fixtures/media_timeline.json
444
415
  - spec/fixtures/members.json
445
416
  - spec/fixtures/memberships.json
446
417
  - spec/fixtures/memberships2.json
@@ -455,14 +426,9 @@ test_files:
455
426
  - spec/fixtures/places.json
456
427
  - spec/fixtures/privacy.json
457
428
  - spec/fixtures/profile_banner.json
458
- - spec/fixtures/profile_image.text
459
429
  - spec/fixtures/rate_limit_status.json
460
- - spec/fixtures/recommendations.json
461
- - spec/fixtures/related_results.json
462
430
  - spec/fixtures/resolve.json
463
431
  - spec/fixtures/retweet.json
464
- - spec/fixtures/retweeted_status.json
465
- - spec/fixtures/retweeters_of.json
466
432
  - spec/fixtures/retweets.json
467
433
  - spec/fixtures/saved_search.json
468
434
  - spec/fixtures/saved_searches.json
@@ -472,7 +438,6 @@ test_files:
472
438
  - spec/fixtures/settings.json
473
439
  - spec/fixtures/sferik.json
474
440
  - spec/fixtures/status.json
475
- - spec/fixtures/status_with_media.json
476
441
  - spec/fixtures/statuses.json
477
442
  - spec/fixtures/subscriptions.json
478
443
  - spec/fixtures/subscriptions2.json
@@ -480,9 +445,6 @@ test_files:
480
445
  - spec/fixtures/tos.json
481
446
  - spec/fixtures/totals.json
482
447
  - spec/fixtures/trends.json
483
- - spec/fixtures/trends_current.json
484
- - spec/fixtures/trends_daily.json
485
- - spec/fixtures/trends_weekly.json
486
448
  - spec/fixtures/unauthorized.json
487
449
  - spec/fixtures/user_search.json
488
450
  - spec/fixtures/user_timeline.json
@@ -1 +0,0 @@
1
- [{"id_str":"1129440","created_at":"Fri Oct 30 14:39:25 +0000 2009","subscriber_count":36,"slug":"rubyists","name":"Rubyists","following":true,"full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/61741268\/twitter-small.png","protected":false,"id_str":"14100886","follow_request_sent":false,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":2576,"profile_background_color":"efefef","name":"Wynn Netherland","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1553476111\/logo-wynning_normal.png","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-21600,"profile_sidebar_fill_color":"dddddd","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1553476111\/logo-wynning_normal.png","description":"Christian husband and father. CTO at @PureCharity. Co-host of @changelogshow. Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","listed_count":303,"time_zone":"Central Time (US & Canada)","profile_sidebar_border_color":"cccccc","screen_name":"pengwynn","followers_count":4343,"location":"Dallas, TX","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"666666","url":"http:\/\/wynnnetherland.com","default_profile_image":false,"statuses_count":5290,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/61741268\/twitter-small.png","favourites_count":87,"id":14100886,"profile_link_color":"35abe9"},"uri":"\/pengwynn\/rubyists","member_count":492,"id":1129440},{"id_str":"574","created_at":"Wed Sep 23 01:18:01 +0000 2009","subscriber_count":76725,"slug":"team","name":"Team","following":true,"full_name":"@twitter\/team","description":"","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","protected":false,"id_str":"783214","follow_request_sent":false,"created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":677,"profile_background_color":"ACDED6","name":"Twitter","display_url":null,"following":true,"profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png","expanded_url":null,"default_profile":false,"show_all_inline_media":true,"contributors_enabled":true,"verified":true,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"F6F6F6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124040897\/at-twitter_normal.png","description":"Always wondering what's happening. ","listed_count":65312,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"EEEEEE","screen_name":"twitter","followers_count":6354255,"location":"San Francisco, CA","geo_enabled":true,"profile_use_background_image":true,"entities":{"urls":[],"hashtags":[],"user_mentions":[]},"lang":"en","profile_text_color":"333333","url":"http:\/\/blog.twitter.com\/","default_profile_image":false,"statuses_count":1213,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":16,"id":783214,"profile_link_color":"038543"},"uri":"\/twitter\/team","member_count":623,"id":574},{"id_str":"33851813","created_at":"Mon Jan 17 06:53:51 +0000 2011","subscriber_count":0,"slug":"faves","name":"faves","following":false,"full_name":"@sferik\/faves","description":"","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/faves","member_count":21,"id":33851813},{"id_str":"21718825","created_at":"Tue Sep 14 21:46:56 +0000 2010","subscriber_count":5,"slug":"code-for-america","name":"code for america","following":false,"full_name":"@sferik\/code-for-america","description":"Code for America","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/code-for-america","member_count":26,"id":21718825},{"id_str":"20817728","created_at":"Sat Sep 04 00:46:03 +0000 2010","subscriber_count":0,"slug":"interesting","name":"interesting","following":false,"full_name":"@sferik\/interesting","description":"People who are interesting.","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/interesting","member_count":5,"id":20817728},{"id_str":"20712515","created_at":"Thu Sep 02 18:29:24 +0000 2010","subscriber_count":0,"slug":"recommended","name":"recommended","following":false,"full_name":"@sferik\/recommended","description":"Users recommended to me by Twitter","mode":"private","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/recommended","member_count":84,"id":20712515},{"id_str":"8863586","created_at":"Mon Mar 15 06:10:13 +0000 2010","subscriber_count":1,"slug":"presidents","name":"presidents","following":false,"full_name":"@sferik\/presidents","description":"Presidents of the United States of America","mode":"public","user":{"is_translator":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","protected":false,"id_str":"7505382","follow_request_sent":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":201,"profile_background_color":"000000","name":"Erik Michaels-Ober","following":false,"profile_background_tile":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","show_all_inline_media":true,"contributors_enabled":false,"verified":false,"notifications":false,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","listed_count":93,"time_zone":"Pacific Time (US & Canada)","profile_sidebar_border_color":"C0DEED","screen_name":"sferik","followers_count":1727,"location":"San Francisco","default_profile":false,"geo_enabled":true,"profile_use_background_image":true,"lang":"en","profile_text_color":"333333","url":"https:\/\/github.com\/sferik","default_profile_image":false,"statuses_count":5299,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":1911,"id":7505382,"profile_link_color":"0084B4"},"uri":"\/sferik\/presidents","member_count":2,"id":8863586}]
@@ -1 +0,0 @@
1
- [{"profile_sidebar_fill_color":"C0DFEC","protected":false,"id_str":"13","notifications":false,"profile_background_tile":false,"screen_name":"biz","name":"Biz Stone","display_url":"bizstone.com","listed_count":15392,"location":"San Francisco, CA","expanded_url":"http:\/\/www.bizstone.com","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"Co-founder of Twitter, Inc.","profile_sidebar_border_color":"a8c7f7","url":"http:\/\/t.co\/bdlNWgB","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110109632814518272","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/flickr.com\/services\/twitter\/\" rel=\"nofollow\"\u003EFlickr\u003C\/a\u003E","created_at":"Sat Sep 03 21:59:16 +0000 2011","contributors":null,"retweeted":false,"retweet_count":4,"id":110109632814518272,"place":null,"text":"Cavallo Point Dandelion http:\/\/t.co\/nv0gcpL"},"default_profile_image":false,"statuses_count":4466,"profile_use_background_image":true,"verified":true,"favourites_count":869,"friends_count":530,"profile_background_color":"022330","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","created_at":"Tue Mar 21 20:51:43 +0000 2006","followers_count":1765283,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","id":13,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/513819852\/biz_stone_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/513819852\/biz_stone_normal.jpg"},{"profile_sidebar_fill_color":"454A43","protected":false,"id_str":"20","notifications":false,"profile_background_tile":true,"screen_name":"ev","name":"Evan Williams","display_url":"evhead.com","listed_count":17223,"location":"San Francisco, CA, US","expanded_url":"http:\/\/evhead.com","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"A8AB9A","description":"Farm boy from Nebraska. Husband and father. Co-founder of Twitter. Partner at @ObviousCorp","profile_sidebar_border_color":"E23912","url":"http:\/\/t.co\/C2HZiQ4","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109843207965261824","in_reply_to_status_id":109841684006838272,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":"109841684006838272","geo":null,"in_reply_to_screen_name":"chrissyteigen","in_reply_to_user_id_str":"39364684","coordinates":null,"in_reply_to_user_id":39364684,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 04:20:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":3,"id":109843207965261824,"place":null,"text":"@chrissyteigen Well, at least you didn't want fried chicken and potato salad. Just saw this today: http:\/\/t.co\/hO4eIrl"},"default_profile_image":false,"statuses_count":6316,"profile_use_background_image":true,"verified":true,"favourites_count":1852,"friends_count":1346,"profile_background_color":"D4BEA7","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/313094643\/COLOURlovers.com-Indecent_Exposure-.png","created_at":"Tue Mar 21 21:02:31 +0000 2006","followers_count":1386646,"entities":{"user_mentions":[{"name":"Obvious Corporation","screen_name":"obviouscorp","id_str":"322904764","indices":[78,90],"id":322904764}],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/313094643\/COLOURlovers.com-Indecent_Exposure-.png","id":20,"profile_text_color":"C3B7A1","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1275356729\/evedit0xr_2__1__normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1275356729\/evedit0xr_2__1__normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"822571","notifications":false,"profile_background_tile":false,"screen_name":"SG","name":"Sean Garrett","display_url":null,"listed_count":403,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0000ff","description":"Ephemeral whinging aspects. Twitter, Inc. comms.","profile_sidebar_border_color":"87bc44","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110015226308591616","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 15:44:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110015226308591616,"place":null,"text":"Looking forward to the quirky infographic on the growth of quirky infigraphics."},"default_profile_image":false,"default_profile":false,"statuses_count":3436,"profile_use_background_image":true,"verified":false,"favourites_count":94,"friends_count":961,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/25315274\/07-05-2003__44.jpg","created_at":"Thu Mar 08 18:38:33 +0000 2007","followers_count":15629,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/25315274\/07-05-2003__44.jpg","id":822571,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1041950033\/capt.80e1b2df11e243c0b9c78f70a49a8394-80e1b2df11e243c0b9c78f70a49a8394-0_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1041950033\/capt.80e1b2df11e243c0b9c78f70a49a8394-80e1b2df11e243c0b9c78f70a49a8394-0_normal.jpg"},{"profile_sidebar_fill_color":"FFF7CC","protected":false,"id_str":"7694352","notifications":false,"profile_background_tile":true,"screen_name":"cpen","name":"Carolyn Penner","display_url":"cpen.posterous.com","listed_count":296,"location":"San Francisco","expanded_url":"http:\/\/cpen.posterous.com\/","show_all_inline_media":true,"contributors_enabled":true,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"3851de","description":"twitter comms. mobile geek. laughs easily. talks loudly. and, according to @sg, the she in that's what she said","profile_sidebar_border_color":"F2E195","url":"http:\/\/t.co\/sWhRERk","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110109700942598144","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 21:59:33 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110109700942598144,"place":null,"text":"Lots of people in white today. Like, all white. #LaborDayCountdown"},"default_profile_image":false,"statuses_count":6231,"profile_use_background_image":true,"verified":false,"favourites_count":446,"friends_count":384,"profile_background_color":"BADFCD","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/269139380\/sunset_benches.jpg","created_at":"Tue Jul 24 20:43:20 +0000 2007","followers_count":8505,"entities":{"user_mentions":[{"name":"Sean Garrett","screen_name":"SG","id_str":"822571","indices":[75,78],"id":822571}],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/269139380\/sunset_benches.jpg","id":7694352,"profile_text_color":"0C3E53","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1054499775\/profile2_normal.png","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1054499775\/profile2_normal.png"},{"default_profile":true,"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"14013722","notifications":null,"profile_background_tile":false,"screen_name":"mgrooves","name":"Matt Graves","display_url":null,"listed_count":186,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":true,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"twitter comms. lover of loud music and louder laughs.","profile_sidebar_border_color":"C0DEED","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"108792113889689600","in_reply_to_status_id":108715659239759872,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"108715659239759872","geo":{"type":"Point","coordinates":[39.47795653,-119.82139879]},"in_reply_to_screen_name":"willotoons","in_reply_to_user_id_str":"772386","coordinates":{"type":"Point","coordinates":[-119.82139879,39.47795653]},"in_reply_to_user_id":772386,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Wed Aug 31 06:43:55 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":108792113889689600,"place":{"name":"Reno","attributes":{},"full_name":"Reno, NV","url":"http:\/\/api.twitter.com\/1\/geo\/id\/4b25aded08900fd8.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-119.943728,39.416409],[-119.723736,39.416409],[-119.723736,39.693608],[-119.943728,39.693608]]]},"place_type":"city","country":"United States","id":"4b25aded08900fd8"},"text":"@willotoons @sfbg Good to know where you stand on the boobs v. butts issue. #important"},"default_profile_image":false,"statuses_count":3805,"profile_use_background_image":true,"verified":false,"favourites_count":193,"friends_count":857,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Tue Feb 26 17:06:58 +0000 2008","followers_count":4613,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":14013722,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg"},{"profile_sidebar_fill_color":"F6F6F6","protected":false,"id_str":"16259374","notifications":false,"profile_background_tile":false,"screen_name":"jodiolson","name":"jodiolson","display_url":null,"listed_count":77,"location":"San Francisco","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"038543","description":"Twitter PR, mother, cook and aspiring gardener. Authentic but unverified.","profile_sidebar_border_color":"EEEEEE","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109334062912638976","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Thu Sep 01 18:37:26 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":109334062912638976,"place":null,"text":"A note from @jack to Twitter developers: http:\/\/t.co\/rWZ2TpE"},"default_profile_image":false,"default_profile":false,"statuses_count":1395,"profile_use_background_image":true,"verified":false,"favourites_count":14,"friends_count":596,"profile_background_color":"ACDED6","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","created_at":"Fri Sep 12 17:26:39 +0000 2008","followers_count":2907,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","id":16259374,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/125848090\/JO_lisbon_normal_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/125848090\/JO_lisbon_normal_normal.jpg"},{"follow_request_sent":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/189647945\/xd9f362b4c1859de155db40b6a282d8d.jpg","protected":false,"notifications":null,"profile_text_color":"8C94A2","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1224057555\/photo-31_normal.jpeg","screen_name":"jennadawn","name":"jenna","profile_sidebar_fill_color":"424c55","location":"San Francisco ","id_str":"16739704","following":null,"profile_background_tile":false,"utc_offset":-28800,"description":"An Alaskan realizing the merit of urbanism via SF. Those who think idealism is naive only care to neglect. ","display_url":null,"listed_count":842,"url":null,"expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"geo_enabled":true,"profile_link_color":"8cb2bd","status":{"contributors":null,"retweeted":false,"retweet_count":0,"id_str":"109474557777281024","in_reply_to_status_id":null,"truncated":false,"geo":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Fri Sep 02 03:55:44 +0000 2011","in_reply_to_screen_name":null,"id":109474557777281024,"in_reply_to_user_id_str":null,"place":null,"in_reply_to_user_id":null,"text":"My special friends. http:\/\/t.co\/5JqNrmC"},"profile_sidebar_border_color":"8cb2bd","time_zone":"Pacific Time (US & Canada)","default_profile_image":false,"statuses_count":1609,"profile_use_background_image":true,"created_at":"Tue Oct 14 15:31:55 +0000 2008","entities":{"hashtags":[],"user_mentions":[],"urls":[]},"lang":"en","verified":false,"favourites_count":43,"friends_count":489,"profile_background_color":"ffffff","id":16739704,"is_translator":true,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/189647945\/xd9f362b4c1859de155db40b6a282d8d.jpg","followers_count":308123,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1224057555\/photo-31_normal.jpeg"},{"profile_sidebar_fill_color":"FFC36E","protected":false,"id_str":"145727626","notifications":null,"profile_background_tile":true,"screen_name":"juliedelcarlo","name":"Julie Del Carlo","display_url":null,"listed_count":46,"location":"","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"DD4969","description":"","profile_sidebar_border_color":"F8F2E6","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"108622547423199232","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Tue Aug 30 19:30:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":108622547423199232,"place":null,"text":"A very happy birthday to @che! #francisco http:\/\/t.co\/LUjIvI6"},"default_profile_image":false,"default_profile":false,"statuses_count":402,"profile_use_background_image":true,"verified":false,"favourites_count":8,"friends_count":586,"profile_background_color":"FBC2CE","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/319117928\/xbad02b8c30148db3a7d53570a0acdbf.png","created_at":"Wed May 19 18:32:50 +0000 2010","followers_count":3823,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/319117928\/xbad02b8c30148db3a7d53570a0acdbf.png","id":145727626,"profile_text_color":"5A4A37","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1441125224\/me_in_nyc_normal","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1441125224\/me_in_nyc_normal"},{"profile_sidebar_fill_color":"F7F9F9","protected":false,"id_str":"22824309","notifications":false,"profile_background_tile":true,"screen_name":"RachaelRad","name":"Rachael Horwitz","display_url":null,"listed_count":38,"location":"San Francisco, CA","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"000807","description":"Twitter Communications. Short person. Loud voice. More than just a pizzabagel. ","profile_sidebar_border_color":"EBD98D","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110116509141045249","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003ETwitter for Android\u003C\/a\u003E","created_at":"Sat Sep 03 22:26:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110116509141045249,"place":null,"text":"Greetings from Oregon! http:\/\/t.co\/slpi8xr"},"default_profile_image":false,"statuses_count":2325,"profile_use_background_image":true,"default_profile":false,"verified":false,"favourites_count":51,"friends_count":682,"profile_background_color":"665147","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/315104167\/x9d3c16ade13b57b2abe466f3b154311.jpg","created_at":"Wed Mar 04 19:57:26 +0000 2009","followers_count":869,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/315104167\/x9d3c16ade13b57b2abe466f3b154311.jpg","id":22824309,"profile_text_color":"090700","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1408115265\/186227_587309531_8155668_n_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1408115265\/186227_587309531_8155668_n_normal.jpg"},{"profile_sidebar_fill_color":"fdfcfc","protected":false,"id_str":"3446291","notifications":null,"profile_background_tile":true,"screen_name":"rbremer","name":"Rachel Bremer","display_url":null,"listed_count":36,"location":"London","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":0,"profile_link_color":"0000ff","description":"European communications manager for Twitter. That's enough for now.","profile_sidebar_border_color":"e6e9e2","url":null,"time_zone":"London","status":{"id_str":"109924107214258176","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 09:42:04 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":109924107214258176,"place":null,"text":"On our way to Burghley for a day of horsey stuff..."},"default_profile_image":false,"statuses_count":2556,"profile_use_background_image":true,"verified":false,"favourites_count":31,"friends_count":557,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/4036889\/Twitter.jpg","created_at":"Wed Apr 04 18:09:44 +0000 2007","followers_count":1666,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile":false,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4036889\/Twitter.jpg","id":3446291,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370853870\/RYB_headshot_sm_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1370853870\/RYB_headshot_sm_normal.jpg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"14769591","notifications":false,"profile_background_tile":true,"screen_name":"foxycar","name":"Lynn Fox","display_url":null,"listed_count":198,"location":"","expanded_url":null,"show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"Twitter Comms. OH'ing myself.","default_profile":false,"profile_sidebar_border_color":"BDDCAD","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110023646487117824","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 16:17:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110023646487117824,"place":null,"text":"Just showed \"Who's on first?\" to the boys. Classic."},"default_profile_image":false,"statuses_count":4058,"profile_use_background_image":true,"verified":false,"favourites_count":44,"friends_count":969,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/143745093\/Photo_102.jpg","created_at":"Wed May 14 05:26:31 +0000 2008","followers_count":2702,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/143745093\/Photo_102.jpg","id":14769591,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1134096793\/bio_photo_small_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1134096793\/bio_photo_small_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"14589956","notifications":false,"profile_background_tile":true,"screen_name":"kh","name":"kristen","display_url":"about.me\/kristenhawley","listed_count":57,"location":"San Francisco","expanded_url":"http:\/\/about.me\/kristenhawley","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"B21515","description":"I'm a fun girl! Also, communications at Twitter","default_profile":false,"profile_sidebar_border_color":"2DA530","url":"http:\/\/t.co\/B6brkVp","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110115169379684353","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":{"type":"Point","coordinates":[38.47005683,-123.01459763]},"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":{"type":"Point","coordinates":[-123.01459763,38.47005683]},"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 22:21:16 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110115169379684353,"place":{"name":"Monte Rio","attributes":{},"full_name":"Monte Rio, CA","url":"http:\/\/api.twitter.com\/1\/geo\/id\/aa352d4b3a8983c0.json","country_code":"US","bounding_box":{"type":"Polygon","coordinates":[[[-123.03198,38.455777],[-122.991321,38.455777],[-122.991321,38.476978],[-123.03198,38.476978]]]},"place_type":"city","country":"United States","id":"aa352d4b3a8983c0"},"text":"Happy where I am, happy where I am going."},"default_profile_image":false,"statuses_count":3946,"profile_use_background_image":true,"verified":false,"favourites_count":210,"friends_count":230,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/8116121\/Picture_1.png","created_at":"Tue Apr 29 20:06:27 +0000 2008","followers_count":1825,"entities":{"user_mentions":[],"urls":[],"hashtags":[]},"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/8116121\/Picture_1.png","id":14589956,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1352279358\/twitterpic_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1352279358\/twitterpic_normal.jpg"}]
@@ -1,11 +0,0 @@
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
-
@@ -1 +0,0 @@
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?"}]
@@ -1 +0,0 @@
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"}]
@@ -1 +0,0 @@
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"}]
@@ -1,24 +0,0 @@
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>
@@ -1 +0,0 @@
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"}]
@@ -1 +0,0 @@
1
- [{"groupName":"TweetsWithConversation","resultType":"Tweet","results":[{"score":1.0,"annotations":{"ConversationRole":"Ancestor"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":10452222,"location":"Walifornia","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","profile_background_color":"FFFFFF","statuses_count":7718,"utc_offset":3600,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","name":"Laurent Sansonetti","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"lrz","friends_count":196,"profile_link_color":"6E6E6E","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":233,"profile_text_color":"000000","description":"Belgian software hacker, husband, dad and cat wrangler. Founder of @HipByte. Creator and developer of @RubyMotion and @MacRuby. Former Apple employee (7 years).","followers_count":2719,"url":"http:\/\/chopine.be","is_translator":false,"created_at":"Wed Nov 21 21:48:30 +0000 2007","profile_sidebar_border_color":"181A1E","contributors_enabled":false,"verified":false,"time_zone":"Paris","geo_enabled":true,"id_str":"10452222","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"EBEBEB","favourites_count":95},"retweeted":false,"in_reply_to_status_id":null,"in_reply_to_user_id":null,"truncated":false,"in_reply_to_status_id_str":null,"retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"233293738510802944","geo":null,"id":233293738510802944,"created_at":"Wed Aug 08 20:08:56 +0000 2012","in_reply_to_user_id_str":null,"place":null,"in_reply_to_screen_name":null,"favorited":false,"text":"Upcoming trips this year\u2026 Berlin, Aarhus, New Delhi, New York, Tokyo. Time to get a frequent flyer card?"}},{"score":1.0,"annotations":{"ConversationRole":"Ancestor"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":18713,"location":"","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/357750272\/small_3_normal.png","profile_background_color":"E5E9EB","statuses_count":22966,"utc_offset":-28800,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/357750272\/small_3_normal.png","name":"Alex Payne","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"al3x","friends_count":318,"profile_link_color":"336699","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":2265,"profile_text_color":"232323","description":"Programmer. Writer. Secular Humanist.","followers_count":36241,"url":"http:\/\/al3x.net","is_translator":false,"created_at":"Thu Nov 23 19:29:11 +0000 2006","profile_sidebar_border_color":"333333","contributors_enabled":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"id_str":"18713","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"C3CBD0","favourites_count":4515},"retweeted":false,"in_reply_to_status_id":233293738510802944,"in_reply_to_user_id":10452222,"truncated":false,"in_reply_to_status_id_str":"233293738510802944","retweet_count":0,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"233331068873367552","geo":null,"id":233331068873367552,"created_at":"Wed Aug 08 22:37:16 +0000 2012","in_reply_to_user_id_str":"10452222","place":null,"in_reply_to_screen_name":"lrz","favorited":false,"text":"@lrz When will you be in Berlin? Headed there myself before long."}},{"score":1.0,"annotations":{"ConversationRole":"Descendant"},"kind":"Tweet","value":{"contributors":null,"coordinates":null,"user":{"show_all_inline_media":true,"id":10452222,"location":"Walifornia","follow_request_sent":null,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","profile_background_color":"FFFFFF","statuses_count":7718,"utc_offset":3600,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1056235466\/Screen_Shot_2010-07-06_at_1.41.21_PM_normal.png","name":"Laurent Sansonetti","default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","screen_name":"lrz","friends_count":196,"profile_link_color":"6E6E6E","protected":false,"notifications":null,"profile_use_background_image":false,"lang":"en","listed_count":233,"profile_text_color":"000000","description":"Belgian software hacker, husband, dad and cat wrangler. Founder of @HipByte. Creator and developer of @RubyMotion and @MacRuby. Former Apple employee (7 years).","followers_count":2719,"url":"http:\/\/chopine.be","is_translator":false,"created_at":"Wed Nov 21 21:48:30 +0000 2007","profile_sidebar_border_color":"181A1E","contributors_enabled":false,"verified":false,"time_zone":"Paris","geo_enabled":true,"id_str":"10452222","default_profile_image":false,"profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","following":null,"profile_sidebar_fill_color":"EBEBEB","favourites_count":95},"retweeted":false,"in_reply_to_status_id":233338791128096768,"in_reply_to_user_id":7505382,"truncated":false,"in_reply_to_status_id_str":"233338791128096768","retweet_count":0,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"233339564763275264","geo":null,"id":233339564763275264,"created_at":"Wed Aug 08 23:11:02 +0000 2012","in_reply_to_user_id_str":"7505382","place":null,"in_reply_to_screen_name":"sferik","favorited":false,"text":"@sferik @al3x @eurucamp awesome, let's grab beers &amp; kebabs :)"}}],"score":1.0,"annotations":{"FromUser":"sferik"}}]
@@ -1 +0,0 @@
1
- {"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"coordinates":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"truncated":true,"id_str":"200155886403067904","contributors":null,"retweeted_status":{"in_reply_to_user_id_str":null,"in_reply_to_status_id":null,"coordinates":null,"in_reply_to_screen_name":null,"in_reply_to_user_id":null,"truncated":false,"id_str":"199986035554394112","contributors":null,"user":{"is_translator":false,"id":48156007,"profile_link_color":"2FC2EF","time_zone":"Brasilia","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1891390827\/logo-plataformatec-icone-com-alpha_normal.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","friends_count":18,"id_str":"48156007","default_profile_image":false,"profile_use_background_image":false,"following":false,"favourites_count":6,"utc_offset":-10800,"profile_text_color":"666666","notifications":false,"name":"Plataformatec","profile_sidebar_border_color":"181A1E","screen_name":"plataformatec","url":"http:\/\/plataformatec.com.br","protected":false,"created_at":"Wed Jun 17 23:11:25 +0000 2009","statuses_count":244,"profile_background_tile":false,"default_profile":false,"profile_sidebar_fill_color":"252429","description":"We build tailored web and mobile applications for our customers.","contributors_enabled":false,"geo_enabled":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1891390827\/logo-plataformatec-icone-com-alpha_normal.png","location":"S\u00e3o Paulo, Brazil","followers_count":1230,"show_all_inline_media":false,"lang":"en","follow_request_sent":false,"profile_background_color":"1A1B1F","verified":false,"listed_count":81,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif"},"retweeted":false,"retweet_count":4,"source":"web","created_at":"Tue May 08 22:16:01 +0000 2012","in_reply_to_status_id_str":null,"place":null,"id":199986035554394112,"geo":null,"favorited":false,"text":"RSpec Formatter, Oracle and AR, RSpec Matchers, Solr Facets, Modular JS apps, JS Deferred: topics so far in today's Lightning Talks"},"user":{"is_translator":false,"id":10230812,"profile_link_color":"0084B4","time_zone":"Rome","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2156708631\/Cropped_normal.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","friends_count":218,"id_str":"10230812","default_profile_image":false,"profile_use_background_image":true,"following":true,"favourites_count":55,"utc_offset":3600,"profile_text_color":"333333","notifications":false,"name":"Jos\u00e9 Valim","profile_sidebar_border_color":"a8c7f7","screen_name":"josevalim","url":"http:\/\/plataformatec.com\/","protected":false,"created_at":"Tue Nov 13 23:23:25 +0000 2007","statuses_count":8133,"profile_background_tile":false,"default_profile":false,"profile_sidebar_fill_color":"C0DFEC","description":"@plataformatec founder, Open Source developer, Rails Core Team Member, Ruby Hero and creator of Elixir, code available at github.com\/josevalim","contributors_enabled":false,"geo_enabled":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2156708631\/Cropped_normal.png","location":"Krak\u00f3w, Poland","followers_count":6719,"show_all_inline_media":true,"lang":"en","follow_request_sent":false,"profile_background_color":"022330","verified":false,"listed_count":546,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png"},"retweeted":false,"retweet_count":4,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Wed May 09 09:30:56 +0000 2012","in_reply_to_status_id_str":null,"place":null,"id":200155886403067904,"geo":null,"favorited":false,"text":"RT @plataformatec: RSpec Formatter, Oracle and AR, RSpec Matchers, Solr Facets, Modular JS apps, JS Deferred: topics so far in today's L ..."}
@@ -1 +0,0 @@
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"}]
@@ -1,104 +0,0 @@
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
- }