twitter 4.4.2 → 4.4.3

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,4 +1,3 @@
1
- require 'twitter/core_ext/kernel'
2
1
  require 'twitter/error/identity_map_key_error'
3
2
 
4
3
  module Twitter
@@ -1,7 +1,12 @@
1
+ require 'forwardable'
2
+ require 'twitter/error/configuration_error'
3
+
1
4
  module Twitter
2
5
  module Configurable
6
+ extend Forwardable
3
7
  attr_writer :consumer_key, :consumer_secret, :oauth_token, :oauth_token_secret
4
8
  attr_accessor :endpoint, :connection_options, :identity_map, :middleware
9
+ def_delegator :options, :hash
5
10
 
6
11
  class << self
7
12
 
@@ -21,8 +26,12 @@ module Twitter
21
26
  end
22
27
 
23
28
  # Convenience method to allow configuration options to be set in a block
29
+ #
30
+ # @raise [Twitter::Error::ConfigurationError] Error is raised when supplied
31
+ # twitter credentials are not a String or Symbol.
24
32
  def configure
25
33
  yield self
34
+ validate_credential_type!
26
35
  self
27
36
  end
28
37
 
@@ -31,11 +40,6 @@ module Twitter
31
40
  credentials.values.all?
32
41
  end
33
42
 
34
- # @return [Fixnum]
35
- def cache_key
36
- options.hash
37
- end
38
-
39
43
  def reset!
40
44
  Twitter::Configurable.keys.each do |key|
41
45
  instance_variable_set(:"@#{key}", Twitter::Default.options[key])
@@ -61,5 +65,20 @@ module Twitter
61
65
  Hash[Twitter::Configurable.keys.map{|key| [key, instance_variable_get(:"@#{key}")]}]
62
66
  end
63
67
 
68
+ # Ensures that all credentials set during configuration are of a
69
+ # valid type. Valid types are String and Symbol.
70
+ #
71
+ # @raise [Twitter::Error::ConfigurationError] Error is raised when
72
+ # supplied twitter credentials are not a String or Symbol.
73
+ def validate_credential_type!
74
+ credentials.each do |credential, value|
75
+ next if value.nil?
76
+
77
+ unless value.is_a?(String) || value.is_a?(Symbol)
78
+ raise(Error::ConfigurationError, "Invalid #{credential} specified: #{value} must be a string or symbol.")
79
+ end
80
+ end
81
+ end
82
+
64
83
  end
65
84
  end
@@ -3,9 +3,4 @@ module Kernel
3
3
  # Returns the object's singleton class (exists in Ruby 1.9.2)
4
4
  def singleton_class; class << self; self; end; end unless method_defined?(:singleton_class)
5
5
 
6
- # class_eval on an object acts like singleton_class.class_eval.
7
- def class_eval(*args, &block)
8
- singleton_class.class_eval(*args, &block)
9
- end
10
-
11
6
  end
@@ -40,7 +40,7 @@ module Twitter
40
40
  item
41
41
  end
42
42
  end
43
- class_eval do
43
+ singleton_class.class_eval do
44
44
  alias_method(collection_name.to_sym, :collection)
45
45
  end
46
46
  end
@@ -1,4 +1,5 @@
1
1
  require 'faraday'
2
+ require 'faraday/request/multipart'
2
3
  require 'twitter/configurable'
3
4
  require 'twitter/error/client_error'
4
5
  require 'twitter/error/server_error'
@@ -13,12 +14,15 @@ module Twitter
13
14
  CONNECTION_OPTIONS = {
14
15
  :headers => {
15
16
  :accept => 'application/json',
16
- :user_agent => "Twitter Ruby Gem #{Twitter::Version}"
17
+ :user_agent => "Twitter Ruby Gem #{Twitter::Version}",
18
+ },
19
+ :request => {
20
+ :open_timeout => 5,
21
+ :timeout => 10,
22
+ },
23
+ :ssl => {
24
+ :verify => false
17
25
  },
18
- :open_timeout => 5,
19
- :raw => true,
20
- :ssl => {:verify => false},
21
- :timeout => 10,
22
26
  } unless defined? Twitter::Default::CONNECTION_OPTIONS
23
27
  IDENTITY_MAP = false unless defined? Twitter::Default::IDENTITY_MAP
24
28
  MIDDLEWARE = Faraday::Builder.new do |builder|
@@ -0,0 +1,8 @@
1
+ require 'twitter/error'
2
+
3
+ module Twitter
4
+ class Error
5
+ class ConfigurationError < ::ArgumentError
6
+ end
7
+ end
8
+ end
@@ -1,20 +1,23 @@
1
+ require 'forwardable'
1
2
  require 'twitter/creatable'
2
3
  require 'twitter/exceptable'
3
4
  require 'twitter/identity'
4
5
 
5
6
  module Twitter
6
7
  class Tweet < Twitter::Identity
8
+ extend Forwardable
7
9
  include Twitter::Creatable
8
10
  include Twitter::Exceptable
9
11
  attr_reader :favorited, :favoriters, :from_user_id, :from_user_name,
10
12
  :in_reply_to_screen_name, :in_reply_to_attrs_id, :in_reply_to_status_id,
11
- :in_reply_to_user_id, :iso_language_code, :profile_image_url,
12
- :profile_image_url_https, :repliers, :retweeted, :retweeters, :source,
13
- :text, :to_user, :to_user_id, :to_user_name, :truncated
13
+ :in_reply_to_user_id, :iso_language_code, :repliers, :retweeted,
14
+ :retweeters, :source, :text, :to_user, :to_user_id, :to_user_name,
15
+ :truncated
14
16
  alias in_reply_to_tweet_id in_reply_to_status_id
15
17
  alias favourited favorited
16
18
  alias favourited? favorited?
17
19
  alias favouriters favoriters
20
+ def_delegators :user, :profile_image_url, :profile_image_url_https
18
21
 
19
22
  # @return [Boolean]
20
23
  def entities?
@@ -2,7 +2,7 @@ module Twitter
2
2
  class Version
3
3
  MAJOR = 4 unless defined? Twitter::Version::MAJOR
4
4
  MINOR = 4 unless defined? Twitter::Version::MINOR
5
- PATCH = 2 unless defined? Twitter::Version::PATCH
5
+ PATCH = 3 unless defined? Twitter::Version::PATCH
6
6
  PRE = nil unless defined? Twitter::Version::PRE
7
7
 
8
8
  class << self
@@ -1 +1 @@
1
- [{"action":"mention","max_position":"1320765311071","min_position":"1320765311071","created_at":"Tue Nov 08 15:15:11 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:15:11 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133925537742729216","truncated":false,"id":133925537742729216,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I'm happy to document all the great work in Bundler 1.1 from @carllerche @hone02 @indirect @sferik wagenet and @wycats and many others!"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"}],"sources_size":1},{"action":"favorite","max_position":"1320705284779","min_position":"1320705284779","created_at":"Mon Nov 07 22:34:44 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"twitterapi","created_at":"Mon Nov 07 22:34:09 +0000 2011","retweeted":false,"in_reply_to_status_id":133640144317198338,"in_reply_to_status_id_str":"133640144317198338","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133673622358331392","truncated":false,"id":133673622358331392,"in_reply_to_user_id_str":"6253282","in_reply_to_user_id":6253282,"text":"@twitterapi good riddance! \/cc @episod"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"FA8459","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1624563418\/image_normal.jpg","screen_name":"episod","listed_count":286,"url":"http:\/\/t.co\/iiwkNTP","name":"Taylor Singletary","time_zone":"Pacific Time (US & Canada)","profile_background_color":"030103","expanded_url":"http:\/\/about.me\/taylorsingletary","follow_request_sent":false,"statuses_count":14689,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4858,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1624563418\/image_normal.jpg","description":"Reality Technician, Twitter API & platform team, synthesizer enthusiast, narrator in question. Whales all the way down.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Wed Mar 07 22:23:19 +0000 2007","friends_count":4638,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:47:12 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","id_str":"134024194206867458","truncated":false,"id":134024194206867458,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"And then everyone else on the email thread spontaneously caught aflame."},"profile_sidebar_border_color":"ADF1FC","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/345129955\/x05ef6d74efea85d14b911260eebb025.jpg","favourites_count":9152,"id_str":"819797","default_profile":false,"contributors_enabled":false,"profile_text_color":"947974","id":819797,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/taylorsingleta\u2026","lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/345129955\/x05ef6d74efea85d14b911260eebb025.jpg","location":"San Francisco, CA"}],"sources_size":1},{"action":"mention","max_position":"1320701426039","min_position":"1320701426039","created_at":"Mon Nov 07 21:30:26 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"},"retweet_count":0,"in_reply_to_screen_name":"anno","created_at":"Mon Nov 07 21:30:26 +0000 2011","retweeted":false,"in_reply_to_status_id":133656779140759552,"in_reply_to_status_id_str":"133656779140759552","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133657584489082882","truncated":false,"id":133657584489082882,"in_reply_to_user_id_str":"4618","in_reply_to_user_id":4618,"text":"@anno @sferik Thanks guys. Will be mashing http:\/\/t.co\/WqrKjF5z up with Twitter Bootstrap tonight."}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:10:27 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133999843784933376","truncated":false,"id":133999843784933376,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Developing HTML emails is like traveling 10 years back in time."},"default_profile":false,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"}],"sources_size":1},{"action":"follow","max_position":"1320699200179","min_position":"1320663942826","created_at":"Mon Nov 07 20:53:20 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"B40B43","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619686233\/moms18_1__normal.gif","screen_name":"MommyEntourage","listed_count":6,"url":"http:\/\/www.mommyentourage.blogspot.com","name":"Mommy Entourage","time_zone":"Eastern Time (US & Canada)","profile_background_color":"FF6699","follow_request_sent":false,"statuses_count":307,"profile_background_tile":true,"utc_offset":-18000,"followers_count":83,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1619686233\/moms18_1__normal.gif","description":"Mom of 2 who loves to be in the know of all things fun in Philly & beyond. Armed with coffee & chocolate; sometimes found knee-deep in play doh & glitter. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E5507E","default_profile_image":false,"verified":false,"created_at":"Fri Aug 05 21:26:31 +0000 2011","friends_count":123,"profile_sidebar_border_color":"CC3366","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme11\/bg.gif","favourites_count":0,"id_str":"349285093","contributors_enabled":false,"profile_text_color":"362720","id":349285093,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme11\/bg.gif","location":"Philadelphia, PA"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1618120966\/blackcattat2_normal.jpg","screen_name":"mrsrkfj","listed_count":17,"url":"http:\/\/mrsrkfj.blogspot.com","name":"mrsrkfj","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":null,"statuses_count":8143,"profile_background_tile":true,"utc_offset":-18000,"followers_count":507,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1618120966\/blackcattat2_normal.jpg","description":"Mahna, mahna. Views expressed here are solely my own.","following":null,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Aug 12 15:48:16 +0000 2008","friends_count":510,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 12:14:55 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.twentyfeet.com\" rel=\"nofollow\"\u003ETwentyFeet\u003C\/a\u003E","id_str":"133880172905635840","truncated":false,"id":133880172905635840,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"My week on twitter: 1 retweets received, 9 new followers, 24 mentions. Via: http:\/\/t.co\/4o34bGef"},"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/306086799\/mrsrkfj2.jpg","favourites_count":15,"id_str":"15823881","contributors_enabled":false,"profile_text_color":"333333","id":15823881,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/306086799\/mrsrkfj2.jpg","location":"Upper Darby"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1233379940\/179466_10150153007740761_503605760_8361901_1733217_n_normal.jpg","screen_name":"ZachAAbbott","listed_count":1,"url":null,"name":"Zach Abbott","time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":625,"profile_background_tile":false,"utc_offset":-21600,"followers_count":53,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1233379940\/179466_10150153007740761_503605760_8361901_1733217_n_normal.jpg","description":"Computer scientist, rubyist, grad student, and science enthusiast. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jan 16 03:29:24 +0000 2011","friends_count":176,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"238816780","contributors_enabled":false,"profile_text_color":"333333","id":238816780,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Iowa"},{"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1627500016\/Me_work_normal.jpg","screen_name":"Cathy_Short","listed_count":0,"url":null,"name":"Cathy Short","time_zone":"Pacific Time (US & Canada)","profile_background_color":"642D8B","follow_request_sent":false,"statuses_count":14,"profile_background_tile":true,"utc_offset":-28800,"followers_count":16,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1627500016\/Me_work_normal.jpg","description":"Technical Recruiter with 14yrs experience always looking to network and lend a helping hand","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"7AC3EE","default_profile_image":false,"verified":false,"created_at":"Mon Sep 26 18:44:43 +0000 2011","friends_count":155,"default_profile":false,"profile_sidebar_border_color":"65B0DA","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme10\/bg.gif","favourites_count":0,"id_str":"380487133","contributors_enabled":false,"profile_text_color":"3D1957","id":380487133,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme10\/bg.gif","location":"San Jose, CA"}],"sources_size":4},{"action":"reply","max_position":"1320687668601","min_position":"1320687668601","created_at":"Mon Nov 07 17:41:08 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:15:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366983218565120","truncated":false,"id":133366983218565120,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"That said, Alan Benjamin is a pretty good pseudonym. I might have to start using that."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","screen_name":"SeeBBen","listed_count":0,"url":"http:\/\/b-benjamin.tumblr.com","name":"Brittany Benjamin","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":28,"profile_background_tile":false,"utc_offset":-18000,"followers_count":13,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","description":"","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Sep 23 01:37:43 +0000 2009","friends_count":12,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"76521248","contributors_enabled":false,"profile_text_color":"333333","id":76521248,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 17:41:08 +0000 2011","retweeted":false,"in_reply_to_status_id":133366983218565120,"in_reply_to_status_id_str":"133366983218565120","source":"web","id_str":"133599881620242432","truncated":false,"id":133599881620242432,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik you have expressed interest in the benjamin clan..."}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","screen_name":"SeeBBen","listed_count":0,"url":"http:\/\/b-benjamin.tumblr.com","name":"Brittany Benjamin","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":28,"profile_background_tile":false,"utc_offset":-18000,"followers_count":13,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/430728073\/IMG_0056_1_normal.JPG","description":"","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Sep 23 01:37:43 +0000 2009","friends_count":12,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"76521248","contributors_enabled":false,"profile_text_color":"333333","id":76521248,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""}],"sources_size":1},{"action":"reply","max_position":"1320684449549","min_position":"1320684449549","created_at":"Mon Nov 07 16:47:29 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"qrush","created_at":"Mon Nov 07 16:46:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133586205219631105","truncated":false,"id":133586205219631105,"in_reply_to_user_id_str":"5743852","in_reply_to_user_id":5743852,"text":"@qrush Can you please merge this http:\/\/t.co\/8WGibtc2? I don't have write access to the rubygems\/contribute repo. \/cc @bryckbost @laserlemon"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 16:47:29 +0000 2011","retweeted":false,"in_reply_to_status_id":133586205219631105,"in_reply_to_status_id_str":"133586205219631105","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133586379933368321","truncated":false,"id":133586379933368321,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik Thanks!"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"339933","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478564593\/lemon_normal.png","screen_name":"laserlemon","listed_count":11,"url":"http:\/\/laserlemon.com","name":"Steve Richert","time_zone":"Eastern Time (US & Canada)","profile_background_color":"efeeeb","follow_request_sent":false,"statuses_count":1102,"profile_background_tile":false,"utc_offset":-18000,"followers_count":119,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478564593\/lemon_normal.png","description":"","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"deddda","default_profile_image":false,"verified":false,"created_at":"Thu Jun 18 17:59:32 +0000 2009","friends_count":140,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:10:27 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133999843784933376","truncated":false,"id":133999843784933376,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Developing HTML emails is like traveling 10 years back in time."},"default_profile":false,"profile_sidebar_border_color":"deddda","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/305066648\/lemon.png","favourites_count":9,"id_str":"48431692","contributors_enabled":false,"profile_text_color":"343330","id":48431692,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/305066648\/lemon.png","location":"Holland, Michigan"}],"sources_size":1},{"action":"mention","max_position":"1320642577140","min_position":"1320642577140","created_at":"Mon Nov 07 05:09:37 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1260338912\/image_normal.jpg","screen_name":"Right2BHeard","listed_count":7,"url":"http:\/\/www.therighttobeheard.org","name":"Right to be Heard","time_zone":"Arizona","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":359,"profile_background_tile":false,"utc_offset":-25200,"followers_count":232,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1260338912\/image_normal.jpg","description":"Encouraging conversations that bridge the ideological divide. Inspiring civil dialogue and deliberation.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 22 23:58:33 +0000 2011","friends_count":496,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1,"id_str":"256253666","contributors_enabled":false,"profile_text_color":"333333","id":256253666,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Tucson, Arizona"},"retweet_count":0,"in_reply_to_screen_name":"AndrewGreenhill","created_at":"Mon Nov 07 05:09:37 +0000 2011","retweeted":false,"in_reply_to_status_id":133404931427270656,"in_reply_to_status_id_str":"133404931427270656","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133410754316599296","truncated":false,"id":133410754316599296,"in_reply_to_user_id_str":"15784319","in_reply_to_user_id":15784319,"text":"@AndrewGreenhill @civichack @sferik @civcoms Do you mean they do NOT use the Internet to organize citizen volunteers? I agree it is a must."}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1260338912\/image_normal.jpg","screen_name":"Right2BHeard","listed_count":7,"url":"http:\/\/www.therighttobeheard.org","name":"Right to be Heard","time_zone":"Arizona","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":359,"profile_background_tile":false,"utc_offset":-25200,"followers_count":232,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1260338912\/image_normal.jpg","description":"Encouraging conversations that bridge the ideological divide. Inspiring civil dialogue and deliberation.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 22 23:58:33 +0000 2011","friends_count":496,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1,"id_str":"256253666","contributors_enabled":false,"profile_text_color":"333333","id":256253666,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Tucson, Arizona"}],"sources_size":1},{"action":"mention","max_position":"1320641188855","min_position":"1320641188855","created_at":"Mon Nov 07 04:46:28 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","screen_name":"AndrewGreenhill","listed_count":76,"url":null,"name":"Andrew Greenhill","time_zone":"Arizona","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2316,"profile_background_tile":false,"utc_offset":-25200,"followers_count":1148,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","description":"Mayor's Chief of Staff interested in how technology can help communities solve problems, save money, serve citizens and improve government","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 23:23:07 +0000 2008","friends_count":530,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":64,"id_str":"15784319","contributors_enabled":false,"profile_text_color":"634047","id":15784319,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Tucson, Arizona"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 04:46:28 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"133404931427270656","truncated":false,"id":133404931427270656,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @civichack What if cities started using internet to organize citizen volunteers? @sferik c4a.me\/u2bmDY #gov20 #urbanism MT @CivComs"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","screen_name":"AndrewGreenhill","listed_count":76,"url":null,"name":"Andrew Greenhill","time_zone":"Arizona","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2316,"profile_background_tile":false,"utc_offset":-25200,"followers_count":1148,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/195421294\/adghead2_normal.jpg","description":"Mayor's Chief of Staff interested in how technology can help communities solve problems, save money, serve citizens and improve government","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 23:23:07 +0000 2008","friends_count":530,"default_profile":false,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":64,"id_str":"15784319","contributors_enabled":false,"profile_text_color":"634047","id":15784319,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Tucson, Arizona"}],"sources_size":1},{"action":"reply","max_position":"1320639583731","min_position":"1320639583731","created_at":"Mon Nov 07 04:19:43 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"j3","created_at":"Mon Nov 07 02:27:03 +0000 2011","retweeted":false,"in_reply_to_status_id":133369618726273024,"in_reply_to_status_id_str":"133369618726273024","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133369846078513152","truncated":false,"id":133369846078513152,"in_reply_to_user_id_str":"1133971","in_reply_to_user_id":1133971,"text":"@j3 Google Search by Image http:\/\/t.co\/L9bXXvZU"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Pittsburgh","url":"http:\/\/api.twitter.com\/1\/geo\/id\/946ccd22e1c9cda1.json","attributes":{},"full_name":"Pittsburgh, PA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-80.095509,40.36152],[-79.865728,40.36152],[-79.865728,40.501201],[-80.095509,40.501201]]]},"place_type":"city","id":"946ccd22e1c9cda1"},"geo":{"type":"Point","coordinates":[40.44120021,-79.95673674]},"coordinates":{"type":"Point","coordinates":[-79.95673674,40.44120021]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","screen_name":"sethvargo","listed_count":5,"url":"http:\/\/sethvargo.com\/","name":"Seth Vargo","time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":1614,"profile_background_tile":false,"utc_offset":-18000,"followers_count":115,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","description":"student. developer. designer. entrepreneur.\r\n\r\nI'm a student at Carnegie Mellon University studying Information Systems.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Wed Mar 09 00:54:05 +0000 2011","friends_count":149,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":2,"id_str":"262914828","contributors_enabled":false,"profile_text_color":"333333","id":262914828,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Pittsburgh, PA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 04:19:43 +0000 2011","retweeted":false,"in_reply_to_status_id":133369846078513152,"in_reply_to_status_id_str":"133369846078513152","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133398199045062656","truncated":false,"id":133398199045062656,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wait. Did you google image search yourself?"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","screen_name":"sethvargo","listed_count":5,"url":"http:\/\/sethvargo.com\/","name":"Seth Vargo","time_zone":"Eastern Time (US & Canada)","profile_background_color":"022330","follow_request_sent":null,"statuses_count":1614,"profile_background_tile":false,"utc_offset":-18000,"followers_count":115,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1266273233\/9dfeaed078bafa034777ce0a0c799707_normal.jpeg","description":"student. developer. designer. entrepreneur.\r\n\r\nI'm a student at Carnegie Mellon University studying Information Systems.","following":null,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Wed Mar 09 00:54:05 +0000 2011","friends_count":149,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":null,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":2,"id_str":"262914828","contributors_enabled":false,"profile_text_color":"333333","id":262914828,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Pittsburgh, PA"}],"sources_size":1},{"action":"follow","max_position":"1320637807687","min_position":"1320615513669","created_at":"Mon Nov 07 03:50:07 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314168429\/image_normal.jpg","screen_name":"curphey","listed_count":61,"url":"http:\/\/www.curphey.com","name":"Mark Curphey","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":5325,"profile_background_tile":true,"utc_offset":-28800,"followers_count":814,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1314168429\/image_normal.jpg","description":"Software, distance runner and .....","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Mon May 04 01:38:13 +0000 2009","friends_count":128,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"37560547","contributors_enabled":false,"profile_text_color":"333333","id":37560547,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"Seattle, WA, USA"},{"show_all_inline_media":true,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1624677802\/AcZZf1DCMAAERiJ__copy__normal.jpg","screen_name":"Nomad145","listed_count":1,"url":null,"name":"Michael Phillips","time_zone":"Central Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":381,"profile_background_tile":false,"utc_offset":-21600,"followers_count":83,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1624677802\/AcZZf1DCMAAERiJ__copy__normal.jpg","description":"Programmer. Musician.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Wed Apr 07 18:46:11 +0000 2010","friends_count":59,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","favourites_count":0,"id_str":"130586917","contributors_enabled":false,"profile_text_color":"666666","id":130586917,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","location":"Anywhere and Everywhere"},{"show_all_inline_media":true,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/348245069\/Stacy_normal.jpg","screen_name":"RandomCoolChick","listed_count":57,"url":"http:\/\/stacyuncorked.com\/","name":"Stacy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"EDECE9","follow_request_sent":false,"statuses_count":2490,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2741,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/348245069\/Stacy_normal.jpg","description":"Sassy Mama to the Princess Nagger. Enjoy making grapes and various fruits into wine. Experiments with water currently underway.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Sat Nov 15 21:55:52 +0000 2008","friends_count":2921,"default_profile":false,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/138720867\/NewTwitterBkgd.jpg","favourites_count":5,"id_str":"17413580","contributors_enabled":false,"profile_text_color":"634047","id":17413580,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/138720867\/NewTwitterBkgd.jpg","location":"Small Town, PA"},{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1119353844\/IMG_0022-1_normal.JPG","screen_name":"jbentleyNJ","default_profile":true,"listed_count":4,"url":null,"name":"James Bentley","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":117,"profile_background_tile":false,"utc_offset":-18000,"followers_count":101,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1119353844\/IMG_0022-1_normal.JPG","description":"GIS and Political Science student at Rutgers University","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Sep 07 22:51:28 +0000 2010","friends_count":314,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"johnjreiser","created_at":"Tue Nov 08 01:55:41 +0000 2011","retweeted":false,"in_reply_to_status_id":133723038305878016,"in_reply_to_status_id_str":"133723038305878016","source":"web","id_str":"133724337034371072","truncated":false,"id":133724337034371072,"in_reply_to_user_id_str":"15356309","in_reply_to_user_id":15356309,"text":"@johnjreiser I'd be interested if you had room"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":1319,"id_str":"188100615","contributors_enabled":false,"profile_text_color":"333333","id":188100615,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Lawrenceville, NJ"}],"sources_size":4},{"action":"mention","max_position":"1320637738475","min_position":"1320637738475","created_at":"Mon Nov 07 03:48:58 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","screen_name":"hacooney","listed_count":11,"url":null,"name":"Haynes Cooney","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":945,"profile_background_tile":true,"utc_offset":-18000,"followers_count":143,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","description":"IBM public sector strategy consultant. Let's make our cities more sustainable and enjoyable. Books, bikes, baseball, and travel make me happy.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jan 11 04:04:19 +0000 2010","friends_count":344,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","favourites_count":0,"id_str":"103750901","contributors_enabled":false,"profile_text_color":"333333","id":103750901,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","location":"Arlington, VA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 03:48:58 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133390459484643330","truncated":false,"id":133390459484643330,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Adopt a Hydrant RT @civichack What if #cities started using internet to organize citizen volunteers? @sferik http:\/\/t.co\/3cjvkdcz #gov20"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","screen_name":"hacooney","listed_count":11,"url":null,"name":"Haynes Cooney","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":945,"profile_background_tile":true,"utc_offset":-18000,"followers_count":143,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1254369971\/Iceland_headshop_crop_normal.jpg","description":"IBM public sector strategy consultant. Let's make our cities more sustainable and enjoyable. Books, bikes, baseball, and travel make me happy.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jan 11 04:04:19 +0000 2010","friends_count":344,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:36:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133961165696024576","truncated":false,"id":133961165696024576,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Today, for the first time since 1923, the public will decide Portland, ME's mayor http:\/\/t.co\/fQxa8H73 @pressherald"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","favourites_count":0,"id_str":"103750901","contributors_enabled":false,"profile_text_color":"333333","id":103750901,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/65777184\/MtRainier.jpg","location":"Arlington, VA"}],"sources_size":1},{"action":"reply","max_position":"1320636819188","min_position":"1320636819188","created_at":"Mon Nov 07 03:33:39 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"goldman","created_at":"Mon Nov 07 03:32:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133385192596443136,"in_reply_to_status_id_str":"133385192596443136","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133386199002923010","truncated":false,"id":133386199002923010,"in_reply_to_user_id_str":"291","in_reply_to_user_id":291,"text":"@goldman Agreed. I got to meet him after he busted out at the final table of the Player's Championship (WSOP #55). He played like a champ."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308109,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:33:39 +0000 2011","retweeted":false,"in_reply_to_status_id":133386199002923010,"in_reply_to_status_id_str":"133386199002923010","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133386603715497984","truncated":false,"id":133386603715497984,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik did you see the 4-bet bluff right before the dinner break? I don't have that gear :("}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308098,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"anildash","created_at":"Tue Nov 08 03:40:12 +0000 2011","retweeted":false,"in_reply_to_status_id":133737786120470529,"in_reply_to_status_id_str":"133737786120470529","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133750639707684864","truncated":false,"id":133750639707684864,"in_reply_to_user_id_str":"36823","in_reply_to_user_id":36823,"text":"@anildash @beyonce knows its cool to lurk."},"default_profile":false,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"}],"sources_size":1},{"action":"reply","max_position":"1320636677798","min_position":"1320636677798","created_at":"Mon Nov 07 03:31:17 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:15:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366983218565120","truncated":false,"id":133366983218565120,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"That said, Alan Benjamin is a pretty good pseudonym. I might have to start using that."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"8a7302","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","screen_name":"smathy","listed_count":12,"url":"http:\/\/flow.handle.it\/","name":"Jason King","time_zone":"Pacific Time (US & Canada)","profile_background_color":"0f0a02","follow_request_sent":false,"statuses_count":3350,"profile_background_tile":false,"utc_offset":-28800,"followers_count":250,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","description":"I code, I roll, I laugh, I love.\n\nIt's better to regret something you did, than something you didn't do.\n\nGame on.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"171106","default_profile_image":false,"verified":false,"created_at":"Tue Oct 30 01:10:42 +0000 2007","friends_count":61,"profile_sidebar_border_color":"bcb302","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","favourites_count":7,"id_str":"9786912","contributors_enabled":false,"profile_text_color":"87623e","id":9786912,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","location":"San Diego, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:31:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133366983218565120,"in_reply_to_status_id_str":"133366983218565120","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133386010678673408","truncated":false,"id":133386010678673408,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wait, you're not Alan Benjamin? Damnit! I've been following the wrong guy!"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"8a7302","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","screen_name":"smathy","listed_count":12,"url":"http:\/\/flow.handle.it\/","name":"Jason King","time_zone":"Pacific Time (US & Canada)","profile_background_color":"0f0a02","follow_request_sent":false,"statuses_count":3350,"profile_background_tile":false,"utc_offset":-28800,"followers_count":250,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/58853649\/Photo_17_normal.jpg","description":"I code, I roll, I laugh, I love.\n\nIt's better to regret something you did, than something you didn't do.\n\nGame on.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"171106","default_profile_image":false,"verified":false,"created_at":"Tue Oct 30 01:10:42 +0000 2007","friends_count":61,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"codeofficer","created_at":"Tue Nov 08 19:21:43 +0000 2011","retweeted":false,"in_reply_to_status_id":133971609861111808,"in_reply_to_status_id_str":"133971609861111808","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987581443588097","truncated":false,"id":133987581443588097,"in_reply_to_user_id_str":"8828952","in_reply_to_user_id":8828952,"text":"@codeofficer worth giving it a serious crack in a real project. I was a doubter too, not a big \"end-less\" fan at all. I'm a convert now."},"default_profile":false,"profile_sidebar_border_color":"bcb302","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","favourites_count":7,"id_str":"9786912","contributors_enabled":false,"profile_text_color":"87623e","id":9786912,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/155358271\/x854f98a2d7b273f90605cdfaa3407fa.jpg","location":"San Diego, CA"}],"sources_size":1},{"action":"reply","max_position":"1320636482750","min_position":"1320636482750","created_at":"Mon Nov 07 03:28:02 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"goldman","created_at":"Mon Nov 07 03:05:07 +0000 2011","retweeted":false,"in_reply_to_status_id":133378340353613824,"in_reply_to_status_id_str":"133378340353613824","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133379422463066112","truncated":false,"id":133379422463066112,"in_reply_to_user_id_str":"291","in_reply_to_user_id":291,"text":"@goldman Who are you pulling for? Ben Lamb?"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308109,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 03:28:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133379422463066112,"in_reply_to_status_id_str":"133379422463066112","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133385192596443136","truncated":false,"id":133385192596443136,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik i think he's playing the best in the last few levels."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"1F98C7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","screen_name":"goldman","listed_count":2005,"url":"http:\/\/goldtoe.net","name":"Jason Goldman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7544,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1308098,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/408168730\/me_joi_normal.jpg","description":"COO and Co-founder of The Obvious Corporation. Formerly, VP Product for Twitter and Product Manager for Blogger at Google. ","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"verified":false,"created_at":"Sat May 20 19:46:03 +0000 2006","friends_count":281,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"anildash","created_at":"Tue Nov 08 03:40:12 +0000 2011","retweeted":false,"in_reply_to_status_id":133737786120470529,"in_reply_to_status_id_str":"133737786120470529","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133750639707684864","truncated":false,"id":133750639707684864,"in_reply_to_user_id_str":"36823","in_reply_to_user_id":36823,"text":"@anildash @beyonce knows its cool to lurk."},"default_profile":false,"profile_sidebar_border_color":"C6E2EE","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":234,"id_str":"291","contributors_enabled":false,"profile_text_color":"663B12","id":291,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320633737444","min_position":"1320632248602","created_at":"Mon Nov 07 02:42:17 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","default_profile":false,"follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"},{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"3aa8e8","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/763033286\/avatar2010_normal.png","screen_name":"willw","listed_count":396,"url":"http:\/\/williamwilkinson.com","name":"William Wilkinson","time_zone":"Pacific Time (US & Canada)","profile_background_color":"f2f4f7","follow_request_sent":false,"statuses_count":10593,"profile_background_tile":false,"utc_offset":-28800,"followers_count":3615,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/763033286\/avatar2010_normal.png","description":"A designer at @MetaLab. I made @EverydayApp.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Mon Jan 15 01:40:54 +0000 2007","friends_count":328,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:38:04 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134036995059101696","truncated":false,"id":134036995059101696,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"No more late-night impulse buying on eBay for me, just had the paper manual for what I wanted show up."},"profile_sidebar_border_color":"33b8b1","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/99054782\/pattern.png","favourites_count":14891,"id_str":"634163","contributors_enabled":false,"profile_text_color":"1d1f24","id":634163,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/99054782\/pattern.png","location":"Victoria, Canada"}],"sources_size":2},{"action":"reply","max_position":"1320633734910","min_position":"1320633734910","created_at":"Mon Nov 07 02:42:14 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Oakland","url":"http:\/\/api.twitter.com\/1\/geo\/id\/ab2f2fac83aa388d.json","attributes":{},"full_name":"Oakland, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.355881,37.632226],[-122.114672,37.632226],[-122.114672,37.885255],[-122.355881,37.885255]]]},"place_type":"city","id":"ab2f2fac83aa388d"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:42:14 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"web","id_str":"133373667320139776","truncated":false,"id":133373667320139776,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik That's the best thing I've seen all weekend."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"777777","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1478854559\/twitter_normal.png","screen_name":"zachwill","listed_count":5,"url":"http:\/\/www.zachwill.com","name":"zachwill","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","default_profile":false,"follow_request_sent":false,"statuses_count":881,"profile_background_tile":false,"utc_offset":-28800,"followers_count":116,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1478854559\/twitter_normal.png","description":"Python \/ Web Developer. 2012 @codeforamerica fellow.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed Jan 28 03:43:31 +0000 2009","friends_count":127,"profile_sidebar_border_color":"d6d6d6","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","favourites_count":28,"id_str":"19634395","contributors_enabled":false,"profile_text_color":"333333","id":19634395,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/48318209\/Untitled-1.jpg","location":"San Francisco"}],"sources_size":1},{"action":"reply","max_position":"1320633467866","min_position":"1320633467866","created_at":"Mon Nov 07 02:37:47 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","screen_name":"danparsons","listed_count":19,"url":null,"name":"Dan Parsons","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":9855,"profile_background_tile":false,"utc_offset":-28800,"followers_count":245,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","description":"root@mozilla. Lasers. Yeah, it's an angry world, and no doubt everything will go as planned.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Sun Apr 08 22:56:39 +0000 2007","friends_count":211,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":50,"id_str":"3827111","contributors_enabled":false,"profile_text_color":"000000","id":3827111,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Diego & Mountain View, CA"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:37:47 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133372547256434688","truncated":false,"id":133372547256434688,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik wow, how did you find that?"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","screen_name":"danparsons","listed_count":19,"url":null,"name":"Dan Parsons","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":9855,"profile_background_tile":false,"utc_offset":-28800,"followers_count":245,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1300552042\/boris-small3_normal.jpg","description":"root@mozilla. Lasers. Yeah, it's an angry world, and no doubt everything will go as planned.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Sun Apr 08 22:56:39 +0000 2007","friends_count":211,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":50,"id_str":"3827111","contributors_enabled":false,"profile_text_color":"000000","id":3827111,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Diego & Mountain View, CA"}],"sources_size":1},{"action":"reply","max_position":"1320633257491","min_position":"1320633257491","created_at":"Mon Nov 07 02:34:17 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":"qrush","created_at":"Mon Nov 07 02:23:14 +0000 2011","retweeted":false,"in_reply_to_status_id":133368782453346304,"in_reply_to_status_id_str":"133368782453346304","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133368882894340096","truncated":false,"id":133368882894340096,"in_reply_to_user_id_str":"5743852","in_reply_to_user_id":5743852,"text":"@qrush I don't want to be a meme."}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"8a6e4e","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","screen_name":"qrush","listed_count":358,"url":"http:\/\/quaran.to","name":"Nick Quaranto","time_zone":"Eastern Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":10867,"profile_background_tile":true,"utc_offset":-18000,"followers_count":3697,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","description":"Husky wrangler, RIT Alum, http:\/\/rubygems.org Mechanic. Supposedly, I coined 'failwhale' too.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f0e2c0","default_profile_image":false,"verified":false,"created_at":"Thu May 03 15:49:55 +0000 2007","friends_count":932,"profile_sidebar_border_color":"a88965","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48504038\/pattern.png","favourites_count":1095,"id_str":"5743852","contributors_enabled":false,"profile_text_color":"000000","id":5743852,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/48504038\/pattern.png","location":"Buffalo, NY"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:34:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133368882894340096,"in_reply_to_status_id_str":"133368882894340096","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133371664871325696","truncated":false,"id":133371664871325696,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik maybe someone from your HS works for collegehumor? Could ask them to....reface it"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"8a6e4e","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","screen_name":"qrush","listed_count":358,"url":"http:\/\/quaran.to","name":"Nick Quaranto","default_profile":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":10867,"profile_background_tile":true,"utc_offset":-18000,"followers_count":3697,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1418075844\/xm3o_normal.jpg","description":"Husky wrangler, RIT Alum, http:\/\/rubygems.org Mechanic. Supposedly, I coined 'failwhale' too.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f0e2c0","default_profile_image":false,"verified":false,"created_at":"Thu May 03 15:49:55 +0000 2007","friends_count":932,"profile_sidebar_border_color":"a88965","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/48504038\/pattern.png","favourites_count":1095,"id_str":"5743852","contributors_enabled":false,"profile_text_color":"000000","id":5743852,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/48504038\/pattern.png","location":"Buffalo, NY"}],"sources_size":1},{"action":"reply","max_position":"1320633054000","min_position":"1320633054000","created_at":"Mon Nov 07 02:30:54 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":{"name":"Manhattan","url":"http:\/\/api.twitter.com\/1\/geo\/id\/086752cb03de1d5d.json","attributes":{},"full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.047249,40.679548],[-73.907104,40.679548],[-73.907104,40.882214],[-74.047249,40.882214]]]},"place_type":"city","id":"086752cb03de1d5d"},"geo":{"type":"Point","coordinates":[40.70969229,-74.00702857]},"coordinates":{"type":"Point","coordinates":[-74.00702857,40.70969229]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","screen_name":"darrellsilver","listed_count":37,"url":"http:\/\/darrellsilver.com","name":"Darrell Silver","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":2423,"profile_background_tile":false,"utc_offset":-18000,"followers_count":483,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","description":"Founder of @perpetually and organizer of @JellyNYC","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Jun 15 13:58:04 +0000 2007","friends_count":251,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":88,"id_str":"6834002","contributors_enabled":false,"profile_text_color":"000000","id":6834002,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"NY NY in google maps"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:30:54 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133370814706880513","truncated":false,"id":133370814706880513,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik is that your actual quote? You're such a badass."}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","screen_name":"darrellsilver","listed_count":37,"url":"http:\/\/darrellsilver.com","name":"Darrell Silver","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":2423,"profile_background_tile":false,"utc_offset":-18000,"followers_count":483,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/58832138\/IMG_5797-edit.small_normal.jpg","description":"Founder of @perpetually and organizer of @JellyNYC","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Jun 15 13:58:04 +0000 2007","friends_count":251,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:44:38 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134023548154019841","truncated":false,"id":134023548154019841,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Top news right now: Sex, rape, rape, Iran."},"default_profile":false,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":88,"id_str":"6834002","contributors_enabled":false,"profile_text_color":"000000","id":6834002,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"NY NY in google maps"}],"sources_size":1},{"action":"reply","max_position":"1320632769650","min_position":"1320632769650","created_at":"Mon Nov 07 02:26:09 +0000 2011","target_objects":[{"contributors":null,"place":{"name":"San Francisco","url":"http:\/\/api.twitter.com\/1\/geo\/id\/5a110d312052166f.json","attributes":{},"full_name":"San Francisco, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.51368188,37.70813196],[-122.35845384,37.70813196],[-122.35845384,37.83245301],[-122.51368188,37.83245301]]]},"place_type":"city","id":"5a110d312052166f"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 02:13:23 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133366405323173888","truncated":false,"id":133366405323173888,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"WTF? Somebody took my actual high school yearbook photo, added a fake name and quote, and posted it to a humor website. http:\/\/t.co\/6aRY1jr7"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","screen_name":"j3","listed_count":138,"url":"http:\/\/jumpstartlab.com","name":"Jeff Casimir","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":8538,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1728,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","description":"I started Jumpstart Lab and travel the earth teaching Ruby, Rails, jQuery and speculating about my Ruby-scene gossip magazine The National Requirer","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Wed Mar 14 02:35:24 +0000 2007","friends_count":473,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","favourites_count":6,"id_str":"1133971","contributors_enabled":false,"profile_text_color":"000000","id":1133971,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":"sferik","created_at":"Mon Nov 07 02:26:09 +0000 2011","retweeted":false,"in_reply_to_status_id":133366405323173888,"in_reply_to_status_id_str":"133366405323173888","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133369618726273024","truncated":false,"id":133369618726273024,"in_reply_to_user_id_str":"7505382","in_reply_to_user_id":7505382,"text":"@sferik how did you find it?"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","screen_name":"j3","listed_count":138,"url":"http:\/\/jumpstartlab.com","name":"Jeff Casimir","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":8538,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1728,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1032802874\/jcasimir_headshot_127x127_normal.jpg","description":"I started Jumpstart Lab and travel the earth teaching Ruby, Rails, jQuery and speculating about my Ruby-scene gossip magazine The National Requirer","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Wed Mar 14 02:35:24 +0000 2007","friends_count":473,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"amyhoy","created_at":"Tue Nov 08 18:39:31 +0000 2011","retweeted":false,"in_reply_to_status_id":133976319527632896,"in_reply_to_status_id_str":"133976319527632896","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133976959788134400","truncated":false,"id":133976959788134400,"in_reply_to_user_id_str":"627213","in_reply_to_user_id":627213,"text":"@amyhoy that's not strictly a requirement. I wonder if they have any Prada leather pants? \/cc @thomasfuchs"},"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","favourites_count":6,"id_str":"1133971","contributors_enabled":false,"profile_text_color":"000000","id":1133971,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/7508525\/DSC00302.jpg","location":"Washington, DC"}],"sources_size":1}]
1
+ [{"action":"mention","max_position":"1320765311071","min_position":"1320765311071","created_at":"Tue Nov 08 15:15:11 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:15:11 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133925537742729216","truncated":false,"id":133925537742729216,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I'm happy to document all the great work in Bundler 1.1 from @carllerche @hone02 @indirect @sferik wagenet and @wycats and many others!"}],"target_objects_size":1,"targets":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","screen_name":"sferik","listed_count":97,"url":"https:\/\/github.com\/sferik","name":"Erik Michaels-Ober","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5595,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1770,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1279736243\/Github_Square_normal.jpg","description":"I'm just a soul whose intentions are good.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:40:18 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133977160280047616","truncated":false,"id":133977160280047616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:21:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133987568969719808","truncated":false,"id":133987568969719808,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @timtrueman: I shouldn't be surprised but I am: http:\/\/t.co\/tSmSGuLL"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","favourites_count":2070,"id_str":"7505382","contributors_enabled":false,"profile_text_color":"333333","id":7505382,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","location":"San Francisco"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","screen_name":"pat_shaughnessy","listed_count":5,"url":"http:\/\/patshaughnessy.net","name":"Pat Shaughnessy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":322,"profile_background_tile":false,"utc_offset":-18000,"followers_count":95,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1080492495\/3f66ecd36e8f6bdac9f0bf79770a40b7_normal.jpeg","description":"Boston based Rails developer","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri May 29 00:55:48 +0000 2009","friends_count":124,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":2,"id_str":"43234200","contributors_enabled":false,"profile_text_color":"333333","id":43234200,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Boston"}],"sources_size":1}]
@@ -1 +1 @@
1
- [{"action":"favorite","max_position":"1320794149280","min_position":"1320718679267","created_at":"Tue Nov 08 23:15:49 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ba26b7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","screen_name":"JoshConstine","listed_count":80,"url":"http:\/\/about.me\/joshconstine","name":"Josh Constine","time_zone":"Pacific Time (US & Canada)","profile_background_color":"469cfb","default_profile":false,"follow_request_sent":false,"statuses_count":2688,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1513,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","description":"Writer for TechCrunch, Stanford M.A. in Cybersociology, culture omnivorre. I bring the truth with swag. Subscribe on FB: http:\/\/www.facebook.com\/JoshConstine","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"fbc67e","default_profile_image":false,"verified":false,"created_at":"Mon Jan 26 22:41:23 +0000 2009","friends_count":388,"profile_sidebar_border_color":"c3f4d4","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","favourites_count":1929,"id_str":"19563366","contributors_enabled":false,"profile_text_color":"333333","id":19563366,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","location":"Mission SF, CA"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:45:29 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134023760025104385","truncated":false,"id":134023760025104385,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I hate percentage growth stats. They're like graphs without the axes labeled, something you'd use to fool children."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","screen_name":"kaitlyntrigger","listed_count":25,"url":"http:\/\/about.me\/kaitlyntrigger","name":"Kaitlyn Trigger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":519,"profile_background_tile":false,"utc_offset":-28800,"followers_count":475,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","description":"Marketing Director @Rally by day. Avid eater, reader, urban explorer, and metaphor maker by night.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"default_profile":true,"verified":false,"created_at":"Tue Mar 20 22:15:38 +0000 2007","friends_count":170,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":44,"id_str":"1678471","contributors_enabled":false,"profile_text_color":"333333","id":1678471,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 06:12:26 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133788952825036801","truncated":false,"id":133788952825036801,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Deciding who to vote for is like sampling wine from the barrel and trying to guess how it will taste in 2 years. #SFelections"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","screen_name":"kaitlyntrigger","listed_count":25,"url":"http:\/\/about.me\/kaitlyntrigger","name":"Kaitlyn Trigger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":519,"profile_background_tile":false,"utc_offset":-28800,"followers_count":475,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/655818257\/Kaitlyn_Playing_Guitar_normal.jpg","description":"Marketing Director @Rally by day. Avid eater, reader, urban explorer, and metaphor maker by night.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Mar 20 22:15:38 +0000 2007","friends_count":170,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":44,"id_str":"1678471","contributors_enabled":false,"profile_text_color":"333333","id":1678471,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:42:13 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134022940969807873","truncated":false,"id":134022940969807873,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Feeling lucky to be eating spicy chicken with chana masala & arugula from @rally's in-office chef, instead of a smooshed sandwich. YUM!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","screen_name":"mrgan","listed_count":1167,"url":"http:\/\/mrgan.com","name":"Neven Mrgan","time_zone":"Eastern Time (US & Canada)","profile_background_color":"68def9","follow_request_sent":false,"statuses_count":23026,"profile_background_tile":true,"utc_offset":-18000,"followers_count":11820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","description":"One of the good ones.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Dec 01 23:44:52 +0000 2006","friends_count":180,"profile_sidebar_border_color":"ff0000","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/19582992\/glyphs1.png","favourites_count":12441,"id_str":"35293","contributors_enabled":false,"profile_text_color":"000000","id":35293,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19582992\/glyphs1.png","location":"Portland, OR"},"retweet_count":10,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:52:36 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"134025554637766656","truncated":false,"id":134025554637766656,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Trivia: \"The Final Countdown\" was originally called \"Countdown\" but a studio tech mistook the name of the attached file for the track title."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11934,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"default_profile":true,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10519,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 09:17:15 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133835464477114369","truncated":false,"id":133835464477114369,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Hello my friend... Gary"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"1856CB","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/116196532\/Phillygirl_avatar_closer_normal.jpg","screen_name":"phillygirl","listed_count":152,"url":"http:\/\/www.therainforestsite.com","name":"phillygirl","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","default_profile":false,"follow_request_sent":false,"statuses_count":3382,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2446,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/116196532\/Phillygirl_avatar_closer_normal.jpg","description":"Feisty Redhead Who Wants More Cowbell!","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"83c3ec","default_profile_image":false,"verified":false,"created_at":"Thu May 17 17:19:48 +0000 2007","friends_count":167,"profile_sidebar_border_color":"1952d2","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1592222\/clouds2stretched.JPG","favourites_count":3531,"id_str":"6114492","contributors_enabled":false,"profile_text_color":"000000","id":6114492,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/1592222\/clouds2stretched.JPG","location":"Las am\u00e9ricas"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:49:03 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133767967933603840","truncated":false,"id":133767967933603840,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Hey, @Twitter Activity page! How do I poke somebody or throw a sheep?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11917,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10518,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"default_profile":true,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":19,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:28:14 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134004322257215488","truncated":false,"id":134004322257215488,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Don t Tell The Big-Name Gurus"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/557867779\/Me_normal.jpg","screen_name":"waferbaby","listed_count":86,"url":"http:\/\/usesthis.com\/","name":"Daniel Bogan","time_zone":"Pacific Time (US & Canada)","profile_background_color":"2e2e2e","follow_request_sent":false,"statuses_count":18187,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1328,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/557867779\/Me_normal.jpg","description":"Influential about unicorns.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Thu Mar 08 14:02:34 +0000 2007","friends_count":298,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","favourites_count":1209,"id_str":"821753","contributors_enabled":false,"profile_text_color":"333333","id":821753,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme9\/bg.gif","location":"San Francisco, USA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 03:05:54 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"133742007809097728","truncated":false,"id":133742007809097728,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"She's napping on the couch, suddenly half-sits up, yells \"SHARKS!\", and goes back to sleep. Having scared the jesus fucking crap out of me."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","screen_name":"mikeyk","listed_count":1195,"url":"http:\/\/mkrieger.org\/","name":"Mike Krieger","time_zone":"Pacific Time (US & Canada)","profile_background_color":"BADFCD","follow_request_sent":false,"statuses_count":6137,"profile_background_tile":false,"utc_offset":-28800,"followers_count":363563,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","description":"co-founder @ instagram. brasileiro by birth, now in SF.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFF7CC","default_profile_image":false,"verified":false,"created_at":"Fri Nov 17 12:39:47 +0000 2006","friends_count":222,"profile_sidebar_border_color":"F2E195","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","favourites_count":4541,"id_str":"12831","contributors_enabled":false,"profile_text_color":"0C3E53","id":12831,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme12\/bg.gif","location":"37.760571,-122.387567"},"retweet_count":1,"in_reply_to_screen_name":"JoshConstine","created_at":"Tue Nov 08 21:47:50 +0000 2011","retweeted":false,"in_reply_to_status_id":134023760025104385,"in_reply_to_status_id_str":"134023760025104385","source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134024351329689600","truncated":false,"id":134024351329689600,"in_reply_to_user_id_str":"19563366","in_reply_to_user_id":19563366,"text":"@JoshConstine dude, you're killing it on TC. Love it"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","screen_name":"Horse_ebooks","listed_count":244,"url":"http:\/\/horse-ebooks.com\/","name":"Horse ebooks","time_zone":"Quito","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":12847,"profile_background_tile":false,"utc_offset":-18000,"followers_count":11924,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1096005346\/1_normal.jpg","description":"Horse ebooks","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Aug 05 07:18:32 +0000 2010","friends_count":10519,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"174958347","contributors_enabled":false,"profile_text_color":"333333","id":174958347,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 02:17:51 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133729916263993344","truncated":false,"id":133729916263993344,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Now I kayak all the time and love every minute of it."}],"targets_size":10,"sources":[{"show_all_inline_media":true,"profile_link_color":"FF0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","screen_name":"mikeyk","listed_count":1195,"url":"http:\/\/mkrieger.org\/","name":"Mike Krieger","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"BADFCD","follow_request_sent":false,"statuses_count":6137,"profile_background_tile":false,"utc_offset":-28800,"followers_count":363561,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1609774999\/261011-23_normal.jpg","description":"co-founder @ instagram. brasileiro by birth, now in SF.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFF7CC","default_profile_image":false,"verified":false,"created_at":"Fri Nov 17 12:39:47 +0000 2006","friends_count":222,"profile_sidebar_border_color":"F2E195","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme12\/bg.gif","favourites_count":4542,"id_str":"12831","contributors_enabled":false,"profile_text_color":"0C3E53","id":12831,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme12\/bg.gif","location":"37.760571,-122.387567"}],"sources_size":1},{"action":"favorite","max_position":"1320794116771","min_position":"1320713308954","created_at":"Tue Nov 08 23:15:16 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084b4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1539676928\/whos_afraid_post_blackness_normal.jpg","screen_name":"Toure","listed_count":1653,"url":null,"name":"Tour\u00e9","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":61489,"profile_background_tile":false,"utc_offset":-18000,"followers_count":42769,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1539676928\/whos_afraid_post_blackness_normal.jpg","description":"My book Who's Afraid of Post-Blackness? is out now. Fuse (Hiphop Shop). MSNBC. Author: Never Drank the Kool-Aid. For speaking events\u2014rdavis@apbspeakers.com.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ddffcd","default_profile_image":false,"verified":false,"created_at":"Thu Jan 08 15:19:25 +0000 2009","friends_count":2161,"default_profile":false,"profile_sidebar_border_color":"bddcad","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/105323780\/2010-05-26_07-18-58_72.225.165.37.jpg","favourites_count":38,"id_str":"18766459","contributors_enabled":false,"profile_text_color":"333333","id":18766459,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/105323780\/2010-05-26_07-18-58_72.225.165.37.jpg","location":"In your mind"},"retweet_count":16,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:50:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133994835219714048","truncated":false,"id":133994835219714048,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"My new NY Times essay: \"Post-Racial\" is a meaningless term! Stop using it! http:\/\/t.co\/Z3yePfRA"}],"targets_size":1,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1364557668\/image_normal.jpg","screen_name":"anildash","listed_count":4044,"url":"http:\/\/anildash.com\/","name":"Anil Dash","default_profile":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":10317,"profile_background_tile":true,"utc_offset":-18000,"followers_count":386272,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1364557668\/image_normal.jpg","description":"Blogger at Dashes.com, Director of @expertlabs, Partner at Activate & lots of other things. I love NYC & funk. Reach me anil@dashes.com or 646 833-8659.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Sat Dec 02 09:15:15 +0000 2006","friends_count":938,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/87289771\/twitter-friends-background.jpg","favourites_count":24961,"id_str":"36823","contributors_enabled":false,"profile_text_color":"333333","id":36823,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/87289771\/twitter-friends-background.jpg","location":"NYC: 40.739069,-73.987082"}],"sources_size":1},{"action":"follow","max_position":"1320793985373","min_position":"1320716928823","created_at":"Tue Nov 08 23:13:05 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/756277454\/citylogo2_normal.gif","screen_name":"creativity_city","listed_count":70,"url":"http:\/\/creativity.city.ac.uk","name":"Creativity@CityUni","time_zone":"London","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1406,"profile_background_tile":false,"utc_offset":0,"followers_count":780,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/756277454\/citylogo2_normal.gif","description":"Interdisciplinary Centre for Creativity in Professional Practice @City University London. Research-Education-Consultancy in Creativity, Innovation & Leadership","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Tue Oct 27 09:50:25 +0000 2009","friends_count":338,"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"85537061","contributors_enabled":false,"profile_text_color":"333333","id":85537061,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"London, UK"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1424920726\/hrcfaceslogo_normal.jpg","screen_name":"SelfEvidentProj","listed_count":1,"url":"http:\/\/selfevidentproject.com","name":"Self Evident Truths","time_zone":null,"profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":null,"statuses_count":56,"profile_background_tile":false,"utc_offset":null,"followers_count":109,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1424920726\/hrcfaceslogo_normal.jpg","description":"","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jul 03 17:18:49 +0000 2011","friends_count":3,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 03:18:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003EFacebook\u003C\/a\u003E","id_str":"133382914904821760","truncated":false,"id":133382914904821760,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I photographed NINETY SEVEN people today at Dolores Park!! I was sure yesterday couldn't be beat, but holy shit it... http:\/\/t.co\/gWRbHD9g"},"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/282817948\/Picture_1-1.png","favourites_count":0,"id_str":"328589120","contributors_enabled":false,"profile_text_color":"333333","id":328589120,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/282817948\/Picture_1-1.png","location":""},{"show_all_inline_media":false,"profile_link_color":"b3000f","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1394459080\/c5twitprofile_normal.jpg","screen_name":"columnfive","listed_count":317,"url":"http:\/\/www.columnfivemedia.com","name":"COLUMN FIVE","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ea8a8","follow_request_sent":false,"statuses_count":1133,"profile_background_tile":false,"utc_offset":-28800,"followers_count":8546,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1394459080\/c5twitprofile_normal.jpg","description":"Infographic Design\/Data Visualization. Content + Social Strategy. Founded by @jasonlankow, @joshritchie, and @rtcrooks. http:\/\/www.facebook.com\/columnfivemedia","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"cff6f7","default_profile_image":false,"verified":false,"created_at":"Thu Apr 23 21:23:01 +0000 2009","friends_count":5258,"profile_sidebar_border_color":"f7faf5","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/269440965\/c5twitbackg.jpg","favourites_count":12,"id_str":"34733652","contributors_enabled":false,"profile_text_color":"333333","id":34733652,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/269440965\/c5twitbackg.jpg","location":"Newport Beach CA"}],"targets_size":3,"sources":[{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1389416494\/Karla_normal.png","screen_name":"KMimagine","listed_count":15,"url":"http:\/\/karlamacedo.com\/","name":"Karla Macedo","time_zone":"Mountain Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":1519,"profile_background_tile":true,"utc_offset":-25200,"followers_count":281,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1389416494\/Karla_normal.png","description":"Artist at heart, designer by trade. Lets make things together @iconathon with us, I'm a Fellow @codeforamerica","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Sun Jun 28 16:04:54 +0000 2009","friends_count":509,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:55:49 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id_str":"134041463041433601","truncated":false,"id":134041463041433601,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"For all Typographic Lovers! Alas a kerning game, #KernType, http:\/\/t.co\/H17cEcVi #kerning"},"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/360089508\/roughcloth.png","favourites_count":111,"id_str":"51764038","contributors_enabled":false,"profile_text_color":"333333","id":51764038,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/360089508\/roughcloth.png","location":"SF BAY AREA"}],"sources_size":1},{"action":"favorite","max_position":"1320793982335","min_position":"1320788392647","created_at":"Tue Nov 08 23:13:02 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1622606834\/running_normal.jpg","screen_name":"abstractsunday","listed_count":566,"url":"http:\/\/www.christophniemann.com","name":"Christoph Niemann","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":450,"profile_background_tile":true,"utc_offset":-18000,"followers_count":13115,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1622606834\/running_normal.jpg","description":"Christoph Niemann is an illustrator, designer and author of Abstract Sunday, a column for the New York Times Magazine.\r\nhttp:\/\/niemann.blogs.nytimes.com\/","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Jan 21 13:03:54 +0000 2010","friends_count":60,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322104384\/animationc.png","favourites_count":1,"id_str":"107061895","contributors_enabled":false,"profile_text_color":"333333","id":107061895,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/322104384\/animationc.png","location":"Berlin\/New York"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 13:35:17 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133900400502910978","truncated":false,"id":133900400502910978,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Running and drawing the NYC Marathon. The whole series is up on my blog now: http:\/\/t.co\/Y9rBljd2"},{"contributors":null,"place":{"name":"Quantico","url":"http:\/\/api.twitter.com\/1\/geo\/id\/28392b731872a9ec.json","attributes":{},"full_name":"Quantico, VA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-77.293754,38.520321],[-77.286113,38.520321],[-77.286113,38.525908],[-77.293754,38.525908]]]},"place_type":"city","id":"28392b731872a9ec"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1615669531\/closer_normal.jpg","screen_name":"MikeBeeBurns","listed_count":1,"url":null,"name":"MB","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":4318,"profile_background_tile":false,"utc_offset":-18000,"followers_count":53,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1615669531\/closer_normal.jpg","description":"Probably the coolest person you'll never meet.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Sep 29 03:43:59 +0000 2008","friends_count":129,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/119725784\/cudi-603350.jpeg","favourites_count":12,"id_str":"16507244","contributors_enabled":false,"profile_text_color":"333333","id":16507244,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/119725784\/cudi-603350.jpeg","location":"Virginia, USA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:41:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134022769431154688","truncated":false,"id":134022769431154688,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This new activity thing on twitter is actually pretty useful and neat without cluttering my main feed"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1490843299\/image_normal.jpg","screen_name":"BrandoWarner","listed_count":13,"url":"http:\/\/flavors.me\/bwarner","name":"Brandon Warner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1871,"profile_background_tile":true,"utc_offset":-18000,"followers_count":512,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1490843299\/image_normal.jpg","description":"Knowledge enthusiast, humor afficionado, and gad fly.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Jun 12 14:47:25 +0000 2009","friends_count":290,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/326322923\/Safari_Desktop_Picture.jpg","favourites_count":4,"id_str":"46665981","contributors_enabled":false,"profile_text_color":"333333","id":46665981,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/326322923\/Safari_Desktop_Picture.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:38:48 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134022080709672961","truncated":false,"id":134022080709672961,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Not sure which is more interesting: Twitter's timeline tab or activity tab."}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","screen_name":"noradio","listed_count":929,"url":"http:\/\/t.co\/ll44zgy","name":"Marcel Molina","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","expanded_url":"http:\/\/project.ioni.st","follow_request_sent":false,"statuses_count":5786,"profile_background_tile":true,"utc_offset":-28800,"followers_count":52311,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/53473799\/marcel-euro-rails-conf_normal.jpg","description":"Engineer at Twitter. In a past life I was a member of the Rails Core team & 37signals.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Mon Apr 02 07:47:28 +0000 2007","friends_count":766,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","favourites_count":826,"id_str":"3191321","contributors_enabled":true,"profile_text_color":"333333","id":3191321,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"project.ioni.st","lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/18156348\/jessica_tiled.jpg.jpeg","location":"San Francisco, CA"}],"sources_size":1},{"action":"follow","max_position":"1320793810158","min_position":"1320715848036","created_at":"Tue Nov 08 23:10:10 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1258715561\/linked_normal.jpg","screen_name":"Colleran","listed_count":21,"url":"http:\/\/www.quora.com\/Mitch-Colleran","name":"Mitch C","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":2746,"profile_background_tile":true,"utc_offset":-28800,"followers_count":708,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1258715561\/linked_normal.jpg","description":"Partnerships & channel acquisition at @Eventbrite. Seattle transplant, SF resident & wannabe world traveler. I like Cities; big Cities. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Wed Mar 24 05:23:11 +0000 2010","friends_count":236,"default_profile":false,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":213,"id_str":"125891671","contributors_enabled":false,"profile_text_color":"333333","id":125891671,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"d72414","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1402448274\/Iterate-light_normal.png","screen_name":"iteratetv","listed_count":34,"url":"http:\/\/www.iterate.tv","name":"Iterate Podcast","time_zone":"Quito","profile_background_color":"000000","default_profile":false,"follow_request_sent":false,"statuses_count":224,"profile_background_tile":true,"utc_offset":-18000,"followers_count":610,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1402448274\/Iterate-light_normal.png","description":"The new mobile app design podcast, hosted by @marcedwards, @sethclifford and @reneritchie.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Fri Jun 17 21:19:49 +0000 2011","friends_count":4,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/273101221\/Background_Texture.gif","favourites_count":0,"id_str":"319282164","contributors_enabled":false,"profile_text_color":"333333","id":319282164,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/273101221\/Background_Texture.gif","location":"Loop until done."},{"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/438077765\/Gina_with_headphones_normal.jpg","screen_name":"ginab","listed_count":494,"url":"http:\/\/www.mightybell.com","name":"Gina Bianchini","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":null,"statuses_count":3275,"profile_background_tile":true,"utc_offset":-28800,"followers_count":8027,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/438077765\/Gina_with_headphones_normal.jpg","description":"I just started something called Mightybell (http:\/\/www.mightybell.com). ","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Dec 15 22:30:27 +0000 2006","friends_count":282,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":49,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:51:02 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133994959454994432","truncated":false,"id":133994959454994432,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"John F. Kennedy \"Conformity is the jailer of freedom and the enemy of growth.\""},"geo":null,"coordinates":null,"favorited":false,"retweet_count":49,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:03:22 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134013164483391488","truncated":false,"id":134013164483391488,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @AlecJRoss: John F. Kennedy \"Conformity is the jailer of freedom and the enemy of growth.\""},"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"72403","contributors_enabled":false,"profile_text_color":"333333","id":72403,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"Palo Alto, CA"},{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1582126038\/png_normal.png","screen_name":"dcurtisfeed","listed_count":17,"url":"http:\/\/dcurt.is","name":"Dustin Curtis","time_zone":null,"profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":22,"profile_background_tile":false,"utc_offset":null,"followers_count":483,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1582126038\/png_normal.png","description":"Dustin Curtis is a superhero. This is the feed for things posted to dcurt.is.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Mon Oct 10 20:21:29 +0000 2011","friends_count":1,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"388479404","contributors_enabled":false,"profile_text_color":"333333","id":388479404,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","screen_name":"vatortv","listed_count":137,"url":"http:\/\/vator.tv\/","name":"Vator","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6132,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2523,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","description":"Vator, one of the largest professional networks dedicated to entrepreneurs, is a place where startups connect and learn from one another. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Jul 16 20:00:26 +0000 2008","friends_count":273,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"15458880","contributors_enabled":false,"profile_text_color":"333333","id":15458880,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/211852939\/todphoto_normal.jpg","screen_name":"todfrancis","listed_count":40,"url":null,"name":"Tod Francis","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":181,"profile_background_tile":false,"utc_offset":-28800,"followers_count":941,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/211852939\/todphoto_normal.jpg","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 09 13:53:47 +0000 2007","friends_count":66,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"10098232","default_profile":true,"contributors_enabled":false,"profile_text_color":"333333","id":10098232,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Menlo Park, CA"},{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","screen_name":"SQQZY","listed_count":64,"url":"http:\/\/www.tampa.startupweekend.org","name":"Susie Steiner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":6296,"profile_background_tile":false,"utc_offset":-18000,"followers_count":714,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","description":"Serial Entrepreneur, Travel Addict, Smartass, Volunteer, and Dog Lover. I live by these words: The best way to predict the future is to invent it.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Aug 04 23:09:39 +0000 2008","friends_count":298,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","favourites_count":15,"id_str":"15729247","contributors_enabled":false,"profile_text_color":"333333","id":15729247,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","location":"http:\/\/www.fidoslaundry.com"},{"show_all_inline_media":false,"profile_link_color":"d1762c","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1602146980\/igi_profile_pic_normal.jpg","screen_name":"ignaziolaci","listed_count":6,"url":"http:\/\/ignaziolaci.com","name":"Ignazio Lacitignola","time_zone":"Pacific Time (US & Canada)","profile_background_color":"1a1a1a","default_profile":false,"follow_request_sent":false,"statuses_count":270,"profile_background_tile":false,"utc_offset":-28800,"followers_count":358,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1602146980\/igi_profile_pic_normal.jpg","description":"Sometimes I design things for the interwebs and sometimes not. http:\/\/ignaziolaci.com\/","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Wed May 13 22:02:29 +0000 2009","friends_count":1820,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"calebkimbrough","created_at":"Tue Nov 08 19:42:36 +0000 2011","retweeted":false,"in_reply_to_status_id":133992190903980032,"in_reply_to_status_id_str":"133992190903980032","source":"web","id_str":"133992838970089472","truncated":false,"id":133992838970089472,"in_reply_to_user_id_str":"7765462","in_reply_to_user_id":7765462,"text":"@calebkimbrough You are welcome! I'd love to see more wood textures! :)"},"profile_sidebar_border_color":"bababa","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/348599205\/bkg.jpg","favourites_count":2,"id_str":"39849032","contributors_enabled":false,"profile_text_color":"333333","id":39849032,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/348599205\/bkg.jpg","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"038543","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/999943917\/tomillustrated_normal.jpg","screen_name":"tomasaurusrex","listed_count":3,"url":"http:\/\/www.tomknabe.com","name":"Tom Knabe","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ACDED6","follow_request_sent":false,"statuses_count":282,"profile_background_tile":false,"utc_offset":-18000,"followers_count":154,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/999943917\/tomillustrated_normal.jpg","description":"web design, graphic design and builder of interactive elements for seasonal attractions. What what what! ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"verified":false,"created_at":"Thu Nov 06 07:55:22 +0000 2008","friends_count":221,"profile_sidebar_border_color":"EEEEEE","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":0,"id_str":"17207637","contributors_enabled":false,"profile_text_color":"333333","id":17207637,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","location":"Philadelphia"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1511890803\/114Transparent_normal.png","screen_name":"CardCase","listed_count":22,"url":"https:\/\/squareup.com\/cardcase","name":"Square Card Case","time_zone":"Hawaii","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6,"profile_background_tile":false,"utc_offset":-36000,"followers_count":913,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1511890803\/114Transparent_normal.png","description":"Leave your wallet at home.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":true,"created_at":"Wed Aug 24 21:57:15 +0000 2011","friends_count":0,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"361502914","contributors_enabled":false,"profile_text_color":"333333","id":361502914,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Everywhere."},{"show_all_inline_media":false,"profile_link_color":"68b8be","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1474879083\/twitter_normal.png","screen_name":"skillshare","listed_count":285,"url":"http:\/\/skillshare.com","name":"Skillshare","time_zone":"Eastern Time (US & Canada)","profile_background_color":"f0f3f5","follow_request_sent":false,"statuses_count":1487,"profile_background_tile":false,"utc_offset":-18000,"followers_count":5842,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1474879083\/twitter_normal.png","description":"Community marketplace for offline classes. Learn anything from anyone. Follow @sksupport for help & general questions.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Tue Jul 27 19:20:57 +0000 2010","friends_count":42,"default_profile":false,"profile_sidebar_border_color":"ebebeb","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":17,"id_str":"171613435","contributors_enabled":false,"profile_text_color":"383738","id":171613435,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"New York, NY"},{"show_all_inline_media":true,"profile_link_color":"b40000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/556789661\/pigman_normal.jpg","screen_name":"Mike_FTW","listed_count":1806,"url":"http:\/\/mikemonteiro.com","name":"Mike Monteiro","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":17834,"profile_background_tile":true,"utc_offset":-28800,"followers_count":24716,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/556789661\/pigman_normal.jpg","description":"This is a personal account and does not reflect the opinions of my boss, who is an asshole.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"fdf6ec","default_profile_image":false,"verified":false,"created_at":"Tue Jul 18 21:14:20 +0000 2006","friends_count":488,"profile_sidebar_border_color":"f2ebde","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/168445743\/bea-arthur-john-currin1.jpeg","favourites_count":2337,"id_str":"2426","contributors_enabled":false,"profile_text_color":"333333","id":2426,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/168445743\/bea-arthur-john-currin1.jpeg","location":"SF"},{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1576383359\/53399307-906A-4947-B31E-618506020619_normal","screen_name":"erickreutz","listed_count":6,"url":"http:\/\/airkrft.com","name":"Eric","time_zone":"Mountain Time (US & Canada)","profile_background_color":"f2f2f2","follow_request_sent":false,"statuses_count":6,"profile_background_tile":true,"utc_offset":-25200,"followers_count":167,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1576383359\/53399307-906A-4947-B31E-618506020619_normal","description":"Programming, Motherfucker","default_profile":false,"following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Mar 13 04:06:19 +0000 2009","friends_count":406,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/270418116\/airkrft_logo.png","favourites_count":24,"id_str":"24124370","contributors_enabled":false,"profile_text_color":"333333","id":24124370,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/270418116\/airkrft_logo.png","location":""}],"targets_size":13,"sources":[{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","screen_name":"nrrrdcore","listed_count":12,"url":"http:\/\/cherry.com","name":"Julie Ann Horvath","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3413,"profile_background_tile":true,"utc_offset":-28800,"followers_count":352,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","description":"Developer & Designer. I like vectors, mat\u00e9, and @hshoff. Making your eyes bleed glitter and double-rainbows at\r\n","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fdf68f","default_profile_image":false,"verified":false,"created_at":"Wed Dec 31 02:39:14 +0000 2008","friends_count":622,"profile_sidebar_border_color":"0a0a09","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","favourites_count":48,"id_str":"18496432","default_profile":false,"contributors_enabled":false,"profile_text_color":"0d0d0c","id":18496432,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793797916","min_position":"1320717149880","created_at":"Tue Nov 08 23:09:57 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1562645599\/Screen_shot_2011-09-22_at_10.24.39_AM_normal.png","screen_name":"koopacetic","listed_count":2,"url":null,"name":"Geoff Koops","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":12,"profile_background_tile":true,"utc_offset":-28800,"followers_count":48,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1562645599\/Screen_shot_2011-09-22_at_10.24.39_AM_normal.png","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Tue Apr 24 06:24:27 +0000 2007","friends_count":99,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"5455782","contributors_enabled":false,"profile_text_color":"333333","id":5455782,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":""},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 01:24:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133716554935316480","truncated":false,"id":133716554935316480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just wrapping my first day at @Square \u2013 the best free restaurant in SOMA."},{"id_str":"134044905914908672","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"17596608","contributors_enabled":false,"profile_text_color":"571a57","protected":false,"screen_name":"KatieBaynes","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","url":null,"name":"KatieBaynes","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1504449958\/image_normal.jpg","default_profile":false,"listed_count":41,"utc_offset":-28800,"description":"PR @Square. frequent flyer. extroverted introvert. creative conformist. party of 1. l'art pour l'art.","following":true,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":9189,"profile_background_tile":false,"created_at":"Mon Nov 24 17:47:16 +0000 2008","followers_count":1319,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1504449958\/image_normal.jpg","geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"notifications":false,"friends_count":444,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"id":17596608,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":19,"location":""},"favorited":false,"created_at":"Tue Nov 08 23:09:30 +0000 2011","retweet_count":0,"in_reply_to_screen_name":null,"source":"web","retweeted":false,"in_reply_to_status_id":null,"id":134044905914908672,"in_reply_to_status_id_str":null,"text":"The only thing that soothes my vertigo is knowing that Charles Darwin, Vincent Van Gogh, and Julius Caeser also suffered from it."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"198499","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/861305460\/chrisashworth.1_normal.jpg","screen_name":"Chris_Ashworth","listed_count":103,"url":"http:\/\/chrisashworth.org","name":"Chris Ashworth","time_zone":"Eastern Time (US & Canada)","profile_background_color":"393939","follow_request_sent":false,"statuses_count":8265,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1106,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/861305460\/chrisashworth.1_normal.jpg","description":"Founder of @Figure53. Making things in Baltimore. Curiouser and curiouser.","default_profile":false,"following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e3e3e3","default_profile_image":false,"verified":false,"created_at":"Fri Aug 08 00:21:57 +0000 2008","friends_count":377,"profile_sidebar_border_color":"ffffff","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/95238782\/spiro.png","favourites_count":603,"id_str":"15771794","contributors_enabled":false,"profile_text_color":"663B12","id":15771794,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/95238782\/spiro.png","location":"Baltimore"},"retweet_count":0,"in_reply_to_screen_name":"rsa","created_at":"Tue Nov 08 19:18:10 +0000 2011","retweeted":false,"in_reply_to_status_id":133986316399542272,"in_reply_to_status_id_str":"133986316399542272","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133986687918419968","truncated":false,"id":133986687918419968,"in_reply_to_user_id_str":"6735","in_reply_to_user_id":6735,"text":"@rsa Speaking of marketing, I just drove by a billboard for Square. YOU KEEP BLOWING MY MIND."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"00b7ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/784976676\/xdm_normal.jpg","screen_name":"DanSines","listed_count":3,"url":"http:\/\/www.woofound.com","name":"Daniel Sines","time_zone":null,"profile_background_color":"000000","follow_request_sent":false,"statuses_count":1347,"profile_background_tile":false,"utc_offset":null,"followers_count":82,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/784976676\/xdm_normal.jpg","description":"CEO and Co-Founder at Woofound, Inc.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Mon Mar 29 17:09:26 +0000 2010","friends_count":181,"profile_sidebar_border_color":"00e1ff","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/87418566\/dan_site.jpg","favourites_count":10,"id_str":"127576942","contributors_enabled":false,"profile_text_color":"bdbdbd","id":127576942,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/87418566\/dan_site.jpg","location":"Baltimore"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 03:57:14 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133754927070707713","truncated":false,"id":133754927070707713,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I find it so cool that a company i like and believe in, @square has commercials on every time I turn the tv on!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"4255ae","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/51857279\/merlin_icon_184-1_normal.png","screen_name":"hotdogsladies","listed_count":7403,"url":"http:\/\/roderickontheline.com","name":"Merlin Mann","time_zone":"Pacific Time (US & Canada)","profile_background_color":"eeeeee","follow_request_sent":false,"statuses_count":8727,"profile_background_tile":false,"utc_offset":-28800,"followers_count":188209,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/51857279\/merlin_icon_184-1_normal.png","description":"This was a valued rug.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DFDFDF","default_profile_image":false,"verified":false,"created_at":"Sat Feb 03 01:39:53 +0000 2007","friends_count":388,"profile_sidebar_border_color":"999999","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3550461\/merlin_icon_184.png","favourites_count":8792,"id_str":"749863","contributors_enabled":false,"profile_text_color":"333333","id":749863,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/3550461\/merlin_icon_184.png","location":"San Francisco, Calif."},"retweet_count":61,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:45:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133963264412487681","truncated":false,"id":133963264412487681,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"You know who else could not complete my iTunes store request because an unknown error occurred (4100)?\n\nHitler."}],"targets_size":5,"sources":[{"show_all_inline_media":true,"profile_link_color":"696969","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1245681782\/photo_1_normal.jpg","screen_name":"rsa","listed_count":348,"url":"http:\/\/implodr.tumblr.com","name":"Robert S Andersen","default_profile":false,"time_zone":"Pacific Time (US & Canada)","profile_background_color":"181b1d","follow_request_sent":false,"statuses_count":6637,"profile_background_tile":false,"utc_offset":-28800,"followers_count":6654,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1245681782\/photo_1_normal.jpg","description":"Creative lead at @Square, former product designer at Apple. Musician. Merrr.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"bfbfbf","default_profile_image":false,"verified":false,"created_at":"Sat Sep 23 22:19:35 +0000 2006","friends_count":328,"profile_sidebar_border_color":"999999","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/90485885\/bg.png","favourites_count":5754,"id_str":"6735","contributors_enabled":false,"profile_text_color":"000000","id":6735,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/90485885\/bg.png","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793771977","min_position":"1320726351647","created_at":"Tue Nov 08 23:09:31 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","screen_name":"SQQZY","listed_count":64,"url":"http:\/\/www.tampa.startupweekend.org","name":"Susie Steiner","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","default_profile":false,"follow_request_sent":false,"statuses_count":6296,"profile_background_tile":false,"utc_offset":-18000,"followers_count":714,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1430167777\/susie_stache_normal.png","description":"Serial Entrepreneur, Travel Addict, Smartass, Volunteer, and Dog Lover. I live by these words: The best way to predict the future is to invent it.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Aug 04 23:09:39 +0000 2008","friends_count":298,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","favourites_count":15,"id_str":"15729247","contributors_enabled":false,"profile_text_color":"333333","id":15729247,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/338274159\/TwitterTemplatePacMan.jpg","location":"http:\/\/www.fidoslaundry.com"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 20:47:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133646878062546945","truncated":false,"id":133646878062546945,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Let's bring this to Tampa! http:\/\/t.co\/Tyqx1EbG hmm hmm @cherry"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","screen_name":"vatortv","listed_count":137,"url":"http:\/\/vator.tv\/","name":"Vator","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","default_profile":true,"follow_request_sent":false,"statuses_count":6131,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2523,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/385013185\/vatortv_square_normal.png","description":"Vator, one of the largest professional networks dedicated to entrepreneurs, is a place where startups connect and learn from one another. ","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Wed Jul 16 20:00:26 +0000 2008","friends_count":273,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"15458880","contributors_enabled":false,"profile_text_color":"333333","id":15458880,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:38:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/vator.tv\/\" rel=\"nofollow\"\u003EVator.tv\u003C\/a\u003E","id_str":"134006963959889920","truncated":false,"id":134006963959889920,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"VatorNews - Cherry brings the carwash to you and gets $750K: The company is backed by Max Levchin, David Sacks, and.. http:\/\/t.co\/MAqzijsC"}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","screen_name":"nrrrdcore","listed_count":12,"url":"http:\/\/cherry.com","name":"Julie Ann Horvath","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3413,"profile_background_tile":true,"utc_offset":-28800,"followers_count":352,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1611593327\/Photo_on_8-8-11_at_8.20_PM_normal.jpg","description":"Developer & Designer. I like vectors, mat\u00e9, and @hshoff. Making your eyes bleed glitter and double-rainbows at\r\n","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fdf68f","default_profile_image":false,"verified":false,"created_at":"Wed Dec 31 02:39:14 +0000 2008","friends_count":622,"profile_sidebar_border_color":"0a0a09","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","favourites_count":48,"id_str":"18496432","default_profile":false,"contributors_enabled":false,"profile_text_color":"0d0d0c","id":18496432,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/317109280\/say_it.jpg","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320793407866","min_position":"1320717570705","created_at":"Tue Nov 08 23:03:27 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189545828\/120_2004_IMG.thumb_normal.jpg","screen_name":"amac","listed_count":392,"url":"http:\/\/t.co\/vIbTNs6","name":"Alex Macgillivray","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9AE4E8","expanded_url":"http:\/\/www.bricoleur.org\/","follow_request_sent":false,"statuses_count":1901,"profile_background_tile":false,"utc_offset":-28800,"followers_count":14412,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/189545828\/120_2004_IMG.thumb_normal.jpg","description":"Twitter GC, policy and trust & safety (but views are my own, not necessarily Twitter's)","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Sun Nov 04 20:31:25 +0000 2007","friends_count":494,"profile_sidebar_border_color":"BDDCAD","is_translator":true,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/10651977\/IMG_0922-1.JPG","favourites_count":14,"id_str":"9946842","contributors_enabled":false,"profile_text_color":"333333","id":9946842,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"bricoleur.org","lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/10651977\/IMG_0922-1.JPG","location":""},"retweet_count":1,"in_reply_to_screen_name":"parislemon","created_at":"Tue Nov 08 22:40:58 +0000 2011","retweeted":false,"in_reply_to_status_id":134036205229719552,"in_reply_to_status_id_str":"134036205229719552","source":"web","id_str":"134037722565328896","truncated":false,"id":134037722565328896,"in_reply_to_user_id_str":"652193","in_reply_to_user_id":652193,"text":"@parislemon Couldn't happen. @SG would have to be ~insane~ to let @SG get up on stage and resign live. @SG wouldn't let @SG do that to @SG."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/289094908\/fail_whale_verdell_copy_normal.jpg","screen_name":"MissRFTC","listed_count":91,"url":"http:\/\/thisweekslook.com","name":"Verdell Wilson","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":12634,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1565,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/289094908\/fail_whale_verdell_copy_normal.jpg","description":"In flagrante delicto. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Thu Nov 01 00:36:03 +0000 2007","friends_count":316,"default_profile":false,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3127834\/88.jpg","favourites_count":646,"id_str":"9840472","contributors_enabled":false,"profile_text_color":"000000","id":9840472,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3127834\/88.jpg","location":"Los Angeles, CA"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 04:26:45 +0000 2011","retweeted":false,"in_reply_to_status_id":133730675726614528,"in_reply_to_status_id_str":"133730675726614528","source":"web","id_str":"133762356135215104","truncated":false,"id":133762356135215104,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell @alyankovic Trick question! Jupiter and its \"moons\" were created on a Hollywood sound stage by the Illuminati."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619559076\/poppymark_normal.png","screen_name":"shinypb","listed_count":52,"url":"http:\/\/t.co\/82m869z","name":"Mark","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","expanded_url":"http:\/\/markchristian.org\/","follow_request_sent":false,"statuses_count":6169,"profile_background_tile":false,"utc_offset":-28800,"followers_count":2214,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1619559076\/poppymark_normal.png","description":"I'm a Canadian geek living in the Bay Area, trying to spread whimsy and glee wherever I go. I work at Twitter, and I think you're awesome. I heart @anathemalie.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Nov 20 02:08:17 +0000 2006","friends_count":833,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":126,"id_str":"13166","contributors_enabled":false,"profile_text_color":"333333","id":13166,"entities":{"hashtags":[],"user_mentions":[{"screen_name":"anathemalie","name":"Nathalie","indices":[147,159],"id_str":"192005257","id":192005257}],"urls":[]},"display_url":"markchristian.org","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco Bay Area"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:18:36 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133986795800109056","truncated":false,"id":133986795800109056,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"\u201cI only allow myself to eat McDonald's twice in one week at the most. I have to make time for BK, KFC, and Taco Bell.\u201d @chenosaurus wins."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"FF3300","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1619055954\/mark-headshot-200_normal.png","screen_name":"mbelinsky","listed_count":203,"url":"http:\/\/4hours.wordpress.com\/","name":"Mark Belinsky","time_zone":"Eastern Time (US & Canada)","profile_background_color":"709397","follow_request_sent":false,"statuses_count":6018,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2417,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1619055954\/mark-headshot-200_normal.png","description":"A nomad exploring tech for civic engagement, digital literacy education, & interactive media around the world. Co-Founder of Digital Democracy (@DigiDem)","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"A0C5C7","default_profile_image":false,"verified":false,"created_at":"Thu Oct 25 06:21:51 +0000 2007","friends_count":1976,"profile_sidebar_border_color":"86A4A6","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/112206138\/DSC_0078.jpg","favourites_count":5150,"id_str":"9676812","contributors_enabled":false,"profile_text_color":"333333","id":9676812,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/112206138\/DSC_0078.jpg","location":"Digital Nomad"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:43:52 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134008254744367104","truncated":false,"id":134008254744367104,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Why are we wasting all our time wasting our time talking about the sex life of a man who'll never be president? @ariannahuff #cdm2011nyc"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"f91a33","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1252729102\/jakefogelnest_normal.jpeg","screen_name":"jakefogelnest","listed_count":393,"url":"http:\/\/www.jakefogelnest.com\/","name":"Jake Fogelnest","time_zone":"Eastern Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":17250,"profile_background_tile":false,"utc_offset":-18000,"followers_count":16171,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1252729102\/jakefogelnest_normal.jpeg","description":"Call me on my home phone number: (646) 484-5323.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":true,"created_at":"Sat Apr 26 15:20:23 +0000 2008","friends_count":865,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/21463461\/jftwitter.001.jpg","favourites_count":3068,"id_str":"14546414","contributors_enabled":false,"profile_text_color":"808080","id":14546414,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/21463461\/jftwitter.001.jpg","location":"New York"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:04:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/eardrop.fm\/app\" rel=\"nofollow\"\u003EEardrop Test\u003C\/a\u003E","id_str":"133998349182447616","truncated":false,"id":133998349182447616,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is a thing I'm gonna do today: Don Pardo introducing SNL episodes hosted by various random animals. http:\/\/t.co\/2YBVwltk"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","screen_name":"beep","listed_count":1701,"url":"http:\/\/ethanmarcotte.com\/","name":"Ethan Marcotte","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","follow_request_sent":false,"statuses_count":11744,"profile_background_tile":true,"utc_offset":-18000,"followers_count":19739,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1266637465\/sammy-boy_normal.png","description":"Designer, developer. Started that whole \u201cresponsive web design\u201d thing.\r\n\r\n\u201cEight? Who taught you math?\u201d","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"7D7D7D","default_profile_image":false,"verified":false,"created_at":"Wed Nov 15 15:59:51 +0000 2006","friends_count":436,"profile_sidebar_border_color":"7D7D7D","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/224737148\/clint.jpg","favourites_count":28912,"id_str":"12534","default_profile":false,"contributors_enabled":false,"profile_text_color":"000000","id":12534,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/224737148\/clint.jpg","location":"Cambridge, MA"},"retweet_count":0,"in_reply_to_screen_name":"kevinmhoffman","created_at":"Tue Nov 08 20:31:28 +0000 2011","retweeted":false,"in_reply_to_status_id":134004413290397697,"in_reply_to_status_id_str":"134004413290397697","source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","id_str":"134005133766963200","truncated":false,"id":134005133766963200,"in_reply_to_user_id_str":"783675","in_reply_to_user_id":783675,"text":"@kevinmhoffman I\u2019LL DRESS MYSELF THANK YOU"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":true,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/218936355\/TEMP-Image_1_3.jpg_normal.jpeg","screen_name":"GNU_RMS","listed_count":384,"url":null,"name":"Richard Stallman","time_zone":"Quito","profile_background_color":"d4d4d4","follow_request_sent":false,"statuses_count":11,"profile_background_tile":false,"utc_offset":-18000,"followers_count":6650,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/218936355\/TEMP-Image_1_3.jpg_normal.jpeg","description":"!Founder of GNU Project and Free Software Foundation, father and current maintainer of the One True Emacs.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Tue May 19 14:36:23 +0000 2009","friends_count":62,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/13562772\/The_GNU_logo.png","favourites_count":0,"id_str":"41126993","contributors_enabled":false,"profile_text_color":"333333","id":41126993,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/13562772\/The_GNU_logo.png","location":""},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Sun May 30 04:43:21 +0000 2010","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"15020628866","truncated":false,"id":15020628866,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just saw a YouTube video, not impressed at all."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"BF1238","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/866556637\/teatime__normal.JPG","screen_name":"pattonoswalt","listed_count":12982,"url":"http:\/\/www.pattonoswalt.com","name":"Patton Oswalt","time_zone":null,"profile_background_color":"1c5741","follow_request_sent":false,"statuses_count":5771,"profile_background_tile":false,"utc_offset":null,"followers_count":522571,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/866556637\/teatime__normal.JPG","description":"Mr. Oswalt is a former wedding deejay from Northern Virginia.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"EFEFEF","default_profile_image":false,"verified":true,"created_at":"Sat May 01 19:00:10 +0000 2010","friends_count":667,"profile_sidebar_border_color":"FFFFFF","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/97647521\/glow-y.jpg","favourites_count":2176,"id_str":"139162440","contributors_enabled":false,"profile_text_color":"333333","id":139162440,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/97647521\/glow-y.jpg","location":"Los Angeles"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 05:57:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133785264614162432","truncated":false,"id":133785264614162432,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Know who should be president in 2012? My balls. I'd put googly eyes on 'em & they'd defend this goddamn country. Thank you."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"226c87","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/290341431\/Palm_Beach_normal.JPG","screen_name":"zecherj","listed_count":4,"url":null,"name":"Joshua Zecher","time_zone":"Quito","profile_background_color":"021f3b","follow_request_sent":false,"statuses_count":85,"profile_background_tile":true,"utc_offset":-18000,"followers_count":66,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/290341431\/Palm_Beach_normal.JPG","description":"Corporate Communications professional focused on public sector and New York Yankees; Opinions are mine unless plagiarized.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"cce4ff","default_profile_image":false,"verified":false,"created_at":"Mon Jun 29 16:48:19 +0000 2009","friends_count":167,"default_profile":false,"profile_sidebar_border_color":"205c87","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/21930064\/Yankee_Stadium.jpg","favourites_count":2,"id_str":"52111377","contributors_enabled":false,"profile_text_color":"333333","id":52111377,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/21930064\/Yankee_Stadium.jpg","location":"Washington, DC"},"retweet_count":0,"in_reply_to_screen_name":"SG","created_at":"Tue Nov 08 22:56:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134041526920675329","truncated":false,"id":134041526920675329,"in_reply_to_user_id_str":"822571","in_reply_to_user_id":822571,"text":"@SG you worked at Twitter?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1614094546\/dixon-riding-lawn-mower-21248633_normal.jpeg","screen_name":"CitizenDino","listed_count":39,"url":null,"name":"CitizenDino","time_zone":"Central Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":26149,"profile_background_tile":true,"utc_offset":-21600,"followers_count":988,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1614094546\/dixon-riding-lawn-mower-21248633_normal.jpeg","description":"","default_profile":false,"following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Apr 08 22:03:42 +0000 2008","friends_count":1510,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/336639573\/0134550350_frt_wmd_001.jpeg","favourites_count":6,"id_str":"14336640","contributors_enabled":false,"profile_text_color":"333333","id":14336640,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/336639573\/0134550350_frt_wmd_001.jpeg","location":"Wausau, Wi"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 07:08:40 +0000 2011","retweeted":false,"in_reply_to_status_id":133801379453083648,"in_reply_to_status_id_str":"133801379453083648","source":"web","id_str":"133803102355734529","truncated":false,"id":133803102355734529,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell I shook his hand once, and I cried. It was like meeting the Pope."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"088253","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/65237906\/Picture_5_normal.png","screen_name":"strutteratlanta","listed_count":22,"url":null,"name":"James DiStefano","time_zone":"Eastern Time (US & Canada)","profile_background_color":"EDECE9","default_profile":false,"follow_request_sent":false,"statuses_count":1478,"profile_background_tile":false,"utc_offset":-18000,"followers_count":320,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/65237906\/Picture_5_normal.png","description":"I'm young and I have my health. What do I want with a job?","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"E3E2DE","default_profile_image":false,"verified":false,"created_at":"Thu Mar 08 04:27:02 +0000 2007","friends_count":305,"profile_sidebar_border_color":"D3D2CF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme3\/bg.gif","favourites_count":5,"id_str":"820867","contributors_enabled":false,"profile_text_color":"634047","id":820867,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme3\/bg.gif","location":"Atlanta, GA"},"retweet_count":0,"in_reply_to_screen_name":"trammell","created_at":"Tue Nov 08 13:55:21 +0000 2011","retweeted":false,"in_reply_to_status_id":133801379453083648,"in_reply_to_status_id_str":"133801379453083648","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133905449312468993","truncated":false,"id":133905449312468993,"in_reply_to_user_id_str":"666073","in_reply_to_user_id":666073,"text":"@trammell Smokin' Joe punched me in the stomach at a book signing, in front of his son Marvis. Fave boxer of all time."}],"targets_size":11,"sources":[{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"162563","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1473630467\/trammell_square_by_dan_busta_normal.jpg","screen_name":"trammell","listed_count":888,"url":null,"name":"Trammell","time_zone":"Pacific Time (US & Canada)","profile_background_color":"465f59","expanded_url":null,"follow_request_sent":false,"statuses_count":8153,"profile_background_tile":false,"utc_offset":-28800,"followers_count":204842,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1473630467\/trammell_square_by_dan_busta_normal.jpg","description":"Young ragamuffin from the streets. A French duke lying about in hammocks eating soft cheese. Chimney sweep. Design Researcher at Twitter. Not Zach Galifianakis.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"aec7c3","default_profile_image":false,"verified":false,"created_at":"Fri Jan 19 17:21:42 +0000 2007","friends_count":776,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":7154,"id_str":"666073","contributors_enabled":false,"profile_text_color":"000000","id":666073,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"Don't call it San Fran."}],"sources_size":1},{"action":"follow","max_position":"1320793290277","min_position":"1320785880161","created_at":"Tue Nov 08 23:01:30 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"show_all_inline_media":true,"profile_link_color":"5b6950","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1344643278\/jolie_normal.jpg","screen_name":"jolieodell","listed_count":3502,"url":"http:\/\/jolieodell.com","name":"Jolie O'Dell","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":15544,"profile_background_tile":true,"utc_offset":-28800,"followers_count":31223,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1344643278\/jolie_normal.jpg","description":"Tech journalist. Computer science student. Honey badger. Lover of books, nice people, rock & roll, life in general.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Fri Jan 23 22:29:07 +0000 2009","friends_count":431,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"AndrewKam","created_at":"Tue Nov 08 22:43:02 +0000 2011","retweeted":false,"in_reply_to_status_id":134035707160301568,"in_reply_to_status_id_str":"134035707160301568","source":"web","id_str":"134038245536313344","truncated":false,"id":134038245536313344,"in_reply_to_user_id_str":"17937641","in_reply_to_user_id":17937641,"text":"@AndrewKam Yeah, typos in heds are shameful, but they happen sometimes. =("},"profile_sidebar_border_color":"829D5E","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/239215856\/birdbird.jpg","favourites_count":33,"id_str":"19417850","contributors_enabled":false,"profile_text_color":"3E4415","id":19417850,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/239215856\/birdbird.jpg","location":"San Francisco"},{"show_all_inline_media":false,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1157144902\/logo_hand_normal.png","screen_name":"littlebigdetail","listed_count":281,"url":"http:\/\/littlebigdetails.com","name":"Little Big Details","time_zone":null,"profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":1086,"profile_background_tile":false,"utc_offset":null,"followers_count":4263,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1157144902\/logo_hand_normal.png","description":"Your daily dose of UI inspiration. Curated by @floriz of @gidsynews.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Mon Nov 01 09:31:48 +0000 2010","friends_count":694,"profile_sidebar_border_color":"ffffff","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"210758676","contributors_enabled":false,"profile_text_color":"cccccc","id":210758676,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"In the details"}],"targets_size":2,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/520737576\/photo-3_normal.jpg","screen_name":"kevintwohy","listed_count":24,"url":"http:\/\/kevintwohy.com","name":"Kevin Twohy","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":3364,"profile_background_tile":false,"utc_offset":-28800,"followers_count":536,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/520737576\/photo-3_normal.jpg","description":"interested in good design, non-lame ideas. I'll probably deny that I said most of this.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Feb 11 04:17:15 +0000 2008","friends_count":714,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":1452,"id_str":"13334062","contributors_enabled":false,"profile_text_color":"333333","id":13334062,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320793272847","min_position":"1320722376942","created_at":"Tue Nov 08 23:01:12 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0f6985","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465412656\/userpic_normal.png","screen_name":"obra","listed_count":155,"url":"http:\/\/blog.fsck.com","name":"jesse","time_zone":"Eastern Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":5673,"profile_background_tile":false,"utc_offset":-18000,"followers_count":1319,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1465412656\/userpic_normal.png","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"f5f5f5","default_profile_image":false,"verified":false,"created_at":"Wed Dec 27 16:52:30 +0000 2006","friends_count":501,"profile_sidebar_border_color":"f5f5f5","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":105,"id_str":"289403","contributors_enabled":false,"profile_text_color":"666666","id":289403,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 02:47:15 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133737316731723776","truncated":false,"id":133737316731723776,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"If twitter blocked as a spammer anybody you don't follow who replied to a tweet containing the word iPad, the world would be a better place."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/54587542\/full_icon_normal.png","screen_name":"davidascher","listed_count":126,"url":"http:\/\/ascher.ca\/blog","name":"David Ascher","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":3701,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1506,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/54587542\/full_icon_normal.png","description":"I work at Mozilla on making it easy for people to share safely. And random other things.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Tue Mar 27 03:06:06 +0000 2007","friends_count":546,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":68,"id_str":"2396891","contributors_enabled":false,"profile_text_color":"3E4415","id":2396891,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"Vancouver, BC"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:55:24 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133769567305613312","truncated":false,"id":133769567305613312,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I gave a lecture at UBC today and found myself saying \"you should ask your parents about the AOL\/Compuserve days\". Hmm."},{"contributors":null,"place":{"name":"SoMa","url":"http:\/\/api.twitter.com\/1\/geo\/id\/2b6ff8c22edd9576.json","attributes":{},"full_name":"SoMa, San Francisco","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.42284884,37.76893497],[-122.3964,37.76893497],[-122.3964,37.78752897],[-122.42284884,37.78752897]]]},"place_type":"neighborhood","id":"2b6ff8c22edd9576"},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1509254355\/032.KarinaMarieDiaz_-_crop_normal.jpg","screen_name":"pandemona","listed_count":699,"url":"http:\/\/t.co\/xPqUlqq","name":"Sara Haider","time_zone":"Central Time (US & Canada)","profile_background_color":"022330","expanded_url":"http:\/\/pandemona.com","follow_request_sent":false,"statuses_count":6089,"profile_background_tile":false,"utc_offset":-21600,"followers_count":27046,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1509254355\/032.KarinaMarieDiaz_-_crop_normal.jpg","description":"engineer @ twitter. i love music, fashion, and food, but most of all, i love to dance.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Tue Dec 23 17:16:26 +0000 2008","friends_count":618,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":534,"id_str":"18337283","contributors_enabled":false,"profile_text_color":"333333","id":18337283,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"pandemona.com","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 23:00:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134042712944021504","truncated":false,"id":134042712944021504,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"OH: \"damn i saw your virgin tweet and got excited. wow that sounds weird.\" \/cc @dannyhertz"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"3E95F5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/67169723\/colin-square_normal.jpg","screen_name":"cbrumelle","listed_count":87,"url":"http:\/\/t.co\/H2cpT3K","name":"Colin Brumelle","time_zone":"Pacific Time (US & Canada)","profile_background_color":"FFFFFF","expanded_url":"http:\/\/mixedcontent.com","follow_request_sent":false,"statuses_count":1791,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2121,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/67169723\/colin-square_normal.jpg","description":"software engineer at Twitter and musician geek.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Fri Oct 20 06:00:08 +0000 2006","friends_count":437,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4652\/tilewd3.jpg","favourites_count":81,"id_str":"9651","contributors_enabled":true,"profile_text_color":"2B2B2B","id":9651,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"mixedcontent.com","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4652\/tilewd3.jpg","location":"Vancouver, BC"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 05:03:19 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133771557972623361","truncated":false,"id":133771557972623361,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Perspective: The cutoff for the top 1% *globally* is $34,000\/year. Top 50% is $1,225\/year."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/57084631\/n20903342_33746840_708_normal.jpg","screen_name":"jmhodges","listed_count":145,"url":"http:\/\/t.co\/oAuQh6m","name":"Jeff Hodges","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","expanded_url":"http:\/\/somethingsimilar.com","default_profile":false,"follow_request_sent":false,"statuses_count":6446,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4943,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/57084631\/n20903342_33746840_708_normal.jpg","description":"I like playing with all sorts of nifty things.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Fri Oct 05 17:07:25 +0000 2007","friends_count":450,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":221,"id_str":"9267272","contributors_enabled":false,"profile_text_color":"3E4415","id":9267272,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"somethingsimilar.com","lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:38:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134037145643003904","truncated":false,"id":134037145643003904,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Gonna miss the hell out of @SG."}],"targets_size":5,"sources":[{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/48591172\/avibryant_normal.png","screen_name":"avibryant","listed_count":327,"url":"http:\/\/t.co\/cuS2TvD","name":"Avi Bryant","time_zone":"Pacific Time (US & Canada)","profile_background_color":"352726","expanded_url":"http:\/\/avibryant.com\/","follow_request_sent":false,"statuses_count":5620,"profile_background_tile":false,"utc_offset":-28800,"followers_count":5568,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/48591172\/avibryant_normal.png","description":"Turning numbers into answers at Twitter Inc.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"verified":false,"created_at":"Mon Nov 20 05:40:10 +0000 2006","friends_count":443,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:05:25 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134028776811151360","truncated":false,"id":134028776811151360,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is really nicely done: http:\/\/t.co\/Qr8rsp5z @joinaroundtable"},"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":157,"id_str":"13192","contributors_enabled":true,"profile_text_color":"3E4415","id":13192,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"avibryant.com","default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco"}],"sources_size":1},{"action":"favorite","max_position":"1320792686869","min_position":"1320765778156","created_at":"Tue Nov 08 22:51:26 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff0000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","screen_name":"mrgan","listed_count":1167,"url":"http:\/\/mrgan.com","name":"Neven Mrgan","time_zone":"Eastern Time (US & Canada)","profile_background_color":"68def9","follow_request_sent":false,"statuses_count":23026,"profile_background_tile":true,"utc_offset":-18000,"followers_count":11819,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1621219870\/derek-avatar-flickr-48_normal.png","description":"One of the good ones.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Fri Dec 01 23:44:52 +0000 2006","friends_count":180,"default_profile":false,"profile_sidebar_border_color":"ff0000","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/19582992\/glyphs1.png","favourites_count":12441,"id_str":"35293","contributors_enabled":false,"profile_text_color":"000000","id":35293,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/19582992\/glyphs1.png","location":"Portland, OR"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:35:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific for Mac\u003C\/a\u003E","id_str":"134036243846672384","truncated":false,"id":134036243846672384,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Photoshop's 3D rendering adds a 1% black background on all my renderings. I AM THE 99% #occupyparkavenue"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/933969108\/IMG_9126_cropped_shrunk_normal.jpg","screen_name":"elliterate","listed_count":6,"url":"http:\/\/www.elliterate.com","name":"Ian","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":785,"profile_background_tile":false,"utc_offset":-28800,"followers_count":137,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/933969108\/IMG_9126_cropped_shrunk_normal.jpg","description":"Purveyor of Pivotal practices.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue May 22 00:04:33 +0000 2007","friends_count":105,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":34,"id_str":"6212742","contributors_enabled":false,"profile_text_color":"333333","id":6212742,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA"},"retweet_count":0,"in_reply_to_screen_name":"puls","created_at":"Tue Nov 08 06:45:02 +0000 2011","retweeted":false,"in_reply_to_status_id":133792554658430976,"in_reply_to_status_id_str":"133792554658430976","source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133797157294710785","truncated":false,"id":133797157294710785,"in_reply_to_user_id_str":"14254927","in_reply_to_user_id":14254927,"text":"@puls When are you guys going for your interviews? Maybe we can get a good rate on a charter bus."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370051264\/IMG_0302_normal.jpg","screen_name":"puls","listed_count":45,"url":"http:\/\/puls.im","name":"Jim Puls","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":6851,"profile_background_tile":false,"utc_offset":-28800,"followers_count":589,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1370051264\/IMG_0302_normal.jpg","description":"Eternally curious.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Mar 30 02:16:45 +0000 2008","friends_count":368,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":614,"id_str":"14254927","contributors_enabled":false,"profile_text_color":"333333","id":14254927,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320792062822","min_position":"1320742880298","created_at":"Tue Nov 08 22:41:02 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/103916961\/Picture_10_normal.png","screen_name":"robdelaney","listed_count":7673,"url":"http:\/\/www.robdelaney.com","name":"rob delaney","time_zone":"Pacific Time (US & Canada)","profile_background_color":"9f9ae6","default_profile":false,"follow_request_sent":false,"statuses_count":5153,"profile_background_tile":false,"utc_offset":-28800,"followers_count":242505,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/103916961\/Picture_10_normal.png","description":"Comedian,Writer, 6'3 217lbs","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":true,"created_at":"Fri Feb 27 00:19:20 +0000 2009","friends_count":802,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5270293\/fart_god.jpg","favourites_count":27151,"id_str":"22084427","contributors_enabled":false,"profile_text_color":"333333","id":22084427,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5270293\/fart_god.jpg","location":"Los Angeles, CA"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:57:05 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133966284604977152","truncated":false,"id":133966284604977152,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Did Biden tell you that? RT @BarackObama: Is it true that all owls are Jewish?"},{"contributors":null,"place":{"name":"Cow Hollow","url":"http:\/\/api.twitter.com\/1\/geo\/id\/306c7e290a3155bd.json","attributes":{},"full_name":"Cow Hollow, San Francisco","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.44717584,37.79479404],[-122.42367288,37.79479404],[-122.42367288,37.80142398],[-122.44717584,37.80142398]]]},"place_type":"neighborhood","id":"306c7e290a3155bd"},"geo":{"type":"Point","coordinates":[37.79739280,-122.43459667]},"coordinates":{"type":"Point","coordinates":[-122.43459667,37.79739280]},"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","screen_name":"mgrooves","listed_count":200,"url":null,"name":"Matt Graves","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C0DEED","expanded_url":null,"follow_request_sent":false,"statuses_count":4172,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4832,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1230241496\/Photo_on_2011-01-30_at_13.57__2_normal.jpg","description":"twitter comms. lover of loud music and louder laughs.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Tue Feb 26 17:06:58 +0000 2008","friends_count":798,"default_profile":true,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":302,"id_str":"14013722","contributors_enabled":true,"profile_text_color":"333333","id":14013722,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:18:06 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134016869857378306","truncated":false,"id":134016869857378306,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I'm beginning to think Lululemon may be some sort of cult. A beautiful, stretchy cult."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1378019991\/Qklh9wIJ_normal","screen_name":"ibuildnosystem","listed_count":23,"url":"http:\/\/www.tylercoulson.com","name":"Geo. Tyler Coulson","time_zone":null,"profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":1420,"profile_background_tile":false,"utc_offset":null,"followers_count":1334,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1378019991\/Qklh9wIJ_normal","description":"I was born. Then I was an attorney. Now I am hiking across the country with my dog. Her name is Mabel.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Jan 21 01:57:31 +0000 2011","friends_count":41,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":4,"id_str":"240926950","contributors_enabled":false,"profile_text_color":"333333","id":240926950,"default_profile":true,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 19:47:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.samsungmobile.com\" rel=\"nofollow\"\u003ESamsung Mobile\u003C\/a\u003E","id_str":"133994127900688384","truncated":false,"id":133994127900688384,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"some moments change your life. sometimes you change your own life on a moment. thanks, everyone."}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"2381a3","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","screen_name":"mischa","default_profile":false,"listed_count":206,"url":"http:\/\/t.co\/n2qvwsh","name":"Mischa Nachtigal","time_zone":"Mountain Time (US & Canada)","profile_background_color":"d0d1c1","expanded_url":"http:\/\/about.me\/mischa","follow_request_sent":false,"statuses_count":5303,"profile_background_tile":true,"utc_offset":-25200,"followers_count":10592,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","description":"World wide wanderer who enjoys stories and works at Twitter. Tweets are my own, and often whimsical.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"b1d98b","default_profile_image":false,"verified":false,"created_at":"Wed Jun 10 14:25:30 +0000 2009","friends_count":752,"profile_sidebar_border_color":"595244","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","favourites_count":1107,"id_str":"46123040","contributors_enabled":false,"profile_text_color":"141910","id":46123040,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/mischa","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","location":"SF"}],"sources_size":1},{"action":"retweet","max_position":"1320792005854","min_position":"1320791364417","created_at":"Tue Nov 08 22:40:05 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","screen_name":"climagic","listed_count":259,"url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","time_zone":"London","profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"utc_offset":0,"followers_count":4491,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 20 12:49:35 +0000 2009","friends_count":1600,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","id":91333167,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","location":"BASH"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","id_str":"134002246450024448","truncated":false,"id":134002246450024448,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"man ascii # Quick access to the ASCII table."}],"target_objects_size":1,"targets":[{"id_str":"134034810137088001","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"retweeted_status":{"id_str":"134002246450024448","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","protected":false,"screen_name":"climagic","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","listed_count":259,"utc_offset":0,"description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"time_zone":"London","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"created_at":"Fri Nov 20 12:49:35 +0000 2009","followers_count":4476,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"notifications":false,"friends_count":1600,"default_profile":false,"profile_sidebar_border_color":"C0DEED","is_translator":false,"id":91333167,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"location":"BASH"},"favorited":false,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweet_count":38,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":134002246450024448,"in_reply_to_status_id_str":null,"text":"man ascii # Quick access to the ASCII table."},"user":{"id_str":"20941662","contributors_enabled":false,"profile_text_color":"333333","protected":false,"screen_name":"JEG2","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","url":"http:\/\/blog.grayproductions.net","name":"James Edward Gray II","show_all_inline_media":true,"profile_link_color":"990000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","listed_count":283,"utc_offset":-21600,"description":"Rubyist, Husband, Father, Atheist, Oklahoman, and all around weird guy.","following":true,"time_zone":"Central Time (US & Canada)","profile_background_color":"EBEBEB","follow_request_sent":false,"statuses_count":7512,"profile_background_tile":false,"created_at":"Sun Feb 15 22:05:54 +0000 2009","followers_count":2479,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":false,"notifications":false,"friends_count":160,"default_profile":false,"profile_sidebar_border_color":"DFDFDF","is_translator":false,"id":20941662,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":0,"location":"Edmond, OK"},"favorited":false,"created_at":"Tue Nov 08 22:29:23 +0000 2011","retweet_count":38,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":134034810137088001,"in_reply_to_status_id_str":null,"text":"RT @climagic: man ascii # Quick access to the ASCII table."},{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","screen_name":"climagic","listed_count":259,"url":"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic","name":"Command Line Magic","time_zone":"London","profile_background_color":"C0DEED","default_profile":false,"follow_request_sent":false,"statuses_count":2784,"profile_background_tile":true,"utc_offset":0,"followers_count":4491,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/535876218\/climagic-icon_normal.png","description":"Cool Unix\/Linux Command Line tricks you can use in 140 characters or less. ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Nov 20 12:49:35 +0000 2009","friends_count":1600,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","favourites_count":5,"id_str":"91333167","contributors_enabled":false,"profile_text_color":"333333","id":91333167,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/60122174\/checkertermbackground.png","location":"BASH"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:19:59 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/suso.suso.org\/xulu\/Command_Line_Magic\" rel=\"nofollow\"\u003ECLI Magic poster\u003C\/a\u003E","id_str":"134002246450024448","truncated":false,"id":134002246450024448,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"man ascii # Quick access to the ASCII table."},"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","default_profile":false,"follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"},"retweet_count":41,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:40:04 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"134037496634937344","truncated":false,"id":134037496634937344,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @climagic: man ascii # Quick access to the ASCII table."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"},{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","screen_name":"JEG2","listed_count":283,"url":"http:\/\/blog.grayproductions.net","name":"James Edward Gray II","time_zone":"Central Time (US & Canada)","profile_background_color":"EBEBEB","follow_request_sent":false,"statuses_count":7512,"profile_background_tile":false,"utc_offset":-21600,"followers_count":2479,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78606312\/james_headshot_square_normal.jpg","description":"Rubyist, Husband, Father, Atheist, Oklahoman, and all around weird guy.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":false,"created_at":"Sun Feb 15 22:05:54 +0000 2009","friends_count":160,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"rbates","created_at":"Tue Nov 08 22:47:11 +0000 2011","retweeted":false,"in_reply_to_status_id":134039111794294785,"in_reply_to_status_id_str":"134039111794294785","source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","id_str":"134039286986186753","truncated":false,"id":134039286986186753,"in_reply_to_user_id_str":"14246143","in_reply_to_user_id":14246143,"text":"@rbates That's the plan. I hope so too."},"profile_sidebar_border_color":"DFDFDF","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":0,"id_str":"20941662","contributors_enabled":false,"profile_text_color":"333333","id":20941662,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","location":"Edmond, OK"}],"sources_size":2},{"action":"retweet","max_position":"1320791694473","min_position":"1320785049918","created_at":"Tue Nov 08 22:34:54 +0000 2011","target_objects":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"}],"target_objects_size":1,"targets":[{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","screen_name":"cstoller","default_profile":false,"listed_count":317,"url":"http:\/\/about.chadcasting.com","name":"Chad Stoller","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":5724,"profile_background_tile":true,"utc_offset":-18000,"followers_count":2724,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","description":"superfragilistic, most of the time. building brands and making you want them for over 19 years!","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Tue Jan 23 17:49:54 +0000 2007","friends_count":754,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","favourites_count":104,"id_str":"687613","contributors_enabled":false,"profile_text_color":"000000","id":687613,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","location":"\u00dcT: 40.742427,-73.980488"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 20:44:08 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"134008324034269184","truncated":true,"id":134008324034269184,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"0000ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","screen_name":"cstoller","listed_count":317,"url":"http:\/\/about.chadcasting.com","name":"Chad Stoller","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9ae4e8","follow_request_sent":false,"statuses_count":5725,"profile_background_tile":true,"utc_offset":-18000,"followers_count":2724,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/657509183\/cstoller_headshot_mini_normal.jpg","description":"superfragilistic, most of the time. building brands and making you want them for over 19 years!","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"e0ff92","default_profile_image":false,"verified":false,"created_at":"Tue Jan 23 17:49:54 +0000 2007","friends_count":754,"profile_sidebar_border_color":"87bc44","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","favourites_count":104,"id_str":"687613","contributors_enabled":false,"profile_text_color":"000000","id":687613,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/39012\/chad_is_rad.jpg","location":"\u00dcT: 40.742427,-73.980488"},{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","default_profile":false,"follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"}],"sources_size":2},{"action":"favorite","max_position":"1320791692383","min_position":"1320707832570","created_at":"Tue Nov 08 22:34:52 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"id_str":"133771741360177153","place":null,"truncated":false,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"contributors":null,"geo":null,"coordinates":null,"user":{"id_str":"937961","contributors_enabled":false,"profile_text_color":"000000","protected":false,"screen_name":"msg","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2047992\/495710958_52b3df7716.jpg","url":"http:\/\/www.michaelgalpert.com","name":"Michael S Galpert","show_all_inline_media":true,"profile_link_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1616790752\/99e595b0-d6c2-4014-8d4c-e342cba342b3_normal.png","listed_count":217,"utc_offset":-18000,"description":"I like to wear many hats one of them is so awesome its called Aviary.com Want to get in touch: TXT MSG TO 50500 and you will get my info","following":false,"time_zone":"Eastern Time (US & Canada)","profile_background_color":"FFFFFF","follow_request_sent":false,"statuses_count":8140,"profile_background_tile":false,"created_at":"Sun Mar 11 17:37:46 +0000 2007","followers_count":4263,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1616790752\/99e595b0-d6c2-4014-8d4c-e342cba342b3_normal.png","geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"notifications":false,"friends_count":661,"profile_sidebar_border_color":"000000","is_translator":false,"default_profile":false,"id":937961,"lang":"en","profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/2047992\/495710958_52b3df7716.jpg","favourites_count":1456,"location":"10009"},"favorited":false,"created_at":"Tue Nov 08 05:04:03 +0000 2011","retweet_count":4,"in_reply_to_screen_name":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","retweeted":false,"in_reply_to_status_id":null,"id":133771741360177153,"in_reply_to_status_id_str":null,"text":"THAT SHIT CRAY"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"208fc5","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","screen_name":"indirock","default_profile":false,"listed_count":49,"url":"http:\/\/about.me\/indirock","name":"Indira Vaidy","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1192,"profile_background_tile":true,"utc_offset":-18000,"followers_count":820,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1587130042\/indirano_normal.jpg","description":"eternally curious. going hard. in solidarity with YOU. an extremely lucky girl.\r\nstrategist & planner @BBDONY. ","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"a3cc8e","default_profile_image":false,"verified":false,"created_at":"Thu Jun 26 15:48:03 +0000 2008","friends_count":720,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","favourites_count":65,"id_str":"15244977","contributors_enabled":false,"profile_text_color":"333333","id":15244977,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/5792546\/3359278448_be0a9ae4c2_m.jpg","location":"Brooklyn, NYC"},"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1585028623\/foursquare-api_normal.png","screen_name":"foursquareapi","listed_count":475,"url":"http:\/\/developer.foursquare.com","name":"foursquare API","time_zone":"Eastern Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":94,"profile_background_tile":true,"utc_offset":-18000,"followers_count":5252,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1585028623\/foursquare-api_normal.png","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Mon Jun 08 16:06:06 +0000 2009","friends_count":7,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":0,"id_str":"45598477","default_profile":false,"contributors_enabled":false,"profile_text_color":"333333","id":45598477,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":""},"retweet_count":5,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:15:00 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134031191069294592","truncated":false,"id":134031191069294592,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Oh hi @benjaminnetter, thanks for dropping by and picking up your new belt #4sqhackathon http:\/\/t.co\/QPJIbV7C http:\/\/t.co\/vKd6NGtW"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":true,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/458225472\/sergio-profile-picture_normal.jpg","screen_name":"sergiosalvatore","listed_count":2,"url":null,"name":"Sergio Salvatore","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":42,"profile_background_tile":false,"utc_offset":-18000,"followers_count":57,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/458225472\/sergio-profile-picture_normal.jpg","description":"pianist, composer, technologist. builder of things.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Thu Dec 18 00:29:55 +0000 2008","friends_count":41,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"18204314","contributors_enabled":false,"profile_text_color":"333333","id":18204314,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":"New York, NY"},"retweet_count":0,"in_reply_to_screen_name":"aplinnyc","created_at":"Mon Nov 07 22:15:17 +0000 2011","retweeted":false,"in_reply_to_status_id":133667025196298240,"in_reply_to_status_id_str":"133667025196298240","source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133668873277935616","truncated":false,"id":133668873277935616,"in_reply_to_user_id_str":"209283817","in_reply_to_user_id":209283817,"text":"@aplinnyc Adam, are you ok? Are you ok, Adam?"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"2473E4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53151507\/Devon_Biondi_normal.jpg","screen_name":"Devon","listed_count":122,"url":"http:\/\/devonbiondi.com","name":"Devon","time_zone":"Pacific Time (US & Canada)","profile_background_color":"69D2E7","follow_request_sent":false,"statuses_count":2781,"profile_background_tile":true,"utc_offset":-28800,"followers_count":2890,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/53151507\/Devon_Biondi_normal.jpg","description":"Strategizing about APIs and what to cook for dinner- not necessarily in that order","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"F38630","default_profile_image":false,"verified":false,"created_at":"Tue Apr 03 19:52:53 +0000 2007","friends_count":565,"default_profile":false,"profile_sidebar_border_color":"FA6900","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/57130124\/x917fb21276c44f55b770c0118bc5e07.png","favourites_count":63,"id_str":"3355001","contributors_enabled":false,"profile_text_color":"283534","id":3355001,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/57130124\/x917fb21276c44f55b770c0118bc5e07.png","location":"San Francisco"},"retweet_count":25,"in_reply_to_screen_name":null,"created_at":"Sun Nov 06 19:22:48 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133263079948554240","truncated":false,"id":133263079948554240,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Foursquare freebies for the 99% http:\/\/t.co\/Hsxa2wYV #reinventlocal"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":true,"possibly_sensitive":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1218952152\/Puzzle_Globe_normal.jpg","screen_name":"Wikipedia","listed_count":1742,"url":"http:\/\/wikipedia.org\/","name":"Wikipedia ","time_zone":"Pacific Time (US & Canada)","profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":611,"profile_background_tile":false,"utc_offset":-28800,"followers_count":33858,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1218952152\/Puzzle_Globe_normal.jpg","description":"Wikipedia's official Twitter account!","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Oct 30 20:29:14 +0000 2009","friends_count":274,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/102504840\/newFIXED_Twitter_Background.jpg","favourites_count":4,"id_str":"86390214","contributors_enabled":false,"profile_text_color":"333333","id":86390214,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/102504840\/newFIXED_Twitter_Background.jpg","location":"San Francisco"},"retweet_count":"100+","in_reply_to_screen_name":"SteveMartinToGo","created_at":"Mon Nov 07 20:15:47 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/identi.ca\" rel=\"nofollow\"\u003Eidentica\u003C\/a\u003E","id_str":"133638800617381888","truncated":false,"id":133638800617381888,"in_reply_to_user_id_str":"14824849","in_reply_to_user_id":14824849,"text":"@SteveMartinToGo Please stop editing your Wikipedia page to say \"best hair in the history of the world.\" Need NPOV http:\/\/t.co\/QcgOgOxn"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1583800348\/derek_normal.jpg","screen_name":"ShitDerekSSays","listed_count":0,"url":null,"name":"Derek S.","time_zone":null,"profile_background_color":"C0DEED","default_profile":true,"follow_request_sent":false,"statuses_count":16,"profile_background_tile":false,"utc_offset":null,"followers_count":12,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1583800348\/derek_normal.jpg","description":"","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Fri Sep 23 20:54:31 +0000 2011","friends_count":7,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"378802750","contributors_enabled":false,"profile_text_color":"333333","id":378802750,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","location":""},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 00:19:17 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133700078752903168","truncated":false,"id":133700078752903168,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"\"I was in middle school when this song came out. You were probably in high school.\""},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1231198625\/andrew-mager-square_normal.jpg","screen_name":"mager","listed_count":567,"url":"http:\/\/mager.co","name":"Andrew Mager","time_zone":"Eastern Time (US & Canada)","profile_background_color":"C0DEED","follow_request_sent":false,"statuses_count":10748,"profile_background_tile":true,"utc_offset":-18000,"followers_count":8238,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1231198625\/andrew-mager-square_normal.jpg","description":"Hacker Advocate at @Spotify. Exploding the NYC tech scene.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"created_at":"Sun Jan 14 01:59:13 +0000 2007","friends_count":1486,"profile_sidebar_border_color":"C0DEED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/348282519\/blueprint2.jpg","favourites_count":985,"id_str":"632023","contributors_enabled":false,"profile_text_color":"333333","id":632023,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/348282519\/blueprint2.jpg","location":"Brooklyn, NY"},"retweet_count":2,"in_reply_to_screen_name":"naveen","created_at":"Tue Nov 08 21:08:42 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134014504278310912","truncated":false,"id":134014504278310912,"in_reply_to_user_id_str":"5215","in_reply_to_user_id":5215,"text":"@naveen @dens I bought an international data plan solely so I can check in."},{"contributors":null,"place":{"name":"Manhattan","url":"http:\/\/api.twitter.com\/1\/geo\/id\/086752cb03de1d5d.json","attributes":{},"full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.047249,40.679548],[-73.907104,40.679548],[-73.907104,40.882214],[-74.047249,40.882214]]]},"place_type":"city","id":"086752cb03de1d5d"},"geo":{"type":"Point","coordinates":[40.72826695,-73.99116039]},"coordinates":{"type":"Point","coordinates":[-73.99116039,40.72826695]},"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"D02B55","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/31208162\/n201149_31531916_6855_normal.jpg","screen_name":"JorgeO","listed_count":213,"url":null,"name":"Jorge Ortiz","time_zone":"Eastern Time (US & Canada)","profile_background_color":"352726","follow_request_sent":false,"statuses_count":12462,"profile_background_tile":false,"utc_offset":-18000,"followers_count":2479,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/31208162\/n201149_31531916_6855_normal.jpg","description":"I work at foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"99CC33","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Sun May 13 03:40:02 +0000 2007","friends_count":659,"profile_sidebar_border_color":"829D5E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":881,"id_str":"6001592","contributors_enabled":false,"profile_text_color":"3E4415","id":6001592,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"NYC"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:58:33 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003Efoursquare\u003C\/a\u003E","id_str":"134027048237793281","truncated":false,"id":134027048237793281,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Our GLOBAL HACKATHON WINNER @benjaminnetter claims his title belt from @naveen (@ foursquare HQ w\/ @tedp) [pic]: http:\/\/t.co\/KnIDX3Rg"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1382115388\/ts_normal.png","screen_name":"finitor","listed_count":62,"url":"http:\/\/flickr.com\/finitor","name":"finitor","time_zone":"Eastern Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":4485,"profile_background_tile":false,"utc_offset":-18000,"followers_count":933,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1382115388\/ts_normal.png","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Sun Feb 15 22:06:09 +0000 2009","friends_count":329,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/22634626\/crawfish-chix.jpg","favourites_count":4,"id_str":"20941681","contributors_enabled":false,"profile_text_color":"333333","id":20941681,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/22634626\/crawfish-chix.jpg","location":"Alphabet City"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Mon Nov 07 23:13:02 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133683406201569280","truncated":false,"id":133683406201569280,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Absent iPads and PlayStations, people spent time chatting, playing w children, & having sex with more than one person. http:\/\/t.co\/Cc75w7yL"}],"targets_size":10,"sources":[{"show_all_inline_media":true,"profile_link_color":"000000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","screen_name":"naveen","listed_count":1268,"url":"http:\/\/naveenium.com\/","name":"naveen","time_zone":"Eastern Time (US & Canada)","profile_background_color":"121212","default_profile":false,"follow_request_sent":false,"statuses_count":7438,"profile_background_tile":true,"utc_offset":-18000,"followers_count":17066,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/635779215\/naveen-bw-400_normal.png","description":"dreamer. co-founder, foursquare.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"verified":false,"created_at":"Sun Sep 03 04:10:13 +0000 2006","friends_count":195,"status":{"contributors":null,"place":null,"retweeted_status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":"dens","created_at":"Tue Nov 08 20:01:30 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133997595285659648","truncated":false,"id":133997595285659648,"in_reply_to_user_id_str":"418","in_reply_to_user_id":418,"text":"@dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony #huh"},"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:34:53 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134036191942164480","truncated":true,"id":134036191942164480,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"RT @indirock: @dens @naveen @EricFriedman @foursquare shout out! \u201c@ATT: RT @mashable: AT&T Ad Goes Viral - http:\/\/t.co\/H3St1ahF\u201d #bbdony ..."},"profile_sidebar_border_color":"3A3A3A","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","favourites_count":1706,"id_str":"5215","contributors_enabled":false,"profile_text_color":"575757","id":5215,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/1530192\/mandolux-vines-a-1280.jpg","location":"New York, New York"}],"sources_size":1},{"action":"favorite","max_position":"1320791692245","min_position":"1320791692245","created_at":"Tue Nov 08 22:34:52 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"0fbfff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1116124449\/Screen_shot_2010-09-02_at_7.59.28_PM_normal.png","screen_name":"LeMEMEblog","default_profile":false,"listed_count":8,"url":"http:\/\/www.lememe.com","name":"LeMEME","time_zone":null,"profile_background_color":"ffffff","follow_request_sent":false,"statuses_count":3673,"profile_background_tile":false,"utc_offset":null,"followers_count":745,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1116124449\/Screen_shot_2010-09-02_at_7.59.28_PM_normal.png","description":"The best blog on the interwebs.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"ffffff","default_profile_image":false,"verified":false,"created_at":"Thu Sep 02 23:55:32 +0000 2010","friends_count":20,"profile_sidebar_border_color":"000000","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/143644349\/Screen_shot_2010-09-02_at_7.57.16_PM.png","favourites_count":9,"id_str":"186256292","contributors_enabled":false,"profile_text_color":"333333","id":186256292,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/143644349\/Screen_shot_2010-09-02_at_7.57.16_PM.png","location":""},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:50:46 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134025090663849984","truncated":false,"id":134025090663849984,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"http:\/\/t.co\/fdB37YHT"}],"targets_size":1,"sources":[{"show_all_inline_media":true,"profile_link_color":"fa8c8c","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1307156204\/kristensphoto_normal.jpeg","screen_name":"jgv","listed_count":27,"url":"http:\/\/jonathanvingiano.com","name":"Jonathan Vingiano","time_zone":"Eastern Time (US & Canada)","profile_background_color":"fcfcfc","follow_request_sent":false,"statuses_count":6482,"profile_background_tile":true,"utc_offset":-18000,"followers_count":836,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1307156204\/kristensphoto_normal.jpeg","description":"art and code and stuff. partner @okfocus.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"fcfcfc","default_profile_image":false,"verified":false,"created_at":"Mon Jul 23 08:25:37 +0000 2007","friends_count":386,"profile_sidebar_border_color":"e6e3e5","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4324148\/Gradient-Screensaver.jpg","favourites_count":1225,"id_str":"7654892","contributors_enabled":false,"profile_text_color":"ababab","id":7654892,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4324148\/Gradient-Screensaver.jpg","location":"Brooklyn, NY"}],"sources_size":1},{"action":"favorite","max_position":"1320791413556","min_position":"1320773072763","created_at":"Tue Nov 08 22:30:13 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1134578626\/Screen_shot_2010-09-30_at_11.19.30_AM_normal.png","screen_name":"cscotta","listed_count":87,"url":"http:\/\/blog.paradoxica.net","name":"C. Scott Andreas","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":10002,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1135,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1134578626\/Screen_shot_2010-09-30_at_11.19.30_AM_normal.png","description":"Petits r\u00e9cits at Boundary. Using it wrong.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Tue Mar 06 14:30:18 +0000 2007","friends_count":158,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":38,"id_str":"815031","contributors_enabled":false,"profile_text_color":"333333","id":815031,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"Folsom St, San Francisco"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 18:09:37 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133969438415388672","truncated":false,"id":133969438415388672,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"After one last `git push`, @boundary is an SBT-free workplace: http:\/\/t.co\/hJsnWWmO"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/764683525\/dog-driving-vintage-vehicle_normal.jpg","screen_name":"dogsdoingthings","listed_count":270,"url":null,"name":"Dogs doing things","time_zone":"Eastern Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":4525,"profile_background_tile":false,"utc_offset":-18000,"followers_count":6491,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/764683525\/dog-driving-vintage-vehicle_normal.jpg","description":"Dogs imitating life, courting death.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Sat Mar 20 21:06:19 +0000 2010","friends_count":1346,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/84739092\/dog-driving-vintage-vehicle.jpg","favourites_count":7198,"id_str":"124863907","contributors_enabled":false,"profile_text_color":"666666","id":124863907,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/84739092\/dog-driving-vintage-vehicle.jpg","location":""},"retweet_count":9,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 17:24:12 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","id_str":"133958007599005696","truncated":false,"id":133958007599005696,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Dogs bellowing, THIS IS WHAT DEMOCRACY LOOKS LIKE, and then, after twisting a reality effects knob, THIS IS WHAT PORNOGRAPHY LOOKS LIKE."},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":false,"profile_link_color":"66d6ff","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","screen_name":"moonpolysoft","listed_count":94,"url":"http:\/\/github.com\/cliffmoon","name":"Cliff Moon","time_zone":"Pacific Time (US & Canada)","profile_background_color":"707070","follow_request_sent":false,"statuses_count":16200,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1255,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1497179992\/skitched-20110815-135946_normal.jpg","description":"Not an real person.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"000000","default_profile_image":false,"verified":false,"created_at":"Mon Mar 24 01:05:35 +0000 2008","friends_count":251,"profile_sidebar_border_color":"bddcad","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","favourites_count":350,"id_str":"14204623","default_profile":false,"contributors_enabled":false,"profile_text_color":"666666","id":14204623,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/53292788\/twitter_bg2.png","location":"8========D~~~"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 22:27:45 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"134034397992194048","truncated":false,"id":134034397992194048,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Some leaked design plans from blueseed's new offshore incubator program! http:\/\/t.co\/Hu2SPDVD"}],"targets_size":3,"sources":[{"show_all_inline_media":true,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/959504887\/horseshit_normal.jpg","screen_name":"coda","listed_count":200,"url":"http:\/\/codahale.com","name":"Coda Hale","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":7248,"profile_background_tile":false,"utc_offset":-28800,"followers_count":3327,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/959504887\/horseshit_normal.jpg","description":"Oh, that little guy? I wouldn't worry about that little guy.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Mon Jan 15 18:45:23 +0000 2007","friends_count":198,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"retweet_count":0,"in_reply_to_screen_name":"b6n","created_at":"Tue Nov 08 22:22:48 +0000 2011","retweeted":false,"in_reply_to_status_id":134029649859723264,"in_reply_to_status_id_str":"134029649859723264","source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","id_str":"134033151478603776","truncated":false,"id":134033151478603776,"in_reply_to_user_id_str":"16031975","in_reply_to_user_id":16031975,"text":"@b6n We will be old by then."},"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":331,"id_str":"637533","contributors_enabled":false,"profile_text_color":"333333","id":637533,"default_profile":false,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","location":"San Francisco, CA"}],"sources_size":1},{"action":"favorite","max_position":"1320791252278","min_position":"1320791230391","created_at":"Tue Nov 08 22:27:32 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1563825550\/IMAG0077_normal.jpg","screen_name":"bthesorceror","listed_count":1,"url":"http:\/\/bthesorceror.blogspot.com","name":"Brandon Farmer","time_zone":"Central Time (US & Canada)","profile_background_color":"9AE4E8","default_profile":false,"follow_request_sent":false,"statuses_count":102,"profile_background_tile":false,"utc_offset":-21600,"followers_count":16,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1563825550\/IMAG0077_normal.jpg","description":"","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Fri Apr 24 05:07:50 +0000 2009","friends_count":78,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":0,"id_str":"34854624","contributors_enabled":false,"profile_text_color":"333333","id":34854624,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","location":"Missouri"},"retweet_count":0,"in_reply_to_screen_name":"rbates","created_at":"Tue Nov 08 16:41:44 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"133947321095430146","truncated":false,"id":133947321095430146,"in_reply_to_user_id_str":"14246143","in_reply_to_user_id":14246143,"text":"@rbates Railscasts pro is AWESOME!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/60714896\/happy_hour_normal.jpg","screen_name":"cavneb","listed_count":23,"url":"http:\/\/ericberry.me","name":"Eric Berry","time_zone":"Mountain Time (US & Canada)","profile_background_color":"9AE4E8","follow_request_sent":false,"statuses_count":1427,"profile_background_tile":false,"utc_offset":-25200,"followers_count":249,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60714896\/happy_hour_normal.jpg","description":"%w\u007B ruby rails sencha mobile_dev game_dev javascript \u007D ","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDFFCC","default_profile_image":false,"verified":false,"created_at":"Mon May 19 01:34:10 +0000 2008","friends_count":111,"default_profile":false,"profile_sidebar_border_color":"BDDCAD","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme16\/bg.gif","favourites_count":100,"id_str":"14826965","contributors_enabled":false,"profile_text_color":"333333","id":14826965,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme16\/bg.gif","location":"Lehi, UT"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 14:42:41 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003ETweetbot for iPhone\u003C\/a\u003E","id_str":"133917360145973248","truncated":false,"id":133917360145973248,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Thank you @rbates for charging for your pro membership. I no longer need to wait till Monday's!"}],"targets_size":2,"sources":[{"show_all_inline_media":false,"profile_link_color":"1c95c4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","screen_name":"rbates","listed_count":1106,"url":"http:\/\/railscasts.com","name":"Ryan Bates","time_zone":"Pacific Time (US & Canada)","profile_background_color":"C6E2EE","follow_request_sent":false,"statuses_count":7898,"profile_background_tile":false,"utc_offset":-28800,"followers_count":12721,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/52189024\/ryan_bates_cropped_normal.jpg","description":"Producer of Railscasts - Free Ruby on Rails Screencasts","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"f2f2f2","default_profile_image":false,"verified":false,"created_at":"Fri Mar 28 19:10:25 +0000 2008","friends_count":352,"profile_sidebar_border_color":"b3b3b3","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme2\/bg.gif","favourites_count":296,"id_str":"14246143","contributors_enabled":false,"profile_text_color":"000000","id":14246143,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme2\/bg.gif","location":"Southern Oregon"}],"sources_size":1},{"action":"favorite","max_position":"1320791057922","min_position":"1320728821470","created_at":"Tue Nov 08 22:24:17 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"009999","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/714052677\/pcc_normal.JPG","screen_name":"uppityfag","listed_count":65,"url":"http:\/\/uppityfag.wordpress.com\/","name":"Patrick Connors","time_zone":"Pacific Time (US & Canada)","profile_background_color":"131516","follow_request_sent":false,"statuses_count":12112,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1217,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/714052677\/pcc_normal.JPG","description":"One of 18,000 married same-sex couples in CA keeping track of the heteros as they transgress with impunity. Fun!","default_profile":false,"following":false,"geo_enabled":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"verified":false,"created_at":"Tue Jan 19 15:03:22 +0000 2010","friends_count":1100,"profile_sidebar_border_color":"eeeeee","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","favourites_count":771,"id_str":"106433398","contributors_enabled":false,"profile_text_color":"333333","id":106433398,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme14\/bg.gif","location":"San Francisco, CA"},"retweet_count":2,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:57:32 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","id_str":"133936195783766018","truncated":false,"id":133936195783766018,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Ed Lee totally shot that hawk in the head with a nail gun #EdLeeNot4Me #sfmayor http:\/\/t.co\/mT1Pxwcd via @EdLeeHatesU #SFMayor"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"990000","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1563216547\/image_normal.jpg","screen_name":"jack","listed_count":15283,"url":null,"name":"Jack Dorsey","time_zone":"Pacific Time (US & Canada)","profile_background_color":"EBEBEB","expanded_url":null,"follow_request_sent":false,"statuses_count":10267,"profile_background_tile":false,"utc_offset":-28800,"followers_count":1768548,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1563216547\/image_normal.jpg","description":"Executive Chairman of Twitter, CEO of Square, a founder of both.","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"F3F3F3","default_profile_image":false,"verified":true,"created_at":"Tue Mar 21 20:50:14 +0000 2006","friends_count":1087,"default_profile":false,"profile_sidebar_border_color":"DFDFDF","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme7\/bg.gif","favourites_count":937,"id_str":"12","contributors_enabled":false,"profile_text_color":"333333","id":12,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":null,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme7\/bg.gif","location":"San Francisco"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 15:42:01 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","id_str":"133932292128260097","truncated":false,"id":133932292128260097,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Entrepreneur helping entrepreneurs: @RichardBranson joins us as an investor in @Square (and we're thrilled)! http:\/\/t.co\/sCQwdJmE"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"FF00AA","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1607336297\/174991_10150505573964392_506364391_11411255_835978940_o_normal.jpg","screen_name":"kidhack","listed_count":27,"url":"http:\/\/kidhack.com\/","name":"kidhack","time_zone":"Pacific Time (US & Canada)","profile_background_color":"000000","follow_request_sent":false,"statuses_count":5130,"profile_background_tile":true,"utc_offset":-28800,"followers_count":437,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1607336297\/174991_10150505573964392_506364391_11411255_835978940_o_normal.jpg","description":"i like sushi.","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"323232","default_profile_image":false,"default_profile":false,"verified":false,"created_at":"Fri Feb 08 18:52:36 +0000 2008","friends_count":116,"profile_sidebar_border_color":"555555","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/88087051\/kidhackpat.png","favourites_count":9,"id_str":"13259012","contributors_enabled":false,"profile_text_color":"555555","id":13259012,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/88087051\/kidhackpat.png","location":"SOMA | San Francisco | CA"},"retweet_count":0,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 04:56:55 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133769945963167744","truncated":false,"id":133769945963167744,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Just finished Girl With The Dragon Tattoo. Awesome book. Can't wait to see my Dad's work & hear @trent_reznor's music in the new movie!"},{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"user":{"show_all_inline_media":true,"profile_link_color":"ff2b29","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/60361032\/mightyfoot2_64x64_normal.PNG","screen_name":"georgeb3dr","listed_count":596,"url":"http:\/\/www.3drealms.com","name":"George Broussard","time_zone":"Central Time (US & Canada)","profile_background_color":"709397","follow_request_sent":false,"statuses_count":1926,"profile_background_tile":true,"utc_offset":-21600,"followers_count":9804,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/60361032\/mightyfoot2_64x64_normal.PNG","description":"Video game developer. georgeb@3drealms.com","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"f2e6b5","default_profile_image":false,"verified":false,"created_at":"Sat Mar 01 06:24:27 +0000 2008","friends_count":99,"default_profile":false,"profile_sidebar_border_color":"9d9985","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3077366\/mushroom_twitter.jpg","favourites_count":0,"id_str":"14063949","contributors_enabled":false,"profile_text_color":"333333","id":14063949,"lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3077366\/mushroom_twitter.jpg","location":"Dallas, TX"},"retweet_count":"100+","in_reply_to_screen_name":null,"created_at":"Tue Nov 08 16:14:40 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003ETwitter for Mac\u003C\/a\u003E","id_str":"133940508929163264","truncated":false,"id":133940508929163264,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"This is how game developers generally work :) http:\/\/t.co\/OI3km2Eh"}],"targets_size":4,"sources":[{"show_all_inline_media":true,"profile_link_color":"CC3366","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1264239779\/vx1_normal.png","screen_name":"nuzz","listed_count":54,"url":"http:\/\/nuzz.org","name":"nuzz","time_zone":"Pacific Time (US & Canada)","profile_background_color":"DBE9ED","follow_request_sent":false,"statuses_count":5285,"profile_background_tile":false,"utc_offset":-28800,"followers_count":559,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1264239779\/vx1_normal.png","description":"Photographer, traveller, technology dilettante.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"E6F6F9","default_profile_image":false,"verified":false,"created_at":"Sun Feb 18 20:13:57 +0000 2007","friends_count":342,"default_profile":false,"profile_sidebar_border_color":"DBE9ED","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme17\/bg.gif","favourites_count":1099,"id_str":"779112","contributors_enabled":false,"profile_text_color":"333333","id":779112,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme17\/bg.gif","location":"San Francisco"}],"sources_size":1},{"action":"follow","max_position":"1320790894230","min_position":"1320727870100","created_at":"Tue Nov 08 22:21:34 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"default_profile":false,"show_all_inline_media":false,"profile_link_color":"038543","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1546065255\/cormactext_normal.jpg","screen_name":"TweetinCormac","listed_count":12,"url":"http:\/\/yelpingwithcormac.tumblr.com\/","name":"Cormac M","time_zone":null,"profile_background_color":"ACDED6","follow_request_sent":null,"statuses_count":19,"profile_background_tile":false,"utc_offset":null,"followers_count":375,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1546065255\/cormactext_normal.jpg","description":"","following":null,"geo_enabled":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"verified":false,"created_at":"Fri Sep 16 23:25:03 +0000 2011","friends_count":0,"status":{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"possibly_sensitive":false,"retweet_count":3,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 00:35:06 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","id_str":"133704060929978368","truncated":false,"id":133704060929978368,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"Jamba Juice. On memory. http:\/\/t.co\/FYshEObl"},"profile_sidebar_border_color":"EEEEEE","is_translator":false,"notifications":null,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","favourites_count":0,"id_str":"374790207","contributors_enabled":false,"profile_text_color":"333333","id":374790207,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme18\/bg.gif","location":"Lost in the chaparral"},{"show_all_inline_media":true,"profile_link_color":"B12556","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1584451051\/image_normal.jpg","screen_name":"donna","listed_count":0,"url":"http:\/\/don.na","name":"donna","time_zone":"Pacific Time (US & Canada)","profile_background_color":"908162","follow_request_sent":false,"statuses_count":0,"profile_background_tile":true,"utc_offset":-28800,"followers_count":35,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1584451051\/image_normal.jpg","description":"A personal assistant for everyone.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"394A52","default_profile_image":false,"verified":false,"created_at":"Wed Oct 05 00:12:16 +0000 2011","friends_count":5,"profile_sidebar_border_color":"2F1100","is_translator":false,"default_profile":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/345156386\/xf38240f6c1d757ea56935903e56f883.png","favourites_count":0,"id_str":"385159039","contributors_enabled":false,"profile_text_color":"D7DDBB","id":385159039,"lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/345156386\/xf38240f6c1d757ea56935903e56f883.png","location":"wherever you are"},{"show_all_inline_media":true,"profile_link_color":"d99400","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1536787115\/b34e_normal.png","screen_name":"roach","default_profile":false,"listed_count":21,"url":"http:\/\/t.co\/8YHZ2Vm","name":"Jason Roche","time_zone":"Pacific Time (US & Canada)","profile_background_color":"161616","expanded_url":"http:\/\/roach.github.com\/","follow_request_sent":false,"statuses_count":3348,"profile_background_tile":true,"utc_offset":-28800,"followers_count":505,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1536787115\/b34e_normal.png","description":"Geek, developer, off-road enthusiast, amateur radio operator, time tourist.\r\n\r\nI work @ Twitter go\/roach\r\n[c4843baf2c29cadea892385bdf065388]","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"363636","default_profile_image":false,"verified":false,"created_at":"Tue Dec 21 02:07:47 +0000 2010","friends_count":458,"profile_sidebar_border_color":"000000","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/309199144\/bg.png","favourites_count":265,"id_str":"228925627","contributors_enabled":false,"profile_text_color":"adadad","id":228925627,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"roach.github.com","lang":"en","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/309199144\/bg.png","location":"San Francisco, CA"},{"time_zone":null,"profile_background_color":"C0DEED","protected":false,"follow_request_sent":false,"statuses_count":8,"profile_background_tile":false,"followers_count":53,"url":"http:\/\/numberlies.com","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1622842533\/button_icon_preview_v004a_normal.jpg","name":"MOONBOT studios","geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"verified":false,"utc_offset":null,"friends_count":126,"description":"Have You Ever Wondered Where The Alphabet Came From?\r\nFrom The People Who Brought You Morris Lessmore\r\nComes an App That Explains It All\r\nNUMBERLIES\r\n","following":false,"profile_sidebar_border_color":"C0DEED","screen_name":"NUMBERLIES","is_translator":false,"created_at":"Fri Nov 04 03:03:31 +0000 2011","default_profile":true,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","favourites_count":0,"id_str":"404563093","contributors_enabled":false,"notifications":false,"profile_text_color":"333333","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","show_all_inline_media":false,"profile_link_color":"0084B4","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1622842533\/button_icon_preview_v004a_normal.jpg","id":404563093,"listed_count":0,"lang":"en","location":"Numerica"},{"show_all_inline_media":true,"profile_link_color":"2FC2EF","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/67612383\/XWS147_normal.jpg","screen_name":"burtherman","listed_count":515,"url":"http:\/\/burtherman.com","name":"Burt Herman","time_zone":"Pacific Time (US & Canada)","profile_background_color":"1A1B1F","follow_request_sent":false,"statuses_count":3763,"profile_background_tile":false,"utc_offset":-28800,"followers_count":4290,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/67612383\/XWS147_normal.jpg","description":"Entrepreneurial journalist finding meaning in the noise. CEO of Storify, founder of Hacks\/Hackers for journalists and technologists","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"252429","default_profile_image":false,"verified":false,"created_at":"Sun Aug 26 14:23:45 +0000 2007","friends_count":1379,"default_profile":false,"profile_sidebar_border_color":"181A1E","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/45026786\/Twitter_BG1.001real.jpg","favourites_count":54,"id_str":"8441632","contributors_enabled":false,"profile_text_color":"666666","id":8441632,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/45026786\/Twitter_BG1.001real.jpg","location":"San Francisco, CA"},{"show_all_inline_media":false,"profile_link_color":"0084B4","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1284501159\/profile_normal.jpg","screen_name":"dorkusprime","listed_count":6,"url":"http:\/\/www.jevonwild.com","name":"Jevon W","time_zone":"Pacific Time (US & Canada)","profile_background_color":"022330","follow_request_sent":false,"statuses_count":451,"profile_background_tile":false,"utc_offset":-28800,"followers_count":156,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1284501159\/profile_normal.jpg","description":"I like making stuff and making stuff better. Currently making games for ngmoco, beer for myself, and technology for the world.","following":false,"geo_enabled":false,"profile_sidebar_fill_color":"C0DFEC","default_profile_image":false,"verified":false,"created_at":"Tue Mar 25 06:58:06 +0000 2008","friends_count":126,"profile_sidebar_border_color":"a8c7f7","is_translator":false,"notifications":false,"default_profile":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme5\/bg.gif","favourites_count":2,"id_str":"14213767","contributors_enabled":false,"profile_text_color":"333333","id":14213767,"lang":"en","profile_background_image_url":"http:\/\/a1.twimg.com\/images\/themes\/theme5\/bg.gif","location":"San Francisco, CA"}],"targets_size":6,"sources":[{"show_all_inline_media":true,"profile_link_color":"2381a3","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","screen_name":"mischa","default_profile":false,"listed_count":206,"url":"http:\/\/t.co\/n2qvwsh","name":"Mischa Nachtigal","time_zone":"Mountain Time (US & Canada)","profile_background_color":"d0d1c1","expanded_url":"http:\/\/about.me\/mischa","follow_request_sent":false,"statuses_count":5303,"profile_background_tile":true,"utc_offset":-25200,"followers_count":10592,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1226002849\/15573320_KBd7M_normal.jpeg","description":"World wide wanderer who enjoys stories and works at Twitter. Tweets are my own, and often whimsical.","following":true,"geo_enabled":false,"profile_sidebar_fill_color":"b1d98b","default_profile_image":false,"verified":false,"created_at":"Wed Jun 10 14:25:30 +0000 2009","friends_count":752,"profile_sidebar_border_color":"595244","is_translator":false,"notifications":false,"profile_use_background_image":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","favourites_count":1107,"id_str":"46123040","contributors_enabled":false,"profile_text_color":"141910","id":46123040,"entities":{"hashtags":[],"user_mentions":[],"urls":[]},"display_url":"about.me\/mischa","lang":"en","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/327368593\/x34fbdebefe754b363c4b8ce6f284c64.png","location":"SF"}],"sources_size":1}]
1
+ [{"action":"favorite","max_position":"1320794149280","min_position":"1320718679267","created_at":"Tue Nov 08 23:15:49 +0000 2011","target_objects":[],"target_objects_size":0,"targets":[{"contributors":null,"place":null,"geo":null,"coordinates":null,"favorited":false,"user":{"show_all_inline_media":true,"profile_link_color":"ba26b7","protected":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","screen_name":"JoshConstine","listed_count":80,"url":"http:\/\/about.me\/joshconstine","name":"Josh Constine","time_zone":"Pacific Time (US & Canada)","profile_background_color":"469cfb","default_profile":false,"follow_request_sent":false,"statuses_count":2688,"profile_background_tile":true,"utc_offset":-28800,"followers_count":1513,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1338286448\/Josh_IN_Headshot_Touched_Up_1200_Colored_Cropped_square_normal.jpg","description":"Writer for TechCrunch, Stanford M.A. in Cybersociology, culture omnivorre. I bring the truth with swag. Subscribe on FB: http:\/\/www.facebook.com\/JoshConstine","following":false,"geo_enabled":true,"profile_sidebar_fill_color":"fbc67e","default_profile_image":false,"verified":false,"created_at":"Mon Jan 26 22:41:23 +0000 2009","friends_count":388,"profile_sidebar_border_color":"c3f4d4","is_translator":false,"notifications":false,"profile_use_background_image":true,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","favourites_count":1929,"id_str":"19563366","contributors_enabled":false,"profile_text_color":"333333","id":19563366,"lang":"en","profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/4174813\/Furit_Loops_Twitter_700.jpeg","location":"Mission SF, CA"},"retweet_count":1,"in_reply_to_screen_name":null,"created_at":"Tue Nov 08 21:45:29 +0000 2011","retweeted":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","id_str":"134023760025104385","truncated":false,"id":134023760025104385,"in_reply_to_user_id_str":null,"in_reply_to_user_id":null,"text":"I hate percentage growth stats. They're like graphs without the axes labeled, something you'd use to fool children."}],"sources_size":1}]
@@ -1 +1 @@
1
- {"categories":[],"users":[{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Designer, thinker, speaker, Creative Director at Twitter. Previously at Google, Stopdesign, and Wired.","profile_sidebar_fill_color":"bddaf7","followers_count":87831,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/stopdesign.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/149914329\/bg-stop.png","lang":"en","created_at":"Sun Mar 11 19:50:16 +0000 2007","profile_background_color":"6092d2","location":"San Francisco, CA","listed_count":2454,"profile_background_tile":true,"friends_count":351,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/552708586\/doug-profile_normal.jpg","statuses_count":2533,"profile_text_color":"333333","name":"Doug Bowman","show_all_inline_media":true,"following":true,"favourites_count":302,"screen_name":"stop","id":949521,"id_str":"949521","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"3387cc"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Blogger at Subtraction.com, former design director at NYTimes.com.","profile_sidebar_fill_color":"e0ff92","followers_count":88340,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"87bc44","url":"http:\/\/www.subtraction.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Mon Dec 18 22:14:59 +0000 2006","profile_background_color":"FFFFFF","location":"New York, NY","listed_count":2292,"profile_background_tile":false,"friends_count":532,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/16896652\/Adam_West_normal.jpg","statuses_count":1683,"profile_text_color":"000000","name":"Khoi Vinh","show_all_inline_media":false,"following":false,"favourites_count":22,"screen_name":"khoi","id":78453,"id_str":"78453","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Following our team around the modern world. See who's saying what at dwell.com\/twitter","profile_sidebar_fill_color":"e9f2fd","followers_count":114200,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dee7f1","url":"http:\/\/dwell.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/133995193\/Twitter-Background-Final.jpg","lang":"en","created_at":"Thu Oct 09 03:09:57 +0000 2008","profile_background_color":"e7e8e9","location":"","listed_count":3356,"profile_background_tile":false,"friends_count":586,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/935810714\/dwell_Twitter_Icon_normal.gif","statuses_count":2355,"profile_text_color":"000000","name":"dwell","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"dwell","id":16661296,"id_str":"16661296","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"4177b9"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"President, Rhode Island School of Design, RISD, College, Museum, USA, 1877, Laws of Simplicity, MIT, Design, Art, Business, Technology, Life","profile_sidebar_fill_color":"DDEEF6","followers_count":94360,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/our.risd.edu","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Sun Jul 13 13:51:22 +0000 2008","profile_background_color":"C0DEED","location":"Providence, RI","listed_count":3016,"profile_background_tile":false,"friends_count":2054,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1088325884\/maedaicon2lg_normal.png","statuses_count":1345,"profile_text_color":"333333","name":"johnmaeda","show_all_inline_media":false,"following":false,"favourites_count":339,"screen_name":"johnmaeda","id":15414807,"id_str":"15414807","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Victor Samra (aka @vsamra3) at the easel. Please send us questions or comments by placing @MuseumModernArt in your tweet.","profile_sidebar_fill_color":"d9d9d9","followers_count":335206,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.moma.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/54805196\/MoMA_Twitter_Background.gif","lang":"en","created_at":"Mon Jun 09 13:20:21 +0000 2008","profile_background_color":"ededed","location":"New York, New York","listed_count":12030,"profile_background_tile":false,"friends_count":1508,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/534697216\/MoMA_Twitter_Icon4_normal.gif","statuses_count":1556,"profile_text_color":"000000","name":"Museum of Modern Art","show_all_inline_media":false,"following":false,"favourites_count":123,"screen_name":"MuseumModernArt","id":15057943,"id_str":"15057943","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"ff3300"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The premier source for news about art and culture around the world. \r\n\r\n\r\nfacebook.com\/artinfo\r\nfoursquare.com\/artinfo","profile_sidebar_fill_color":"ffffff","followers_count":114153,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"b93d2d","url":"http:\/\/www.artinfo.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue Mar 10 12:31:05 +0000 2009","profile_background_color":"000000","location":"New York, NY","listed_count":2615,"profile_background_tile":false,"friends_count":843,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/91810842\/AI_250x250_twit_normal.JPG","statuses_count":4636,"profile_text_color":"080202","name":"ARTINFO","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"artinfodotcom","id":23585763,"id_str":"23585763","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"087196"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Artist. Writer. Director. Producer. Toy Company Founder","profile_sidebar_fill_color":"DDFFCC","followers_count":397304,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/twitter.com\/todd_mcfarlane","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/60142269\/Haunt10.jpg","lang":"en","created_at":"Sat Jul 25 09:48:36 +0000 2009","profile_background_color":"9AE4E8","location":"Phoenix, AZ","listed_count":2572,"profile_background_tile":true,"friends_count":8,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/454370804\/TODD_BLUEBACK_normal.jpg","statuses_count":355,"profile_text_color":"333333","name":"Todd McFarlane","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"Todd_McFarlane","id":60025762,"id_str":"60025762","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"In my opinion, an individual without any love of the arts cannot be considered completely civilized. --J. Paul Getty","profile_sidebar_fill_color":"e3e3e3","followers_count":123596,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"101919","url":"http:\/\/www.getty.edu","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3141663\/getty_travertine.jpg","lang":"en","created_at":"Thu Oct 02 22:46:59 +0000 2008","profile_background_color":"4fde57","location":"Los Angeles, California","listed_count":4012,"profile_background_tile":false,"friends_count":21611,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/118308448\/squareGettyWordmark_normal.jpg","statuses_count":2433,"profile_text_color":"170303","name":"J. Paul Getty Museum","show_all_inline_media":false,"following":false,"favourites_count":14953,"screen_name":"GettyMuseum","id":16568227,"id_str":"16568227","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"1a3bef"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"A gaggle of Brooklyn Museum staffers tweet here. Look for via @user at the end of tweets to get to know us. Questions and comments via @replies are welcome. ","profile_sidebar_fill_color":"B3E8FA","followers_count":125147,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/www.brooklynmuseum.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/109602159\/Background-twitter7.jpg","lang":"en","created_at":"Fri Jul 20 17:34:41 +0000 2007","profile_background_color":"FFFFFF","location":"Brooklyn, New York","listed_count":3137,"profile_background_tile":false,"friends_count":761,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/31784232\/twitter_normal.png","statuses_count":3463,"profile_text_color":"000000","name":"brooklynmuseum","show_all_inline_media":false,"following":false,"favourites_count":91,"screen_name":"brooklynmuseum","id":7614292,"id_str":"7614292","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0099BC"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Design Milk is a website dedicated to modern design.","profile_sidebar_fill_color":"eeeeee","followers_count":168694,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/design-milk.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/21285181\/stripe.gif","lang":"en","created_at":"Tue Jul 15 21:13:46 +0000 2008","profile_background_color":"ffffff","location":"Everywhere","listed_count":5191,"profile_background_tile":true,"friends_count":433,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/663607808\/DMCartonLogo_alone-160SQ_normal.jpg","statuses_count":7651,"profile_text_color":"333333","name":"Design Milk","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"designmilk","id":15446126,"id_str":"15446126","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"000000"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"SFMOMA's Twitter is done by Ian Padgham in Communications but many of our ideas come from the brilliant and passionate staff at SFMOMA.","profile_sidebar_fill_color":"feda4d","followers_count":105074,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"feda4d","url":"http:\/\/www.sfmoma.org","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/160855517\/twitter_bckgrnd3.jpg","lang":"en","created_at":"Tue Sep 30 22:36:01 +0000 2008","profile_background_color":"feda4d","location":"151 Third Street","listed_count":3640,"profile_background_tile":false,"friends_count":105628,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1148270393\/sfmoma_giants_normal.jpg","statuses_count":1395,"profile_text_color":"000000","name":"SFMOMA","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"SFMOMA","id":16536215,"id_str":"16536215","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"000000"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"using Twitter for me, not for you.","profile_sidebar_fill_color":"291808","followers_count":72326,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","url":"http:\/\/www.mezzoblue.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/115093920\/twitter-background.jpg","lang":"en","created_at":"Thu Feb 15 19:27:28 +0000 2007","profile_background_color":"000000","location":"Vancouver","listed_count":1465,"profile_background_tile":false,"friends_count":297,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/553504851\/avatar-large2_normal.jpg","statuses_count":6677,"profile_text_color":"000000","name":"Dave Shea","show_all_inline_media":false,"following":false,"favourites_count":58,"screen_name":"mezzoblue","id":774280,"id_str":"774280","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"000000"},{"geo_enabled":false,"time_zone":"Central Time (US & Canada)","description":"The World's Premier Art Magazine since 1913","profile_sidebar_fill_color":"ffffff","followers_count":118078,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"f5f0f2","url":"http:\/\/www.ArtinAmericaMagazine.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/19337056\/AIA_Summer09.jpg","lang":"en","created_at":"Thu Feb 26 21:04:36 +0000 2009","profile_background_color":"4a7182","location":"NY, NY","listed_count":1890,"profile_background_tile":true,"friends_count":133,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/86820236\/TwitterLogo_normal.jpg","statuses_count":1445,"profile_text_color":"000000","name":"Art in America","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"AiANews","id":22061737,"id_str":"22061737","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"ba2525"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"H&FJ. We design fonts.\r\nhttp:\/\/www.typography.com.","profile_sidebar_fill_color":"DDEEF6","followers_count":86820,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.typography.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/81577577\/hfj_background2.png","lang":"en","created_at":"Wed Mar 21 16:31:32 +0000 2007","profile_background_color":"C0DEED","location":"New York City","listed_count":1794,"profile_background_tile":true,"friends_count":193,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1142541284\/hfj-2010_normal.png","statuses_count":1992,"profile_text_color":"333333","name":"Hoefler+Frere-Jones","show_all_inline_media":false,"following":false,"favourites_count":44,"screen_name":"H_FJ","id":1765921,"id_str":"1765921","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"London","description":"Family of 4 art galleries in the UK: Tate Britain, Tate Modern, Tate Liverpool & Tate St Ives. Tweeting from Tate Media: Hannah, Selina, Kate, Becs & Jesse.","profile_sidebar_fill_color":"FFFFFF","followers_count":180483,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"807D7D","url":"http:\/\/www.tate.org.uk","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/162936452\/muy_twitter2.jpg","lang":"en","created_at":"Thu Apr 19 13:12:32 +0000 2007","profile_background_color":"00B9B8","location":"London, Liverpool and St Ives","listed_count":5881,"profile_background_tile":true,"friends_count":703,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1147439411\/muy_twitter_normal.jpg","statuses_count":1089,"profile_text_color":"504343","name":"Tate","show_all_inline_media":true,"following":false,"favourites_count":7,"screen_name":"Tate","id":5225991,"id_str":"5225991","contributors_enabled":false,"utc_offset":0,"profile_link_color":"00B9B8"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The world's largest museum complex & research organization composed of 19 museums, 9 research centers, and the National Zoo.","profile_sidebar_fill_color":"186ac2","followers_count":196582,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.si.edu","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52765661\/tweetbg.jpg","lang":"en","created_at":"Sat Mar 22 22:26:03 +0000 2008","profile_background_color":"ffffff","location":"Washington, DC","listed_count":5890,"profile_background_tile":false,"friends_count":110,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/524772602\/logo_normal.gif","statuses_count":3637,"profile_text_color":"01031a","name":"Smithsonian","show_all_inline_media":false,"following":false,"favourites_count":11,"screen_name":"smithsonian","id":14199378,"id_str":"14199378","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0c0578"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"We work for a better world around you w\/ inventive designs, technologies & related services to improve the human experience where you work, heal, learn, & live.","profile_sidebar_fill_color":"ffffff","followers_count":81139,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dfdfdf","url":"http:\/\/www.hermanmiller.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/116161127\/hm_bg.jpg","lang":"en","created_at":"Fri Dec 12 19:50:03 +0000 2008","profile_background_color":"e6e6e6","location":"Zeeland, MI","listed_count":1201,"profile_background_tile":false,"friends_count":430,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/508970979\/HM_logo_twitter_normal.jpg","statuses_count":1150,"profile_text_color":"262626","name":"Herman Miller, Inc.","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"hermanmiller","id":18084100,"id_str":"18084100","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"fa1815"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"swiss designer gone NYC","profile_sidebar_fill_color":"ffffff","followers_count":117770,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/www.swiss-miss.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/58238631\/swissmiss_twitter_background.png","lang":"en","created_at":"Mon Mar 19 13:40:08 +0000 2007","profile_background_color":"FFFFFF","location":"Brooklyn, NY","listed_count":3859,"profile_background_tile":false,"friends_count":1039,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/29450552\/tina_normal.jpg","statuses_count":5387,"profile_text_color":"2f3737","name":"Tina Roth Eisenberg","show_all_inline_media":false,"following":false,"favourites_count":3923,"screen_name":"swissmiss","id":1504011,"id_str":"1504011","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"030000"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The New Yorker is a weekly magazine with a mix of reporting of politics and culture, humor and cartoons, fiction and poetry, and reviews and criticism. ","profile_sidebar_fill_color":"DDFFCC","followers_count":376072,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.newyorker.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/55790865\/Twitter_BG_Final_final.jpg","lang":"en","created_at":"Tue May 06 19:36:33 +0000 2008","profile_background_color":"9AE4E8","location":"New York, NY","listed_count":12844,"profile_background_tile":true,"friends_count":177,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/553327850\/Eustacewbutterfly_normal.png","statuses_count":1845,"profile_text_color":"333333","name":"The New Yorker","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"NewYorker","id":14677919,"id_str":"14677919","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Where design meets inspiration","profile_sidebar_fill_color":"f5f5f5","followers_count":125729,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"e5e5e5","url":"http:\/\/designrelated.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/40239586\/dr-twitter-1280x1024.gif","lang":"en","created_at":"Thu May 08 01:45:24 +0000 2008","profile_background_color":"e5e5e5","location":"New York, NY","listed_count":2854,"profile_background_tile":false,"friends_count":623,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/653172121\/d_128_normal.png","statuses_count":5676,"profile_text_color":"323232","name":"design:related","show_all_inline_media":false,"following":false,"favourites_count":29,"screen_name":"designrelated","id":14694680,"id_str":"14694680","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"009ACD"},{"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","description":"Tweeting for Los Angeles County Museum of Art: Sr Editor SCOTT TENNENT ST\/Amer Art Admin DEVI NOOR DN\/Web Mangr ERIN SORENSEN ES\/Comms Mangr C. CHOI CC","profile_sidebar_fill_color":"bababa","followers_count":95394,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"d61717","url":"http:\/\/www.lacma.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/24670994\/Twitter_BG11.jpg","lang":"en","created_at":"Tue Jun 03 11:55:29 +0000 2008","profile_background_color":"b0c8eb","location":"Los Angeles","listed_count":2269,"profile_background_tile":false,"friends_count":18184,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/325538327\/Twitter_Avatar8_normal.jpg","statuses_count":1326,"profile_text_color":"4d4d4d","name":"LACMA","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"LACMA","id":14991920,"id_str":"14991920","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"d61717"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The PBS NewsHour's Art Beat covers art and culture, and is brought to you by correspondent Jeffrey Brown and NewsHour reporters.","profile_sidebar_fill_color":"c5c8c9","followers_count":77693,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"5b686e","url":"http:\/\/www.pbs.org\/newshour\/art\/blog\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/77247206\/IMG_5754.gif","lang":"en","created_at":"Fri Nov 06 16:39:58 +0000 2009","profile_background_color":"829aa6","location":"","listed_count":897,"profile_background_tile":true,"friends_count":262,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/577617056\/logo_normal.jpg","statuses_count":623,"profile_text_color":"333333","name":"pbsnewshourArtBeat","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"NewsHourArtBeat","id":87978312,"id_str":"87978312","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"London","description":"The International Review of Graphic Design","profile_sidebar_fill_color":"FFFFFF","followers_count":163348,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"CDCDCD","url":"http:\/\/blog.eyemagazine.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2638400\/Twitter_bg.gif","lang":"en","created_at":"Mon Jun 16 16:50:05 +0000 2008","profile_background_color":"FFFFFF","location":"London, UK","listed_count":3336,"profile_background_tile":true,"friends_count":1001,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/55524520\/Avatar_01_normal.jpg","statuses_count":3427,"profile_text_color":"645D5D","name":"eyemagazine","show_all_inline_media":false,"following":false,"favourites_count":4393,"screen_name":"eyemagazine","id":15135958,"id_str":"15135958","contributors_enabled":false,"utc_offset":0,"profile_link_color":"FF00FF"},{"geo_enabled":false,"time_zone":"Alaska","description":"Light Stalking is all about beautiful photography and getting the word out about the talented people that produce it. We try to impart a little knowledge too.","profile_sidebar_fill_color":"EADEAA","followers_count":127860,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"D9B17E","url":"http:\/\/www.lightstalking.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/71755559\/lsbg3.jpg","lang":"en","created_at":"Thu Mar 05 23:28:49 +0000 2009","profile_background_color":"8B542B","location":"","listed_count":4071,"profile_background_tile":true,"friends_count":28568,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/517489725\/cow_normal.jpg","statuses_count":3548,"profile_text_color":"333333","name":"Light Stalking","show_all_inline_media":false,"following":false,"favourites_count":85,"screen_name":"LightStalking","id":22997517,"id_str":"22997517","contributors_enabled":false,"utc_offset":-32400,"profile_link_color":"9D582E"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The Metropolitan Museum of Art is one of the world's largest and finest art museums. Tweets by Jennette (Digital Media). I welcome your comments & questions.","profile_sidebar_fill_color":"408CC7","followers_count":133627,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","url":"http:\/\/www.metmuseum.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/101492451\/Background_Arches.jpg","lang":"en","created_at":"Thu Oct 30 01:31:07 +0000 2008","profile_background_color":"0370c5","location":"New York, NY","listed_count":4542,"profile_background_tile":true,"friends_count":296,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/63682065\/met_podcast_logo2_normal.jpg","statuses_count":1834,"profile_text_color":"3C3940","name":"metmuseum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"metmuseum","id":17057271,"id_str":"17057271","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"5ED4DC"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Author, Designing With Web Standards. Founder, Happy Cog. Publisher, A List Apart, A Book Apart. Co-founder, An Event Apart, The Big Web Show. I'm your daddy.","profile_sidebar_fill_color":"FF6600","followers_count":105003,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"CD3300","url":"http:\/\/www.zeldman.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/1422692\/chancegarden1280.gif","lang":"en","created_at":"Tue Dec 12 17:11:41 +0000 2006","profile_background_color":"FF6600","location":"New York, NY","listed_count":5346,"profile_background_tile":true,"friends_count":958,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/693932114\/blue200_normal.gif","statuses_count":11953,"profile_text_color":"000000","name":"Jeffrey Zeldman","show_all_inline_media":true,"following":false,"favourites_count":1246,"screen_name":"zeldman","id":61133,"id_str":"61133","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"972200"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Writings on Design and Culture. Edited by Michael Bierut, William Drenttel, Jessica Helfand, Julie Lasky and Nancy Levinson.","profile_sidebar_fill_color":"ffffff","followers_count":157791,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"303934","url":"http:\/\/www.designobserver.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/154531558\/twitter_bkgd.gif","lang":"en","created_at":"Tue Nov 25 16:51:54 +0000 2008","profile_background_color":"333333","location":"New York (Falls Village CT)","listed_count":5820,"profile_background_tile":false,"friends_count":400,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/340155402\/twitter_profile_bigger_normal.gif","statuses_count":6579,"profile_text_color":"fe6601","name":"DesignObserver","show_all_inline_media":false,"following":false,"favourites_count":185,"screen_name":"DesignObserver","id":17623957,"id_str":"17623957","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"303934"},{"geo_enabled":false,"time_zone":"Quito","description":"The Whitney Museum houses one of the world's foremost collections of contemporary American art. Gretchen in the marketing dept. is the gal behind the tweets.","profile_sidebar_fill_color":"ffff00","followers_count":113142,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/whitney.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/52959407\/twitter2.jpg","lang":"en","created_at":"Mon Sep 29 20:14:21 +0000 2008","profile_background_color":"000000","location":"New York City","listed_count":3356,"profile_background_tile":false,"friends_count":1022,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/520806383\/twitter_icon_normal.jpg","statuses_count":2145,"profile_text_color":"0b0a0a","name":"Whitney Museum","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"whitneymuseum","id":16517711,"id_str":"16517711","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"A catalyst for the creative expression of artists and active engagement of audiences, examines questions that shape and inspire us. Tweeting by KF + friends","profile_sidebar_fill_color":"e9eafb","followers_count":104363,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"d9d9d9","url":"http:\/\/walkerart.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/157644731\/walker_twitter_bg.jpg","lang":"en","created_at":"Fri Jul 25 04:46:13 +0000 2008","profile_background_color":"f2f6fd","location":"Minneapolis, MN","listed_count":1851,"profile_background_tile":true,"friends_count":344,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/57221222\/bg2005exha0413_001_normal.jpg","statuses_count":1914,"profile_text_color":"3d3d3d","name":"Walker Art Center","show_all_inline_media":false,"following":false,"favourites_count":3,"screen_name":"walkerartcenter","id":15594318,"id_str":"15594318","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"dd1d36"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"I love dancing. I think it's better to dance than to march through life.","profile_sidebar_fill_color":"b7cff7","followers_count":1065516,"verified":true,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"3c32c7","url":"http:\/\/www.IMAGINEPEACE.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/164207256\/l_f96c4ce8d2b14a8789a0302a925fb308.jpg","lang":"en","created_at":"Thu Nov 27 16:06:43 +0000 2008","profile_background_color":"0096db","location":"New York","listed_count":24048,"profile_background_tile":false,"friends_count":440844,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1150179487\/49889_522024050_6382420_n_normal.jpg","statuses_count":1967,"profile_text_color":"333333","name":"Yoko Ono","show_all_inline_media":false,"following":false,"favourites_count":8,"screen_name":"yokoono","id":17681513,"id_str":"17681513","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0096db"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Magnum Photos is a photographic cooperative of great diversity and distinction owned by its photographer members.","profile_sidebar_fill_color":"ffffff","followers_count":155994,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/magnumphotos.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/6478661\/Twitter_BG.jpg","lang":"en","created_at":"Fri Feb 13 20:16:30 +0000 2009","profile_background_color":"1e201d","location":"New York, London, Paris, Tokyo","listed_count":4575,"profile_background_tile":true,"friends_count":96,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/78037758\/Magnum_Logo_small_normal.jpg","statuses_count":1962,"profile_text_color":"6e7269","name":"Magnum Photos","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"magnumphotos","id":20802277,"id_str":"20802277","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2FC2EF"},{"geo_enabled":false,"time_zone":"Central Time (US & Canada)","description":"Behance is on a mission to organize and empower the creative world to make ideas happen.","profile_sidebar_fill_color":"ffffff","followers_count":131007,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/www.behance.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/28978111\/BehanceTwitter.jpg","lang":"en","created_at":"Mon Oct 08 17:45:54 +0000 2007","profile_background_color":"1A1B1F","location":"New York, New York","listed_count":5493,"profile_background_tile":false,"friends_count":1378,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/269846621\/BehanceTwitter_normal.png","statuses_count":3026,"profile_text_color":"525252","name":"Behance","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"Behance","id":9313022,"id_str":"9313022","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"ed2f2f"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"The Illustration & Cartooning Weblog","profile_sidebar_fill_color":"ffffff","followers_count":126881,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"dceffa","url":"http:\/\/drawn.ca","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/164111313\/greybg.png","lang":"en","created_at":"Sun Feb 03 03:32:00 +0000 2008","profile_background_color":"009cea","location":"Canada","listed_count":2487,"profile_background_tile":true,"friends_count":16,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1149940174\/drawnavatar_normal.jpg","statuses_count":2008,"profile_text_color":"000000","name":"Drawn! ","show_all_inline_media":false,"following":false,"favourites_count":8,"screen_name":"drawn","id":12998732,"id_str":"12998732","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"009cea"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Product design initiatives for Humanity, Habitats, Health, and Happiness","profile_sidebar_fill_color":"CDD0C7","followers_count":143101,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"2E302D","url":"http:\/\/www.projecthdesign.org\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/147963940\/4885794574_b3962d232c_b.jpg","lang":"en","created_at":"Wed Jul 09 21:49:48 +0000 2008","profile_background_color":"9ae4e8","location":"Bertie County, NC","listed_count":1741,"profile_background_tile":true,"friends_count":193,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/544732942\/LOGORgb2_justH_normal.png","statuses_count":1093,"profile_text_color":"000000","name":"Project H Design","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"ProjectHDesign","id":15370860,"id_str":"15370860","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"9E0051"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"News and reviews from Artnet Magazine. Editor: Walter Robinson. Associate editor: Ben Davis","profile_sidebar_fill_color":"D1D1B1","followers_count":124371,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"999999","url":"http:\/\/www.artnet.com\/magazineus\/frontpage.asp","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287502835\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Wed Feb 11 20:13:22 +0000 2009","profile_background_color":"F47321","location":"New York, N.Y.","listed_count":2924,"profile_background_tile":false,"friends_count":12344,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/422462362\/250x250_normal.jpg","statuses_count":8268,"profile_text_color":"333333","name":"Artnet Magazine","show_all_inline_media":false,"following":false,"favourites_count":6,"screen_name":"artnetdotcom","id":20622594,"id_str":"20622594","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"f47321"},{"geo_enabled":true,"time_zone":"London","description":"Wallpaper* magazine's official Twitter account: global news on design, interiors, fashion, art and lifestyle","profile_sidebar_fill_color":"fafcf7","followers_count":225083,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/www.wallpaper.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/45137617\/monsoon.jpg","lang":"en","created_at":"Thu Aug 16 13:52:19 +0000 2007","profile_background_color":"352726","location":"London","listed_count":6440,"profile_background_tile":true,"friends_count":1237,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/110647184\/wallpaper_asterix_normal.gif","statuses_count":1992,"profile_text_color":"3E4415","name":"Wallpaper* magazine","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"wallpapermag","id":8223872,"id_str":"8223872","contributors_enabled":false,"utc_offset":0,"profile_link_color":"D02B55"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Architecture Design for Architects. Feed maintained by Architectural Record Web Producer, Laurie Meisel - @lauriemeisel - McGraw-Hill Construction","profile_sidebar_fill_color":"FFFFFF","followers_count":113710,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"f7942c","url":"http:\/\/archrecord.construction.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4108879\/ARlogo_twitter.jpg","lang":"en","created_at":"Wed Jan 28 06:16:04 +0000 2009","profile_background_color":"ffffff","location":"New York City","listed_count":2161,"profile_background_tile":false,"friends_count":6689,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/75078767\/AR_73x73_normal.jpg","statuses_count":2233,"profile_text_color":"333333","name":"Architectural Record","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"ArchRecord","id":19639085,"id_str":"19639085","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"f7942c"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Designer by day, designer by night.","profile_sidebar_fill_color":"f3fafc","followers_count":101086,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bbd5e7","url":"http:\/\/jasonsantamaria.com\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2392335\/6.jpg","lang":"en","created_at":"Tue Dec 12 12:11:59 +0000 2006","profile_background_color":"000000","location":"Brooklyn, NY","listed_count":3106,"profile_background_tile":true,"friends_count":221,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/827950949\/stan_color_normal.jpg","statuses_count":4404,"profile_text_color":"3F2903","name":"Jason Santa Maria","show_all_inline_media":true,"following":false,"favourites_count":69,"screen_name":"jasonsantamaria","id":60273,"id_str":"60273","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"E65829"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"Frank Lloyd Wright's architectural masterpiece home to a world-renowned collection of modern & contemporary art. Tweets by Francesca & JiaJia, External Affairs.","profile_sidebar_fill_color":"e1e1e1","followers_count":186181,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cccccc","url":"http:\/\/www.guggenheim.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/102357358\/TwitterFinal.jpg","lang":"en","created_at":"Mon Jan 28 22:34:13 +0000 2008","profile_background_color":"ebebeb","location":"New York City","listed_count":6362,"profile_background_tile":false,"friends_count":2203,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1149536853\/Twitter_normal.jpg","statuses_count":1673,"profile_text_color":"000000","name":"Guggenheim Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"Guggenheim","id":12804422,"id_str":"12804422","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"cc3433"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Arts and Entertainment News from NYTimes.com\/Arts","profile_sidebar_fill_color":"E7EFF8","followers_count":183702,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"323232","url":"http:\/\/www.nytimes.com\/arts","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/2800588\/twitter.post.gif","lang":"en","created_at":"Sun Mar 18 20:30:33 +0000 2007","profile_background_color":"FFFFFF","location":"New York, NY","listed_count":5615,"profile_background_tile":true,"friends_count":139,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/278375516\/arts_75_twitter_normal.gif","statuses_count":24176,"profile_text_color":"000000","name":"NYTimes Arts","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"nytimesarts","id":1440641,"id_str":"1440641","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"004276"},{"geo_enabled":true,"time_zone":"Greenland","description":"Get smashed with Vitaly Friedman, editor-in-chief of Smashing Magazine, an online magazine for designers and web developers.","profile_sidebar_fill_color":"ffffff","followers_count":275629,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.smashingmagazine.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme13\/bg.gif","lang":"en","created_at":"Tue Aug 05 14:00:40 +0000 2008","profile_background_color":"B2DFDA","location":"Freiburg, Germany","listed_count":22366,"profile_background_tile":true,"friends_count":498,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/572829723\/original_normal.jpg","statuses_count":12536,"profile_text_color":"333333","name":"Smashing Magazine","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"smashingmag","id":15736190,"id_str":"15736190","contributors_enabled":false,"utc_offset":-10800,"profile_link_color":"f51616"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Dedicated to graphic design, technology, culture, and how it all fits together. Got something you want us to see? Tell us! http:\/\/imprint.printmag.com","profile_sidebar_fill_color":"efefef","followers_count":180609,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.printmag.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/153332722\/OCT2010_500.jpg","lang":"en","created_at":"Wed Sep 17 20:56:30 +0000 2008","profile_background_color":"cccccc","location":"New York City","listed_count":4859,"profile_background_tile":true,"friends_count":1302,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1139587727\/OCT2010_150_normal.jpg","statuses_count":1905,"profile_text_color":"333333","name":"Print magazine","show_all_inline_media":false,"following":false,"favourites_count":222,"screen_name":"printmag","id":16336998,"id_str":"16336998","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"00b8d9"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"View http:\/\/pictorymag.com for a curated collection of personal photo stories.","profile_sidebar_fill_color":"DDEEF6","followers_count":84148,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/pictorymag.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Fri Jul 31 18:40:29 +0000 2009","profile_background_color":"080808","location":"San Francisco","listed_count":1378,"profile_background_tile":false,"friends_count":83,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/497623612\/pictorytweet_normal.png","statuses_count":605,"profile_text_color":"333333","name":"Pictory","show_all_inline_media":false,"following":false,"favourites_count":17,"screen_name":"Pictory","id":61842249,"id_str":"61842249","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"AIGA, the professional association for design, is committed to advancing design as a professional craft, strategic tool and vital cultural force. ","profile_sidebar_fill_color":"DDEEF6","followers_count":115876,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.aiga.org","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287502835\/images\/themes\/theme1\/bg.png","lang":"en","created_at":"Tue Jan 27 21:49:35 +0000 2009","profile_background_color":"C0DEED","location":"United States","listed_count":3366,"profile_background_tile":false,"friends_count":160,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/74100932\/aigaLogoWeb_normal.png","statuses_count":1102,"profile_text_color":"333333","name":"AIGA","show_all_inline_media":false,"following":false,"favourites_count":11,"screen_name":"AIGAdesign","id":19619047,"id_str":"19619047","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":true,"time_zone":"Brussels","description":"Belgian graphic & web designer, author of Veerle's blog and founder of Duoh! Colorlover for life who loves to listen to deep house music while designing.","profile_sidebar_fill_color":"eae3d4","followers_count":99900,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"cac2b2","url":"http:\/\/veerle.duoh.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/100247105\/twitter-background.jpg","lang":"en","created_at":"Fri Nov 17 09:54:04 +0000 2006","profile_background_color":"818176","location":"Belgium","listed_count":2396,"profile_background_tile":false,"friends_count":266,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/889518005\/avatar-me-short-hair-256x256_normal.jpg","statuses_count":3799,"profile_text_color":"666666","name":"Veerle Pieters","show_all_inline_media":false,"following":false,"favourites_count":22,"screen_name":"vpieters","id":12815,"id_str":"12815","contributors_enabled":false,"utc_offset":3600,"profile_link_color":"e3266b"},{"geo_enabled":true,"time_zone":"London","description":"One of the world's leading museums devoted to contemporary design in every form from furniture, fashion graphics, architecture and industrial design.","profile_sidebar_fill_color":"0fafff","followers_count":176055,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.designmuseum.org","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/156276367\/one_to_one.jpg","lang":"en","created_at":"Thu Feb 26 13:48:31 +0000 2009","profile_background_color":"9AE4E8","location":"London","listed_count":3687,"profile_background_tile":true,"friends_count":74,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1138718740\/twitter_thumb_normal.jpg","statuses_count":369,"profile_text_color":"000000","name":"Design Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"DesignMuseum","id":22009731,"id_str":"22009731","contributors_enabled":false,"utc_offset":0,"profile_link_color":"000000"},{"geo_enabled":true,"time_zone":"London","description":"An Irish web developer living and working in Brighton, England.","profile_sidebar_fill_color":"eeeeee","followers_count":68786,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":false,"profile_sidebar_border_color":"dddddd","url":"http:\/\/adactio.com\/","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5952\/background.jpg","lang":"en","created_at":"Wed Nov 01 13:12:51 +0000 2006","profile_background_color":"FFFFFF","location":"Brighton, East Sussex, England","listed_count":1600,"profile_background_tile":true,"friends_count":451,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/551990159\/jeremykeith_normal_normal.jpg","statuses_count":8901,"profile_text_color":"333333","name":"Jeremy Keith","show_all_inline_media":true,"following":false,"favourites_count":277,"screen_name":"adactio","id":11250,"id_str":"11250","contributors_enabled":false,"utc_offset":0,"profile_link_color":"113355"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"more than a museum","profile_sidebar_fill_color":"cccccc","followers_count":157951,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bababa","url":"http:\/\/www.warhol.org","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/159345568\/NEWTwitter_Background_copy.jpg","lang":"en","created_at":"Fri Jan 23 20:35:38 +0000 2009","profile_background_color":"000000","location":"Pittsburgh, PA, USA","listed_count":3198,"profile_background_tile":false,"friends_count":4097,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/234545787\/TwitterLittler_normal.jpg","statuses_count":733,"profile_text_color":"000000","name":"Andy Warhol Museum","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"TheWarholMuseum","id":19412366,"id_str":"19412366","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"5e5e5e"},{"geo_enabled":true,"time_zone":"Berlin","description":"Typomaniac","profile_sidebar_fill_color":"DDFFCC","followers_count":78616,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"e2e7df","url":"http:\/\/www.spiekermann.com\/en\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/160411373\/es_typefaces_2010.png","lang":"en","created_at":"Thu Jan 15 23:38:46 +0000 2009","profile_background_color":"9AE4E8","location":"iPhone: 52.511920,13.400244","listed_count":1830,"profile_background_tile":false,"friends_count":88,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/71414018\/erik_closeup_bw_normal.jpg","statuses_count":2791,"profile_text_color":"333333","name":"erik spiekermann","show_all_inline_media":false,"following":false,"favourites_count":5,"screen_name":"espiekermann","id":19045458,"id_str":"19045458","contributors_enabled":false,"utc_offset":3600,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Color + Design Community | Creator of the Twitter Profile designer www.Themeleon.com","profile_sidebar_fill_color":"c9c9c9","followers_count":405342,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"bfbfbf","url":"http:\/\/www.colourlovers.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/54629758\/x10e1f6a2456a574bb99f65f13395c7e.png","lang":"en","created_at":"Fri Dec 05 22:12:31 +0000 2008","profile_background_color":"07090b","location":"Colorland (SF\/NYC\/PDX)","listed_count":6575,"profile_background_tile":true,"friends_count":941,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/66497158\/12233268832678686_normal.jpg","statuses_count":2272,"profile_text_color":"1c1f23","name":"COLOURlovers","show_all_inline_media":false,"following":false,"favourites_count":6,"screen_name":"colourlovers","id":17909625,"id_str":"17909625","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"c34242"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"USA\u2019s leading promoter of Graffiti ART FORM. Head of national Estria Invitational Graffiti Battle. West Coast OG. Art & inspiration from the streets.","profile_sidebar_fill_color":"e6e6e3","followers_count":383127,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"636263","url":"http:\/\/estria.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/55676209\/mstr_template2.jpg","lang":"en","created_at":"Wed Apr 22 06:35:49 +0000 2009","profile_background_color":"ffffff","location":"Honolulu Oakland","listed_count":622,"profile_background_tile":false,"friends_count":269,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/541529457\/Hawaii_15425_MarcoProsch_normal.jpg","statuses_count":3272,"profile_text_color":"5e5d5c","name":"Estria","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"estria","id":34207681,"id_str":"34207681","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"ed5007"},{"geo_enabled":false,"time_zone":"London","description":"Creative Review, advertising, design and visual culture: graphics, film, photography, illustration, digital, type, art, print... Tweets by Neil and Mark.","profile_sidebar_fill_color":"E3E2DE","followers_count":196919,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"656563","url":"http:\/\/creativereview.co.uk","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/163816562\/creativereview_twittNov_app.jpg","lang":"en","created_at":"Mon Feb 23 15:40:08 +0000 2009","profile_background_color":"E3E2DE","location":"London","listed_count":6521,"profile_background_tile":false,"friends_count":11485,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/787755994\/CR-logo_Twitter_new_normal.png","statuses_count":3987,"profile_text_color":"656563","name":"Creative Review","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"CreativeReview","id":21661279,"id_str":"21661279","contributors_enabled":false,"utc_offset":0,"profile_link_color":"ff4301"},{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Director of the documentary films Helvetica, Objectified, and Urbanized.","profile_sidebar_fill_color":"ffffff","followers_count":70949,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.urbanizedfilm.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/128410088\/urbanized_twitter5.jpg","lang":"en","created_at":"Tue Mar 17 17:23:57 +0000 2009","profile_background_color":"9e9e9e","location":"NYC","listed_count":1139,"profile_background_tile":true,"friends_count":149,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/101550009\/gary.72_normal.jpg","statuses_count":928,"profile_text_color":"333333","name":"Gary Hustwit","show_all_inline_media":false,"following":false,"favourites_count":0,"screen_name":"gary_hustwit","id":24916429,"id_str":"24916429","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"I write things, draw things, and invent things","profile_sidebar_fill_color":"252429","followers_count":94550,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/www.scottmccloud.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Mar 01 22:12:45 +0000 2009","profile_background_color":"1A1B1F","location":"So. California","listed_count":2510,"profile_background_tile":false,"friends_count":147,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/556926220\/selfport-small_normal.jpg","statuses_count":1850,"profile_text_color":"666666","name":"Scott McCloud","show_all_inline_media":true,"following":false,"favourites_count":0,"screen_name":"scottmccloud","id":22413809,"id_str":"22413809","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF"},{"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","description":"design blogstress\r\nwww.designsponge.com","profile_sidebar_fill_color":"DDFFCC","followers_count":126085,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.designsponge.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/6474848\/Design_Sponge.jpg","lang":"en","created_at":"Mon Mar 23 02:59:40 +0000 2009","profile_background_color":"9AE4E8","location":"brooklyn, ny","listed_count":4032,"profile_background_tile":true,"friends_count":219,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/107186057\/879249852_7830b767f0_o_normal.png","statuses_count":11942,"profile_text_color":"333333","name":"Grace Bonney","show_all_inline_media":false,"following":false,"favourites_count":1,"screen_name":"designsponge","id":25940364,"id_str":"25940364","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4"},{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Global innovation firm that helps create and bring to market meaningful products, services, and experiences.","profile_sidebar_fill_color":"ffffff","followers_count":126891,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"ffffff","url":"http:\/\/www.frogdesign.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/6212089\/collager2009_color2.jpg","lang":"en","created_at":"Tue Dec 25 20:38:13 +0000 2007","profile_background_color":"1A1B1F","location":"Headquartered in San Francisco","listed_count":3121,"profile_background_tile":true,"friends_count":2726,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/82779175\/frogdesign_twitter_logo_75_normal.png","statuses_count":2427,"profile_text_color":"666666","name":"frog design","show_all_inline_media":false,"following":false,"favourites_count":2,"screen_name":"frogdesign","id":11512342,"id_str":"11512342","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF"}],"slug":"art-design","name":"Art & Design"}
1
+ {"categories":[],"users":[{"geo_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"Designer, thinker, speaker, Creative Director at Twitter. Previously at Google, Stopdesign, and Wired.","profile_sidebar_fill_color":"bddaf7","followers_count":87831,"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/stopdesign.com","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/149914329\/bg-stop.png","lang":"en","created_at":"Sun Mar 11 19:50:16 +0000 2007","profile_background_color":"6092d2","location":"San Francisco, CA","listed_count":2454,"profile_background_tile":true,"friends_count":351,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/552708586\/doug-profile_normal.jpg","statuses_count":2533,"profile_text_color":"333333","name":"Doug Bowman","show_all_inline_media":true,"following":true,"favourites_count":302,"screen_name":"stop","id":949521,"id_str":"949521","contributors_enabled":false,"utc_offset":-28800,"profile_link_color":"3387cc"}],"slug":"art-design","name":"Art & Design"}
@@ -1 +1 @@
1
- [{"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Twitter API","contributors_enabled":true,"created_at":"Wed May 23 06:01:13 +0000 2007","profile_background_color":"e8f2f7","expanded_url":null,"listed_count":9032,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","utc_offset":-28800,"description":"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.","display_url":null,"verified":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1438634086\/avatar_normal.png","id_str":"6253282","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","favourites_count":22,"profile_text_color":"437792","status":{"truncated":false,"created_at":"Sun Aug 21 15:47:24 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105305005493452801","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[819797],"retweeted":false,"retweet_count":27,"source":"web","id":105305005493452801,"text":"dev.twitter.com is still inaccessible from some locations. We're working to restore availability to everyone again. ^TS"},"default_profile":false,"friends_count":30,"profile_sidebar_fill_color":"a9d9f1","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1438634086\/avatar_normal.png","screen_name":"twitterapi","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"San Francisco, CA","notifications":null,"is_translator":false,"profile_link_color":"0094C2","url":"http:\/\/dev.twitter.com","id":6253282,"follow_request_sent":null,"statuses_count":3044,"following":null,"profile_sidebar_border_color":"0094C2","followers_count":633992},{"time_zone":"Pacific Time (US & Canada)","protected":true,"is_translator":false,"profile_use_background_image":true,"name":"teamteam","follow_request_sent":false,"statuses_count":490,"created_at":"Thu Jun 04 20:20:20 +0000 2009","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-28800,"description":"Do more with less. ","display_url":null,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/323680542\/Bluebird_of_Happiness_normal.jpg","id_str":"44709792","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors_enabled":true,"lang":"en","favourites_count":18,"profile_text_color":"333333","listed_count":161,"profile_sidebar_fill_color":"DDEEF6","screen_name":"teamteam","default_profile":true,"profile_background_tile":false,"location":"Twitter","notifications":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","friends_count":633,"profile_link_color":"0084B4","url":"http:\/\/www.flickr.com\/photos\/twitteroffice","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/323680542\/Bluebird_of_Happiness_normal.jpg","id":44709792,"default_profile_image":false,"show_all_inline_media":false,"following":false,"geo_enabled":false,"profile_sidebar_border_color":"C0DEED","followers_count":433},{"time_zone":"Pacific Time (US & Canada)","protected":true,"profile_use_background_image":true,"name":"Shoutout","contributors_enabled":true,"created_at":"Sun Dec 27 19:22:01 +0000 2009","profile_background_color":"022330","expanded_url":null,"listed_count":61,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-28800,"description":"Contribute your shoutouts to peeps.","display_url":null,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/597683385\/shout_normal.png","id_str":"99765600","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","favourites_count":8,"profile_text_color":"333333","friends_count":3,"profile_sidebar_fill_color":"C0DFEC","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/597683385\/shout_normal.png","screen_name":"twittershoutout","default_profile_image":false,"default_profile":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"","notifications":false,"is_translator":false,"profile_link_color":"0084B4","url":"http:\/\/twitter.com","id":99765600,"follow_request_sent":false,"statuses_count":693,"following":false,"profile_sidebar_border_color":"a8c7f7","followers_count":336},{"time_zone":"Pacific Time (US & Canada)","protected":false,"is_translator":false,"profile_use_background_image":true,"name":"Anywhere","follow_request_sent":null,"statuses_count":31,"created_at":"Sun Oct 21 09:05:41 +0000 2007","profile_background_color":"022330","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","utc_offset":-28800,"description":"Here. There. Anywhere.","display_url":null,"verified":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/754566723\/_anywhere_normal.png","id_str":"9576402","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"contributors_enabled":true,"lang":"en","favourites_count":11,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Tue Feb 01 05:28:46 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"32309362097651712","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":{"country_code":"US","name":"Ashbury Heights","attributes":{},"full_name":"Ashbury Heights, San Francisco","place_type":"neighborhood","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.45778216,37.75932999],[-122.44248216,37.75932999],[-122.44248216,37.76752899],[-122.45778216,37.76752899]]]},"id":"866269c983527d5a","url":"http:\/\/api.twitter.com\/1\/geo\/id\/866269c983527d5a.json"},"contributors":[777925],"retweeted":false,"retweet_count":75,"source":"web","id":32309362097651712,"text":"Version 1.2 was released today. If you version locked to anything other than '1' you need to update now. Read more: http:\/\/t.co\/ACcUovI"},"listed_count":2246,"profile_sidebar_fill_color":"C0DFEC","screen_name":"anywhere","profile_background_tile":false,"location":"Twitter, HQ","notifications":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","default_profile":false,"friends_count":16,"profile_link_color":"0084B4","url":null,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/754566723\/_anywhere_normal.png","id":9576402,"default_profile_image":false,"show_all_inline_media":false,"following":null,"geo_enabled":true,"profile_sidebar_border_color":"a8c7f7","followers_count":47444},{"is_translator":false,"time_zone":"Alaska","protected":false,"follow_request_sent":false,"statuses_count":0,"profile_use_background_image":true,"name":"Geo Team","created_at":"Thu Jan 07 20:30:42 +0000 2010","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":-32400,"description":"All your lats and longs are belong to us","display_url":null,"contributors_enabled":true,"verified":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/622831073\/Geo-profile-icon_normal.png","id_str":"102782288","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"listed_count":202,"lang":"en","favourites_count":0,"profile_text_color":"333333","profile_sidebar_fill_color":"DDEEF6","screen_name":"geo","profile_background_tile":false,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","location":"San Francisco, CA","notifications":false,"friends_count":0,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/622831073\/Geo-profile-icon_normal.png","default_profile_image":false,"default_profile":true,"show_all_inline_media":false,"geo_enabled":true,"profile_link_color":"0084B4","url":null,"id":102782288,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":3596},{"time_zone":null,"protected":false,"default_profile":true,"listed_count":98,"profile_use_background_image":true,"name":"Site Streams Beta","created_at":"Fri Aug 27 18:04:38 +0000 2010","profile_background_color":"C0DEED","expanded_url":null,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","utc_offset":null,"description":"Twitter Site Streams Beta Announcements. When reporting an issue, include account & UTC. You may DM critical outages.","display_url":null,"contributors_enabled":true,"verified":true,"friends_count":1,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1112022529\/api_normal.png","id_str":"183709371","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"default_profile_image":false,"lang":"en","favourites_count":0,"profile_text_color":"333333","status":{"truncated":false,"created_at":"Thu Aug 18 19:39:20 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"104276210699341825","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[777925],"retweeted":false,"retweet_count":0,"source":"web","id":104276210699341825,"text":"For the moment we've stopped the rollout of the new SSL certificate for sitestreams. We'll tweet again when we resume."},"show_all_inline_media":false,"geo_enabled":false,"profile_sidebar_fill_color":"DDEEF6","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1112022529\/api_normal.png","screen_name":"sitestreams","is_translator":false,"profile_background_tile":false,"location":"San Francisco, CA","follow_request_sent":false,"notifications":false,"statuses_count":139,"profile_link_color":"0084B4","url":"http:\/\/twitter.com","id":183709371,"following":false,"profile_sidebar_border_color":"C0DEED","followers_count":2199}]
1
+ [{"time_zone":"Pacific Time (US & Canada)","protected":false,"profile_use_background_image":true,"name":"Twitter API","contributors_enabled":true,"created_at":"Wed May 23 06:01:13 +0000 2007","profile_background_color":"e8f2f7","expanded_url":null,"listed_count":9032,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","utc_offset":-28800,"description":"The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.","display_url":null,"verified":true,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1438634086\/avatar_normal.png","id_str":"6253282","entities":{"user_mentions":[],"urls":[],"hashtags":[]},"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/229557229\/twitterapi-bg.png","favourites_count":22,"profile_text_color":"437792","status":{"truncated":false,"created_at":"Sun Aug 21 15:47:24 +0000 2011","geo":null,"in_reply_to_user_id":null,"in_reply_to_status_id":null,"favorited":false,"in_reply_to_status_id_str":null,"coordinates":null,"id_str":"105305005493452801","in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"place":null,"contributors":[819797],"retweeted":false,"retweet_count":27,"source":"web","id":105305005493452801,"text":"dev.twitter.com is still inaccessible from some locations. We're working to restore availability to everyone again. ^TS"},"default_profile":false,"friends_count":30,"profile_sidebar_fill_color":"a9d9f1","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1438634086\/avatar_normal.png","screen_name":"twitterapi","default_profile_image":false,"show_all_inline_media":false,"geo_enabled":true,"profile_background_tile":false,"location":"San Francisco, CA","notifications":null,"is_translator":false,"profile_link_color":"0094C2","url":"http:\/\/dev.twitter.com","id":6253282,"follow_request_sent":null,"statuses_count":3044,"following":null,"profile_sidebar_border_color":"0094C2","followers_count":633992}]
@@ -1 +1 @@
1
- [{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."},{"recipient_screen_name":"technoweenie","recipient_id":780561,"created_at":"Sat Oct 16 19:15:50 +0000 2010","sender_id":7505382,"recipient":{"description":"Relax, sweetheart. Tomorrow morning's hangover will be my own personal apocalypse.","profile_use_background_image":true,"followers_count":3945,"notifications":false,"profile_background_color":"FFFFFF","listed_count":446,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/58852\/bg-rgt.jpg","friends_count":192,"statuses_count":11437,"profile_text_color":"000000","url":"http:\/\/techno-weenie.net","show_all_inline_media":false,"profile_background_tile":false,"favourites_count":80,"contributors_enabled":false,"lang":"en","created_at":"Mon Feb 19 17:12:49 +0000 2007","profile_link_color":"0000ff","location":"sf","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1002166914\/rick2_normal.jpg","profile_sidebar_fill_color":"e0ff92","name":"technow\u00fcrst","following":false,"verified":false,"time_zone":"Central Time (US & Canada)","screen_name":"technoweenie","id":780561,"id_str":"780561","follow_request_sent":false,"utc_offset":-21600,"profile_sidebar_border_color":"87bc44"},"sender":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"followers_count":898,"notifications":false,"profile_background_color":"000000","listed_count":28,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","friends_count":88,"statuses_count":2968,"profile_text_color":"333333","url":null,"show_all_inline_media":true,"profile_background_tile":false,"favourites_count":729,"contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_link_color":"0084B4","location":"San Francisco","geo_enabled":true,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_sidebar_fill_color":"DDEEF6","name":"Erik Michaels-Ober","following":true,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"id_str":"7505382","follow_request_sent":false,"utc_offset":-28800,"profile_sidebar_border_color":"C0DEED"},"sender_screen_name":"sferik","id":1769928706,"id_str":"1769928706","text":"if you want to add me to your GroupMe group, my phone number is 415-312-2382"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Oct 14 21:43:30 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1762960771","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1762960771,"text":"That's great news! Let's plan to chat around 8 AM tomorrow Pacific time. Does that work for you? "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 15:07:12 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711812216","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711812216,"text":"I asked Yehuda about the stipend. I believe it has already been sent. Glad you're feeling better. "},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Oct 01 13:09:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1711417617","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1711417617,"text":"Just checking in. How's everything going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 22 04:01:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1674941247","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1674941247,"text":"Any luck completing graphs this weekend? There have been lots of commits to RailsAdmin since summer ended but none from you. How's it going?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 16 16:13:27 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1653301471","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1653301471,"text":"Not sure about the payment. Feel free to ask Leah or Yehuda directly. Think you'll be able to finish up your work on graphs this weekend?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Wed Sep 15 01:17:31 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1646568725","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1646568725,"text":"Looks good to me. I'm going to pull in the change now. My only concern is that we don't have any tests for auth."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Tue Sep 14 18:44:10 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1645324992","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1645324992,"text":"How are the graph enhancements coming?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:35:29 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638951325","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638951325,"text":"Changes pushed. You should pull and re-bundle when you have a minute."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:33 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638904422","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638904422,"text":"Glad to hear the new graphs are coming along. Can't wait to see them!"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:13:08 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638903478","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638903478,"text":"I figured out what was wrong with the tests: I accidentally unbundled webrat. The problem had nothing to do with rspec-rails."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:54 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638877375","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638877375,"text":"After the upgrade 54\/80 specs are failing. I'm working on fixing them now."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Mon Sep 13 06:01:18 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1638875895","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1638875895,"text":"a new version of rspec-rails just shipped with some nice features and fixes http:\/\/github.com\/rspec\/rspec-rails\/blob\/master\/History.md"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sat Sep 11 17:45:46 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1632933616","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1632933616,"text":"How are the graphs coming? I'm really looking forward to seeing what you do with Rapha\u00ebl."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 18:21:36 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629239903","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629239903,"text":"Awesome! Any luck duplicating the Gemfile.lock error with Ruby 1.9.2 final?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 17:56:53 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1629166212","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1629166212,"text":"I just committed a bunch of cleanup and fixes to RailsAdmin that touched many of files. Make sure you pull to avoid conflicts."},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Fri Sep 10 02:05:16 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1626403189","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1626403189,"text":"Can you try upgrading to 1.9.2 final, re-installing Bundler 1.0.0.rc.6 (don't remove 1.0.0) and see if you can reproduce the problem?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 18:11:48 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1624782206","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1624782206,"text":"I'm trying to debug the issue you were having with the Bundler Gemfile.lock shortref. What version of Ruby and RubyGems are you running?"},{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Thu Sep 09 03:32:59 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1622306776","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1622306776,"text":"Let's try to debug that problem during our session in 1.5 hours. In the mean time, try working on the graphs or internationalization."}]
1
+ [{"recipient_id":6238622,"recipient":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Erasmus @ Lille, FII Student, Freelance web developer, Ruby & Rails fan","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Paris","url":"http:\/\/purl.org\/net\/bogdan.gaza","listed_count":11,"friends_count":196,"profile_background_color":"C0DEED","lang":"en","statuses_count":1448,"created_at":"Tue May 22 17:13:45 +0000 2007","location":"Lille, France","show_all_inline_media":false,"profile_use_background_image":true,"favourites_count":1,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1099173727\/DSC_0261_normal.png","id_str":"6238622","contributors_enabled":false,"name":"Bogdan Gaza","following":true,"geo_enabled":true,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme1\/bg.png","profile_link_color":"0084B4","screen_name":"hurrycane","id":6238622,"utc_offset":3600,"followers_count":276},"sender_screen_name":"sferik","created_at":"Sun Oct 17 20:48:55 +0000 2010","recipient_screen_name":"hurrycane","id_str":"1773478249","sender":{"verified":false,"profile_background_tile":false,"profile_sidebar_fill_color":"DDEEF6","description":"Adventures in hunger and foolishness.","follow_request_sent":false,"notifications":false,"profile_sidebar_border_color":"C0DEED","time_zone":"Pacific Time (US & Canada)","url":null,"listed_count":28,"friends_count":88,"profile_background_color":"000000","lang":"en","statuses_count":2970,"created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","show_all_inline_media":true,"profile_use_background_image":true,"favourites_count":729,"profile_text_color":"333333","protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","id_str":"7505382","contributors_enabled":false,"name":"Erik Michaels-Ober","following":false,"geo_enabled":true,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","profile_link_color":"0084B4","screen_name":"sferik","id":7505382,"utc_offset":-28800,"followers_count":898},"sender_id":7505382,"id":1773478249,"text":"Sounds good. Meeting Tuesday is fine."}]
@@ -1 +1 @@
1
- {"users":[{"id":979919484,"id_str":"979919484","name":"nylews","screen_name":"SwelynD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Fri Nov 30 07:01:27 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","status":{"created_at":"Fri Nov 30 07:03:06 +0000 2012","id":274408192602157056,"id_str":"274408192602157056","text":"Hey","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/979919484\/1354259270","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":46165450,"id_str":"46165450","name":"Danny","screen_name":"DannyNolls","location":"Balllllmore","description":"Been called Powder more than once. Co Founder @CharityBeers.","url":"http:\/\/t.co\/bP2fTDeD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bP2fTDeD","expanded_url":"http:\/\/www.charitybeers.com","display_url":"charitybeers.com","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":687,"listed_count":3,"created_at":"Wed Jun 10 17:17:16 +0000 2009","favourites_count":476,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2223,"lang":"en","status":{"created_at":"Fri Nov 30 11:19:12 +0000 2012","id":274472642537463808,"id_str":"274472642537463808","text":"#thatawkwardmoment when you are waiting for the TV guide to scroll on its own.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[{"text":"thatawkwardmoment","indices":[0,18]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2899725874\/2c2678a2ca57b71f756a20532a293451_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2899725874\/2c2678a2ca57b71f756a20532a293451_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/46165450\/1353963031","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2770,"friends_count":2720,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1481,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3892,"lang":"en","status":{"created_at":"Fri Nov 30 16:06:12 +0000 2012","id":274544869719035904,"id_str":"274544869719035904","text":"Guitar Center time!","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":156020838,"id_str":"156020838","name":"Sean R. Nicholson","screen_name":"SocMedSean","location":"Kansas City, MO","description":"Social Media Director. Tech-geek. Attorney. Bungee Master. Coffee Addict. Author. These are MY thoughts.","url":"http:\/\/www.socmedsean.com","entities":{"url":{"urls":[{"url":"http:\/\/www.socmedsean.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":9436,"friends_count":6760,"listed_count":517,"created_at":"Tue Jun 15 20:21:11 +0000 2010","favourites_count":33,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":7621,"lang":"en","status":{"created_at":"Fri Nov 30 13:09:53 +0000 2012","id":274500500597129216,"id_str":"274500500597129216","text":"Social Media Law Review is out! http:\/\/t.co\/COkcQjZW \u25b8 Top stories today via @food_blogger @esraarsan","source":"\u003ca href=\"http:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/COkcQjZW","expanded_url":"http:\/\/paper.li\/SocMedSean\/1353229509","display_url":"paper.li\/SocMedSean\/135\u2026","indices":[32,52]}],"user_mentions":[{"screen_name":"food_blogger","name":"NinjaHelloKitty","id":90603838,"id_str":"90603838","indices":[77,90]},{"screen_name":"esraarsan","name":"Esra Arsan","id":17816949,"id_str":"17816949","indices":[91,101]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":27323999,"id_str":"27323999","name":"The Smyth Group","screen_name":"thesmythgroup","location":"Baton Rouge, LA","description":"Mobile app consulting agency. iOS, Android, Kindle, Nook, Windows Phone, and Blackberry (if we have to). 15 Developers and Designers and one floppy-eared dog.","url":"http:\/\/www.thesmythgroup.com","entities":{"url":{"urls":[{"url":"http:\/\/www.thesmythgroup.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":8301,"friends_count":9098,"listed_count":85,"created_at":"Sat Mar 28 22:33:33 +0000 2009","favourites_count":51,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2272,"lang":"en","status":{"created_at":"Thu Nov 29 20:07:36 +0000 2012","id":274243232307757056,"id_str":"274243232307757056","text":"This guy is REALLY disappointed in BP. As are we all. http:\/\/t.co\/0IEoRWtC","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0IEoRWtC","expanded_url":"http:\/\/twitpic.com\/bhko1b","display_url":"twitpic.com\/bhko1b","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_link_color":"E77E24","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":977187727,"id_str":"977187727","name":"lais oliveira","screen_name":"laisoliveira880","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":25,"listed_count":0,"created_at":"Wed Nov 28 23:23:21 +0000 2012","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":"pt","status":{"created_at":"Thu Nov 29 22:25:30 +0000 2012","id":274277936415252480,"id_str":"274277936415252480","text":"calor t\u00e1 teno -'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/977187727\/1354145151","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":6304322,"id_str":"6304322","name":"Blithe Rocher","screen_name":"Blithe","location":"Atlanta, GA","description":"PhD scientist, (aspiring) coder, tech geek, skeptic, master of spatial relationships, cyclist, not your average girl.","url":"http:\/\/www.blitherocher.com","entities":{"url":{"urls":[{"url":"http:\/\/www.blitherocher.com","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":618,"friends_count":776,"listed_count":28,"created_at":"Fri May 25 05:56:51 +0000 2007","favourites_count":206,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8496,"lang":"en","status":{"created_at":"Fri Nov 30 16:07:08 +0000 2012","id":274545104843313153,"id_str":"274545104843313153","text":"My wake up song this morning: http:\/\/t.co\/AmtFISqS It prompted pajama dancing and shower singing. So ready for @RailsGirlsATL weekend.","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/AmtFISqS","expanded_url":"http:\/\/vimeo.com\/11925060","display_url":"vimeo.com\/11925060","indices":[30,50]}],"user_mentions":[{"screen_name":"RailsGirlsATL","name":"RailsGirlsATL","id":731094390,"id_str":"731094390","indices":[111,125]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/6304322\/1350419228","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":11088,"id_str":"11088","name":"Mike Vincent","screen_name":"agile","location":"Fort Worth, Texas","description":"crying while coding","url":"http:\/\/cryingwhilecoding.com","entities":{"url":{"urls":[{"url":"http:\/\/cryingwhilecoding.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":520,"listed_count":29,"created_at":"Mon Oct 30 14:45:05 +0000 2006","favourites_count":2,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":621,"lang":"en","status":{"created_at":"Sat Nov 17 15:54:57 +0000 2012","id":269830995157585920,"id_str":"269830995157585920","text":"http:\/\/t.co\/ZzvBjBHG #wishIwerethere #rupy2012 #awesome 'ver nice! @chastell","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"wishIwerethere","indices":[21,36]},{"text":"rupy2012","indices":[37,46]},{"text":"awesome","indices":[47,55]}],"urls":[{"url":"http:\/\/t.co\/ZzvBjBHG","expanded_url":"http:\/\/talks.chastell.net\/rupy-2012","display_url":"talks.chastell.net\/rupy-2012","indices":[0,20]}],"user_mentions":[{"screen_name":"chastell","name":"Piotr Szotkowski","id":6498712,"id_str":"6498712","indices":[67,76]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":343990983,"id_str":"343990983","name":"Arvid Kahl","screen_name":"arvidkahldev","location":"Dresden, Germany","description":"Web Developer from Germany. Node, PHP, Coffeescript. Mac Enthusiast, Gourmet, Political Scientist. Also, Cats. Works for @koding ","url":"http:\/\/www.arvidkahl.de","entities":{"url":{"urls":[{"url":"http:\/\/www.arvidkahl.de","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":779,"listed_count":0,"created_at":"Thu Jul 28 11:30:56 +0000 2011","favourites_count":279,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"verified":false,"statuses_count":227,"lang":"de","status":{"created_at":"Thu Nov 29 04:00:39 +0000 2012","id":273999892618289152,"id_str":"273999892618289152","text":"@cupcakentoots if you send me a direct message (with an email) over twitter, i can take care of this directly.","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":273906859474309120,"in_reply_to_status_id_str":"273906859474309120","in_reply_to_user_id":974680495,"in_reply_to_user_id_str":"974680495","in_reply_to_screen_name":"cupcakentoots","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cupcakentoots","name":"Dolan and Gooby","id":974680495,"id_str":"974680495","indices":[0,14]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":966322692,"id_str":"966322692","name":"\u064a\u0648\u0633\u0641 \u0645\u062d\u0645\u062f","screen_name":"yousef621666","location":"\u063a\u0632\u0647","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":260,"listed_count":0,"created_at":"Fri Nov 23 15:37:44 +0000 2012","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":"ar","status":{"created_at":"Mon Nov 26 20:12:05 +0000 2012","id":273157197494632448,"id_str":"273157197494632448","text":"@mbuyabis \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","source":"web","truncated":false,"in_reply_to_status_id":273156993852792832,"in_reply_to_status_id_str":"273156993852792832","in_reply_to_user_id":223444453,"in_reply_to_user_id_str":"223444453","in_reply_to_screen_name":"mbuyabis","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mbuyabis","name":"mishari buyabis","id":223444453,"id_str":"223444453","indices":[0,9]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/966322692\/1353686786","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":963591182,"id_str":"963591182","name":"JBSwagSoldier","screen_name":"JBSwagSoldier","location":"","description":"@JBSwaggySoldier 's second account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":50,"listed_count":0,"created_at":"Thu Nov 22 04:08:19 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":"en","status":{"created_at":"Mon Nov 26 04:13:38 +0000 2012","id":272915997227356161,"id_str":"272915997227356161","text":"My daily stats: 1 new followers, 2 new unfollowers via http:\/\/t.co\/17Si5SiC","source":"\u003ca href=\"http:\/\/justunfollow.com\" rel=\"nofollow\"\u003eJustUnfollow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/17Si5SiC","expanded_url":"http:\/\/www.justunfollow.com","display_url":"justunfollow.com","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":220619311,"id_str":"220619311","name":"David Byrd","screen_name":"davidbyrd11","location":"New York","description":"Student @NYUGallatin","url":"http:\/\/byrdhou.se","entities":{"url":{"urls":[{"url":"http:\/\/byrdhou.se","expanded_url":null,"indices":[0,17]}]},"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":743,"listed_count":3,"created_at":"Sun Nov 28 09:58:49 +0000 2010","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1162,"lang":"en","status":{"created_at":"Fri Nov 30 08:23:41 +0000 2012","id":274428475891384320,"id_str":"274428475891384320","text":"\u270c Reading \"Speeding up PHP-based development with HipHop VM\" http:\/\/t.co\/DatG4xqk","source":"\u003ca href=\"http:\/\/reading.am\" rel=\"nofollow\"\u003eReading.am\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/DatG4xqk","expanded_url":"http:\/\/ing.am\/p\/JXd","display_url":"ing.am\/p\/JXd","indices":[61,81]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/220619311\/1349057134","profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14981723,"id_str":"14981723","name":"Colin Mutchler","screen_name":"activefree","location":"San Francisco","description":"With the freedom of full self expression comes the full responsibility of being active. Co-Founder of @loudsauce. Musician and poet. ","url":"http:\/\/loudsauce.com","entities":{"url":{"urls":[{"url":"http:\/\/loudsauce.com","expanded_url":null,"indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":1168,"friends_count":94,"listed_count":93,"created_at":"Mon Jun 02 16:20:59 +0000 2008","favourites_count":86,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2032,"lang":"en","status":{"created_at":"Fri Nov 30 16:23:35 +0000 2012","id":274549243891556353,"id_str":"274549243891556353","text":"If you have limited budget, adding floating Facebook like window is most important u can do to drive traffic. Thx @Upworthy.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Upworthy","name":"Upworthy","id":524396430,"id_str":"524396430","indices":[114,123]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":961585622,"id_str":"961585622","name":"@annisawala","screen_name":"annisa4322","location":"indonesia,medan","description":"be the super girl : love allah swt. , mom n' dad :","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":57,"listed_count":0,"created_at":"Wed Nov 21 02:06:44 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":"id","status":{"created_at":"Wed Nov 21 16:04:13 +0000 2012","id":271282878770446336,"id_str":"271282878770446336","text":"@fahmijuhri ,,, \nlebay ko woy.","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":271268761795960833,"in_reply_to_status_id_str":"271268761795960833","in_reply_to_user_id":228256726,"in_reply_to_user_id_str":"228256726","in_reply_to_screen_name":"FahmiJuhri","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahmiJuhri","name":"\u2654 Fahmi Juhri \u2654","id":228256726,"id_str":"228256726","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},{"id":374161242,"id_str":"374161242","name":"Kendrick Lay","screen_name":"kendricklay","location":"Virginia, US","description":"Tech-Startup guy. Entrepreneur. Investor. UVA. \r\nScrew it, Just do it! \r\n\r\n\r\n\r\n\r\n","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":217,"listed_count":2,"created_at":"Thu Sep 15 20:25:32 +0000 2011","favourites_count":16,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":137,"lang":"en","status":{"created_at":"Fri Nov 30 05:49:32 +0000 2012","id":274389679963516928,"id_str":"274389679963516928","text":"One of the best ways to launch a startup is to embrace simplicity and focus on the one core and differentiated feature of your product.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14439858,"id_str":"14439858","name":"Simon Harris","screen_name":"haruki_zaemon","location":"Tylden, Victoria, Australia","description":"iOS developer and sometimes entrepreneur. One of the guys behind @readtimeapp. I'm hz on http:\/\/t.co\/NjOG4rv1 and I occasionally blog at http:\/\/t.co\/TJt6jSjo.","url":"http:\/\/www.harukizaemon.com\/","entities":{"url":{"urls":[{"url":"http:\/\/www.harukizaemon.com\/","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[{"url":"http:\/\/t.co\/NjOG4rv1","expanded_url":"http:\/\/alpha.app.net","display_url":"alpha.app.net","indices":[89,109]},{"url":"http:\/\/t.co\/TJt6jSjo","expanded_url":"http:\/\/www.harukizaemon.com","display_url":"harukizaemon.com","indices":[137,157]}]}},"protected":false,"followers_count":703,"friends_count":454,"listed_count":45,"created_at":"Sat Apr 19 02:24:16 +0000 2008","favourites_count":4,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":22626,"lang":"en","status":{"created_at":"Fri Nov 30 08:27:00 +0000 2012","id":274429308968247297,"id_str":"274429308968247297","text":"@dhanji @michaelneale Aneurism, yes.","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":274385424716271617,"in_reply_to_status_id_str":"274385424716271617","in_reply_to_user_id":14563623,"in_reply_to_user_id_str":"14563623","in_reply_to_screen_name":"dhanji","geo":{"type":"Point","coordinates":[-37.80010360,144.93542357]},"coordinates":{"type":"Point","coordinates":[144.93542357,-37.80010360]},"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dhanji","name":"Dhanji R. Prasanna","id":14563623,"id_str":"14563623","indices":[0,7]},{"screen_name":"michaelneale","name":"Michael Neale","id":4309311,"id_str":"4309311","indices":[8,21]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":4220161,"id_str":"4220161","name":"skylar woodward","screen_name":"skylar","location":"San Francisco","description":"Builder, biker, climber, maker. I \u2665 coffee, Kiva and SF.","url":"http:\/\/larw.com\/","entities":{"url":{"urls":[{"url":"http:\/\/larw.com\/","expanded_url":null,"indices":[0,16]}]},"description":{"urls":[]}},"protected":false,"followers_count":833,"friends_count":333,"listed_count":41,"created_at":"Wed Apr 11 18:14:11 +0000 2007","favourites_count":60,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1770,"lang":"en","status":{"created_at":"Wed Nov 28 23:43:43 +0000 2012","id":273935233571758080,"id_str":"273935233571758080","text":"Just won a pony. http:\/\/t.co\/0ZLYMium","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0ZLYMium","expanded_url":"http:\/\/instagr.am\/p\/Sl5G06yaGy\/","display_url":"instagr.am\/p\/Sl5G06yaGy\/","indices":[17,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_link_color":"5E412F","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":45569415,"id_str":"45569415","name":"Andrew Flockhart","screen_name":"andruflockhart","location":"NYC","description":"100101010000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":322,"listed_count":13,"created_at":"Mon Jun 08 13:56:29 +0000 2009","favourites_count":54,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":903,"lang":"en","status":{"created_at":"Tue Nov 27 21:44:15 +0000 2012","id":273542779588734976,"id_str":"273542779588734976","text":"RT @YungPeng: never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 27 21:34:02 +0000 2012","id":273540207318532097,"id_str":"273540207318532097","text":"never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YungPeng","name":"\u2022 FR\u2206NK\u00d8 \u2206LI \u2022","id":25201460,"id_str":"25201460","indices":[3,12]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/45569415\/1348757066","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":42559115,"id_str":"42559115","name":"Josh Miller","screen_name":"joshm","location":"New York, NY","description":"Building @Branch. Former rising senior at @Princeton. Born and raised in Santa Monica. I ask a lot of questions.","url":"http:\/\/t.co\/uHQdLI6v","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uHQdLI6v","expanded_url":"http:\/\/joshm.co\/about\/","display_url":"joshm.co\/about\/","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":2383,"friends_count":199,"listed_count":79,"created_at":"Tue May 26 03:54:46 +0000 2009","favourites_count":1485,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2698,"lang":"en","status":{"created_at":"Fri Nov 30 06:58:41 +0000 2012","id":274407081413582848,"id_str":"274407081413582848","text":"RT @jordancooper: Public Service Announcement for consumer facing entrepreneurs: http:\/\/t.co\/6Eq2Kdc3","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 29 23:04:02 +0000 2012","id":274287633725792256,"id_str":"274287633725792256","text":"Public Service Announcement for consumer facing entrepreneurs: http:\/\/t.co\/6Eq2Kdc3","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/6Eq2Kdc3","expanded_url":"http:\/\/checkthis.com\/5ntb","display_url":"checkthis.com\/5ntb","indices":[63,83]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/6Eq2Kdc3","expanded_url":"http:\/\/checkthis.com\/5ntb","display_url":"checkthis.com\/5ntb","indices":[81,101]}],"user_mentions":[{"screen_name":"jordancooper","name":"Jordan Cooper","id":7537222,"id_str":"7537222","indices":[3,16]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/42559115\/1348349087","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":17110657,"id_str":"17110657","name":"Tal Safran","screen_name":"talsafran","location":"Brooklyn, NY","description":"Developer and person.","url":"http:\/\/tal.im","entities":{"url":{"urls":[{"url":"http:\/\/tal.im","expanded_url":null,"indices":[0,13]}]},"description":{"urls":[]}},"protected":false,"followers_count":979,"friends_count":503,"listed_count":63,"created_at":"Sun Nov 02 04:31:23 +0000 2008","favourites_count":532,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4701,"lang":"en","status":{"created_at":"Thu Nov 29 19:10:22 +0000 2012","id":274228827478192129,"id_str":"274228827478192129","text":"@pklug Sure, blame it on the mustache :)\n\nDid you handlebar it again?","source":"web","truncated":false,"in_reply_to_status_id":274211393442574336,"in_reply_to_status_id_str":"274211393442574336","in_reply_to_user_id":21379175,"in_reply_to_user_id_str":"21379175","in_reply_to_screen_name":"pklug","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pklug","name":"Phillip Klugman","id":21379175,"id_str":"21379175","indices":[0,6]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":1419103567112105362,"next_cursor_str":"1419103567112105362","previous_cursor":0,"previous_cursor_str":"0"}
1
+ {"users":[{"id":979919484,"id_str":"979919484","name":"nylews","screen_name":"SwelynD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Fri Nov 30 07:01:27 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","status":{"created_at":"Fri Nov 30 07:03:06 +0000 2012","id":274408192602157056,"id_str":"274408192602157056","text":"Hey","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/979919484\/1354259270","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":1419103567112105362,"next_cursor_str":"1419103567112105362","previous_cursor":0,"previous_cursor_str":"0"}
@@ -1 +1 @@
1
- {"users":[{"id":979919484,"id_str":"979919484","name":"nylews","screen_name":"SwelynD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Fri Nov 30 07:01:27 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","status":{"created_at":"Fri Nov 30 07:03:06 +0000 2012","id":274408192602157056,"id_str":"274408192602157056","text":"Hey","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/979919484\/1354259270","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":46165450,"id_str":"46165450","name":"Danny","screen_name":"DannyNolls","location":"Balllllmore","description":"Been called Powder more than once. Co Founder @CharityBeers.","url":"http:\/\/t.co\/bP2fTDeD","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/bP2fTDeD","expanded_url":"http:\/\/www.charitybeers.com","display_url":"charitybeers.com","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":687,"listed_count":3,"created_at":"Wed Jun 10 17:17:16 +0000 2009","favourites_count":476,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":2223,"lang":"en","status":{"created_at":"Fri Nov 30 11:19:12 +0000 2012","id":274472642537463808,"id_str":"274472642537463808","text":"#thatawkwardmoment when you are waiting for the TV guide to scroll on its own.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[{"text":"thatawkwardmoment","indices":[0,18]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2899725874\/2c2678a2ca57b71f756a20532a293451_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2899725874\/2c2678a2ca57b71f756a20532a293451_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/46165450\/1353963031","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2770,"friends_count":2720,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1481,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3892,"lang":"en","status":{"created_at":"Fri Nov 30 16:06:12 +0000 2012","id":274544869719035904,"id_str":"274544869719035904","text":"Guitar Center time!","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":156020838,"id_str":"156020838","name":"Sean R. Nicholson","screen_name":"SocMedSean","location":"Kansas City, MO","description":"Social Media Director. Tech-geek. Attorney. Bungee Master. Coffee Addict. Author. These are MY thoughts.","url":"http:\/\/www.socmedsean.com","entities":{"url":{"urls":[{"url":"http:\/\/www.socmedsean.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":9436,"friends_count":6760,"listed_count":517,"created_at":"Tue Jun 15 20:21:11 +0000 2010","favourites_count":33,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":7621,"lang":"en","status":{"created_at":"Fri Nov 30 13:09:53 +0000 2012","id":274500500597129216,"id_str":"274500500597129216","text":"Social Media Law Review is out! http:\/\/t.co\/COkcQjZW \u25b8 Top stories today via @food_blogger @esraarsan","source":"\u003ca href=\"http:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/COkcQjZW","expanded_url":"http:\/\/paper.li\/SocMedSean\/1353229509","display_url":"paper.li\/SocMedSean\/135\u2026","indices":[32,52]}],"user_mentions":[{"screen_name":"food_blogger","name":"NinjaHelloKitty","id":90603838,"id_str":"90603838","indices":[77,90]},{"screen_name":"esraarsan","name":"Esra Arsan","id":17816949,"id_str":"17816949","indices":[91,101]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":27323999,"id_str":"27323999","name":"The Smyth Group","screen_name":"thesmythgroup","location":"Baton Rouge, LA","description":"Mobile app consulting agency. iOS, Android, Kindle, Nook, Windows Phone, and Blackberry (if we have to). 15 Developers and Designers and one floppy-eared dog.","url":"http:\/\/www.thesmythgroup.com","entities":{"url":{"urls":[{"url":"http:\/\/www.thesmythgroup.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":8301,"friends_count":9098,"listed_count":85,"created_at":"Sat Mar 28 22:33:33 +0000 2009","favourites_count":51,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2272,"lang":"en","status":{"created_at":"Thu Nov 29 20:07:36 +0000 2012","id":274243232307757056,"id_str":"274243232307757056","text":"This guy is REALLY disappointed in BP. As are we all. http:\/\/t.co\/0IEoRWtC","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0IEoRWtC","expanded_url":"http:\/\/twitpic.com\/bhko1b","display_url":"twitpic.com\/bhko1b","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_link_color":"E77E24","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":977187727,"id_str":"977187727","name":"lais oliveira","screen_name":"laisoliveira880","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":25,"listed_count":0,"created_at":"Wed Nov 28 23:23:21 +0000 2012","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2,"lang":"pt","status":{"created_at":"Thu Nov 29 22:25:30 +0000 2012","id":274277936415252480,"id_str":"274277936415252480","text":"calor t\u00e1 teno -'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/977187727\/1354145151","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":6304322,"id_str":"6304322","name":"Blithe Rocher","screen_name":"Blithe","location":"Atlanta, GA","description":"PhD scientist, (aspiring) coder, tech geek, skeptic, master of spatial relationships, cyclist, not your average girl.","url":"http:\/\/www.blitherocher.com","entities":{"url":{"urls":[{"url":"http:\/\/www.blitherocher.com","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":618,"friends_count":776,"listed_count":28,"created_at":"Fri May 25 05:56:51 +0000 2007","favourites_count":206,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8496,"lang":"en","status":{"created_at":"Fri Nov 30 16:07:08 +0000 2012","id":274545104843313153,"id_str":"274545104843313153","text":"My wake up song this morning: http:\/\/t.co\/AmtFISqS It prompted pajama dancing and shower singing. So ready for @RailsGirlsATL weekend.","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":2,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/AmtFISqS","expanded_url":"http:\/\/vimeo.com\/11925060","display_url":"vimeo.com\/11925060","indices":[30,50]}],"user_mentions":[{"screen_name":"RailsGirlsATL","name":"RailsGirlsATL","id":731094390,"id_str":"731094390","indices":[111,125]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/6304322\/1350419228","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":11088,"id_str":"11088","name":"Mike Vincent","screen_name":"agile","location":"Fort Worth, Texas","description":"crying while coding","url":"http:\/\/cryingwhilecoding.com","entities":{"url":{"urls":[{"url":"http:\/\/cryingwhilecoding.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":426,"friends_count":520,"listed_count":29,"created_at":"Mon Oct 30 14:45:05 +0000 2006","favourites_count":2,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":621,"lang":"en","status":{"created_at":"Sat Nov 17 15:54:57 +0000 2012","id":269830995157585920,"id_str":"269830995157585920","text":"http:\/\/t.co\/ZzvBjBHG #wishIwerethere #rupy2012 #awesome 'ver nice! @chastell","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"wishIwerethere","indices":[21,36]},{"text":"rupy2012","indices":[37,46]},{"text":"awesome","indices":[47,55]}],"urls":[{"url":"http:\/\/t.co\/ZzvBjBHG","expanded_url":"http:\/\/talks.chastell.net\/rupy-2012","display_url":"talks.chastell.net\/rupy-2012","indices":[0,20]}],"user_mentions":[{"screen_name":"chastell","name":"Piotr Szotkowski","id":6498712,"id_str":"6498712","indices":[67,76]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":343990983,"id_str":"343990983","name":"Arvid Kahl","screen_name":"arvidkahldev","location":"Dresden, Germany","description":"Web Developer from Germany. Node, PHP, Coffeescript. Mac Enthusiast, Gourmet, Political Scientist. Also, Cats. Works for @koding ","url":"http:\/\/www.arvidkahl.de","entities":{"url":{"urls":[{"url":"http:\/\/www.arvidkahl.de","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":92,"friends_count":779,"listed_count":0,"created_at":"Thu Jul 28 11:30:56 +0000 2011","favourites_count":279,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"verified":false,"statuses_count":227,"lang":"de","status":{"created_at":"Thu Nov 29 04:00:39 +0000 2012","id":273999892618289152,"id_str":"273999892618289152","text":"@cupcakentoots if you send me a direct message (with an email) over twitter, i can take care of this directly.","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":273906859474309120,"in_reply_to_status_id_str":"273906859474309120","in_reply_to_user_id":974680495,"in_reply_to_user_id_str":"974680495","in_reply_to_screen_name":"cupcakentoots","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cupcakentoots","name":"Dolan and Gooby","id":974680495,"id_str":"974680495","indices":[0,14]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":966322692,"id_str":"966322692","name":"\u064a\u0648\u0633\u0641 \u0645\u062d\u0645\u062f","screen_name":"yousef621666","location":"\u063a\u0632\u0647","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":260,"listed_count":0,"created_at":"Fri Nov 23 15:37:44 +0000 2012","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":"ar","status":{"created_at":"Mon Nov 26 20:12:05 +0000 2012","id":273157197494632448,"id_str":"273157197494632448","text":"@mbuyabis \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","source":"web","truncated":false,"in_reply_to_status_id":273156993852792832,"in_reply_to_status_id_str":"273156993852792832","in_reply_to_user_id":223444453,"in_reply_to_user_id_str":"223444453","in_reply_to_screen_name":"mbuyabis","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mbuyabis","name":"mishari buyabis","id":223444453,"id_str":"223444453","indices":[0,9]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/966322692\/1353686786","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":963591182,"id_str":"963591182","name":"JBSwagSoldier","screen_name":"JBSwagSoldier","location":"","description":"@JBSwaggySoldier 's second account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":50,"listed_count":0,"created_at":"Thu Nov 22 04:08:19 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":"en","status":{"created_at":"Mon Nov 26 04:13:38 +0000 2012","id":272915997227356161,"id_str":"272915997227356161","text":"My daily stats: 1 new followers, 2 new unfollowers via http:\/\/t.co\/17Si5SiC","source":"\u003ca href=\"http:\/\/justunfollow.com\" rel=\"nofollow\"\u003eJustUnfollow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/17Si5SiC","expanded_url":"http:\/\/www.justunfollow.com","display_url":"justunfollow.com","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":220619311,"id_str":"220619311","name":"David Byrd","screen_name":"davidbyrd11","location":"New York","description":"Student @NYUGallatin","url":"http:\/\/byrdhou.se","entities":{"url":{"urls":[{"url":"http:\/\/byrdhou.se","expanded_url":null,"indices":[0,17]}]},"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":743,"listed_count":3,"created_at":"Sun Nov 28 09:58:49 +0000 2010","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1162,"lang":"en","status":{"created_at":"Fri Nov 30 08:23:41 +0000 2012","id":274428475891384320,"id_str":"274428475891384320","text":"\u270c Reading \"Speeding up PHP-based development with HipHop VM\" http:\/\/t.co\/DatG4xqk","source":"\u003ca href=\"http:\/\/reading.am\" rel=\"nofollow\"\u003eReading.am\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/DatG4xqk","expanded_url":"http:\/\/ing.am\/p\/JXd","display_url":"ing.am\/p\/JXd","indices":[61,81]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/220619311\/1349057134","profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14981723,"id_str":"14981723","name":"Colin Mutchler","screen_name":"activefree","location":"San Francisco","description":"With the freedom of full self expression comes the full responsibility of being active. Co-Founder of @loudsauce. Musician and poet. ","url":"http:\/\/loudsauce.com","entities":{"url":{"urls":[{"url":"http:\/\/loudsauce.com","expanded_url":null,"indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":1168,"friends_count":94,"listed_count":93,"created_at":"Mon Jun 02 16:20:59 +0000 2008","favourites_count":86,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2032,"lang":"en","status":{"created_at":"Fri Nov 30 16:23:35 +0000 2012","id":274549243891556353,"id_str":"274549243891556353","text":"If you have limited budget, adding floating Facebook like window is most important u can do to drive traffic. Thx @Upworthy.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Upworthy","name":"Upworthy","id":524396430,"id_str":"524396430","indices":[114,123]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":961585622,"id_str":"961585622","name":"@annisawala","screen_name":"annisa4322","location":"indonesia,medan","description":"be the super girl : love allah swt. , mom n' dad :","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":57,"listed_count":0,"created_at":"Wed Nov 21 02:06:44 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":"id","status":{"created_at":"Wed Nov 21 16:04:13 +0000 2012","id":271282878770446336,"id_str":"271282878770446336","text":"@fahmijuhri ,,, \nlebay ko woy.","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":271268761795960833,"in_reply_to_status_id_str":"271268761795960833","in_reply_to_user_id":228256726,"in_reply_to_user_id_str":"228256726","in_reply_to_screen_name":"FahmiJuhri","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahmiJuhri","name":"\u2654 Fahmi Juhri \u2654","id":228256726,"id_str":"228256726","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},{"id":374161242,"id_str":"374161242","name":"Kendrick Lay","screen_name":"kendricklay","location":"Virginia, US","description":"Tech-Startup guy. Entrepreneur. Investor. UVA. \r\nScrew it, Just do it! \r\n\r\n\r\n\r\n\r\n","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":217,"listed_count":2,"created_at":"Thu Sep 15 20:25:32 +0000 2011","favourites_count":16,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":137,"lang":"en","status":{"created_at":"Fri Nov 30 05:49:32 +0000 2012","id":274389679963516928,"id_str":"274389679963516928","text":"One of the best ways to launch a startup is to embrace simplicity and focus on the one core and differentiated feature of your product.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14439858,"id_str":"14439858","name":"Simon Harris","screen_name":"haruki_zaemon","location":"Tylden, Victoria, Australia","description":"iOS developer and sometimes entrepreneur. One of the guys behind @readtimeapp. I'm hz on http:\/\/t.co\/NjOG4rv1 and I occasionally blog at http:\/\/t.co\/TJt6jSjo.","url":"http:\/\/www.harukizaemon.com\/","entities":{"url":{"urls":[{"url":"http:\/\/www.harukizaemon.com\/","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[{"url":"http:\/\/t.co\/NjOG4rv1","expanded_url":"http:\/\/alpha.app.net","display_url":"alpha.app.net","indices":[89,109]},{"url":"http:\/\/t.co\/TJt6jSjo","expanded_url":"http:\/\/www.harukizaemon.com","display_url":"harukizaemon.com","indices":[137,157]}]}},"protected":false,"followers_count":703,"friends_count":454,"listed_count":45,"created_at":"Sat Apr 19 02:24:16 +0000 2008","favourites_count":4,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":22626,"lang":"en","status":{"created_at":"Fri Nov 30 08:27:00 +0000 2012","id":274429308968247297,"id_str":"274429308968247297","text":"@dhanji @michaelneale Aneurism, yes.","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":274385424716271617,"in_reply_to_status_id_str":"274385424716271617","in_reply_to_user_id":14563623,"in_reply_to_user_id_str":"14563623","in_reply_to_screen_name":"dhanji","geo":{"type":"Point","coordinates":[-37.80010360,144.93542357]},"coordinates":{"type":"Point","coordinates":[144.93542357,-37.80010360]},"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dhanji","name":"Dhanji R. Prasanna","id":14563623,"id_str":"14563623","indices":[0,7]},{"screen_name":"michaelneale","name":"Michael Neale","id":4309311,"id_str":"4309311","indices":[8,21]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":4220161,"id_str":"4220161","name":"skylar woodward","screen_name":"skylar","location":"San Francisco","description":"Builder, biker, climber, maker. I \u2665 coffee, Kiva and SF.","url":"http:\/\/larw.com\/","entities":{"url":{"urls":[{"url":"http:\/\/larw.com\/","expanded_url":null,"indices":[0,16]}]},"description":{"urls":[]}},"protected":false,"followers_count":833,"friends_count":333,"listed_count":41,"created_at":"Wed Apr 11 18:14:11 +0000 2007","favourites_count":60,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1770,"lang":"en","status":{"created_at":"Wed Nov 28 23:43:43 +0000 2012","id":273935233571758080,"id_str":"273935233571758080","text":"Just won a pony. http:\/\/t.co\/0ZLYMium","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0ZLYMium","expanded_url":"http:\/\/instagr.am\/p\/Sl5G06yaGy\/","display_url":"instagr.am\/p\/Sl5G06yaGy\/","indices":[17,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_link_color":"5E412F","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":45569415,"id_str":"45569415","name":"Andrew Flockhart","screen_name":"andruflockhart","location":"NYC","description":"100101010000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":322,"listed_count":13,"created_at":"Mon Jun 08 13:56:29 +0000 2009","favourites_count":54,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":903,"lang":"en","status":{"created_at":"Tue Nov 27 21:44:15 +0000 2012","id":273542779588734976,"id_str":"273542779588734976","text":"RT @YungPeng: never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 27 21:34:02 +0000 2012","id":273540207318532097,"id_str":"273540207318532097","text":"never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YungPeng","name":"\u2022 FR\u2206NK\u00d8 \u2206LI \u2022","id":25201460,"id_str":"25201460","indices":[3,12]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/45569415\/1348757066","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":42559115,"id_str":"42559115","name":"Josh Miller","screen_name":"joshm","location":"New York, NY","description":"Building @Branch. Former rising senior at @Princeton. Born and raised in Santa Monica. I ask a lot of questions.","url":"http:\/\/t.co\/uHQdLI6v","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uHQdLI6v","expanded_url":"http:\/\/joshm.co\/about\/","display_url":"joshm.co\/about\/","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":2383,"friends_count":199,"listed_count":79,"created_at":"Tue May 26 03:54:46 +0000 2009","favourites_count":1485,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2698,"lang":"en","status":{"created_at":"Fri Nov 30 06:58:41 +0000 2012","id":274407081413582848,"id_str":"274407081413582848","text":"RT @jordancooper: Public Service Announcement for consumer facing entrepreneurs: http:\/\/t.co\/6Eq2Kdc3","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 29 23:04:02 +0000 2012","id":274287633725792256,"id_str":"274287633725792256","text":"Public Service Announcement for consumer facing entrepreneurs: http:\/\/t.co\/6Eq2Kdc3","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/6Eq2Kdc3","expanded_url":"http:\/\/checkthis.com\/5ntb","display_url":"checkthis.com\/5ntb","indices":[63,83]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/6Eq2Kdc3","expanded_url":"http:\/\/checkthis.com\/5ntb","display_url":"checkthis.com\/5ntb","indices":[81,101]}],"user_mentions":[{"screen_name":"jordancooper","name":"Jordan Cooper","id":7537222,"id_str":"7537222","indices":[3,16]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/42559115\/1348349087","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":17110657,"id_str":"17110657","name":"Tal Safran","screen_name":"talsafran","location":"Brooklyn, NY","description":"Developer and person.","url":"http:\/\/tal.im","entities":{"url":{"urls":[{"url":"http:\/\/tal.im","expanded_url":null,"indices":[0,13]}]},"description":{"urls":[]}},"protected":false,"followers_count":979,"friends_count":503,"listed_count":63,"created_at":"Sun Nov 02 04:31:23 +0000 2008","favourites_count":532,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4701,"lang":"en","status":{"created_at":"Thu Nov 29 19:10:22 +0000 2012","id":274228827478192129,"id_str":"274228827478192129","text":"@pklug Sure, blame it on the mustache :)\n\nDid you handlebar it again?","source":"web","truncated":false,"in_reply_to_status_id":274211393442574336,"in_reply_to_status_id_str":"274211393442574336","in_reply_to_user_id":21379175,"in_reply_to_user_id_str":"21379175","in_reply_to_screen_name":"pklug","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pklug","name":"Phillip Klugman","id":21379175,"id_str":"21379175","indices":[0,6]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":1419103567112105362,"previous_cursor_str":"1419103567112105362"}
1
+ {"users":[{"id":979919484,"id_str":"979919484","name":"nylews","screen_name":"SwelynD","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":0,"friends_count":8,"listed_count":0,"created_at":"Fri Nov 30 07:01:27 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","status":{"created_at":"Fri Nov 30 07:03:06 +0000 2012","id":274408192602157056,"id_str":"274408192602157056","text":"Hey","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2913780400\/b8c461be768a6bdc42c1aee37105c4fc_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/979919484\/1354259270","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":1419103567112105362,"previous_cursor_str":"1419103567112105362"}
@@ -1 +1 @@
1
- {"users":[{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2592,"friends_count":2712,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1482,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3888,"lang":"en","status":{"created_at":"Thu Nov 29 19:33:44 +0000 2012","id":274234710501244929,"id_str":"274234710501244929","text":"@MandyJay7 catch ya later! :)","source":"web","truncated":false,"in_reply_to_status_id":274234209831354368,"in_reply_to_status_id_str":"274234209831354368","in_reply_to_user_id":463877152,"in_reply_to_user_id_str":"463877152","in_reply_to_screen_name":"MandyJay7","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MandyJay7","name":"Mandy Jay","id":463877152,"id_str":"463877152","indices":[0,10]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":156020838,"id_str":"156020838","name":"Sean R. Nicholson","screen_name":"SocMedSean","location":"Kansas City, MO","description":"Social Media Director. Tech-geek. Attorney. Bungee Master. Coffee Addict. Author. These are MY thoughts.","url":"http:\/\/www.socmedsean.com","entities":{"url":{"urls":[{"url":"http:\/\/www.socmedsean.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":9435,"friends_count":6729,"listed_count":520,"created_at":"Tue Jun 15 20:21:11 +0000 2010","favourites_count":33,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":7617,"lang":"en","status":{"created_at":"Thu Nov 29 14:51:11 +0000 2012","id":274163603626676225,"id_str":"274163603626676225","text":"Why The Term \"Social CRM\" Is Just STUPID!. #sm http:\/\/t.co\/zaNv2nQ1","source":"\u003ca href=\"http:\/\/www.socmedsean.com\" rel=\"nofollow\"\u003eSocMedSean.com Blog Posts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"sm","indices":[44,47]}],"urls":[{"url":"http:\/\/t.co\/zaNv2nQ1","expanded_url":"http:\/\/su.pr\/4C0L7l","display_url":"su.pr\/4C0L7l","indices":[48,68]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":27323999,"id_str":"27323999","name":"The Smyth Group","screen_name":"thesmythgroup","location":"Baton Rouge, LA","description":"Mobile app consulting agency. iOS, Android, Kindle, Nook, Windows Phone, and Blackberry (if we have to). 15 Developers and Designers and one floppy-eared dog.","url":"http:\/\/www.thesmythgroup.com","entities":{"url":{"urls":[{"url":"http:\/\/www.thesmythgroup.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":8295,"friends_count":9124,"listed_count":85,"created_at":"Sat Mar 28 22:33:33 +0000 2009","favourites_count":50,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2272,"lang":"en","status":{"created_at":"Thu Nov 29 20:07:36 +0000 2012","id":274243232307757056,"id_str":"274243232307757056","text":"This guy is REALLY disappointed in BP. As are we all. http:\/\/t.co\/0IEoRWtC","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0IEoRWtC","expanded_url":"http:\/\/twitpic.com\/bhko1b","display_url":"twitpic.com\/bhko1b","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_link_color":"E77E24","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":977187727,"id_str":"977187727","name":"lais oliveira","screen_name":"laisoliveira880","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":22,"listed_count":0,"created_at":"Wed Nov 28 23:23:21 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"pt","status":{"created_at":"Wed Nov 28 23:24:24 +0000 2012","id":273930371807182848,"id_str":"273930371807182848","text":"#boa noite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"boa","indices":[0,4]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/977187727\/1354145151","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":6304322,"id_str":"6304322","name":"Blithe Rocher","screen_name":"Blithe","location":"Atlanta, GA","description":"PhD scientist, (aspiring) coder, tech geek, skeptic, master of spatial relationships, cyclist, not your average girl.","url":"http:\/\/www.blitherocher.com","entities":{"url":{"urls":[{"url":"http:\/\/www.blitherocher.com","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":614,"friends_count":770,"listed_count":28,"created_at":"Fri May 25 05:56:51 +0000 2007","favourites_count":194,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8476,"lang":"en","status":{"created_at":"Thu Nov 29 20:44:44 +0000 2012","id":274252576868937728,"id_str":"274252576868937728","text":"@mikedao Funny, a mountain bike was not on that list. Cyclocross, Fixie, and a Pashley in no particlular order.","source":"web","truncated":false,"in_reply_to_status_id":274251921919971329,"in_reply_to_status_id_str":"274251921919971329","in_reply_to_user_id":7899342,"in_reply_to_user_id_str":"7899342","in_reply_to_screen_name":"mikedao","geo":null,"coordinates":null,"place":{"id":"e898916fab5ef970","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e898916fab5ef970.json","place_type":"city","name":"Druid Hills","full_name":"Druid Hills, GA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-84.348430,33.764646],[-84.305852,33.764646],[-84.305852,33.805668],[-84.348430,33.805668]]]},"attributes":{}},"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mikedao","name":"Mike Dao","id":7899342,"id_str":"7899342","indices":[0,8]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/6304322\/1350419228","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":11088,"id_str":"11088","name":"Mike Vincent","screen_name":"agile","location":"Fort Worth, Texas","description":"crying while coding","url":"http:\/\/cryingwhilecoding.com","entities":{"url":{"urls":[{"url":"http:\/\/cryingwhilecoding.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":520,"listed_count":29,"created_at":"Mon Oct 30 14:45:05 +0000 2006","favourites_count":2,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":621,"lang":"en","status":{"created_at":"Sat Nov 17 15:54:57 +0000 2012","id":269830995157585920,"id_str":"269830995157585920","text":"http:\/\/t.co\/ZzvBjBHG #wishIwerethere #rupy2012 #awesome 'ver nice! @chastell","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"wishIwerethere","indices":[21,36]},{"text":"rupy2012","indices":[37,46]},{"text":"awesome","indices":[47,55]}],"urls":[{"url":"http:\/\/t.co\/ZzvBjBHG","expanded_url":"http:\/\/talks.chastell.net\/rupy-2012","display_url":"talks.chastell.net\/rupy-2012","indices":[0,20]}],"user_mentions":[{"screen_name":"chastell","name":"Piotr Szotkowski","id":6498712,"id_str":"6498712","indices":[67,76]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":343990983,"id_str":"343990983","name":"Arvid Kahl","screen_name":"arvidkahldev","location":"Dresden, Germany","description":"Web Developer from Germany. Node, PHP, Coffeescript. Mac Enthusiast, Gourmet, Political Scientist. Also, Cats. Works for @koding ","url":"http:\/\/www.arvidkahl.de","entities":{"url":{"urls":[{"url":"http:\/\/www.arvidkahl.de","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":779,"listed_count":0,"created_at":"Thu Jul 28 11:30:56 +0000 2011","favourites_count":278,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"verified":false,"statuses_count":227,"lang":"de","status":{"created_at":"Thu Nov 29 04:00:39 +0000 2012","id":273999892618289152,"id_str":"273999892618289152","text":"@cupcakentoots if you send me a direct message (with an email) over twitter, i can take care of this directly.","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":273906859474309120,"in_reply_to_status_id_str":"273906859474309120","in_reply_to_user_id":974680495,"in_reply_to_user_id_str":"974680495","in_reply_to_screen_name":"cupcakentoots","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cupcakentoots","name":"Dolan and Gooby","id":974680495,"id_str":"974680495","indices":[0,14]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":966322692,"id_str":"966322692","name":"\u064a\u0648\u0633\u0641 \u0645\u062d\u0645\u062f","screen_name":"yousef621666","location":"\u063a\u0632\u0647","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":259,"listed_count":0,"created_at":"Fri Nov 23 15:37:44 +0000 2012","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":"ar","status":{"created_at":"Mon Nov 26 20:12:05 +0000 2012","id":273157197494632448,"id_str":"273157197494632448","text":"@mbuyabis \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","source":"web","truncated":false,"in_reply_to_status_id":273156993852792832,"in_reply_to_status_id_str":"273156993852792832","in_reply_to_user_id":223444453,"in_reply_to_user_id_str":"223444453","in_reply_to_screen_name":"mbuyabis","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mbuyabis","name":"mishari buyabis","id":223444453,"id_str":"223444453","indices":[0,9]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/966322692\/1353686786","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":963591182,"id_str":"963591182","name":"JBSwagSoldier","screen_name":"JBSwagSoldier","location":"","description":"@JBSwaggySoldier 's second account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":50,"listed_count":0,"created_at":"Thu Nov 22 04:08:19 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":"en","status":{"created_at":"Mon Nov 26 04:13:38 +0000 2012","id":272915997227356161,"id_str":"272915997227356161","text":"My daily stats: 1 new followers, 2 new unfollowers via http:\/\/t.co\/17Si5SiC","source":"\u003ca href=\"http:\/\/justunfollow.com\" rel=\"nofollow\"\u003eJustUnfollow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/17Si5SiC","expanded_url":"http:\/\/www.justunfollow.com","display_url":"justunfollow.com","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":220619311,"id_str":"220619311","name":"David Byrd","screen_name":"davidbyrd11","location":"New York","description":"Student @NYUGallatin","url":"http:\/\/byrdhou.se","entities":{"url":{"urls":[{"url":"http:\/\/byrdhou.se","expanded_url":null,"indices":[0,17]}]},"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":742,"listed_count":3,"created_at":"Sun Nov 28 09:58:49 +0000 2010","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1159,"lang":"en","status":{"created_at":"Thu Nov 29 18:37:18 +0000 2012","id":274220509502271488,"id_str":"274220509502271488","text":"@AaronCohen Are you teaching a class at NYU this semester?","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":13176752,"in_reply_to_user_id_str":"13176752","in_reply_to_screen_name":"AaronCohen","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AaronCohen","name":"AaronCohen","id":13176752,"id_str":"13176752","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/220619311\/1349057134","profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14981723,"id_str":"14981723","name":"Colin Mutchler","screen_name":"activefree","location":"San Francisco","description":"With the freedom of full self expression comes the full responsibility of being active. Co-Founder of @loudsauce. Musician and poet. ","url":"http:\/\/loudsauce.com","entities":{"url":{"urls":[{"url":"http:\/\/loudsauce.com","expanded_url":null,"indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":1168,"friends_count":93,"listed_count":93,"created_at":"Mon Jun 02 16:20:59 +0000 2008","favourites_count":86,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2026,"lang":"en","status":{"created_at":"Thu Nov 29 16:45:15 +0000 2012","id":274192310848335873,"id_str":"274192310848335873","text":"RT @brainpicker: So great: Will Work For \u2013 @IDEO and @collabfund explore the future of work http:\/\/t.co\/UaBW3EWp Complement with: http:\/ ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 29 14:42:43 +0000 2012","id":274161471070547971,"id_str":"274161471070547971","text":"So great: Will Work For \u2013 @IDEO and @collabfund explore the future of work http:\/\/t.co\/UaBW3EWp Complement with: http:\/\/t.co\/zXPBjK6z","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":24,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/UaBW3EWp","expanded_url":"http:\/\/j.mp\/V88Dmq","display_url":"j.mp\/V88Dmq","indices":[75,95]},{"url":"http:\/\/t.co\/zXPBjK6z","expanded_url":"http:\/\/j.mp\/yhauf1","display_url":"j.mp\/yhauf1","indices":[113,133]}],"user_mentions":[{"screen_name":"ideo","name":"IDEO","id":23462787,"id_str":"23462787","indices":[26,31]},{"screen_name":"collabfund","name":"Collaborative","id":150016842,"id_str":"150016842","indices":[36,47]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":24,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/UaBW3EWp","expanded_url":"http:\/\/j.mp\/V88Dmq","display_url":"j.mp\/V88Dmq","indices":[92,112]}],"user_mentions":[{"screen_name":"brainpicker","name":"Maria Popova","id":9207632,"id_str":"9207632","indices":[3,15]},{"screen_name":"ideo","name":"IDEO","id":23462787,"id_str":"23462787","indices":[43,48]},{"screen_name":"collabfund","name":"Collaborative","id":150016842,"id_str":"150016842","indices":[53,64]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":961585622,"id_str":"961585622","name":"@annisawala","screen_name":"annisa4322","location":"indonesia,medan","description":"be the super girl : love allah swt. , mom n' dad :","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":57,"listed_count":0,"created_at":"Wed Nov 21 02:06:44 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":"id","status":{"created_at":"Wed Nov 21 16:04:13 +0000 2012","id":271282878770446336,"id_str":"271282878770446336","text":"@fahmijuhri ,,, \nlebay ko woy.","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":271268761795960833,"in_reply_to_status_id_str":"271268761795960833","in_reply_to_user_id":228256726,"in_reply_to_user_id_str":"228256726","in_reply_to_screen_name":"FahmiJuhri","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahmiJuhri","name":"\u2654 Fahmi Juhri \u2654","id":228256726,"id_str":"228256726","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},{"id":374161242,"id_str":"374161242","name":"Kendrick Lay","screen_name":"kendricklay","location":"Virginia, US","description":"Tech-Startup guy. Entrepreneur. Investor. UVA. \r\nScrew it, Just do it! \r\n\r\n\r\n\r\n\r\n","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":216,"listed_count":2,"created_at":"Thu Sep 15 20:25:32 +0000 2011","favourites_count":16,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":130,"lang":"en","status":{"created_at":"Thu Nov 29 07:23:10 +0000 2012","id":274050856855420928,"id_str":"274050856855420928","text":"@nataliardianto ohh gitu.Masalanya blm makin real money itu gara2 payment ato emang indo punya market blm bener2mature buat online shopping?","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":274028426598445056,"in_reply_to_status_id_str":"274028426598445056","in_reply_to_user_id":8424162,"in_reply_to_user_id_str":"8424162","in_reply_to_screen_name":"nataliardianto","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nataliardianto","name":"Natali Ardianto","id":8424162,"id_str":"8424162","indices":[0,15]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14439858,"id_str":"14439858","name":"Simon Harris","screen_name":"haruki_zaemon","location":"Tylden, Victoria, Australia","description":"iOS developer and sometimes entrepreneur. One of the guys behind @readtimeapp. I'm hz on http:\/\/t.co\/NjOG4rv1 and I occasionally blog at http:\/\/t.co\/TJt6jSjo.","url":"http:\/\/www.harukizaemon.com\/","entities":{"url":{"urls":[{"url":"http:\/\/www.harukizaemon.com\/","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[{"url":"http:\/\/t.co\/NjOG4rv1","expanded_url":"http:\/\/alpha.app.net","display_url":"alpha.app.net","indices":[89,109]},{"url":"http:\/\/t.co\/TJt6jSjo","expanded_url":"http:\/\/www.harukizaemon.com","display_url":"harukizaemon.com","indices":[137,157]}]}},"protected":false,"followers_count":703,"friends_count":452,"listed_count":45,"created_at":"Sat Apr 19 02:24:16 +0000 2008","favourites_count":4,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":22625,"lang":"en","status":{"created_at":"Thu Nov 29 12:21:03 +0000 2012","id":274125822464503811,"id_str":"274125822464503811","text":"Feels like its been a week of rookie mistakes for me.","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":4220161,"id_str":"4220161","name":"skylar woodward","screen_name":"skylar","location":"San Francisco","description":"Builder, biker, climber, maker. I \u2665 coffee, Kiva and SF.","url":"http:\/\/larw.com\/","entities":{"url":{"urls":[{"url":"http:\/\/larw.com\/","expanded_url":null,"indices":[0,16]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":333,"listed_count":41,"created_at":"Wed Apr 11 18:14:11 +0000 2007","favourites_count":60,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1770,"lang":"en","status":{"created_at":"Wed Nov 28 23:43:43 +0000 2012","id":273935233571758080,"id_str":"273935233571758080","text":"Just won a pony. http:\/\/t.co\/0ZLYMium","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0ZLYMium","expanded_url":"http:\/\/instagr.am\/p\/Sl5G06yaGy\/","display_url":"instagr.am\/p\/Sl5G06yaGy\/","indices":[17,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_link_color":"5E412F","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":45569415,"id_str":"45569415","name":"Andrew Flockhart","screen_name":"andruflockhart","location":"NYC","description":"100101010000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":322,"listed_count":13,"created_at":"Mon Jun 08 13:56:29 +0000 2009","favourites_count":54,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":903,"lang":"en","status":{"created_at":"Tue Nov 27 21:44:15 +0000 2012","id":273542779588734976,"id_str":"273542779588734976","text":"RT @YungPeng: never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 27 21:34:02 +0000 2012","id":273540207318532097,"id_str":"273540207318532097","text":"never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YungPeng","name":"\u2022 FR\u2206NK\u00d8 \u2206LI \u2022","id":25201460,"id_str":"25201460","indices":[3,12]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/45569415\/1348757066","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":42559115,"id_str":"42559115","name":"Josh Miller","screen_name":"joshm","location":"New York, NY","description":"Building @Branch. Former rising senior at @Princeton. Born and raised in Santa Monica. I ask a lot of questions.","url":"http:\/\/t.co\/uHQdLI6v","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uHQdLI6v","expanded_url":"http:\/\/joshm.co\/about\/","display_url":"joshm.co\/about\/","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":2388,"friends_count":198,"listed_count":79,"created_at":"Tue May 26 03:54:46 +0000 2009","favourites_count":1484,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2695,"lang":"en","status":{"created_at":"Thu Nov 29 21:12:06 +0000 2012","id":274259465002418176,"id_str":"274259465002418176","text":"Bret Victor's \"Ten Brighter Ideas,\" Robin Sloan's \"Fish,\" &amp; Craig Mod's \"Subcompact Publishing.\" The UI should be tailored to the content.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/42559115\/1348349087","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":17110657,"id_str":"17110657","name":"Tal Safran","screen_name":"talsafran","location":"Brooklyn, NY","description":"Developer and person.","url":"http:\/\/tal.im","entities":{"url":{"urls":[{"url":"http:\/\/tal.im","expanded_url":null,"indices":[0,13]}]},"description":{"urls":[]}},"protected":false,"followers_count":979,"friends_count":503,"listed_count":63,"created_at":"Sun Nov 02 04:31:23 +0000 2008","favourites_count":530,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4701,"lang":"en","status":{"created_at":"Thu Nov 29 19:10:22 +0000 2012","id":274228827478192129,"id_str":"274228827478192129","text":"@pklug Sure, blame it on the mustache :)\n\nDid you handlebar it again?","source":"web","truncated":false,"in_reply_to_status_id":274211393442574336,"in_reply_to_status_id_str":"274211393442574336","in_reply_to_user_id":21379175,"in_reply_to_user_id_str":"21379175","in_reply_to_screen_name":"pklug","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pklug","name":"Phillip Klugman","id":21379175,"id_str":"21379175","indices":[0,6]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":306117941,"id_str":"306117941","name":"Johnneylee Rollins","screen_name":"JLeeGhost","location":"Atlanta, Georgia","description":"Duck whisperer, Sourcerer esq., Rubyist","url":"http:\/\/Spaceghost.github.com\/","entities":{"url":{"urls":[{"url":"http:\/\/Spaceghost.github.com\/","expanded_url":null,"indices":[0,29]}]},"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":404,"listed_count":4,"created_at":"Fri May 27 09:43:58 +0000 2011","favourites_count":25,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1405,"lang":"en","status":{"created_at":"Thu Nov 29 16:40:05 +0000 2012","id":274191008986693632,"id_str":"274191008986693632","text":"@andrzejkrzywda Personally, I've been working on building my apps closer to a domain-centric model. The rest is service based.","source":"web","truncated":false,"in_reply_to_status_id":274166908499161088,"in_reply_to_status_id_str":"274166908499161088","in_reply_to_user_id":8067312,"in_reply_to_user_id_str":"8067312","in_reply_to_screen_name":"andrzejkrzywda","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"andrzejkrzywda","name":"Andrzej Krzywda","id":8067312,"id_str":"8067312","indices":[0,15]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1370810672\/SpaceGhost_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370810672\/SpaceGhost_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":947101075,"id_str":"947101075","name":"REMY ON THE BEAT","screen_name":"remyonthebeat","location":"","description":"FOLLOW MY NEW TWITTER \r\nhttp:\/\/t.co\/cTGy5OX6\r\nhttp:\/\/t.co\/cTGy5OX6\r\nhttp:\/\/t.co\/cTGy5OX6\r\n","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[24,44]},{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[46,66]},{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[68,88]}]}},"protected":false,"followers_count":705,"friends_count":1464,"listed_count":0,"created_at":"Wed Nov 14 05:13:21 +0000 2012","favourites_count":0,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":8,"lang":"en","status":{"created_at":"Sun Nov 25 04:37:43 +0000 2012","id":272559668465901568,"id_str":"272559668465901568","text":"follow my new twitter @remyonthetrack","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"remyonthetrack","name":"REMY ON THE TRACK","id":17717793,"id_str":"17717793","indices":[22,37]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"70CAE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":1418947360875712729,"next_cursor_str":"1418947360875712729","previous_cursor":0,"previous_cursor_str":"0"}
1
+ {"users":[{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2592,"friends_count":2712,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1482,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3888,"lang":"en","status":{"created_at":"Thu Nov 29 19:33:44 +0000 2012","id":274234710501244929,"id_str":"274234710501244929","text":"@MandyJay7 catch ya later! :)","source":"web","truncated":false,"in_reply_to_status_id":274234209831354368,"in_reply_to_status_id_str":"274234209831354368","in_reply_to_user_id":463877152,"in_reply_to_user_id_str":"463877152","in_reply_to_screen_name":"MandyJay7","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MandyJay7","name":"Mandy Jay","id":463877152,"id_str":"463877152","indices":[0,10]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":1418947360875712729,"next_cursor_str":"1418947360875712729","previous_cursor":0,"previous_cursor_str":"0"}
@@ -1 +1 @@
1
- {"users":[{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2592,"friends_count":2712,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1482,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3888,"lang":"en","status":{"created_at":"Thu Nov 29 19:33:44 +0000 2012","id":274234710501244929,"id_str":"274234710501244929","text":"@MandyJay7 catch ya later! :)","source":"web","truncated":false,"in_reply_to_status_id":274234209831354368,"in_reply_to_status_id_str":"274234209831354368","in_reply_to_user_id":463877152,"in_reply_to_user_id_str":"463877152","in_reply_to_screen_name":"MandyJay7","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MandyJay7","name":"Mandy Jay","id":463877152,"id_str":"463877152","indices":[0,10]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":156020838,"id_str":"156020838","name":"Sean R. Nicholson","screen_name":"SocMedSean","location":"Kansas City, MO","description":"Social Media Director. Tech-geek. Attorney. Bungee Master. Coffee Addict. Author. These are MY thoughts.","url":"http:\/\/www.socmedsean.com","entities":{"url":{"urls":[{"url":"http:\/\/www.socmedsean.com","expanded_url":null,"indices":[0,25]}]},"description":{"urls":[]}},"protected":false,"followers_count":9435,"friends_count":6729,"listed_count":520,"created_at":"Tue Jun 15 20:21:11 +0000 2010","favourites_count":33,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":7617,"lang":"en","status":{"created_at":"Thu Nov 29 14:51:11 +0000 2012","id":274163603626676225,"id_str":"274163603626676225","text":"Why The Term \"Social CRM\" Is Just STUPID!. #sm http:\/\/t.co\/zaNv2nQ1","source":"\u003ca href=\"http:\/\/www.socmedsean.com\" rel=\"nofollow\"\u003eSocMedSean.com Blog Posts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"sm","indices":[44,47]}],"urls":[{"url":"http:\/\/t.co\/zaNv2nQ1","expanded_url":"http:\/\/su.pr\/4C0L7l","display_url":"su.pr\/4C0L7l","indices":[48,68]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/173716928\/twitter_background_final.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1093360517\/thinking_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":27323999,"id_str":"27323999","name":"The Smyth Group","screen_name":"thesmythgroup","location":"Baton Rouge, LA","description":"Mobile app consulting agency. iOS, Android, Kindle, Nook, Windows Phone, and Blackberry (if we have to). 15 Developers and Designers and one floppy-eared dog.","url":"http:\/\/www.thesmythgroup.com","entities":{"url":{"urls":[{"url":"http:\/\/www.thesmythgroup.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":8295,"friends_count":9124,"listed_count":85,"created_at":"Sat Mar 28 22:33:33 +0000 2009","favourites_count":50,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2272,"lang":"en","status":{"created_at":"Thu Nov 29 20:07:36 +0000 2012","id":274243232307757056,"id_str":"274243232307757056","text":"This guy is REALLY disappointed in BP. As are we all. http:\/\/t.co\/0IEoRWtC","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0IEoRWtC","expanded_url":"http:\/\/twitpic.com\/bhko1b","display_url":"twitpic.com\/bhko1b","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/554521752\/TSGTwitterBackground.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2401593885\/v9i3x33vjywrajo7i7za_normal.png","profile_link_color":"E77E24","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":977187727,"id_str":"977187727","name":"lais oliveira","screen_name":"laisoliveira880","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1,"friends_count":22,"listed_count":0,"created_at":"Wed Nov 28 23:23:21 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"pt","status":{"created_at":"Wed Nov 28 23:24:24 +0000 2012","id":273930371807182848,"id_str":"273930371807182848","text":"#boa noite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"boa","indices":[0,4]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2908496310\/8ec0f2b2d3707290e8338a6cb155c3a3_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/977187727\/1354145151","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":6304322,"id_str":"6304322","name":"Blithe Rocher","screen_name":"Blithe","location":"Atlanta, GA","description":"PhD scientist, (aspiring) coder, tech geek, skeptic, master of spatial relationships, cyclist, not your average girl.","url":"http:\/\/www.blitherocher.com","entities":{"url":{"urls":[{"url":"http:\/\/www.blitherocher.com","expanded_url":null,"indices":[0,27]}]},"description":{"urls":[]}},"protected":false,"followers_count":614,"friends_count":770,"listed_count":28,"created_at":"Fri May 25 05:56:51 +0000 2007","favourites_count":194,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8476,"lang":"en","status":{"created_at":"Thu Nov 29 20:44:44 +0000 2012","id":274252576868937728,"id_str":"274252576868937728","text":"@mikedao Funny, a mountain bike was not on that list. Cyclocross, Fixie, and a Pashley in no particlular order.","source":"web","truncated":false,"in_reply_to_status_id":274251921919971329,"in_reply_to_status_id_str":"274251921919971329","in_reply_to_user_id":7899342,"in_reply_to_user_id_str":"7899342","in_reply_to_screen_name":"mikedao","geo":null,"coordinates":null,"place":{"id":"e898916fab5ef970","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e898916fab5ef970.json","place_type":"city","name":"Druid Hills","full_name":"Druid Hills, GA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-84.348430,33.764646],[-84.305852,33.764646],[-84.305852,33.805668],[-84.348430,33.805668]]]},"attributes":{}},"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mikedao","name":"Mike Dao","id":7899342,"id_str":"7899342","indices":[0,8]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1886626346\/image_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/6304322\/1350419228","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":11088,"id_str":"11088","name":"Mike Vincent","screen_name":"agile","location":"Fort Worth, Texas","description":"crying while coding","url":"http:\/\/cryingwhilecoding.com","entities":{"url":{"urls":[{"url":"http:\/\/cryingwhilecoding.com","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[]}},"protected":false,"followers_count":425,"friends_count":520,"listed_count":29,"created_at":"Mon Oct 30 14:45:05 +0000 2006","favourites_count":2,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":621,"lang":"en","status":{"created_at":"Sat Nov 17 15:54:57 +0000 2012","id":269830995157585920,"id_str":"269830995157585920","text":"http:\/\/t.co\/ZzvBjBHG #wishIwerethere #rupy2012 #awesome 'ver nice! @chastell","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"wishIwerethere","indices":[21,36]},{"text":"rupy2012","indices":[37,46]},{"text":"awesome","indices":[47,55]}],"urls":[{"url":"http:\/\/t.co\/ZzvBjBHG","expanded_url":"http:\/\/talks.chastell.net\/rupy-2012","display_url":"talks.chastell.net\/rupy-2012","indices":[0,20]}],"user_mentions":[{"screen_name":"chastell","name":"Piotr Szotkowski","id":6498712,"id_str":"6498712","indices":[67,76]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/189725007\/blacknwhite_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":343990983,"id_str":"343990983","name":"Arvid Kahl","screen_name":"arvidkahldev","location":"Dresden, Germany","description":"Web Developer from Germany. Node, PHP, Coffeescript. Mac Enthusiast, Gourmet, Political Scientist. Also, Cats. Works for @koding ","url":"http:\/\/www.arvidkahl.de","entities":{"url":{"urls":[{"url":"http:\/\/www.arvidkahl.de","expanded_url":null,"indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":91,"friends_count":779,"listed_count":0,"created_at":"Thu Jul 28 11:30:56 +0000 2011","favourites_count":278,"utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"verified":false,"statuses_count":227,"lang":"de","status":{"created_at":"Thu Nov 29 04:00:39 +0000 2012","id":273999892618289152,"id_str":"273999892618289152","text":"@cupcakentoots if you send me a direct message (with an email) over twitter, i can take care of this directly.","source":"\u003ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":273906859474309120,"in_reply_to_status_id_str":"273906859474309120","in_reply_to_user_id":974680495,"in_reply_to_user_id_str":"974680495","in_reply_to_screen_name":"cupcakentoots","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cupcakentoots","name":"Dolan and Gooby","id":974680495,"id_str":"974680495","indices":[0,14]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1465889542\/portraitBW1_small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":966322692,"id_str":"966322692","name":"\u064a\u0648\u0633\u0641 \u0645\u062d\u0645\u062f","screen_name":"yousef621666","location":"\u063a\u0632\u0647","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":32,"friends_count":259,"listed_count":0,"created_at":"Fri Nov 23 15:37:44 +0000 2012","favourites_count":12,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":38,"lang":"ar","status":{"created_at":"Mon Nov 26 20:12:05 +0000 2012","id":273157197494632448,"id_str":"273157197494632448","text":"@mbuyabis \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","source":"web","truncated":false,"in_reply_to_status_id":273156993852792832,"in_reply_to_status_id_str":"273156993852792832","in_reply_to_user_id":223444453,"in_reply_to_user_id_str":"223444453","in_reply_to_screen_name":"mbuyabis","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mbuyabis","name":"mishari buyabis","id":223444453,"id_str":"223444453","indices":[0,9]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2886078943\/c98a61382d9ca055cc83788346e866a7_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/966322692\/1353686786","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":963591182,"id_str":"963591182","name":"JBSwagSoldier","screen_name":"JBSwagSoldier","location":"","description":"@JBSwaggySoldier 's second account","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":11,"friends_count":50,"listed_count":0,"created_at":"Thu Nov 22 04:08:19 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":16,"lang":"en","status":{"created_at":"Mon Nov 26 04:13:38 +0000 2012","id":272915997227356161,"id_str":"272915997227356161","text":"My daily stats: 1 new followers, 2 new unfollowers via http:\/\/t.co\/17Si5SiC","source":"\u003ca href=\"http:\/\/justunfollow.com\" rel=\"nofollow\"\u003eJustUnfollow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/17Si5SiC","expanded_url":"http:\/\/www.justunfollow.com","display_url":"justunfollow.com","indices":[55,75]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/718158333\/b52e9e0ba1417cb8eec35f27e7a87f64.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2880197484\/0d69d5ba10554e7ec27ede9ae4a8540e_normal.png","profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":220619311,"id_str":"220619311","name":"David Byrd","screen_name":"davidbyrd11","location":"New York","description":"Student @NYUGallatin","url":"http:\/\/byrdhou.se","entities":{"url":{"urls":[{"url":"http:\/\/byrdhou.se","expanded_url":null,"indices":[0,17]}]},"description":{"urls":[]}},"protected":false,"followers_count":134,"friends_count":742,"listed_count":3,"created_at":"Sun Nov 28 09:58:49 +0000 2010","favourites_count":240,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1159,"lang":"en","status":{"created_at":"Thu Nov 29 18:37:18 +0000 2012","id":274220509502271488,"id_str":"274220509502271488","text":"@AaronCohen Are you teaching a class at NYU this semester?","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":13176752,"in_reply_to_user_id_str":"13176752","in_reply_to_screen_name":"AaronCohen","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AaronCohen","name":"AaronCohen","id":13176752,"id_str":"13176752","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/673750470\/e465c3a21f3378501537146b7eb546a7.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2668029543\/24da5c1bbc7fa1580906898c99ae43ff_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/220619311\/1349057134","profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14981723,"id_str":"14981723","name":"Colin Mutchler","screen_name":"activefree","location":"San Francisco","description":"With the freedom of full self expression comes the full responsibility of being active. Co-Founder of @loudsauce. Musician and poet. ","url":"http:\/\/loudsauce.com","entities":{"url":{"urls":[{"url":"http:\/\/loudsauce.com","expanded_url":null,"indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":1168,"friends_count":93,"listed_count":93,"created_at":"Mon Jun 02 16:20:59 +0000 2008","favourites_count":86,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2026,"lang":"en","status":{"created_at":"Thu Nov 29 16:45:15 +0000 2012","id":274192310848335873,"id_str":"274192310848335873","text":"RT @brainpicker: So great: Will Work For \u2013 @IDEO and @collabfund explore the future of work http:\/\/t.co\/UaBW3EWp Complement with: http:\/ ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 29 14:42:43 +0000 2012","id":274161471070547971,"id_str":"274161471070547971","text":"So great: Will Work For \u2013 @IDEO and @collabfund explore the future of work http:\/\/t.co\/UaBW3EWp Complement with: http:\/\/t.co\/zXPBjK6z","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":24,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/UaBW3EWp","expanded_url":"http:\/\/j.mp\/V88Dmq","display_url":"j.mp\/V88Dmq","indices":[75,95]},{"url":"http:\/\/t.co\/zXPBjK6z","expanded_url":"http:\/\/j.mp\/yhauf1","display_url":"j.mp\/yhauf1","indices":[113,133]}],"user_mentions":[{"screen_name":"ideo","name":"IDEO","id":23462787,"id_str":"23462787","indices":[26,31]},{"screen_name":"collabfund","name":"Collaborative","id":150016842,"id_str":"150016842","indices":[36,47]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"retweet_count":24,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/UaBW3EWp","expanded_url":"http:\/\/j.mp\/V88Dmq","display_url":"j.mp\/V88Dmq","indices":[92,112]}],"user_mentions":[{"screen_name":"brainpicker","name":"Maria Popova","id":9207632,"id_str":"9207632","indices":[3,15]},{"screen_name":"ideo","name":"IDEO","id":23462787,"id_str":"23462787","indices":[43,48]},{"screen_name":"collabfund","name":"Collaborative","id":150016842,"id_str":"150016842","indices":[53,64]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2751780128\/66ef4a61bf559b71d53e4dedb3dc8fb0_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":961585622,"id_str":"961585622","name":"@annisawala","screen_name":"annisa4322","location":"indonesia,medan","description":"be the super girl : love allah swt. , mom n' dad :","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":4,"friends_count":57,"listed_count":0,"created_at":"Wed Nov 21 02:06:44 +0000 2012","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4,"lang":"id","status":{"created_at":"Wed Nov 21 16:04:13 +0000 2012","id":271282878770446336,"id_str":"271282878770446336","text":"@fahmijuhri ,,, \nlebay ko woy.","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":271268761795960833,"in_reply_to_status_id_str":"271268761795960833","in_reply_to_user_id":228256726,"in_reply_to_user_id_str":"228256726","in_reply_to_screen_name":"FahmiJuhri","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahmiJuhri","name":"\u2654 Fahmi Juhri \u2654","id":228256726,"id_str":"228256726","indices":[0,11]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false},{"id":374161242,"id_str":"374161242","name":"Kendrick Lay","screen_name":"kendricklay","location":"Virginia, US","description":"Tech-Startup guy. Entrepreneur. Investor. UVA. \r\nScrew it, Just do it! \r\n\r\n\r\n\r\n\r\n","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":68,"friends_count":216,"listed_count":2,"created_at":"Thu Sep 15 20:25:32 +0000 2011","favourites_count":16,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":130,"lang":"en","status":{"created_at":"Thu Nov 29 07:23:10 +0000 2012","id":274050856855420928,"id_str":"274050856855420928","text":"@nataliardianto ohh gitu.Masalanya blm makin real money itu gara2 payment ato emang indo punya market blm bener2mature buat online shopping?","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":274028426598445056,"in_reply_to_status_id_str":"274028426598445056","in_reply_to_user_id":8424162,"in_reply_to_user_id_str":"8424162","in_reply_to_screen_name":"nataliardianto","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nataliardianto","name":"Natali Ardianto","id":8424162,"id_str":"8424162","indices":[0,15]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2659837169\/073495d635e4485bf7deaf8a71f1ca84_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":14439858,"id_str":"14439858","name":"Simon Harris","screen_name":"haruki_zaemon","location":"Tylden, Victoria, Australia","description":"iOS developer and sometimes entrepreneur. One of the guys behind @readtimeapp. I'm hz on http:\/\/t.co\/NjOG4rv1 and I occasionally blog at http:\/\/t.co\/TJt6jSjo.","url":"http:\/\/www.harukizaemon.com\/","entities":{"url":{"urls":[{"url":"http:\/\/www.harukizaemon.com\/","expanded_url":null,"indices":[0,28]}]},"description":{"urls":[{"url":"http:\/\/t.co\/NjOG4rv1","expanded_url":"http:\/\/alpha.app.net","display_url":"alpha.app.net","indices":[89,109]},{"url":"http:\/\/t.co\/TJt6jSjo","expanded_url":"http:\/\/www.harukizaemon.com","display_url":"harukizaemon.com","indices":[137,157]}]}},"protected":false,"followers_count":703,"friends_count":452,"listed_count":45,"created_at":"Sat Apr 19 02:24:16 +0000 2008","favourites_count":4,"utc_offset":36000,"time_zone":"Melbourne","geo_enabled":true,"verified":false,"statuses_count":22625,"lang":"en","status":{"created_at":"Thu Nov 29 12:21:03 +0000 2012","id":274125822464503811,"id_str":"274125822464503811","text":"Feels like its been a week of rookie mistakes for me.","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/53716610\/Simon_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":4220161,"id_str":"4220161","name":"skylar woodward","screen_name":"skylar","location":"San Francisco","description":"Builder, biker, climber, maker. I \u2665 coffee, Kiva and SF.","url":"http:\/\/larw.com\/","entities":{"url":{"urls":[{"url":"http:\/\/larw.com\/","expanded_url":null,"indices":[0,16]}]},"description":{"urls":[]}},"protected":false,"followers_count":834,"friends_count":333,"listed_count":41,"created_at":"Wed Apr 11 18:14:11 +0000 2007","favourites_count":60,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1770,"lang":"en","status":{"created_at":"Wed Nov 28 23:43:43 +0000 2012","id":273935233571758080,"id_str":"273935233571758080","text":"Just won a pony. http:\/\/t.co\/0ZLYMium","source":"\u003ca href=\"http:\/\/instagr.am\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/0ZLYMium","expanded_url":"http:\/\/instagr.am\/p\/Sl5G06yaGy\/","display_url":"instagr.am\/p\/Sl5G06yaGy\/","indices":[17,37]}],"user_mentions":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/574263957\/x3d378cd13a68ea5aefc902f86ff243f.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1314219041\/london_tube_sq_normal.jpg","profile_link_color":"5E412F","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":45569415,"id_str":"45569415","name":"Andrew Flockhart","screen_name":"andruflockhart","location":"NYC","description":"100101010000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":433,"friends_count":322,"listed_count":13,"created_at":"Mon Jun 08 13:56:29 +0000 2009","favourites_count":54,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":903,"lang":"en","status":{"created_at":"Tue Nov 27 21:44:15 +0000 2012","id":273542779588734976,"id_str":"273542779588734976","text":"RT @YungPeng: never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 27 21:34:02 +0000 2012","id":273540207318532097,"id_str":"273540207318532097","text":"never accept a job or career that u can't wear ur rave kandi 2","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"retweet_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YungPeng","name":"\u2022 FR\u2206NK\u00d8 \u2206LI \u2022","id":25201460,"id_str":"25201460","indices":[3,12]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/425003138\/rvin_normal.jpg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/45569415\/1348757066","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":42559115,"id_str":"42559115","name":"Josh Miller","screen_name":"joshm","location":"New York, NY","description":"Building @Branch. Former rising senior at @Princeton. Born and raised in Santa Monica. I ask a lot of questions.","url":"http:\/\/t.co\/uHQdLI6v","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uHQdLI6v","expanded_url":"http:\/\/joshm.co\/about\/","display_url":"joshm.co\/about\/","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":2388,"friends_count":198,"listed_count":79,"created_at":"Tue May 26 03:54:46 +0000 2009","favourites_count":1484,"utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2695,"lang":"en","status":{"created_at":"Thu Nov 29 21:12:06 +0000 2012","id":274259465002418176,"id_str":"274259465002418176","text":"Bret Victor's \"Ten Brighter Ideas,\" Robin Sloan's \"Fish,\" &amp; Craig Mod's \"Subcompact Publishing.\" The UI should be tailored to the content.","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/117710171\/14089.JPG","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581135033\/josh_miller_normal.png","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/42559115\/1348349087","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":17110657,"id_str":"17110657","name":"Tal Safran","screen_name":"talsafran","location":"Brooklyn, NY","description":"Developer and person.","url":"http:\/\/tal.im","entities":{"url":{"urls":[{"url":"http:\/\/tal.im","expanded_url":null,"indices":[0,13]}]},"description":{"urls":[]}},"protected":false,"followers_count":979,"friends_count":503,"listed_count":63,"created_at":"Sun Nov 02 04:31:23 +0000 2008","favourites_count":530,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4701,"lang":"en","status":{"created_at":"Thu Nov 29 19:10:22 +0000 2012","id":274228827478192129,"id_str":"274228827478192129","text":"@pklug Sure, blame it on the mustache :)\n\nDid you handlebar it again?","source":"web","truncated":false,"in_reply_to_status_id":274211393442574336,"in_reply_to_status_id_str":"274211393442574336","in_reply_to_user_id":21379175,"in_reply_to_user_id_str":"21379175","in_reply_to_screen_name":"pklug","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pklug","name":"Phillip Klugman","id":21379175,"id_str":"21379175","indices":[0,6]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/190901346\/bg-stripe.png","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1316038288\/apartmnet_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":306117941,"id_str":"306117941","name":"Johnneylee Rollins","screen_name":"JLeeGhost","location":"Atlanta, Georgia","description":"Duck whisperer, Sourcerer esq., Rubyist","url":"http:\/\/Spaceghost.github.com\/","entities":{"url":{"urls":[{"url":"http:\/\/Spaceghost.github.com\/","expanded_url":null,"indices":[0,29]}]},"description":{"urls":[]}},"protected":false,"followers_count":110,"friends_count":404,"listed_count":4,"created_at":"Fri May 27 09:43:58 +0000 2011","favourites_count":25,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1405,"lang":"en","status":{"created_at":"Thu Nov 29 16:40:05 +0000 2012","id":274191008986693632,"id_str":"274191008986693632","text":"@andrzejkrzywda Personally, I've been working on building my apps closer to a domain-centric model. The rest is service based.","source":"web","truncated":false,"in_reply_to_status_id":274166908499161088,"in_reply_to_status_id_str":"274166908499161088","in_reply_to_user_id":8067312,"in_reply_to_user_id_str":"8067312","in_reply_to_screen_name":"andrzejkrzywda","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"andrzejkrzywda","name":"Andrzej Krzywda","id":8067312,"id_str":"8067312","indices":[0,15]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1370810672\/SpaceGhost_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1370810672\/SpaceGhost_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},{"id":947101075,"id_str":"947101075","name":"REMY ON THE BEAT","screen_name":"remyonthebeat","location":"","description":"FOLLOW MY NEW TWITTER \r\nhttp:\/\/t.co\/cTGy5OX6\r\nhttp:\/\/t.co\/cTGy5OX6\r\nhttp:\/\/t.co\/cTGy5OX6\r\n","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[24,44]},{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[46,66]},{"url":"http:\/\/t.co\/cTGy5OX6","expanded_url":"http:\/\/WWW.TWITTER.COM\/REMYONTHETRACK","display_url":"TWITTER.COM\/REMYONTHETRACK","indices":[68,88]}]}},"protected":false,"followers_count":705,"friends_count":1464,"listed_count":0,"created_at":"Wed Nov 14 05:13:21 +0000 2012","favourites_count":0,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":8,"lang":"en","status":{"created_at":"Sun Nov 25 04:37:43 +0000 2012","id":272559668465901568,"id_str":"272559668465901568","text":"follow my new twitter @remyonthetrack","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"remyonthetrack","name":"REMY ON THE TRACK","id":17717793,"id_str":"17717793","indices":[22,37]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_link_color":"70CAE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":1418947360875712729,"previous_cursor_str":"1418947360875712729"}
1
+ {"users":[{"id":730805892,"id_str":"730805892","name":"Will Ahrens","screen_name":"WillAhrens","location":"Long Island, New York","description":"guitarist for Nick Tangorra, Paging Grace, Trish Torrales","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2592,"friends_count":2712,"listed_count":2,"created_at":"Wed Aug 01 14:40:58 +0000 2012","favourites_count":1482,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":3888,"lang":"en","status":{"created_at":"Thu Nov 29 19:33:44 +0000 2012","id":274234710501244929,"id_str":"274234710501244929","text":"@MandyJay7 catch ya later! :)","source":"web","truncated":false,"in_reply_to_status_id":274234209831354368,"in_reply_to_status_id_str":"274234209831354368","in_reply_to_user_id":463877152,"in_reply_to_user_id_str":"463877152","in_reply_to_screen_name":"MandyJay7","geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MandyJay7","name":"Mandy Jay","id":463877152,"id_str":"463877152","indices":[0,10]}]},"favorited":false,"retweeted":false},"contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/679274925\/9f28628390683b63fb9784e34cc82190.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2896578010\/5b406ead0cbf9784ba228e34e1ccc698_normal.jpeg","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/730805892\/1353223929","profile_link_color":"1AA196","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false}],"next_cursor":0,"next_cursor_str":"0","previous_cursor":1418947360875712729,"previous_cursor_str":"1418947360875712729"}
@@ -1 +1 @@
1
- [{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440},{"uri":"\/twitter\/team","name":"Team","full_name":"@twitter\/team","description":"","mode":"public","user":{"id":783214,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco, CA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","id_str":"783214","profile_link_color":"038543","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":1433,"name":"Twitter","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"twitter","listed_count":73287,"protected":false,"followers_count":13711595,"profile_sidebar_border_color":"EEEEEE","is_translator":false,"description":"Always wondering what's happening. ","profile_background_tile":true,"following":true,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"url":"http:\/\/blog.twitter.com\/","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/783214\/1347405327","favourites_count":18,"created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":1249,"verified":true,"notifications":false,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","profile_background_color":"ACDED6","contributors_enabled":true},"following":true,"created_at":"Wed Sep 23 01:18:01 +0000 2009","member_count":1199,"id_str":"574","subscriber_count":78078,"slug":"team","id":574},{"uri":"\/sferik\/test","name":"test","full_name":"@sferik\/test","description":"","mode":"private","user":{"id":7505382,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","id_str":"7505382","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":8576,"name":"Erik Michaels-Ober","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"sferik","listed_count":129,"protected":false,"followers_count":2449,"profile_sidebar_border_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","description":"An ingredient in your recipe.","is_translator":false,"profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"https:\/\/github.com\/sferik","favourites_count":4321,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":203,"verified":false,"notifications":false,"profile_background_color":"000000","contributors_enabled":false},"following":false,"created_at":"Sun Jul 08 22:19:05 +0000 2012","member_count":2,"id_str":"73546689","subscriber_count":0,"slug":"test","id":73546689},{"uri":"\/sferik\/interesting","name":"interesting","full_name":"@sferik\/interesting","description":"People who are interesting.","mode":"private","user":{"id":7505382,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","id_str":"7505382","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":8576,"name":"Erik Michaels-Ober","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"sferik","listed_count":129,"protected":false,"followers_count":2449,"profile_sidebar_border_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","description":"An ingredient in your recipe.","is_translator":false,"profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"https:\/\/github.com\/sferik","favourites_count":4321,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":203,"verified":false,"notifications":false,"profile_background_color":"000000","contributors_enabled":false},"following":false,"created_at":"Sat Sep 04 00:46:03 +0000 2010","member_count":4,"id_str":"20817728","subscriber_count":0,"slug":"interesting","id":20817728},{"uri":"\/sferik\/recommended","name":"recommended","full_name":"@sferik\/recommended","description":"Users recommended to me by Twitter","mode":"private","user":{"id":7505382,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","id_str":"7505382","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":8576,"name":"Erik Michaels-Ober","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"sferik","listed_count":129,"protected":false,"followers_count":2449,"profile_sidebar_border_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","description":"An ingredient in your recipe.","is_translator":false,"profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"https:\/\/github.com\/sferik","favourites_count":4321,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":203,"verified":false,"notifications":false,"profile_background_color":"000000","contributors_enabled":false},"following":false,"created_at":"Thu Sep 02 18:29:24 +0000 2010","member_count":71,"id_str":"20712515","subscriber_count":0,"slug":"recommended","id":20712515},{"uri":"\/sferik\/presidents","name":"presidents","full_name":"@sferik\/presidents","description":"Presidents of the United States of America","mode":"public","user":{"id":7505382,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/665875854\/bb0b3653dcf0644e344823e0a2eb3382.png","id_str":"7505382","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":8576,"name":"Erik Michaels-Ober","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"sferik","listed_count":129,"protected":false,"followers_count":2449,"profile_sidebar_border_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1759857427\/image1326743606_normal.png","description":"An ingredient in your recipe.","is_translator":false,"profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"https:\/\/github.com\/sferik","favourites_count":4321,"created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":203,"verified":false,"notifications":false,"profile_background_color":"000000","contributors_enabled":false},"following":false,"created_at":"Mon Mar 15 06:10:13 +0000 2010","member_count":2,"id_str":"8863586","subscriber_count":1,"slug":"presidents","id":8863586}]
1
+ [{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440}]
@@ -1 +1 @@
1
- [{"url":"http://where.yahooapis.com/v1/place/23424803","woeid":23424803,"placeType":{"code":12,"name":"Country"},"name":"Ireland","country":"Ireland","countryCode":"IE"},{"countryCode":"GB","url":"http://where.yahooapis.com/v1/place/23424975","country":"United Kingdom","woeid":23424975,"name":"United Kingdom","placeType":{"code":12,"name":"Country"}},{"placeType":{"code":12,"name":"Country"},"url":"http://where.yahooapis.com/v1/place/23424900","countryCode":"MX","country":"Mexico","woeid":23424900,"name":"Mexico"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2358820","woeid":2358820,"name":"Baltimore","country":"United States"},{"placeType":{"code":7,"name":"Town"},"countryCode":"BR","url":"http://where.yahooapis.com/v1/place/455827","woeid":455827,"name":"Sao Paulo","country":"Brazil"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2514815","country":"United States","woeid":2514815,"name":"Washington"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2367105","countryCode":"US","woeid":2367105,"name":"Boston","country":"United States"},{"countryCode":null,"url":"http://where.yahooapis.com/v1/place/1","woeid":1,"name":"Worldwide","country":"","placeType":{"code":19,"name":"Supername"}},{"url":"http://where.yahooapis.com/v1/place/2459115","woeid":2459115,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"New York","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2487796","woeid":2487796,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"San Antonio","country":"United States"},{"countryCode":"US","url":"http://where.yahooapis.com/v1/place/23424977","country":"United States","woeid":23424977,"name":"United States","placeType":{"code":12,"name":"Country"}},{"countryCode":"BR","url":"http://where.yahooapis.com/v1/place/23424768","woeid":23424768,"name":"Brazil","country":"Brazil","placeType":{"code":12,"name":"Country"}},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2379574","countryCode":"US","woeid":2379574,"name":"Chicago","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2471217","woeid":2471217,"placeType":{"code":7,"name":"Town"},"countryCode":"US","name":"Philadelphia","country":"United States"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2424766","woeid":2424766,"name":"Houston","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/2442047","country":"United States","placeType":{"code":7,"name":"Town"},"woeid":2442047,"countryCode":"US","name":"Los Angeles"},{"placeType":{"code":7,"name":"Town"},"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2487956","woeid":2487956,"name":"San Francisco","country":"United States"},{"url":"http://where.yahooapis.com/v1/place/23424775","woeid":23424775,"placeType":{"code":12,"name":"Country"},"name":"Canada","country":"Canada","countryCode":"CA"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2357024","countryCode":"US","woeid":2357024,"name":"Atlanta","country":"United States"},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2406080","countryCode":"US","woeid":2406080,"name":"Fort Worth","country":"United States"},{"countryCode":"US","url":"http://where.yahooapis.com/v1/place/2388929","woeid":2388929,"name":"Dallas","country":"United States","placeType":{"code":7,"name":"Town"}},{"placeType":{"code":7,"name":"Town"},"url":"http://where.yahooapis.com/v1/place/2490383","countryCode":"US","woeid":2490383,"name":"Seattle","country":"United States"},{"countryCode":"GB","url":"http://where.yahooapis.com/v1/place/44418","woeid":44418,"name":"London","country":"United Kingdom","placeType":{"code":7,"name":"Town"}}]
1
+ [{"url":"http://where.yahooapis.com/v1/place/23424803","woeid":23424803,"placeType":{"code":12,"name":"Country"},"name":"Ireland","country":"Ireland","countryCode":"IE"}]
@@ -1 +1 @@
1
- [{"profile_sidebar_fill_color":"f2f2f2","protected":false,"id_str":"77888423","notifications":false,"profile_background_tile":false,"screen_name":"OMGFacts","name":"OMGFacts","listed_count":27367,"location":"Northern California","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"006da8","description":"The #1 fact source on Twitter, posting since Sept 27, 2009. \r\n","default_profile":false,"profile_sidebar_border_color":"ffffff","url":null,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110031604528844801","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/timely.is\" rel=\"nofollow\"\u003ETimely App\u003C\/a\u003E","created_at":"Sat Sep 03 16:49:13 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110031604528844801,"place":null,"text":"The third right arm of a male octopus is more than an arm. It\u2019s his reproductive organ."},"default_profile_image":false,"statuses_count":5776,"profile_use_background_image":false,"verified":false,"favourites_count":0,"friends_count":3,"profile_background_color":"00c4ff","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/64177585\/new.png","created_at":"Mon Sep 28 01:28:23 +0000 2009","followers_count":2401784,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/64177585\/new.png","id":77888423,"profile_text_color":"332d2d","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/745816919\/omgfacts_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/745816919\/omgfacts_normal.jpg"},{"profile_sidebar_fill_color":"C0DFEC","protected":false,"id_str":"112508240","notifications":null,"profile_background_tile":false,"screen_name":"CraigyFerg","name":"Craig Ferguson","listed_count":20921,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"0084B4","description":"TV's Craig Ferguson","profile_sidebar_border_color":"a8c7f7","url":"http:\/\/www.cbs.com\/late_night\/late_late_show\/","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110069065715953664","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 19:18:04 +0000 2011","contributors":null,"retweeted":false,"retweet_count":58,"id":110069065715953664,"place":null,"text":"\"Now I shall hunt the greatest game of all- man\" #overusedmovielines #carefulicarus #LeTitsNow #overusedhashtags"},"default_profile_image":false,"default_profile":false,"statuses_count":737,"profile_use_background_image":true,"verified":true,"favourites_count":40,"friends_count":75,"profile_background_color":"022330","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","created_at":"Mon Feb 08 19:14:33 +0000 2010","followers_count":865934,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","id":112508240,"profile_text_color":"5e6965","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1458496573\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1458496573\/image_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"25521487","notifications":false,"profile_background_tile":true,"screen_name":"danieltosh","name":"daniel tosh","listed_count":25436,"location":"beach","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"not a doctor","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.danieltosh.com\/","default_profile":false,"time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110150928451108866","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sun Sep 04 00:43:22 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110150928451108866,"place":null,"text":"the difference between lane kiffin and myself... is that i pretend to be an asshole."},"default_profile_image":false,"statuses_count":3757,"profile_use_background_image":true,"verified":true,"favourites_count":5,"friends_count":66,"profile_background_color":"1A1B1F","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","created_at":"Fri Mar 20 15:32:52 +0000 2009","followers_count":3303990,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/12054191\/toshbck.jpg","id":25521487,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/218283715\/Daniel-Tosh---Shot_2-12976_normal.gif"},{"profile_sidebar_fill_color":"F2F5F8","protected":false,"id_str":"14094741","notifications":false,"profile_background_tile":false,"screen_name":"someecards","name":"someecards","listed_count":9095,"location":"New York, NY","show_all_inline_media":false,"contributors_enabled":true,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"966119","description":"Welcome to the Twitter feed of somewhat acclaimed humor site, someecards.com. You\u2019ll love not unfollowing us!","profile_sidebar_border_color":"FFFFFF","url":"http:\/\/someecards.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110041355752980481","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003ETweet Button\u003C\/a\u003E","created_at":"Sat Sep 03 17:27:58 +0000 2011","contributors":null,"retweeted":false,"retweet_count":36,"id":110041355752980481,"place":null,"text":"Vintage TV ads sell coffee through the use of mind-blowing sexism. http:\/\/t.co\/7jqEGFo"},"default_profile_image":false,"statuses_count":5436,"profile_use_background_image":true,"verified":true,"favourites_count":3,"friends_count":355,"profile_background_color":"DADAD8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/198266956\/twitter_background_final2b.png","created_at":"Fri Mar 07 12:49:08 +0000 2008","followers_count":1678880,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/198266956\/twitter_background_final2b.png","id":14094741,"default_profile":false,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/82073632\/thumbs_up_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/82073632\/thumbs_up_normal.jpg"},{"profile_sidebar_fill_color":"5f7cd3","protected":false,"id_str":"6539592","notifications":false,"profile_background_tile":false,"screen_name":"JimGaffigan","name":"Jim Gaffigan","listed_count":16522,"location":"NYC - On tour this summer","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"b4c2ee","description":"Husband to hot wife, father of 4, comedian, actor, writer, former sleeper http:\/\/favstar.fm\/users\/JimGaffigan\r\nItunes = http:\/\/tinyurl.com\/65z4dfy","profile_sidebar_border_color":"FFFFFF","url":"http:\/\/jimgaffigan.com\/appearances.shtml","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110147040029319168","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.whosay.com\" rel=\"nofollow\"\u003EWhoSay\u003C\/a\u003E","created_at":"Sun Sep 04 00:27:55 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110147040029319168,"place":null,"text":"The only time someone should drink a shot is never."},"default_profile_image":false,"statuses_count":1821,"profile_use_background_image":true,"verified":true,"favourites_count":73,"friends_count":459,"profile_background_color":"6699CC","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/162969523\/JG-Twitter.jpg","created_at":"Sun Jun 03 11:09:19 +0000 2007","followers_count":702293,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/162969523\/JG-Twitter.jpg","id":6539592,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1413598901\/IMG_0595b_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1413598901\/IMG_0595b_normal.jpg"},{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"18713254","default_profile":false,"notifications":false,"profile_background_tile":true,"screen_name":"simonpegg","name":"Simon Pegg","listed_count":28045,"location":"London, UK","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":0,"profile_link_color":"009999","description":"Actor\/writer\/dog owner\/winner of 50m flat race 1977-1981","profile_sidebar_border_color":"eeeeee","url":"http:\/\/twitter.com\/simonpegg","time_zone":"London","status":{"id_str":"109963862522068993","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Sat Sep 03 12:20:02 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":109963862522068993,"place":null,"text":"It's a shame Darth Vader didn't say \"NO\" to slaughtering all them little kids. He's alright though because he threw an old man down the bog."},"default_profile_image":false,"statuses_count":6523,"profile_use_background_image":true,"verified":true,"favourites_count":8,"friends_count":355,"profile_background_color":"131516","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/265410194\/image003.jpg","created_at":"Wed Jan 07 06:19:34 +0000 2009","followers_count":1450438,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/265410194\/image003.jpg","id":18713254,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1334758081\/Rolling_Stone_08.02.11_0057_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1334758081\/Rolling_Stone_08.02.11_0057_normal.jpg"},{"profile_sidebar_fill_color":"7f7fa4","protected":false,"id_str":"19768193","notifications":false,"profile_background_tile":true,"screen_name":"mshowalter","name":"Michael Showalter","listed_count":3893,"location":"Brooklyn, NYC","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"161314","description":"Author of Mr.Funny Pants available at a bookstore near you! Or online now at www.amazon.com","default_profile":false,"profile_sidebar_border_color":"1c1d1b","url":"http:\/\/www.michaelshowalter.net","time_zone":"Eastern Time (US & Canada)","status":{"retweeted_status":{"id_str":"109341511937826816","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","created_at":"Thu Sep 01 19:07:02 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":109341511937826816,"place":null,"text":"Get ready to get \"Schooled!\" Comedian Michael Showalter could be quizzing your college soon! #NESN @mshowalter http:\/\/t.co\/4KGwNuw"},"id_str":"110070961021272064","in_reply_to_status_id":null,"truncated":true,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 19:25:36 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110070961021272064,"place":null,"text":"RT @KepplerOnCampus: Get ready to get \"Schooled!\" Comedian Michael Showalter could be quizzing your college soon! #NESN @mshowalter http ..."},"default_profile_image":false,"statuses_count":1769,"profile_use_background_image":true,"verified":true,"favourites_count":2,"friends_count":208,"profile_background_color":"412725","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/226724530\/shwltrctpwr_001grain_copy.jpg","created_at":"Fri Jan 30 14:05:18 +0000 2009","followers_count":140113,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/226724530\/shwltrctpwr_001grain_copy.jpg","id":19768193,"profile_text_color":"1b171c","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1365888173\/photo4_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1365888173\/photo4_normal.jpg"},{"profile_sidebar_fill_color":"DDEEF6","protected":false,"id_str":"28744383","notifications":false,"profile_background_tile":false,"screen_name":"JudahWorldChamp","name":"Judah Friedlander","listed_count":3834,"location":"NYC","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0084B4","description":"I am The World Champion, and that means this is Judah Friedlander's Official Twitter page.","default_profile":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/www.worldchampionoftheworld.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110100914412593152","in_reply_to_status_id":110081188663791616,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110081188663791616","geo":null,"in_reply_to_screen_name":"justincousson","in_reply_to_user_id_str":"233841077","coordinates":null,"in_reply_to_user_id":233841077,"source":"web","created_at":"Sat Sep 03 21:24:38 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110100914412593152,"place":null,"text":"@justincousson i bought 3 hotels and stacked them on yop of each other too."},"default_profile_image":false,"statuses_count":3033,"profile_use_background_image":true,"verified":false,"favourites_count":5,"friends_count":1815,"profile_background_color":"C0DEED","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/298340095\/twitterBkgdBlank.jpg","created_at":"Sat Apr 04 05:04:37 +0000 2009","followers_count":209276,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/298340095\/twitterBkgdBlank.jpg","id":28744383,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1124117561\/14_lores_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1124117561\/14_lores_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"52551600","notifications":false,"profile_background_tile":false,"screen_name":"JimCarrey","name":"Jim Carrey","listed_count":46631,"location":"Los Angeles","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"Actor Jim Carrey!","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.jimcarrey.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110016446918180864","in_reply_to_status_id":110013593470238720,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110013593470238720","geo":null,"in_reply_to_screen_name":"Madison_Paije_x","in_reply_to_user_id_str":"363279932","coordinates":null,"in_reply_to_user_id":363279932,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sat Sep 03 15:48:59 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110016446918180864,"place":null,"text":"@Madison_Paije_x ?;^)"},"default_profile_image":false,"statuses_count":2730,"profile_use_background_image":true,"verified":true,"favourites_count":1,"friends_count":1,"profile_background_color":"212021","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/90355341\/twee2.jpg","created_at":"Tue Jun 30 22:58:44 +0000 2009","followers_count":4085471,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/90355341\/twee2.jpg","id":52551600,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1519240120\/image_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1519240120\/image_normal.jpg"},{"profile_sidebar_fill_color":"efefef","protected":false,"id_str":"21148293","notifications":null,"profile_background_tile":false,"screen_name":"kathygriffin","name":"Kathy Griffin","listed_count":16469,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-32400,"profile_link_color":"009999","description":"2-time Emmy award winning comedian & star of Bravo's My Life on the D-List.","profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.kathygriffin.net","time_zone":"Alaska","status":{"id_str":"110127520191492096","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003EEchofon\u003C\/a\u003E","created_at":"Sat Sep 03 23:10:21 +0000 2011","contributors":null,"retweeted":false,"retweet_count":27,"id":110127520191492096,"place":null,"text":"Im on it! Cut the shit, it's not exactly the Mark Twain award! RT @kaven23: shud make fun of bieber thanking god & jesus."},"default_profile_image":false,"statuses_count":2189,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":3,"friends_count":0,"profile_background_color":"131516","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/322147054\/Kathy_Twitter_EMMYS_noT_518.jpg","created_at":"Tue Feb 17 23:54:04 +0000 2009","followers_count":1048555,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/322147054\/Kathy_Twitter_EMMYS_noT_518.jpg","id":21148293,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1477819493\/1_MG_9929B_normal.jpg","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1477819493\/1_MG_9929B_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"6480682","default_profile":false,"notifications":false,"profile_background_tile":true,"screen_name":"azizansari","name":"Aziz Ansari","listed_count":19218,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff","description":"I'm an actor\/comedian. I play Tom on Parks and Recreation on NBC. I also like food a lot. ","profile_sidebar_border_color":"87bc44","url":"http:\/\/azizisbored.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110117319103098880","in_reply_to_status_id":109030258782650368,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"109030258782650368","geo":null,"in_reply_to_screen_name":"N666ZY","in_reply_to_user_id_str":"24757911","coordinates":null,"in_reply_to_user_id":24757911,"source":"web","created_at":"Sat Sep 03 22:29:49 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":110117319103098880,"place":null,"text":"@N666ZY Dude you aint tell me you had Smashburger yet??! Thoughts?"},"default_profile_image":false,"statuses_count":3565,"profile_use_background_image":true,"verified":true,"favourites_count":379,"friends_count":241,"profile_background_color":"053285","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","created_at":"Thu May 31 19:06:49 +0000 2007","followers_count":1215395,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5581304\/azizlittle2.jpg","id":6480682,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/421377161\/azizlittletwitter_normal.jpg"},{"profile_sidebar_fill_color":"FFF7CC","protected":false,"id_str":"14075928","notifications":false,"profile_background_tile":false,"screen_name":"TheOnion","name":"The Onion","listed_count":52135,"location":"New York, NY","show_all_inline_media":true,"contributors_enabled":true,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"FF0000","description":"America's Finest News Source. Follow Onion News Network television show (@ONN) with Season 2 coming to @IFCtv this fall. Also http:\/\/facebook.com\/theonion","profile_sidebar_border_color":"F2E195","url":"http:\/\/www.theonion.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110166347119460352","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sun Sep 04 01:44:38 +0000 2011","contributors":null,"retweeted":false,"retweet_count":35,"id":110166347119460352,"place":null,"text":"A Tea party congressman sees only one solution to raging wildfire in his district: massive tax cuts. http:\/\/t.co\/bWytBlo #OnionReview"},"default_profile_image":false,"statuses_count":9395,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":33,"friends_count":13,"profile_background_color":"ffffff","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","created_at":"Tue Mar 04 02:48:37 +0000 2008","followers_count":3065044,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","id":14075928,"profile_text_color":"0C3E53","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/334357688\/onion_logo_03_L_normal.png","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/334357688\/onion_logo_03_L_normal.png"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"15693493","notifications":false,"profile_background_tile":false,"screen_name":"funnyordie","name":"Funny Or Die","listed_count":20413,"location":"Hollywood, Ca","show_all_inline_media":false,"contributors_enabled":true,"following":false,"geo_enabled":true,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"We make funny videos with famous people. Will Ferrell is our boss. We like to laugh and watch kittens do adorable people things.","default_profile":false,"profile_sidebar_border_color":"181A1E","url":"http:\/\/funnyordie.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110140144501268480","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","created_at":"Sun Sep 04 00:00:31 +0000 2011","contributors":null,"retweeted":false,"retweet_count":34,"id":110140144501268480,"place":null,"text":"Just a heads up: security appears to be confiscating shirts at the entrance from anyone with a dumb tattoo. #FYFFEST"},"default_profile_image":false,"statuses_count":5302,"profile_use_background_image":true,"verified":true,"favourites_count":31,"friends_count":3239,"profile_background_color":"0d0d0d","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/299282155\/FINAL.jpg","created_at":"Fri Aug 01 19:42:20 +0000 2008","followers_count":2383334,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/299282155\/FINAL.jpg","id":15693493,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1296763613\/twitter-avatar-1_normal.jpg","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1296763613\/twitter-avatar-1_normal.jpg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"18548221","notifications":false,"profile_background_tile":false,"screen_name":"DougBenson","name":"Doug Benson","listed_count":7061,"location":"Los Angeles","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4","description":"If you can't stand the tweet, unfollow the kitchen. New album, POTTY MOUTH, 8\/30!\r\n Tour dates at http:\/\/www.douglovesmovies.com ","profile_sidebar_border_color":"BDDCAD","url":null,"default_profile":false,"time_zone":"Pacific Time (US & Canada)","status":{"retweeted_status":{"id_str":"110131497054380032","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/cotweet.com\/?utm_source=sp1\" rel=\"nofollow\"\u003ECoTweet\u003C\/a\u003E","created_at":"Sat Sep 03 23:26:09 +0000 2011","contributors":null,"retweeted":false,"retweet_count":8,"id":110131497054380032,"place":null,"text":"There's still about 150 comedy passes left for Bagley and Intiman, so grab them while you can. Remember there's always standby room too!"},"id_str":"110131554474401792","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"web","created_at":"Sat Sep 03 23:26:23 +0000 2011","contributors":null,"retweeted":false,"retweet_count":8,"id":110131554474401792,"place":null,"text":"RT @Bumbershoot: There's still about 150 comedy passes left for Bagley and Intiman, so grab them while you can. Remember there's always ..."},"default_profile_image":false,"statuses_count":9155,"profile_use_background_image":true,"verified":true,"favourites_count":320,"friends_count":420,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/174573121\/benson2-1.jpg","created_at":"Fri Jan 02 07:39:59 +0000 2009","followers_count":281504,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/174573121\/benson2-1.jpg","id":18548221,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1427931914\/CD3_Benson_Cover_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1427931914\/CD3_Benson_Cover_normal.jpg"},{"profile_sidebar_fill_color":"ffe5a8","protected":false,"id_str":"809760","notifications":false,"profile_background_tile":true,"screen_name":"badbanana","name":"Tim Siedell","listed_count":11740,"location":"Nebraska, USA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-21600,"profile_link_color":"cf6519","description":"Sometimes I just want to give it all up and become a handsome billionaire.","profile_sidebar_border_color":"eeeeee","url":"http:\/\/about.me\/timsiedell","time_zone":"Central Time (US & Canada)","status":{"id_str":"110152580524552192","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003ETwitter for iPad\u003C\/a\u003E","created_at":"Sun Sep 04 00:49:56 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110152580524552192,"place":null,"text":"Hey, GEICO commercials. We know."},"default_profile_image":false,"statuses_count":13846,"profile_use_background_image":true,"verified":true,"favourites_count":1498,"friends_count":274,"profile_background_color":"484c54","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/37772539\/Pinstripe2.png","created_at":"Sun Mar 04 05:57:43 +0000 2007","followers_count":522107,"default_profile":false,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/37772539\/Pinstripe2.png","id":809760,"profile_text_color":"6e6e6e","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/795687519\/Bad_Banana_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/795687519\/Bad_Banana_normal.jpg"},{"profile_sidebar_fill_color":"e0ff92","protected":false,"id_str":"6173842","notifications":false,"profile_background_tile":false,"screen_name":"ICHCheezburger","name":"ICanHasCheezburger?","listed_count":6567,"location":"Seattle, WA","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0000ff","description":"I can has funny pictures of cats, plz?","default_profile":false,"profile_sidebar_border_color":"87bc44","url":"http:\/\/icanhascheezburger.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110147753581096960","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003EHootSuite\u003C\/a\u003E","created_at":"Sun Sep 04 00:30:45 +0000 2011","contributors":null,"retweeted":false,"retweet_count":2,"id":110147753581096960,"place":null,"text":"Dryer Cat Approves! - funny pictures - Dryer Cat Approves!LoL by: PrincessWordplay http:\/\/t.co\/oprEt4y"},"default_profile_image":false,"statuses_count":11545,"profile_use_background_image":true,"verified":false,"favourites_count":4,"friends_count":3124,"profile_background_color":"9ae4e8","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/30261844\/ICHCTwitterBG.jpg","created_at":"Sun May 20 08:02:15 +0000 2007","followers_count":1573827,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/30261844\/ICHCTwitterBG.jpg","id":6173842,"profile_text_color":"000000","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1213876440\/27539_32561485399_2579_n_normal.jpeg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1213876440\/27539_32561485399_2579_n_normal.jpeg"},{"profile_sidebar_fill_color":"DDFFCC","protected":false,"id_str":"22461427","notifications":false,"profile_background_tile":true,"screen_name":"alyankovic","name":"Al Yankovic","listed_count":27657,"location":"Los Angeles","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"0084B4","description":"You know... the Eat It guy.","profile_sidebar_border_color":"BDDCAD","url":"http:\/\/www.weirdal.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"110056533651496960","in_reply_to_status_id":null,"truncated":false,"favorited":false,"possibly_sensitive":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitpic.com\" rel=\"nofollow\"\u003ETwitpic\u003C\/a\u003E","created_at":"Sat Sep 03 18:28:17 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110056533651496960,"place":null,"text":"I know our economy is messed up, but I still think it\u2019s ridiculous to charge almost 200 bucks for a side of soup. http:\/\/t.co\/LwAeytG"},"default_profile_image":false,"statuses_count":1377,"profile_use_background_image":true,"default_profile":false,"verified":true,"favourites_count":277,"friends_count":210,"profile_background_color":"9AE4E8","is_translator":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/5009241\/906623544_l.jpg","created_at":"Mon Mar 02 07:00:29 +0000 2009","followers_count":2135730,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/5009241\/906623544_l.jpg","id":22461427,"profile_text_color":"333333","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/246073324\/IL2_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/246073324\/IL2_normal.jpg"},{"profile_sidebar_fill_color":"17161A","protected":false,"id_str":"19637934","notifications":false,"profile_background_tile":true,"screen_name":"rainnwilson","name":"RainnWilson","listed_count":32753,"location":"Los Angeles-ish","show_all_inline_media":false,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-21600,"profile_link_color":"9FA1A3","description":"I am an actor and a writer and I co-created SoulPancake and my son, Walter.","profile_sidebar_border_color":"22262B","url":"http:\/\/www.facebook.com\/rainnwilson","time_zone":"Saskatchewan","status":{"id_str":"110152541580427264","in_reply_to_status_id":null,"truncated":false,"favorited":false,"in_reply_to_status_id_str":null,"geo":null,"in_reply_to_screen_name":null,"in_reply_to_user_id_str":null,"coordinates":null,"in_reply_to_user_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/devices\" rel=\"nofollow\"\u003Etxt\u003C\/a\u003E","created_at":"Sun Sep 04 00:49:47 +0000 2011","contributors":null,"retweeted":false,"retweet_count":"100+","id":110152541580427264,"place":null,"text":"Obama is capitulating so much that he has decided to vote for Rick Perry."},"default_profile_image":false,"statuses_count":6163,"profile_use_background_image":true,"verified":true,"favourites_count":1480,"friends_count":244,"profile_background_color":"ffffff","is_translator":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/212017033\/rainn.jpg","created_at":"Wed Jan 28 05:28:45 +0000 2009","followers_count":2526376,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/212017033\/rainn.jpg","id":19637934,"default_profile":false,"profile_text_color":"585F65","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1431046561\/rainnwilsonT6I7409_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1431046561\/rainnwilsonT6I7409_normal.jpg"},{"profile_sidebar_fill_color":"ffffff","protected":false,"id_str":"16302651","notifications":false,"profile_background_tile":true,"screen_name":"EugeneMirman","name":"Eugene Mirman","listed_count":3205,"location":"Brooklyn, NY","show_all_inline_media":true,"contributors_enabled":false,"following":false,"geo_enabled":false,"utc_offset":-18000,"profile_link_color":"b83c0a","description":"I am television's Eugene Mirman. I am very nice and like seafood.","profile_sidebar_border_color":"fff9f5","url":"http:\/\/www.eugenemirman.com","time_zone":"Eastern Time (US & Canada)","status":{"id_str":"110106576421007360","in_reply_to_status_id":110068002430517249,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"110068002430517249","geo":null,"in_reply_to_screen_name":"godzillaeyes","in_reply_to_user_id_str":"14122597","coordinates":null,"in_reply_to_user_id":14122597,"source":"web","created_at":"Sat Sep 03 21:47:08 +0000 2011","contributors":null,"retweeted":false,"retweet_count":1,"id":110106576421007360,"place":null,"text":"@godzillaeyes It's not creepy, but you will just end up seeing mostly the same set three times probably."},"default_profile_image":false,"statuses_count":2723,"profile_use_background_image":true,"verified":true,"favourites_count":0,"friends_count":256,"profile_background_color":"fbf7e9","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/3286688\/twitter_bg.jpg","created_at":"Mon Sep 15 21:51:02 +0000 2008","followers_count":140087,"follow_request_sent":false,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/3286688\/twitter_bg.jpg","id":16302651,"default_profile":false,"profile_text_color":"a24616","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/61007765\/237905348-Ti_normal.jpg","profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/61007765\/237905348-Ti_normal.jpg"},{"profile_sidebar_fill_color":"252429","protected":false,"id_str":"6480652","notifications":null,"profile_background_tile":false,"screen_name":"paulscheer","name":"Paul Scheer","listed_count":5073,"location":"Los Angeles, CA","show_all_inline_media":false,"contributors_enabled":false,"following":null,"geo_enabled":false,"utc_offset":-28800,"profile_link_color":"2FC2EF","description":"Paul Scheer uses furniture but doesn't trust it.","profile_sidebar_border_color":"181A1E","url":"http:\/\/www.paulscheer.com","time_zone":"Pacific Time (US & Canada)","status":{"id_str":"109892539112374272","in_reply_to_status_id":109796913129336832,"truncated":false,"favorited":false,"in_reply_to_status_id_str":"109796913129336832","geo":null,"in_reply_to_screen_name":"danieljpowell","in_reply_to_user_id_str":"25741706","coordinates":null,"in_reply_to_user_id":25741706,"source":"web","created_at":"Sat Sep 03 07:36:37 +0000 2011","contributors":null,"retweeted":false,"retweet_count":0,"id":109892539112374272,"place":null,"text":"@danieljpowell good point"},"default_profile_image":false,"default_profile":false,"statuses_count":1823,"profile_use_background_image":true,"verified":true,"favourites_count":44,"friends_count":453,"profile_background_color":"e7d352","is_translator":false,"profile_background_image_url":"http:\/\/a2.twimg.com\/profile_background_images\/292867502\/NTSF-webskin.jpg","created_at":"Thu May 31 19:05:17 +0000 2007","followers_count":216099,"follow_request_sent":null,"lang":"en","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/292867502\/NTSF-webskin.jpg","id":6480652,"profile_text_color":"666666","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1156102294\/5096530605_7b05eb0348_o_normal.jpg","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1156102294\/5096530605_7b05eb0348_o_normal.jpg"}]
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"}]
@@ -1 +1 @@
1
- {"lists":[{"uri":"\/DavidBahia\/developer","name":"developer","full_name":"@DavidBahia\/developer","description":"","mode":"public","user":{"id":20647833,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","time_zone":"London","location":"Rochester, Medway Towns, Kent","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","id_str":"20647833","entities":{"description":{"urls":[]}},"profile_link_color":"1F98C7","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","utc_offset":0,"profile_use_background_image":true,"statuses_count":4920,"name":"David Bahia","follow_request_sent":false,"profile_text_color":"663B12","lang":"en","screen_name":"DavidBahia","listed_count":31,"protected":false,"followers_count":953,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","profile_sidebar_border_color":"C6E2EE","description":"I wonder. why?","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":15128,"created_at":"Thu Feb 12 02:11:49 +0000 2009","friends_count":1997,"verified":false,"notifications":false,"profile_background_color":"C6E2EE","contributors_enabled":false},"following":false,"created_at":"Fri Apr 01 09:16:02 +0000 2011","member_count":382,"id_str":"41944715","subscriber_count":2,"slug":"developer","id":41944715},{"uri":"\/nguyenkhanh\/ruby-on-rails","name":"ruby on rails","full_name":"@nguyenkhanh\/ruby-on-rails","description":"","mode":"public","user":{"id":23034559,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/288359465\/background.jpg","time_zone":"Hanoi","location":"Ho Chi Minh, Viet Nam","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/288359465\/background.jpg","id_str":"23034559","entities":{"url":{"urls":[{"url":"http:\/\/khanhnam.herokuapp.com","display_url":null,"indices":[0,29],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"93A644","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1525164375\/2.2_normal.jpg","utc_offset":25200,"profile_use_background_image":true,"statuses_count":363,"name":"Khanh Nam","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"nguyenkhanh","listed_count":5,"protected":false,"followers_count":207,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1525164375\/2.2_normal.jpg","profile_sidebar_border_color":"FFFFFF","description":"Currently I am a Ruby on Rails web application developer working in Vietnam. Very excited to get more involved in the Ruby community!","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"url":"http:\/\/khanhnam.herokuapp.com","is_translator":false,"favourites_count":2,"created_at":"Fri Mar 06 05:22:19 +0000 2009","friends_count":1987,"verified":false,"notifications":false,"profile_background_color":"B2DFDA","contributors_enabled":false},"following":false,"created_at":"Sat Sep 15 13:16:43 +0000 2012","member_count":19,"id_str":"77430573","subscriber_count":0,"slug":"ruby-on-rails","id":77430573},{"uri":"\/freefrancisco\/ruby","name":"ruby","full_name":"@freefrancisco\/ruby","description":"Ruby related","mode":"public","user":{"id":6045802,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Pacific Time (US & Canada)","location":"San Francisco, CA","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"6045802","entities":{"url":{"urls":[{"url":"http:\/\/www.facebook.com\/freefrancisco","display_url":null,"indices":[0,37],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/61901717\/Sara_Jean_in_Suite_200-0_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":373,"name":"Francisco Gutierrez","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"freefrancisco","listed_count":19,"protected":false,"followers_count":567,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/61901717\/Sara_Jean_in_Suite_200-0_normal.jpg","profile_sidebar_border_color":"181A1E","description":"Ruby developer, nightlife promoter, model agent, rock band manager, Objectivist, Techer, math and AI geek","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/www.facebook.com\/freefrancisco","is_translator":false,"favourites_count":3,"created_at":"Mon May 14 23:11:50 +0000 2007","friends_count":769,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Wed Dec 09 10:30:41 +0000 2009","member_count":44,"id_str":"4416212","subscriber_count":0,"slug":"ruby","id":4416212},{"uri":"\/legion\/development","name":"Development","full_name":"@legion\/development","description":"Software development","mode":"public","user":{"id":6453622,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4303288\/screenshot_03.jpg","time_zone":"Central Time (US & Canada)","location":"Texas","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/4303288\/screenshot_03.jpg","id_str":"6453622","entities":{"url":{"urls":[{"url":"http:\/\/www.economyofeffort.com","display_url":null,"indices":[0,30],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0000FF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/422924487\/area-128_normal.jpg","utc_offset":-21600,"profile_use_background_image":true,"statuses_count":4233,"name":"*Legion*","follow_request_sent":false,"profile_text_color":"000000","lang":"en","screen_name":"legion","listed_count":28,"protected":false,"followers_count":388,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/422924487\/area-128_normal.jpg","profile_sidebar_border_color":"000000","description":"Programmer. Gamer. Amateur NFL expert. Funny guy. Technophile.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"82C8FF","default_profile_image":false,"url":"http:\/\/www.economyofeffort.com","is_translator":false,"favourites_count":197,"created_at":"Wed May 30 20:59:35 +0000 2007","friends_count":226,"verified":false,"notifications":false,"profile_background_color":"9AE4E8","contributors_enabled":false},"following":false,"created_at":"Wed May 25 20:37:19 +0000 2011","member_count":107,"id_str":"46083047","subscriber_count":1,"slug":"development","id":46083047},{"uri":"\/msgbi\/math2","name":"math2","full_name":"@msgbi\/math2","description":"","mode":"public","user":{"id":53472182,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme19\/bg.gif","time_zone":"Berlin","location":"Ulm, Germany","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme19\/bg.gif","id_str":"53472182","entities":{"url":{"urls":[{"url":"http:\/\/de.linkedin.com\/pub\/markus-sagebiel\/1a\/785\/300","display_url":null,"indices":[0,53],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0099CC","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1764003155\/image1326895263_normal.png","utc_offset":3600,"profile_use_background_image":true,"statuses_count":15512,"name":"Markus Sagebiel","follow_request_sent":false,"profile_text_color":"333333","lang":"de","screen_name":"msgbi","listed_count":75,"protected":false,"followers_count":1120,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1764003155\/image1326895263_normal.png","profile_sidebar_border_color":"fff8ad","description":"Mathematics, Economics, Statistics, Risk, Econometrics, OR, Data,Dipl.-Math.oec.,Running,EnduranceSport,G+ http:\/\/bit.ly\/ybQGYz Xing http:\/\/bit.ly\/RpYB4k faceb","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"f6ffd1","default_profile_image":false,"url":"http:\/\/de.linkedin.com\/pub\/markus-sagebiel\/1a\/785\/300","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/53472182\/1347985216","favourites_count":2680,"created_at":"Fri Jul 03 19:17:27 +0000 2009","friends_count":689,"verified":false,"notifications":false,"profile_background_color":"FFF04D","contributors_enabled":false},"following":false,"created_at":"Tue Sep 04 09:21:31 +0000 2012","member_count":211,"id_str":"76761365","subscriber_count":0,"slug":"math2","id":76761365},{"uri":"\/greerjacob\/brilliant-data-wizards","name":"brilliant data wizards","full_name":"@greerjacob\/brilliant-data-wizards","description":"","mode":"public","user":{"id":12973252,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Pacific Time (US & Canada)","location":"Portland, OR","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"12973252","entities":{"url":{"urls":[{"url":"http:\/\/trendsient.com\/whoisthisguy\/","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"202426","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2356268899\/q7guwfq0st6vtfvflehk_normal.jpeg","utc_offset":-28800,"profile_use_background_image":false,"statuses_count":3314,"name":"Jacob Greer","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"greerjacob","listed_count":19,"protected":false,"followers_count":228,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2356268899\/q7guwfq0st6vtfvflehk_normal.jpeg","profile_sidebar_border_color":"000","description":"\u201cWhen a man loves cats, I am his friend and comrade, without further introduction.\u201d\n\u2014Mark Twain\n\n[code. global mindshift. soda.]","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/trendsient.com\/whoisthisguy\/","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/12973252\/1348923140","favourites_count":990,"created_at":"Sat Feb 02 07:18:35 +0000 2008","friends_count":61,"verified":false,"notifications":false,"profile_background_color":"766C8A","contributors_enabled":false},"following":false,"created_at":"Sun Jul 22 17:10:38 +0000 2012","member_count":321,"id_str":"74289046","subscriber_count":0,"slug":"brilliant-data-wizards","id":74289046},{"uri":"\/alsemyonov\/ruby","name":"Ruby","full_name":"@alsemyonov\/ruby","description":"????????????-?????????","mode":"public","user":{"id":14215161,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif","time_zone":"Moscow","location":"59.923569,30.345172","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme6\/bg.gif","id_str":"14215161","entities":{"url":{"urls":[{"url":"http:\/\/al.semyonov.us\/","display_url":null,"indices":[0,22],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"FF3300","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2669793445\/12c9a486661e8437350cf5c56b1a1eb7_normal.jpeg","utc_offset":14400,"profile_use_background_image":true,"statuses_count":1416,"name":"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0421\u0435\u043c\u0451\u043d\u043e\u0432","follow_request_sent":false,"profile_text_color":"333333","lang":"ru","screen_name":"alsemyonov","listed_count":11,"protected":false,"followers_count":289,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2669793445\/12c9a486661e8437350cf5c56b1a1eb7_normal.jpeg","profile_sidebar_border_color":"86A4A6","description":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0432\u0435\u0431\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"A0C5C7","default_profile_image":false,"url":"http:\/\/al.semyonov.us\/","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14215161\/1347982619","favourites_count":106,"created_at":"Tue Mar 25 12:58:46 +0000 2008","friends_count":608,"verified":false,"notifications":false,"profile_background_color":"709397","contributors_enabled":false},"following":false,"created_at":"Sun Mar 21 15:29:57 +0000 2010","member_count":53,"id_str":"9180479","subscriber_count":2,"slug":"ruby","id":9180479},{"uri":"\/gogaruco\/speakers","name":"speakers","full_name":"@gogaruco\/speakers","description":"","mode":"public","user":{"id":19278778,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/150437177\/wallpaper_ipad_clouds.jpg","time_zone":"Alaska","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/150437177\/wallpaper_ipad_clouds.jpg","id_str":"19278778","entities":{"url":{"urls":[{"url":"http:\/\/gogaruco.com\/","display_url":null,"indices":[0,20],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"9D582E","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2305637396\/mbhyx1x0azuf6c4p2yt1_normal.png","utc_offset":-32400,"profile_use_background_image":true,"statuses_count":591,"name":"Golden Gate RubyConf","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"gogaruco","listed_count":102,"protected":false,"followers_count":1126,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2305637396\/mbhyx1x0azuf6c4p2yt1_normal.png","profile_sidebar_border_color":"D9B17E","description":"The Annual Golden Gate Ruby Conference","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"EADEAA","default_profile_image":false,"url":"http:\/\/gogaruco.com\/","is_translator":false,"favourites_count":3,"created_at":"Wed Jan 21 06:25:33 +0000 2009","friends_count":478,"verified":false,"notifications":false,"profile_background_color":"8B542B","contributors_enabled":false},"following":false,"created_at":"Sat Jul 17 16:13:04 +0000 2010","member_count":20,"id_str":"17037309","subscriber_count":3,"slug":"speakers","id":17037309},{"uri":"\/absoludicrous\/friends","name":"Friends","full_name":"@absoludicrous\/friends","description":"","mode":"public","user":{"id":16196361,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","time_zone":"Pacific Time (US & Canada)","location":"Oakland","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme18\/bg.gif","id_str":"16196361","entities":{"description":{"urls":[]}},"profile_link_color":"038543","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2241565982\/orangesmile_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":147,"name":"Evan Willey","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"absoludicrous","listed_count":2,"protected":false,"followers_count":66,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2241565982\/orangesmile_normal.jpg","profile_sidebar_border_color":"EEEEEE","description":"Agile guy @ Salesforce.com","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":3,"created_at":"Tue Sep 09 02:19:45 +0000 2008","friends_count":185,"verified":false,"notifications":false,"profile_background_color":"ACDED6","contributors_enabled":false},"following":false,"created_at":"Sun Jun 03 16:33:52 +0000 2012","member_count":19,"id_str":"71655172","subscriber_count":0,"slug":"friends","id":71655172},{"uri":"\/rossfuhrman\/main","name":"main","full_name":"@rossfuhrman\/main","description":"","mode":"public","user":{"id":87370098,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Mountain Time (US & Canada)","location":"Kansas, USA","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"87370098","entities":{"url":{"urls":[{"url":"http:\/\/thetalkingwalnut.com","display_url":null,"indices":[0,27],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2570652779\/k5h4oxvgur0iwg1xls4f_normal.jpeg","utc_offset":-25200,"profile_use_background_image":true,"statuses_count":476,"name":"Ross Fuhrman","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"rossfuhrman","listed_count":5,"protected":false,"followers_count":123,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2570652779\/k5h4oxvgur0iwg1xls4f_normal.jpeg","profile_sidebar_border_color":"181A1E","description":"Official Twitter account of Ross Fuhrman. Developer of software.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/thetalkingwalnut.com","is_translator":false,"favourites_count":189,"created_at":"Wed Nov 04 05:16:51 +0000 2009","friends_count":261,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Mon Aug 20 17:53:31 +0000 2012","member_count":146,"id_str":"75933278","subscriber_count":0,"slug":"main","id":75933278},{"uri":"\/_wasim\/following-2012-08-17","name":"following-2012-08-17","full_name":"@_wasim\/following-2012-08-17","description":"","mode":"public","user":{"id":169265024,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Central Time (US & Canada)","location":"Lahore","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"169265024","entities":{"url":{"urls":[{"url":"http:\/\/k-not.com","display_url":null,"indices":[0,16],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1550453164\/IMG_5568_normal.jpg","utc_offset":-21600,"profile_use_background_image":true,"statuses_count":122,"name":"Wasim Akram","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"_wasim","listed_count":0,"protected":false,"followers_count":27,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1550453164\/IMG_5568_normal.jpg","profile_sidebar_border_color":"181A1E","description":"Ruby on Rails Developer and Front End Engineer","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/k-not.com","is_translator":false,"favourites_count":2,"created_at":"Wed Jul 21 23:08:39 +0000 2010","friends_count":78,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Fri Aug 17 11:57:39 +0000 2012","member_count":69,"id_str":"75757614","subscriber_count":0,"slug":"following-2012-08-17","id":75757614},{"uri":"\/SoldierCoder\/ror","name":"RoR","full_name":"@SoldierCoder\/ror","description":"","mode":"public","user":{"id":26954221,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/508572084\/jabberjay.jpg","time_zone":"Eastern Time (US & Canada)","location":"","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/508572084\/jabberjay.jpg","id_str":"26954221","entities":{"url":{"urls":[{"url":"http:\/\/wefollow.com\/soldiercoder","display_url":null,"indices":[0,32],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0099B9","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2407494808\/xnh7l242u0stbib1x50r_normal.jpeg","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":2047,"name":"Ed Drain","follow_request_sent":false,"profile_text_color":"3C3940","lang":"en","screen_name":"SoldierCoder","listed_count":14,"protected":false,"followers_count":427,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2407494808\/xnh7l242u0stbib1x50r_normal.jpeg","profile_sidebar_border_color":"5ED4DC","description":"If you would fight human-trafficking, child-trafficking or blatant misogyny, check out http:\/\/bit.ly\/bestsara & strike a blow for Sara Kruzan. \r\n","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"95E8EC","default_profile_image":false,"url":"http:\/\/wefollow.com\/soldiercoder","is_translator":false,"favourites_count":12,"created_at":"Fri Mar 27 05:01:11 +0000 2009","friends_count":919,"verified":false,"notifications":false,"profile_background_color":"0099B9","contributors_enabled":false},"following":false,"created_at":"Fri Aug 10 02:57:41 +0000 2012","member_count":33,"id_str":"75323033","subscriber_count":0,"slug":"ror","id":75323033},{"uri":"\/tayebM\/ruby-on-rails","name":"Ruby On rails","full_name":"@tayebM\/ruby-on-rails","description":"Pour mes contacts qui travaillent sur Ruby et Rails","mode":"public","user":{"id":123875891,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Athens","location":"France","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"123875891","entities":{"url":{"urls":[{"url":"http:\/\/tayeb83.github.com\/dtmdeblog\/","display_url":null,"indices":[0,36],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":false,"default_profile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2369723752\/ok9ix6z3rfmn2m7k02d2_normal.jpeg","utc_offset":7200,"profile_use_background_image":true,"statuses_count":179,"name":"\u0637\u064a\u0628 \u0645\u0631\u0627\u0628\u0637\u064a","follow_request_sent":false,"profile_text_color":"333333","lang":"fr","screen_name":"tayebM","listed_count":0,"protected":false,"followers_count":48,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2369723752\/ok9ix6z3rfmn2m7k02d2_normal.jpeg","profile_sidebar_border_color":"C0DEED","description":"","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/tayeb83.github.com\/dtmdeblog\/","is_translator":false,"favourites_count":5,"created_at":"Wed Mar 17 13:51:17 +0000 2010","friends_count":501,"verified":false,"notifications":false,"profile_background_color":"C0DEED","contributors_enabled":false},"following":false,"created_at":"Mon Jul 09 08:27:12 +0000 2012","member_count":97,"id_str":"73566072","subscriber_count":0,"slug":"ruby-on-rails","id":73566072},{"uri":"\/eurucamp\/speakers-2012","name":"speakers 2012","full_name":"@eurucamp\/speakers-2012","description":"","mode":"public","user":{"id":263762253,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/546159154\/tree.png","time_zone":"Berlin","location":"Berlin, Germany","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/546159154\/tree.png","id_str":"263762253","entities":{"url":{"urls":[{"url":"http:\/\/2012.eurucamp.org","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"C2124F","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2388566722\/37gny66xyjkuazqg0a03_normal.png","utc_offset":3600,"profile_use_background_image":true,"statuses_count":1286,"name":"eurucamp 2012","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"eurucamp","listed_count":28,"protected":false,"followers_count":425,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2388566722\/37gny66xyjkuazqg0a03_normal.png","profile_sidebar_border_color":"DBE9ED","description":"european ruby camp | summer edition.\r\nTaking place on August 17-19 on Berlin's largest lake, the M\u00fcggelsee.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"E6F6F9","default_profile_image":false,"url":"http:\/\/2012.eurucamp.org","is_translator":false,"favourites_count":31,"created_at":"Thu Mar 10 17:58:15 +0000 2011","friends_count":472,"verified":false,"notifications":false,"profile_background_color":"C2124F","contributors_enabled":false},"following":false,"created_at":"Fri Jul 13 14:25:53 +0000 2012","member_count":19,"id_str":"73797247","subscriber_count":1,"slug":"speakers-2012","id":73797247},{"uri":"\/Citizinvestor\/disrupting-government","name":"Disrupting Government","full_name":"@Citizinvestor\/disrupting-government","description":"People we respect who are disrupting government through technology.","mode":"public","user":{"id":554730384,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/568704470\/l4hmvqr7hockav5qan7v.png","time_zone":"Eastern Time (US & Canada)","location":"Boston, MA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/568704470\/l4hmvqr7hockav5qan7v.png","id_str":"554730384","entities":{"url":{"urls":[{"url":"http:\/\/citizinvestor.com","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"1AA6CF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2257696371\/Untitled-2_normal.png","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":230,"name":"Citizinvestor","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"Citizinvestor","listed_count":25,"protected":false,"followers_count":895,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2257696371\/Untitled-2_normal.png","profile_sidebar_border_color":"C0DEED","description":"A crowdfunding platform for civic projects, now launched in Boston! Help put tech in the hands of blind Boston students here: http:\/\/bit.ly\/BlindTech","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/citizinvestor.com","is_translator":false,"favourites_count":8,"created_at":"Sun Apr 15 21:21:16 +0000 2012","friends_count":1000,"verified":false,"notifications":false,"profile_background_color":"FFFFFF","contributors_enabled":false},"following":false,"created_at":"Thu Jun 14 14:28:06 +0000 2012","member_count":143,"id_str":"72266637","subscriber_count":1,"slug":"disrupting-government","id":72266637},{"uri":"\/katgironpe\/developers","name":"developers","full_name":"@katgironpe\/developers","description":"Developers (often those who write in English) ","mode":"public","user":{"id":552680871,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","time_zone":"Beijing","location":"Baguio City","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","id_str":"552680871","entities":{"url":{"urls":[{"url":"http:\/\/www.blog.bridgeutopiaweb.com","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"009999","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","utc_offset":28800,"profile_use_background_image":true,"statuses_count":468,"name":"Katherine Pe","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"katgironpe","listed_count":6,"protected":false,"followers_count":121,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","profile_sidebar_border_color":"eeeeee","description":"Developer (web & mobile apps). http:\/\/www.katherinepe.com\/ ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"url":"http:\/\/www.blog.bridgeutopiaweb.com","is_translator":false,"favourites_count":122,"created_at":"Fri Apr 13 10:47:31 +0000 2012","friends_count":135,"verified":false,"notifications":false,"profile_background_color":"131516","contributors_enabled":false},"following":false,"created_at":"Tue May 15 17:08:44 +0000 2012","member_count":44,"id_str":"70615436","subscriber_count":2,"slug":"developers","id":70615436},{"uri":"\/katgironpe\/ruby","name":"ruby","full_name":"@katgironpe\/ruby","description":"Ruby developers all over the world","mode":"public","user":{"id":552680871,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","time_zone":"Beijing","location":"Baguio City","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","id_str":"552680871","entities":{"url":{"urls":[{"url":"http:\/\/www.blog.bridgeutopiaweb.com","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"009999","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","utc_offset":28800,"profile_use_background_image":true,"statuses_count":468,"name":"Katherine Pe","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"katgironpe","listed_count":6,"protected":false,"followers_count":121,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","profile_sidebar_border_color":"eeeeee","description":"Developer (web & mobile apps). http:\/\/www.katherinepe.com\/ ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"url":"http:\/\/www.blog.bridgeutopiaweb.com","is_translator":false,"favourites_count":122,"created_at":"Fri Apr 13 10:47:31 +0000 2012","friends_count":135,"verified":false,"notifications":false,"profile_background_color":"131516","contributors_enabled":false},"following":false,"created_at":"Tue May 15 13:50:22 +0000 2012","member_count":27,"id_str":"70604695","subscriber_count":1,"slug":"ruby","id":70604695},{"uri":"\/ksornberger\/developers","name":"Developers","full_name":"@ksornberger\/developers","description":"","mode":"public","user":{"id":17368301,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Eastern Time (US & Canada)","location":"Oakville, Ontario","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"17368301","entities":{"url":{"urls":[{"url":"http:\/\/www.ksornberger.com","display_url":null,"indices":[0,26],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":false,"default_profile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/774928074\/kevin_normal.jpg","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":1531,"name":"Kevin Sornberger","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"ksornberger","listed_count":13,"protected":false,"followers_count":277,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/774928074\/kevin_normal.jpg","profile_sidebar_border_color":"C0DEED","description":"Co-Founder and Developer for @DevBBQ - www.devbbq.com | Co-Founder @UserClues - www.userclues.com","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/www.ksornberger.com","is_translator":false,"favourites_count":84,"created_at":"Thu Nov 13 16:36:58 +0000 2008","friends_count":349,"verified":false,"notifications":false,"profile_background_color":"C0DEED","contributors_enabled":false},"following":false,"created_at":"Thu Mar 10 04:45:35 +0000 2011","member_count":5,"id_str":"40091270","subscriber_count":0,"slug":"developers","id":40091270},{"uri":"\/yuletide\/codeforamerica","name":"CodeForAmerica","full_name":"@yuletide\/codeforamerica","description":"","mode":"public","user":{"id":12329722,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/134104376\/x16e3c06a315f173482318b7588b1a82.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco & Philadelphia","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/134104376\/x16e3c06a315f173482318b7588b1a82.png","id_str":"12329722","entities":{"url":{"urls":[{"url":"https:\/\/www.vizify.com\/yuletide","display_url":null,"indices":[0,31],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"50857F","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1748360672\/381894_619091932685_4402402_33003257_1063084351_n_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":5060,"name":"Alex Yule","follow_request_sent":false,"profile_text_color":"1C1F23","lang":"en","screen_name":"yuletide","listed_count":36,"protected":false,"followers_count":826,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1748360672\/381894_619091932685_4402402_33003257_1063084351_n_normal.jpg","profile_sidebar_border_color":"803C22","description":"I love building meaningful things for the web. Lifetime geographer, coder, metalhead, writer, enviro & web dood. @codeforamerica fellow 2012. @textizen dev","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"EDEACB","default_profile_image":false,"url":"https:\/\/www.vizify.com\/yuletide","is_translator":false,"favourites_count":1182,"created_at":"Wed Jan 16 19:37:35 +0000 2008","friends_count":379,"verified":false,"notifications":false,"profile_background_color":"07090B","contributors_enabled":false},"following":false,"created_at":"Thu Nov 17 22:44:44 +0000 2011","member_count":40,"id_str":"59192144","subscriber_count":0,"slug":"codeforamerica","id":59192144},{"uri":"\/IntellectAssets\/entrepreneurs","name":"Entrepreneurs","full_name":"@IntellectAssets\/entrepreneurs","description":"Entrepreneurs & StartUp Guys","mode":"public","user":{"id":69552540,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/675045909\/9bc0778d5883eefa3f02a82025b0fc5c.jpeg","time_zone":"New Delhi","location":"New Delhi, India","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/675045909\/9bc0778d5883eefa3f02a82025b0fc5c.jpeg","id_str":"69552540","entities":{"url":{"urls":[{"url":"http:\/\/www.StoreMonk.com","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"000000","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2673977440\/c438321c0d6e5fc410b603778fff95c3_normal.png","utc_offset":19800,"profile_use_background_image":true,"statuses_count":10536,"name":"Deepak Sharma","follow_request_sent":false,"profile_text_color":"400000","lang":"en","screen_name":"IntellectAssets","listed_count":30,"protected":false,"followers_count":2665,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2673977440\/c438321c0d6e5fc410b603778fff95c3_normal.png","profile_sidebar_border_color":"FFFFFF","description":"Challenging the Status Quo. Founder of @StoreMonk & Ninja Extraordinaire at @PeerHack. Fellow at @startlead. Foodie & Adventurer. Redbull Drinker & Coffee Nut. ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"E6F3FA","default_profile_image":false,"url":"http:\/\/www.StoreMonk.com","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/69552540\/1348432221","favourites_count":248,"created_at":"Fri Aug 28 10:01:42 +0000 2009","friends_count":287,"verified":false,"notifications":false,"profile_background_color":"B8B8B8","contributors_enabled":false},"following":false,"created_at":"Mon Sep 27 17:58:42 +0000 2010","member_count":500,"id_str":"22785828","subscriber_count":2,"slug":"entrepreneurs","id":22785828}], "next_cursor":1401037770457540712, "previous_cursor":0, "next_cursor_str":"1401037770457540712", "previous_cursor_str":"0"}
1
+ {"lists":[{"uri":"\/DavidBahia\/developer","name":"developer","full_name":"@DavidBahia\/developer","description":"","mode":"public","user":{"id":20647833,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","time_zone":"London","location":"Rochester, Medway Towns, Kent","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","id_str":"20647833","entities":{"description":{"urls":[]}},"profile_link_color":"1F98C7","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","utc_offset":0,"profile_use_background_image":true,"statuses_count":4920,"name":"David Bahia","follow_request_sent":false,"profile_text_color":"663B12","lang":"en","screen_name":"DavidBahia","listed_count":31,"protected":false,"followers_count":953,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","profile_sidebar_border_color":"C6E2EE","description":"I wonder. why?","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":15128,"created_at":"Thu Feb 12 02:11:49 +0000 2009","friends_count":1997,"verified":false,"notifications":false,"profile_background_color":"C6E2EE","contributors_enabled":false},"following":false,"created_at":"Fri Apr 01 09:16:02 +0000 2011","member_count":382,"id_str":"41944715","subscriber_count":2,"slug":"developer","id":41944715}], "next_cursor":1401037770457540712, "previous_cursor":0, "next_cursor_str":"1401037770457540712", "previous_cursor_str":"0"}
@@ -1 +1 @@
1
- {"lists":[{"uri":"\/DavidBahia\/developer","name":"developer","full_name":"@DavidBahia\/developer","description":"","mode":"public","user":{"id":20647833,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","time_zone":"London","location":"Rochester, Medway Towns, Kent","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","id_str":"20647833","entities":{"description":{"urls":[]}},"profile_link_color":"1F98C7","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","utc_offset":0,"profile_use_background_image":true,"statuses_count":4920,"name":"David Bahia","follow_request_sent":false,"profile_text_color":"663B12","lang":"en","screen_name":"DavidBahia","listed_count":31,"protected":false,"followers_count":953,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","profile_sidebar_border_color":"C6E2EE","description":"I wonder. why?","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":15128,"created_at":"Thu Feb 12 02:11:49 +0000 2009","friends_count":1997,"verified":false,"notifications":false,"profile_background_color":"C6E2EE","contributors_enabled":false},"following":false,"created_at":"Fri Apr 01 09:16:02 +0000 2011","member_count":382,"id_str":"41944715","subscriber_count":2,"slug":"developer","id":41944715},{"uri":"\/nguyenkhanh\/ruby-on-rails","name":"ruby on rails","full_name":"@nguyenkhanh\/ruby-on-rails","description":"","mode":"public","user":{"id":23034559,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/288359465\/background.jpg","time_zone":"Hanoi","location":"Ho Chi Minh, Viet Nam","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/288359465\/background.jpg","id_str":"23034559","entities":{"url":{"urls":[{"url":"http:\/\/khanhnam.herokuapp.com","display_url":null,"indices":[0,29],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"93A644","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1525164375\/2.2_normal.jpg","utc_offset":25200,"profile_use_background_image":true,"statuses_count":363,"name":"Khanh Nam","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"nguyenkhanh","listed_count":5,"protected":false,"followers_count":207,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1525164375\/2.2_normal.jpg","profile_sidebar_border_color":"FFFFFF","description":"Currently I am a Ruby on Rails web application developer working in Vietnam. Very excited to get more involved in the Ruby community!","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"FFFFFF","default_profile_image":false,"url":"http:\/\/khanhnam.herokuapp.com","is_translator":false,"favourites_count":2,"created_at":"Fri Mar 06 05:22:19 +0000 2009","friends_count":1987,"verified":false,"notifications":false,"profile_background_color":"B2DFDA","contributors_enabled":false},"following":false,"created_at":"Sat Sep 15 13:16:43 +0000 2012","member_count":19,"id_str":"77430573","subscriber_count":0,"slug":"ruby-on-rails","id":77430573},{"uri":"\/freefrancisco\/ruby","name":"ruby","full_name":"@freefrancisco\/ruby","description":"Ruby related","mode":"public","user":{"id":6045802,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Pacific Time (US & Canada)","location":"San Francisco, CA","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"6045802","entities":{"url":{"urls":[{"url":"http:\/\/www.facebook.com\/freefrancisco","display_url":null,"indices":[0,37],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/61901717\/Sara_Jean_in_Suite_200-0_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":373,"name":"Francisco Gutierrez","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"freefrancisco","listed_count":19,"protected":false,"followers_count":567,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/61901717\/Sara_Jean_in_Suite_200-0_normal.jpg","profile_sidebar_border_color":"181A1E","description":"Ruby developer, nightlife promoter, model agent, rock band manager, Objectivist, Techer, math and AI geek","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/www.facebook.com\/freefrancisco","is_translator":false,"favourites_count":3,"created_at":"Mon May 14 23:11:50 +0000 2007","friends_count":769,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Wed Dec 09 10:30:41 +0000 2009","member_count":44,"id_str":"4416212","subscriber_count":0,"slug":"ruby","id":4416212},{"uri":"\/legion\/development","name":"Development","full_name":"@legion\/development","description":"Software development","mode":"public","user":{"id":6453622,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/4303288\/screenshot_03.jpg","time_zone":"Central Time (US & Canada)","location":"Texas","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/4303288\/screenshot_03.jpg","id_str":"6453622","entities":{"url":{"urls":[{"url":"http:\/\/www.economyofeffort.com","display_url":null,"indices":[0,30],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0000FF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/422924487\/area-128_normal.jpg","utc_offset":-21600,"profile_use_background_image":true,"statuses_count":4233,"name":"*Legion*","follow_request_sent":false,"profile_text_color":"000000","lang":"en","screen_name":"legion","listed_count":28,"protected":false,"followers_count":388,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/422924487\/area-128_normal.jpg","profile_sidebar_border_color":"000000","description":"Programmer. Gamer. Amateur NFL expert. Funny guy. Technophile.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"82C8FF","default_profile_image":false,"url":"http:\/\/www.economyofeffort.com","is_translator":false,"favourites_count":197,"created_at":"Wed May 30 20:59:35 +0000 2007","friends_count":226,"verified":false,"notifications":false,"profile_background_color":"9AE4E8","contributors_enabled":false},"following":false,"created_at":"Wed May 25 20:37:19 +0000 2011","member_count":107,"id_str":"46083047","subscriber_count":1,"slug":"development","id":46083047},{"uri":"\/msgbi\/math2","name":"math2","full_name":"@msgbi\/math2","description":"","mode":"public","user":{"id":53472182,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme19\/bg.gif","time_zone":"Berlin","location":"Ulm, Germany","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme19\/bg.gif","id_str":"53472182","entities":{"url":{"urls":[{"url":"http:\/\/de.linkedin.com\/pub\/markus-sagebiel\/1a\/785\/300","display_url":null,"indices":[0,53],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0099CC","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1764003155\/image1326895263_normal.png","utc_offset":3600,"profile_use_background_image":true,"statuses_count":15512,"name":"Markus Sagebiel","follow_request_sent":false,"profile_text_color":"333333","lang":"de","screen_name":"msgbi","listed_count":75,"protected":false,"followers_count":1120,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1764003155\/image1326895263_normal.png","profile_sidebar_border_color":"fff8ad","description":"Mathematics, Economics, Statistics, Risk, Econometrics, OR, Data,Dipl.-Math.oec.,Running,EnduranceSport,G+ http:\/\/bit.ly\/ybQGYz Xing http:\/\/bit.ly\/RpYB4k faceb","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"f6ffd1","default_profile_image":false,"url":"http:\/\/de.linkedin.com\/pub\/markus-sagebiel\/1a\/785\/300","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/53472182\/1347985216","favourites_count":2680,"created_at":"Fri Jul 03 19:17:27 +0000 2009","friends_count":689,"verified":false,"notifications":false,"profile_background_color":"FFF04D","contributors_enabled":false},"following":false,"created_at":"Tue Sep 04 09:21:31 +0000 2012","member_count":211,"id_str":"76761365","subscriber_count":0,"slug":"math2","id":76761365},{"uri":"\/greerjacob\/brilliant-data-wizards","name":"brilliant data wizards","full_name":"@greerjacob\/brilliant-data-wizards","description":"","mode":"public","user":{"id":12973252,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Pacific Time (US & Canada)","location":"Portland, OR","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"12973252","entities":{"url":{"urls":[{"url":"http:\/\/trendsient.com\/whoisthisguy\/","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"202426","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2356268899\/q7guwfq0st6vtfvflehk_normal.jpeg","utc_offset":-28800,"profile_use_background_image":false,"statuses_count":3314,"name":"Jacob Greer","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"greerjacob","listed_count":19,"protected":false,"followers_count":228,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2356268899\/q7guwfq0st6vtfvflehk_normal.jpeg","profile_sidebar_border_color":"000","description":"\u201cWhen a man loves cats, I am his friend and comrade, without further introduction.\u201d\n\u2014Mark Twain\n\n[code. global mindshift. soda.]","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/trendsient.com\/whoisthisguy\/","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/12973252\/1348923140","favourites_count":990,"created_at":"Sat Feb 02 07:18:35 +0000 2008","friends_count":61,"verified":false,"notifications":false,"profile_background_color":"766C8A","contributors_enabled":false},"following":false,"created_at":"Sun Jul 22 17:10:38 +0000 2012","member_count":321,"id_str":"74289046","subscriber_count":0,"slug":"brilliant-data-wizards","id":74289046},{"uri":"\/alsemyonov\/ruby","name":"Ruby","full_name":"@alsemyonov\/ruby","description":"????????????-?????????","mode":"public","user":{"id":14215161,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme6\/bg.gif","time_zone":"Moscow","location":"59.923569,30.345172","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme6\/bg.gif","id_str":"14215161","entities":{"url":{"urls":[{"url":"http:\/\/al.semyonov.us\/","display_url":null,"indices":[0,22],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"FF3300","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2669793445\/12c9a486661e8437350cf5c56b1a1eb7_normal.jpeg","utc_offset":14400,"profile_use_background_image":true,"statuses_count":1416,"name":"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0421\u0435\u043c\u0451\u043d\u043e\u0432","follow_request_sent":false,"profile_text_color":"333333","lang":"ru","screen_name":"alsemyonov","listed_count":11,"protected":false,"followers_count":289,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2669793445\/12c9a486661e8437350cf5c56b1a1eb7_normal.jpeg","profile_sidebar_border_color":"86A4A6","description":"\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u0432\u0435\u0431\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"A0C5C7","default_profile_image":false,"url":"http:\/\/al.semyonov.us\/","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14215161\/1347982619","favourites_count":106,"created_at":"Tue Mar 25 12:58:46 +0000 2008","friends_count":608,"verified":false,"notifications":false,"profile_background_color":"709397","contributors_enabled":false},"following":false,"created_at":"Sun Mar 21 15:29:57 +0000 2010","member_count":53,"id_str":"9180479","subscriber_count":2,"slug":"ruby","id":9180479},{"uri":"\/gogaruco\/speakers","name":"speakers","full_name":"@gogaruco\/speakers","description":"","mode":"public","user":{"id":19278778,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/150437177\/wallpaper_ipad_clouds.jpg","time_zone":"Alaska","location":"San Francisco","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/150437177\/wallpaper_ipad_clouds.jpg","id_str":"19278778","entities":{"url":{"urls":[{"url":"http:\/\/gogaruco.com\/","display_url":null,"indices":[0,20],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"9D582E","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2305637396\/mbhyx1x0azuf6c4p2yt1_normal.png","utc_offset":-32400,"profile_use_background_image":true,"statuses_count":591,"name":"Golden Gate RubyConf","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"gogaruco","listed_count":102,"protected":false,"followers_count":1126,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2305637396\/mbhyx1x0azuf6c4p2yt1_normal.png","profile_sidebar_border_color":"D9B17E","description":"The Annual Golden Gate Ruby Conference","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"EADEAA","default_profile_image":false,"url":"http:\/\/gogaruco.com\/","is_translator":false,"favourites_count":3,"created_at":"Wed Jan 21 06:25:33 +0000 2009","friends_count":478,"verified":false,"notifications":false,"profile_background_color":"8B542B","contributors_enabled":false},"following":false,"created_at":"Sat Jul 17 16:13:04 +0000 2010","member_count":20,"id_str":"17037309","subscriber_count":3,"slug":"speakers","id":17037309},{"uri":"\/absoludicrous\/friends","name":"Friends","full_name":"@absoludicrous\/friends","description":"","mode":"public","user":{"id":16196361,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme18\/bg.gif","time_zone":"Pacific Time (US & Canada)","location":"Oakland","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme18\/bg.gif","id_str":"16196361","entities":{"description":{"urls":[]}},"profile_link_color":"038543","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2241565982\/orangesmile_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":147,"name":"Evan Willey","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"absoludicrous","listed_count":2,"protected":false,"followers_count":66,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2241565982\/orangesmile_normal.jpg","profile_sidebar_border_color":"EEEEEE","description":"Agile guy @ Salesforce.com","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":3,"created_at":"Tue Sep 09 02:19:45 +0000 2008","friends_count":185,"verified":false,"notifications":false,"profile_background_color":"ACDED6","contributors_enabled":false},"following":false,"created_at":"Sun Jun 03 16:33:52 +0000 2012","member_count":19,"id_str":"71655172","subscriber_count":0,"slug":"friends","id":71655172},{"uri":"\/rossfuhrman\/main","name":"main","full_name":"@rossfuhrman\/main","description":"","mode":"public","user":{"id":87370098,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Mountain Time (US & Canada)","location":"Kansas, USA","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"87370098","entities":{"url":{"urls":[{"url":"http:\/\/thetalkingwalnut.com","display_url":null,"indices":[0,27],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2570652779\/k5h4oxvgur0iwg1xls4f_normal.jpeg","utc_offset":-25200,"profile_use_background_image":true,"statuses_count":476,"name":"Ross Fuhrman","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"rossfuhrman","listed_count":5,"protected":false,"followers_count":123,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2570652779\/k5h4oxvgur0iwg1xls4f_normal.jpeg","profile_sidebar_border_color":"181A1E","description":"Official Twitter account of Ross Fuhrman. Developer of software.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/thetalkingwalnut.com","is_translator":false,"favourites_count":189,"created_at":"Wed Nov 04 05:16:51 +0000 2009","friends_count":261,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Mon Aug 20 17:53:31 +0000 2012","member_count":146,"id_str":"75933278","subscriber_count":0,"slug":"main","id":75933278},{"uri":"\/_wasim\/following-2012-08-17","name":"following-2012-08-17","full_name":"@_wasim\/following-2012-08-17","description":"","mode":"public","user":{"id":169265024,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme9\/bg.gif","time_zone":"Central Time (US & Canada)","location":"Lahore","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme9\/bg.gif","id_str":"169265024","entities":{"url":{"urls":[{"url":"http:\/\/k-not.com","display_url":null,"indices":[0,16],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"2FC2EF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1550453164\/IMG_5568_normal.jpg","utc_offset":-21600,"profile_use_background_image":true,"statuses_count":122,"name":"Wasim Akram","follow_request_sent":false,"profile_text_color":"666666","lang":"en","screen_name":"_wasim","listed_count":0,"protected":false,"followers_count":27,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1550453164\/IMG_5568_normal.jpg","profile_sidebar_border_color":"181A1E","description":"Ruby on Rails Developer and Front End Engineer","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"252429","default_profile_image":false,"url":"http:\/\/k-not.com","is_translator":false,"favourites_count":2,"created_at":"Wed Jul 21 23:08:39 +0000 2010","friends_count":78,"verified":false,"notifications":false,"profile_background_color":"1A1B1F","contributors_enabled":false},"following":false,"created_at":"Fri Aug 17 11:57:39 +0000 2012","member_count":69,"id_str":"75757614","subscriber_count":0,"slug":"following-2012-08-17","id":75757614},{"uri":"\/SoldierCoder\/ror","name":"RoR","full_name":"@SoldierCoder\/ror","description":"","mode":"public","user":{"id":26954221,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/508572084\/jabberjay.jpg","time_zone":"Eastern Time (US & Canada)","location":"","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/508572084\/jabberjay.jpg","id_str":"26954221","entities":{"url":{"urls":[{"url":"http:\/\/wefollow.com\/soldiercoder","display_url":null,"indices":[0,32],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0099B9","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2407494808\/xnh7l242u0stbib1x50r_normal.jpeg","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":2047,"name":"Ed Drain","follow_request_sent":false,"profile_text_color":"3C3940","lang":"en","screen_name":"SoldierCoder","listed_count":14,"protected":false,"followers_count":427,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2407494808\/xnh7l242u0stbib1x50r_normal.jpeg","profile_sidebar_border_color":"5ED4DC","description":"If you would fight human-trafficking, child-trafficking or blatant misogyny, check out http:\/\/bit.ly\/bestsara & strike a blow for Sara Kruzan. \r\n","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"95E8EC","default_profile_image":false,"url":"http:\/\/wefollow.com\/soldiercoder","is_translator":false,"favourites_count":12,"created_at":"Fri Mar 27 05:01:11 +0000 2009","friends_count":919,"verified":false,"notifications":false,"profile_background_color":"0099B9","contributors_enabled":false},"following":false,"created_at":"Fri Aug 10 02:57:41 +0000 2012","member_count":33,"id_str":"75323033","subscriber_count":0,"slug":"ror","id":75323033},{"uri":"\/tayebM\/ruby-on-rails","name":"Ruby On rails","full_name":"@tayebM\/ruby-on-rails","description":"Pour mes contacts qui travaillent sur Ruby et Rails","mode":"public","user":{"id":123875891,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Athens","location":"France","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"123875891","entities":{"url":{"urls":[{"url":"http:\/\/tayeb83.github.com\/dtmdeblog\/","display_url":null,"indices":[0,36],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":false,"default_profile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2369723752\/ok9ix6z3rfmn2m7k02d2_normal.jpeg","utc_offset":7200,"profile_use_background_image":true,"statuses_count":179,"name":"\u0637\u064a\u0628 \u0645\u0631\u0627\u0628\u0637\u064a","follow_request_sent":false,"profile_text_color":"333333","lang":"fr","screen_name":"tayebM","listed_count":0,"protected":false,"followers_count":48,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2369723752\/ok9ix6z3rfmn2m7k02d2_normal.jpeg","profile_sidebar_border_color":"C0DEED","description":"","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/tayeb83.github.com\/dtmdeblog\/","is_translator":false,"favourites_count":5,"created_at":"Wed Mar 17 13:51:17 +0000 2010","friends_count":501,"verified":false,"notifications":false,"profile_background_color":"C0DEED","contributors_enabled":false},"following":false,"created_at":"Mon Jul 09 08:27:12 +0000 2012","member_count":97,"id_str":"73566072","subscriber_count":0,"slug":"ruby-on-rails","id":73566072},{"uri":"\/eurucamp\/speakers-2012","name":"speakers 2012","full_name":"@eurucamp\/speakers-2012","description":"","mode":"public","user":{"id":263762253,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/546159154\/tree.png","time_zone":"Berlin","location":"Berlin, Germany","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/546159154\/tree.png","id_str":"263762253","entities":{"url":{"urls":[{"url":"http:\/\/2012.eurucamp.org","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"C2124F","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2388566722\/37gny66xyjkuazqg0a03_normal.png","utc_offset":3600,"profile_use_background_image":true,"statuses_count":1286,"name":"eurucamp 2012","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"eurucamp","listed_count":28,"protected":false,"followers_count":425,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2388566722\/37gny66xyjkuazqg0a03_normal.png","profile_sidebar_border_color":"DBE9ED","description":"european ruby camp | summer edition.\r\nTaking place on August 17-19 on Berlin's largest lake, the M\u00fcggelsee.","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"E6F6F9","default_profile_image":false,"url":"http:\/\/2012.eurucamp.org","is_translator":false,"favourites_count":31,"created_at":"Thu Mar 10 17:58:15 +0000 2011","friends_count":472,"verified":false,"notifications":false,"profile_background_color":"C2124F","contributors_enabled":false},"following":false,"created_at":"Fri Jul 13 14:25:53 +0000 2012","member_count":19,"id_str":"73797247","subscriber_count":1,"slug":"speakers-2012","id":73797247},{"uri":"\/Citizinvestor\/disrupting-government","name":"Disrupting Government","full_name":"@Citizinvestor\/disrupting-government","description":"People we respect who are disrupting government through technology.","mode":"public","user":{"id":554730384,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/568704470\/l4hmvqr7hockav5qan7v.png","time_zone":"Eastern Time (US & Canada)","location":"Boston, MA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/568704470\/l4hmvqr7hockav5qan7v.png","id_str":"554730384","entities":{"url":{"urls":[{"url":"http:\/\/citizinvestor.com","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"1AA6CF","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2257696371\/Untitled-2_normal.png","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":230,"name":"Citizinvestor","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"Citizinvestor","listed_count":25,"protected":false,"followers_count":895,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2257696371\/Untitled-2_normal.png","profile_sidebar_border_color":"C0DEED","description":"A crowdfunding platform for civic projects, now launched in Boston! Help put tech in the hands of blind Boston students here: http:\/\/bit.ly\/BlindTech","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/citizinvestor.com","is_translator":false,"favourites_count":8,"created_at":"Sun Apr 15 21:21:16 +0000 2012","friends_count":1000,"verified":false,"notifications":false,"profile_background_color":"FFFFFF","contributors_enabled":false},"following":false,"created_at":"Thu Jun 14 14:28:06 +0000 2012","member_count":143,"id_str":"72266637","subscriber_count":1,"slug":"disrupting-government","id":72266637},{"uri":"\/katgironpe\/developers","name":"developers","full_name":"@katgironpe\/developers","description":"Developers (often those who write in English) ","mode":"public","user":{"id":552680871,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","time_zone":"Beijing","location":"Baguio City","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","id_str":"552680871","entities":{"url":{"urls":[{"url":"http:\/\/www.blog.bridgeutopiaweb.com","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"009999","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","utc_offset":28800,"profile_use_background_image":true,"statuses_count":468,"name":"Katherine Pe","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"katgironpe","listed_count":6,"protected":false,"followers_count":121,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","profile_sidebar_border_color":"eeeeee","description":"Developer (web & mobile apps). http:\/\/www.katherinepe.com\/ ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"url":"http:\/\/www.blog.bridgeutopiaweb.com","is_translator":false,"favourites_count":122,"created_at":"Fri Apr 13 10:47:31 +0000 2012","friends_count":135,"verified":false,"notifications":false,"profile_background_color":"131516","contributors_enabled":false},"following":false,"created_at":"Tue May 15 17:08:44 +0000 2012","member_count":44,"id_str":"70615436","subscriber_count":2,"slug":"developers","id":70615436},{"uri":"\/katgironpe\/ruby","name":"ruby","full_name":"@katgironpe\/ruby","description":"Ruby developers all over the world","mode":"public","user":{"id":552680871,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme14\/bg.gif","time_zone":"Beijing","location":"Baguio City","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme14\/bg.gif","id_str":"552680871","entities":{"url":{"urls":[{"url":"http:\/\/www.blog.bridgeutopiaweb.com","display_url":null,"indices":[0,35],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"009999","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","utc_offset":28800,"profile_use_background_image":true,"statuses_count":468,"name":"Katherine Pe","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"katgironpe","listed_count":6,"protected":false,"followers_count":121,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2617342438\/m9p9cyijzboyqfh3jx90_normal.png","profile_sidebar_border_color":"eeeeee","description":"Developer (web & mobile apps). http:\/\/www.katherinepe.com\/ ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"efefef","default_profile_image":false,"url":"http:\/\/www.blog.bridgeutopiaweb.com","is_translator":false,"favourites_count":122,"created_at":"Fri Apr 13 10:47:31 +0000 2012","friends_count":135,"verified":false,"notifications":false,"profile_background_color":"131516","contributors_enabled":false},"following":false,"created_at":"Tue May 15 13:50:22 +0000 2012","member_count":27,"id_str":"70604695","subscriber_count":1,"slug":"ruby","id":70604695},{"uri":"\/ksornberger\/developers","name":"Developers","full_name":"@ksornberger\/developers","description":"","mode":"public","user":{"id":17368301,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Eastern Time (US & Canada)","location":"Oakville, Ontario","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"17368301","entities":{"url":{"urls":[{"url":"http:\/\/www.ksornberger.com","display_url":null,"indices":[0,26],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":false,"default_profile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/774928074\/kevin_normal.jpg","utc_offset":-18000,"profile_use_background_image":true,"statuses_count":1531,"name":"Kevin Sornberger","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"ksornberger","listed_count":13,"protected":false,"followers_count":277,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/774928074\/kevin_normal.jpg","profile_sidebar_border_color":"C0DEED","description":"Co-Founder and Developer for @DevBBQ - www.devbbq.com | Co-Founder @UserClues - www.userclues.com","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/www.ksornberger.com","is_translator":false,"favourites_count":84,"created_at":"Thu Nov 13 16:36:58 +0000 2008","friends_count":349,"verified":false,"notifications":false,"profile_background_color":"C0DEED","contributors_enabled":false},"following":false,"created_at":"Thu Mar 10 04:45:35 +0000 2011","member_count":5,"id_str":"40091270","subscriber_count":0,"slug":"developers","id":40091270},{"uri":"\/yuletide\/codeforamerica","name":"CodeForAmerica","full_name":"@yuletide\/codeforamerica","description":"","mode":"public","user":{"id":12329722,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/134104376\/x16e3c06a315f173482318b7588b1a82.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco & Philadelphia","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/134104376\/x16e3c06a315f173482318b7588b1a82.png","id_str":"12329722","entities":{"url":{"urls":[{"url":"https:\/\/www.vizify.com\/yuletide","display_url":null,"indices":[0,31],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"50857F","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1748360672\/381894_619091932685_4402402_33003257_1063084351_n_normal.jpg","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":5060,"name":"Alex Yule","follow_request_sent":false,"profile_text_color":"1C1F23","lang":"en","screen_name":"yuletide","listed_count":36,"protected":false,"followers_count":826,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1748360672\/381894_619091932685_4402402_33003257_1063084351_n_normal.jpg","profile_sidebar_border_color":"803C22","description":"I love building meaningful things for the web. Lifetime geographer, coder, metalhead, writer, enviro & web dood. @codeforamerica fellow 2012. @textizen dev","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"EDEACB","default_profile_image":false,"url":"https:\/\/www.vizify.com\/yuletide","is_translator":false,"favourites_count":1182,"created_at":"Wed Jan 16 19:37:35 +0000 2008","friends_count":379,"verified":false,"notifications":false,"profile_background_color":"07090B","contributors_enabled":false},"following":false,"created_at":"Thu Nov 17 22:44:44 +0000 2011","member_count":40,"id_str":"59192144","subscriber_count":0,"slug":"codeforamerica","id":59192144},{"uri":"\/IntellectAssets\/entrepreneurs","name":"Entrepreneurs","full_name":"@IntellectAssets\/entrepreneurs","description":"Entrepreneurs & StartUp Guys","mode":"public","user":{"id":69552540,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/675045909\/9bc0778d5883eefa3f02a82025b0fc5c.jpeg","time_zone":"New Delhi","location":"New Delhi, India","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/675045909\/9bc0778d5883eefa3f02a82025b0fc5c.jpeg","id_str":"69552540","entities":{"url":{"urls":[{"url":"http:\/\/www.StoreMonk.com","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"000000","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2673977440\/c438321c0d6e5fc410b603778fff95c3_normal.png","utc_offset":19800,"profile_use_background_image":true,"statuses_count":10536,"name":"Deepak Sharma","follow_request_sent":false,"profile_text_color":"400000","lang":"en","screen_name":"IntellectAssets","listed_count":30,"protected":false,"followers_count":2665,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2673977440\/c438321c0d6e5fc410b603778fff95c3_normal.png","profile_sidebar_border_color":"FFFFFF","description":"Challenging the Status Quo. Founder of @StoreMonk & Ninja Extraordinaire at @PeerHack. Fellow at @startlead. Foodie & Adventurer. Redbull Drinker & Coffee Nut. ","profile_background_tile":true,"following":false,"profile_sidebar_fill_color":"E6F3FA","default_profile_image":false,"url":"http:\/\/www.StoreMonk.com","is_translator":false,"profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/69552540\/1348432221","favourites_count":248,"created_at":"Fri Aug 28 10:01:42 +0000 2009","friends_count":287,"verified":false,"notifications":false,"profile_background_color":"B8B8B8","contributors_enabled":false},"following":false,"created_at":"Mon Sep 27 17:58:42 +0000 2010","member_count":500,"id_str":"22785828","subscriber_count":2,"slug":"entrepreneurs","id":22785828}], "next_cursor":0, "previous_cursor":1401037770457540712, "next_cursor_str":"0", "previous_cursor_str":"1401037770457540712"}
1
+ {"lists":[{"uri":"\/DavidBahia\/developer","name":"developer","full_name":"@DavidBahia\/developer","description":"","mode":"public","user":{"id":20647833,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","time_zone":"London","location":"Rochester, Medway Towns, Kent","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/16339914\/twit3.JPG","id_str":"20647833","entities":{"description":{"urls":[]}},"profile_link_color":"1F98C7","geo_enabled":false,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","utc_offset":0,"profile_use_background_image":true,"statuses_count":4920,"name":"David Bahia","follow_request_sent":false,"profile_text_color":"663B12","lang":"en","screen_name":"DavidBahia","listed_count":31,"protected":false,"followers_count":953,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/272062257\/Irandb4_normal.JPG","profile_sidebar_border_color":"C6E2EE","description":"I wonder. why?","profile_background_tile":false,"following":false,"profile_sidebar_fill_color":"DAECF4","default_profile_image":false,"url":null,"is_translator":false,"favourites_count":15128,"created_at":"Thu Feb 12 02:11:49 +0000 2009","friends_count":1997,"verified":false,"notifications":false,"profile_background_color":"C6E2EE","contributors_enabled":false},"following":false,"created_at":"Fri Apr 01 09:16:02 +0000 2011","member_count":382,"id_str":"41944715","subscriber_count":2,"slug":"developer","id":41944715}], "next_cursor":0, "previous_cursor":1401037770457540712, "next_cursor_str":"0", "previous_cursor_str":"1401037770457540712"}
@@ -1 +1 @@
1
- [{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/apps.facebook.com\/the-run-around\/\" rel=\"nofollow\"\u003EThe Run Around\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 07:39:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":2968,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":727,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","follow_request_sent":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","listed_count":28,"utc_offset":-28800,"friends_count":88,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28669560363,"id_str":"28669560363","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91391,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","listed_count":5097,"friends_count":452,"url":"http:\/\/daringfireball.net","statuses_count":10488,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","show_all_inline_media":false,"lang":"en","favourites_count":8601,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","geo_enabled":false,"profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","verified":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 21:03:54 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","description":"(R-Twitter)","profile_sidebar_fill_color":"000000","followers_count":265,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"0015ff","listed_count":5,"friends_count":47,"url":null,"statuses_count":4956,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/68504774\/Twitter_background.jpg","show_all_inline_media":false,"lang":"en","favourites_count":0,"created_at":"Sat Jun 28 23:33:52 +0000 2008","profile_background_color":"000000","location":"Santa Barbara, CA","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1151376709\/IMG_3380_normal.JPG","geo_enabled":false,"profile_text_color":"0900ff","name":"Valerie","following":true,"screen_name":"valonthecoast","id":15266837,"id_str":"15266837","verified":false,"utc_offset":-28800,"profile_link_color":"ff0000"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28628407808,"id_str":"28628407808","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 18:04:16 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":1071,"time_zone":"Eastern Time (US & Canada)","description":"A loner on a mission to save those that can still be saved...","show_all_inline_media":false,"favourites_count":11,"profile_sidebar_fill_color":"252429","followers_count":76,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/www.mikeventre.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme9\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Sun Feb 08 19:45:34 +0000 2009","profile_background_color":"1A1B1F","location":"Watertown, MA, USA","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/76539399\/ventre_normal.jpg","profile_text_color":"666666","name":"Mike Ventre","following":false,"screen_name":"mikeventre","id":20387473,"id_str":"20387473","listed_count":4,"utc_offset":-18000,"friends_count":153,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28616037110,"id_str":"28616037110","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":8601,"description":"Raconteur.","contributors_enabled":false,"profile_sidebar_fill_color":"dddddd","followers_count":91357,"geo_enabled":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","verified":false,"url":"http:\/\/daringfireball.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","listed_count":5095,"following":true,"friends_count":452,"screen_name":"gruber","id":33423,"id_str":"33423","statuses_count":10487,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 17:33:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","favourites_count":75,"description":"a many splendored thing","contributors_enabled":false,"profile_sidebar_fill_color":"D01212","followers_count":127,"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"8C0707","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/2465301\/twitterbg.png","lang":"en","created_at":"Fri Apr 25 16:21:14 +0000 2008","profile_background_color":"B20505","location":"Somerville, Mass","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/53327678\/L1020938_normal.jpg","profile_text_color":"000000","name":"Sam","listed_count":7,"following":false,"friends_count":184,"screen_name":"redgears","id":14528563,"id_str":"14528563","statuses_count":2328,"utc_offset":-18000,"profile_link_color":"5D4040"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28613842727,"id_str":"28613842727","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 16:45:46 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":933,"time_zone":"Eastern Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":3,"profile_sidebar_fill_color":"99CC33","followers_count":50,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":null,"verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/4310881\/punchout-night.jpg","follow_request_sent":false,"lang":"en","created_at":"Thu Oct 23 14:19:23 +0000 2008","profile_background_color":"352726","location":"Philadelphia, PA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/70022634\/ChrisFarleyDaBears_normal.jpg","profile_text_color":"3E4415","name":"mikemead","following":false,"screen_name":"mikemead","id":16927201,"id_str":"16927201","listed_count":4,"utc_offset":-18000,"friends_count":72,"profile_link_color":"D02B55"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28610549061,"id_str":"28610549061","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 15:32:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":1778,"time_zone":"Eastern Time (US & Canada)","description":"MBA Student, Philanthropist, Auteur","show_all_inline_media":false,"favourites_count":3,"profile_sidebar_fill_color":"7AC3EE","followers_count":58,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"65B0DA","url":"http:\/\/colorafi.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme13\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Tue Apr 07 21:59:39 +0000 2009","profile_background_color":"000000","location":"ON, NY, ETC, TBA","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/552452151\/IMG_2142_normal.png","profile_text_color":"3D1957","name":"Robert Colorafi","following":false,"screen_name":"herbibore","id":29557556,"id_str":"29557556","listed_count":8,"utc_offset":-18000,"friends_count":107,"profile_link_color":"FF0000"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28605276175,"id_str":"28605276175","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:48:11 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":4895,"time_zone":"Eastern Time (US & Canada)","description":"This feed is rated NC-17. I'm a rude, loud and obnoxious twit who will lash out at anyone and everything. You've been warned. ;)","show_all_inline_media":false,"favourites_count":81,"profile_sidebar_fill_color":"252429","followers_count":157,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/xtex404.com","verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3203060\/camo.jpg","follow_request_sent":false,"lang":"en","created_at":"Tue Aug 19 20:33:02 +0000 2008","profile_background_color":"1A1B1F","location":"L5P, Atlanta, Georgia","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/637954274\/head_normal.jpg","profile_text_color":"666666","name":"JD Matlock","following":false,"screen_name":"jdmatlock","id":15909175,"id_str":"15909175","listed_count":6,"utc_offset":-18000,"friends_count":106,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28601509735,"id_str":"28601509735","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91306,"listed_count":5072,"notifications":false,"friends_count":452,"statuses_count":10483,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","show_all_inline_media":false,"favourites_count":8600,"url":"http:\/\/daringfireball.net","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","geo_enabled":false,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","verified":false,"profile_text_color":"000000","name":"John Gruber","follow_request_sent":false,"following":false,"screen_name":"gruber","id":33423,"id_str":"33423","utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:11:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Pacific Time (US & Canada)","description":"I am a self-employed software consultant, and I love working with .NET.","profile_sidebar_fill_color":"C0DFEC","followers_count":160,"listed_count":15,"notifications":false,"friends_count":102,"statuses_count":703,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","show_all_inline_media":false,"favourites_count":1,"url":"http:\/\/dandoes.net","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme15\/bg.png","lang":"en","geo_enabled":true,"created_at":"Tue Feb 26 17:35:21 +0000 2008","profile_background_color":"022330","location":"Portland, OR","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/109704486\/n601599551_1548968_5665_normal.jpg","verified":false,"profile_text_color":"333333","name":"Daniel Schaffer","follow_request_sent":false,"following":true,"screen_name":"DanielSchaffer","id":14015462,"id_str":"14015462","utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28598327299,"id_str":"28598327299","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91390,"verified":false,"notifications":null,"follow_request_sent":null,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","listed_count":5097,"profile_background_tile":false,"friends_count":452,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","statuses_count":10488,"profile_text_color":"000000","name":"John Gruber","show_all_inline_media":false,"following":null,"favourites_count":8601,"screen_name":"gruber","id":33423,"id_str":"33423","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:09:06 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"geo_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"shiftless layabout","profile_sidebar_fill_color":"e0ff92","followers_count":204,"verified":false,"notifications":null,"follow_request_sent":null,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","url":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3931310\/black.png","lang":"en","created_at":"Fri Oct 27 15:39:37 +0000 2006","profile_background_color":"9ae4e8","location":"","listed_count":3,"profile_background_tile":true,"friends_count":202,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1105783659\/flash_me_normal.jpg","statuses_count":3639,"profile_text_color":"000000","name":"Ryan Cook","show_all_inline_media":true,"following":null,"favourites_count":22,"screen_name":"ryancook","id":10813,"id_str":"10813","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"0000ff"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28598145627,"id_str":"28598145627","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 14:04:56 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":241,"time_zone":"Central Time (US & Canada)","description":"I am a biomedical engineer, tech enthusiast, cyclist, skier, snowboarder, recreational movie editor, and so much more.","show_all_inline_media":false,"favourites_count":10,"profile_sidebar_fill_color":"efefef","followers_count":36,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/www.johndbutler.com","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286818005\/images\/themes\/theme14\/bg.gif","follow_request_sent":false,"lang":"en","created_at":"Mon Jul 14 17:03:06 +0000 2008","profile_background_color":"131516","location":"Minneapolis, MN","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/1137917918\/IMG_0151_normal.jpg","profile_text_color":"333333","name":"johnbutler","following":false,"screen_name":"johnbutler","id":15429051,"id_str":"15429051","listed_count":1,"utc_offset":-21600,"friends_count":56,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28597778505,"id_str":"28597778505","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","verified":false,"profile_sidebar_fill_color":"dddddd","followers_count":91391,"follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","listed_count":5097,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","friends_count":452,"profile_background_color":"5D5D5D","location":"Philadelphia","statuses_count":10488,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","show_all_inline_media":false,"favourites_count":8601,"profile_text_color":"000000","name":"John Gruber","contributors_enabled":false,"following":true,"screen_name":"gruber","id":33423,"id_str":"33423","geo_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 13:16:34 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Quito","description":"http:\/\/stevelim.info","verified":false,"profile_sidebar_fill_color":"252429","followers_count":23,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/stevelim.info","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1285780147\/images\/themes\/theme9\/bg.gif","listed_count":1,"lang":"en","created_at":"Fri Jul 20 08:07:25 +0000 2007","friends_count":48,"profile_background_color":"1A1B1F","location":"NYC","statuses_count":318,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/119138669\/hi_normal.png","show_all_inline_media":false,"favourites_count":34,"profile_text_color":"666666","name":"Steve Lim","contributors_enabled":false,"following":false,"screen_name":"limster","id":7604372,"id_str":"7604372","geo_enabled":true,"utc_offset":-18000,"profile_link_color":"2FC2EF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28593967502,"id_str":"28593967502","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","verified":false,"profile_sidebar_fill_color":"dddddd","followers_count":91305,"follow_request_sent":false,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","listed_count":5072,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","friends_count":452,"profile_background_color":"5D5D5D","location":"Philadelphia","statuses_count":10483,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","show_all_inline_media":false,"favourites_count":8599,"profile_text_color":"000000","name":"John Gruber","contributors_enabled":false,"following":false,"screen_name":"gruber","id":33423,"id_str":"33423","geo_enabled":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"new_id":607968476513968128,"new_id_str":"607968476513968128","source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:59:54 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"time_zone":"Eastern Time (US & Canada)","description":"college professor","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":270,"follow_request_sent":false,"notifications":true,"profile_use_background_image":false,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/peter.honeyman.org\/","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/161271833\/tanspose.jpg","listed_count":29,"lang":"en","created_at":"Wed Mar 21 02:58:37 +0000 2007","friends_count":230,"profile_background_color":"C0DEED","location":"ann arbor","statuses_count":6626,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/228143303\/Photo_5_normal.jpg","show_all_inline_media":false,"favourites_count":17,"profile_text_color":"333333","name":"peter honeyman","contributors_enabled":false,"following":false,"screen_name":"peterhoneyman","id":1705871,"id_str":"1705871","geo_enabled":true,"utc_offset":-18000,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28592716957,"id_str":"28592716957","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:50:33 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":102,"time_zone":null,"description":"GET AT THESE BALLZ","show_all_inline_media":false,"favourites_count":12,"profile_sidebar_fill_color":"DDEEF6","followers_count":16,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/YOUR ALL OVER THESE BALLZ","verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","follow_request_sent":false,"lang":"en","created_at":"Thu Dec 31 21:30:55 +0000 2009","profile_background_color":"C0DEED","location":"GET THESE BALLZ","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/704886761\/image_normal.jpg","profile_text_color":"333333","name":"Chris Vasilik","following":false,"screen_name":"ChrisVasilik","id":100847902,"id_str":"100847902","listed_count":0,"utc_offset":null,"friends_count":52,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28592060615,"id_str":"28592060615","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitterrific.com\" rel=\"nofollow\"\u003ETwitterrific\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 12:02:04 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":2044,"time_zone":"Central Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":13,"profile_sidebar_fill_color":"ffffff","followers_count":7,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"000000","url":null,"verified":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3135526\/2001_hal_shutdown.jpg","follow_request_sent":false,"lang":"en","created_at":"Tue Jun 24 22:33:44 +0000 2008","profile_background_color":"9ae4e8","location":"Milwaukee, WI","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/115047715\/th_hal2_normal.jpg","profile_text_color":"000000","name":"John T.","following":false,"screen_name":"xraydelta1","id":15224819,"id_str":"15224819","listed_count":2,"utc_offset":-21600,"friends_count":65,"profile_link_color":"2117FF"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28588888640,"id_str":"28588888640","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"listed_count":5071,"time_zone":"Eastern Time (US & Canada)","friends_count":452,"description":"Raconteur.","statuses_count":10483,"profile_sidebar_fill_color":"dddddd","followers_count":91301,"show_all_inline_media":false,"notifications":false,"favourites_count":8599,"contributors_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","geo_enabled":false,"url":"http:\/\/daringfireball.net","profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","lang":"en","verified":false,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:39:21 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"listed_count":0,"time_zone":"Eastern Time (US & Canada)","friends_count":197,"description":"","statuses_count":268,"profile_sidebar_fill_color":"DDFFCC","followers_count":14,"show_all_inline_media":false,"notifications":false,"favourites_count":5,"contributors_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"BDDCAD","geo_enabled":false,"url":null,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","verified":false,"created_at":"Thu Oct 23 15:17:01 +0000 2008","profile_background_color":"5d862d","location":"NJ","follow_request_sent":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/150390715\/fu_yankke_game_lo_normal.jpg","profile_text_color":"333333","name":"maxwinkler","following":true,"screen_name":"maxwinkler","id":16928337,"id_str":"16928337","utc_offset":-18000,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28587550180,"id_str":"28587550180","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","profile_sidebar_fill_color":"dddddd","followers_count":91300,"notifications":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","listed_count":5070,"friends_count":452,"url":"http:\/\/daringfireball.net","statuses_count":10483,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","show_all_inline_media":false,"lang":"en","favourites_count":8599,"created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","contributors_enabled":false,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","geo_enabled":false,"profile_text_color":"000000","name":"John Gruber","following":false,"screen_name":"gruber","id":33423,"id_str":"33423","verified":false,"utc_offset":-18000,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:39:17 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","description":"if you need to know, you probably do. Currently CTO of @ecoReserve, I've done online music, corporate tech, artist management, and other fun stuff... ","profile_sidebar_fill_color":"DDFFCC","followers_count":200,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"BDDCAD","listed_count":6,"friends_count":284,"url":"http:\/\/ecoreserve.org","statuses_count":2991,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3309085\/dudesleep.jpg","show_all_inline_media":false,"lang":"en","favourites_count":0,"created_at":"Wed Oct 22 10:17:51 +0000 2008","profile_background_color":"9AE4E8","location":"iPhone: 34.152664,-118.418541","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1101753935\/headshot2_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"James Lynch III","following":true,"screen_name":"jlynch3","id":16903243,"id_str":"16903243","verified":false,"utc_offset":-28800,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28587546699,"id_str":"28587546699","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 11:26:39 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":369,"time_zone":"Eastern Time (US & Canada)","description":"Vanguard, Kosmic4, Def City Vets, Using The Imagination, Busting Loose Always, Top Choice Masterpieces.","show_all_inline_media":false,"favourites_count":1,"profile_sidebar_fill_color":"efefef","followers_count":34,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","url":"http:\/\/vanguardmovement.com","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/135928867\/orion-nebula.jpg","follow_request_sent":false,"lang":"en","created_at":"Wed Aug 04 04:32:45 +0000 2010","profile_background_color":"131516","location":"Hell Bent, USA","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/1095182701\/DuvRoc_normal.jpg","profile_text_color":"333333","name":"DoverPeterson","following":false,"screen_name":"DoveRoc","id":174534061,"id_str":"174534061","listed_count":1,"utc_offset":-18000,"friends_count":47,"profile_link_color":"009999"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28586847755,"id_str":"28586847755","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 10:27:34 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":761,"time_zone":"Pacific Time (US & Canada)","description":"","show_all_inline_media":false,"favourites_count":70,"profile_sidebar_fill_color":"C6C6C6","followers_count":130,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFE4E6","url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme1\/bg.png","follow_request_sent":false,"lang":"en","created_at":"Sat Dec 02 04:37:44 +0000 2006","profile_background_color":"303030","location":"Bay Area, California","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/436824810\/eafe0b9a2b464ac4b0285da4f3ff2a43ce4b4130_full__1__normal.jpg","profile_text_color":"0D0D0D","name":"tumult","following":false,"screen_name":"tumult","id":36433,"id_str":"36433","listed_count":9,"utc_offset":-28800,"friends_count":52,"profile_link_color":"353A44"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28583768789,"id_str":"28583768789","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."}]
1
+ [{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:46:25 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":10488,"time_zone":"Eastern Time (US & Canada)","description":"Raconteur.","show_all_inline_media":false,"favourites_count":8601,"profile_sidebar_fill_color":"dddddd","followers_count":91400,"contributors_enabled":false,"notifications":false,"geo_enabled":false,"profile_use_background_image":false,"profile_sidebar_border_color":"5d5d5d","url":"http:\/\/daringfireball.net","verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/3150433\/Rumsfeld__Kissinger__Nixon_at_1974_NATO_meeting.jpg","follow_request_sent":false,"lang":"en","created_at":"Fri Dec 01 02:52:40 +0000 2006","profile_background_color":"5D5D5D","location":"Philadelphia","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/546338003\/gruber-sxsw-final_normal.png","profile_text_color":"000000","name":"John Gruber","following":true,"screen_name":"gruber","id":33423,"id_str":"33423","listed_count":5095,"utc_offset":-18000,"friends_count":452,"profile_link_color":"2626C3"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28561922516,"id_str":"28561922516","text":"As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/apps.facebook.com\/the-run-around\/\" rel=\"nofollow\"\u003EThe Run Around\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Mon Oct 25 07:39:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"user":{"statuses_count":2968,"time_zone":"Pacific Time (US & Canada)","description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"favourites_count":727,"profile_sidebar_fill_color":"DDEEF6","followers_count":898,"contributors_enabled":false,"notifications":false,"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":null,"verified":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","follow_request_sent":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","following":false,"screen_name":"sferik","id":7505382,"id_str":"7505382","listed_count":28,"utc_offset":-28800,"friends_count":88,"profile_link_color":"0084B4"},"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28669560363,"id_str":"28669560363","text":"RT @gruber: As for the Series, I'm for the Giants. Fuck Texas, fuck Nolan Ryan, fuck George Bush."}]
@@ -1 +1 @@
1
- {"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 22:41:52 +0000 2012","id":247827742178021376,"id_str":"247827742178021376","text":"Bubble Mailer #freebandnames","source":"\u003ca href=\"http:\/\/tapbots.com\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":671293,"id_str":"671293","name":"Richard Allen","screen_name":"richrad","location":"Kansas City","url":"http:\/\/richardallen.me","description":"Give me a break, Jeffery.","protected":false,"followers_count":174,"friends_count":273,"listed_count":2,"created_at":"Sat Jan 20 16:02:45 +0000 2007","favourites_count":383,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1370,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[14,28]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 21:38:09 +0000 2012","id":247811706061979648,"id_str":"247811706061979648","text":"Hair of the Frog \n\n(seriously, think about it) \n\n#freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349187102,"id_str":"349187102","name":"Drew Shields","screen_name":"dswordsNshields","location":"Buffalo, NY","url":"http:\/\/drewcshields.com","description":"Copywriter intern @CPBgroup Boulder. Recent SU grad in Advertising & International Relations. Pop culture devourer. Great guy to have a beer with.","protected":false,"followers_count":232,"friends_count":287,"listed_count":9,"created_at":"Fri Aug 05 18:09:00 +0000 2011","favourites_count":2,"utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3366,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0074AA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/447073169\/2048px-Hong_Kong_Skyline_Restitch_-_Dec_2007.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1581807986\/delocated_normal.jpg","profile_link_color":"0074AA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":false,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[49,63]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"de"},"created_at":"Sat Sep 15 04:19:13 +0000 2012","id":246825473785606145,"id_str":"246825473785606145","text":"Wussies and pussies #goddylan #freebandnames","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230804589,"id_str":"230804589","name":"The Dunnie Bobos ","screen_name":"thedunniebobos","location":"New York, NY","url":"http:\/\/bobomedia.tumblr.com\/","description":"The Coveted Blue Checkmark","protected":false,"followers_count":164,"friends_count":126,"listed_count":5,"created_at":"Sun Dec 26 18:47:44 +0000 2010","favourites_count":82,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":930,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C1E2EB","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/255658750\/black_dynamite.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2290113473\/pobz6p9231tle9ftq0sf_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFFAE8","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"goddylan","indices":[20,29]},{"text":"freebandnames","indices":[30,44]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false},{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Fri Sep 14 17:46:33 +0000 2012","id":246666260270702592,"id_str":"246666260270702592","text":"#FreeBandNames Asterisks and Thunderstorms","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21434745,"id_str":"21434745","name":"StrongPROGressRyan ","screen_name":"StrongPROGress","location":"Mound (not the Phish song), MN","url":"http:\/\/strongprogress.wordpress.com\/","description":"Lover of Heavy Progressive Musics, writes Strong PROGress: an audiobiographical music blog. Father\/Husband\/Musician; digs @thebigwu @phish, One Among The Fence","protected":false,"followers_count":666,"friends_count":748,"listed_count":13,"created_at":"Fri Feb 20 21:15:32 +0000 2009","favourites_count":629,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":8040,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/579632535\/2x7n6f01kmxqxddcr263.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2586458113\/6kbrcpcnurckpccnr8ta_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"FreeBandNames","indices":[0,14]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false}],"search_metadata":{"completed_in":0.029,"max_id":250126199840518145,"max_id_str":"250126199840518145","next_page":"?page=2&max_id=250126199840518145&q=%23freebandnames&rpp=4&include_entities=1&result_type=mixed","page":1,"query":"%23freebandnames","refresh_url":"?since_id=250126199840518145&q=%23freebandnames&result_type=mixed&include_entities=1","results_per_page":4,"since_id":24012619984051000,"since_id_str":"24012619984051000"}}
1
+ {"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"en"},"created_at":"Mon Sep 17 22:41:52 +0000 2012","id":247827742178021376,"id_str":"247827742178021376","text":"Bubble Mailer #freebandnames","source":"\u003ca href=\"http:\/\/tapbots.com\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":671293,"id_str":"671293","name":"Richard Allen","screen_name":"richrad","location":"Kansas City","url":"http:\/\/richardallen.me","description":"Give me a break, Jeffery.","protected":false,"followers_count":174,"friends_count":273,"listed_count":2,"created_at":"Sat Jan 20 16:02:45 +0000 2007","favourites_count":383,"utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1370,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1399177739\/notlookingup_normal.jpeg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"show_all_inline_media":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"entities":{"hashtags":[{"text":"freebandnames","indices":[14,28]}],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false}],"search_metadata":{"completed_in":0.029,"max_id":250126199840518145,"max_id_str":"250126199840518145","next_page":"?page=2&max_id=250126199840518145&q=%23freebandnames&rpp=4&include_entities=1&result_type=mixed","page":1,"query":"%23freebandnames","refresh_url":"?since_id=250126199840518145&q=%23freebandnames&result_type=mixed&include_entities=1","results_per_page":4,"since_id":24012619984051000,"since_id_str":"24012619984051000"}}
@@ -1 +1 @@
1
- {"max_id":28857935752,"since_id":0,"refresh_url":"?since_id=28857935752&q=twitter","next_page":"?page=2&max_id=28857935752&q=twitter","results_per_page":15,"page":1,"completed_in":0.017349,"since_id_str":"0","max_id_str":"28857935752","query":"twitter"}
1
+ {"max_id":28857935752,"since_id":0,"refresh_url":"?since_id=28857935752&q=twitter","next_page":"?page=2&max_id=28857935752&q=twitter","results_per_page":15,"page":1,"completed_in":0.017349,"since_id_str":"0","max_id_str":"28857935752","query":"twitter"}
@@ -1 +1 @@
1
- {"lists":[{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","entities":{"url":{"urls":[{"url":"http:\/\/wynnnetherland.com","display_url":null,"indices":[0,25],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440},{"uri":"\/twitter\/team","name":"Team","full_name":"@twitter\/team","description":"","mode":"public","user":{"id":783214,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco, CA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","id_str":"783214","entities":{"url":{"urls":[{"url":"http:\/\/blog.twitter.com\/","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"038543","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":1433,"name":"Twitter","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"twitter","listed_count":73289,"protected":false,"is_translator":false,"followers_count":13711744,"profile_sidebar_border_color":"EEEEEE","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","description":"Always wondering what's happening. ","profile_background_tile":true,"following":true,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"url":"http:\/\/blog.twitter.com\/","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/783214\/1347405327","favourites_count":18,"created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":1249,"verified":true,"notifications":false,"profile_background_color":"ACDED6","contributors_enabled":true},"following":true,"created_at":"Wed Sep 23 01:18:01 +0000 2009","member_count":1199,"id_str":"574","subscriber_count":78079,"slug":"team","id":574}], "next_cursor":1401037770457540712, "previous_cursor":0, "next_cursor_str":"1401037770457540712", "previous_cursor_str":"0"}
1
+ {"lists":[{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","entities":{"url":{"urls":[{"url":"http:\/\/wynnnetherland.com","display_url":null,"indices":[0,25],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440}], "next_cursor":1401037770457540712, "previous_cursor":0, "next_cursor_str":"1401037770457540712", "previous_cursor_str":"0"}
@@ -1 +1 @@
1
- {"lists":[{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","entities":{"url":{"urls":[{"url":"http:\/\/wynnnetherland.com","display_url":null,"indices":[0,25],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440},{"uri":"\/twitter\/team","name":"Team","full_name":"@twitter\/team","description":"","mode":"public","user":{"id":783214,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","time_zone":"Pacific Time (US & Canada)","location":"San Francisco, CA","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/657090062\/l1uqey5sy82r9ijhke1i.png","id_str":"783214","entities":{"url":{"urls":[{"url":"http:\/\/blog.twitter.com\/","display_url":null,"indices":[0,24],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"038543","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","utc_offset":-28800,"profile_use_background_image":true,"statuses_count":1433,"name":"Twitter","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"twitter","listed_count":73289,"protected":false,"is_translator":false,"followers_count":13711744,"profile_sidebar_border_color":"EEEEEE","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2284174758\/v65oai7fxn47qv9nectx_normal.png","description":"Always wondering what's happening. ","profile_background_tile":true,"following":true,"profile_sidebar_fill_color":"F6F6F6","default_profile_image":false,"url":"http:\/\/blog.twitter.com\/","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/783214\/1347405327","favourites_count":18,"created_at":"Tue Feb 20 14:35:54 +0000 2007","friends_count":1249,"verified":true,"notifications":false,"profile_background_color":"ACDED6","contributors_enabled":true},"following":true,"created_at":"Wed Sep 23 01:18:01 +0000 2009","member_count":1199,"id_str":"574","subscriber_count":78079,"slug":"team","id":574}], "next_cursor":0, "previous_cursor":1401037770457540712, "next_cursor_str":"0", "previous_cursor_str":"1401037770457540712"}
1
+ {"lists":[{"uri":"\/pengwynn\/rubyists","name":"Rubyists","full_name":"@pengwynn\/rubyists","description":"","mode":"public","user":{"id":14100886,"profile_background_image_url_https":"https:\/\/si0.twimg.com\/images\/themes\/theme1\/bg.png","time_zone":"Central Time (US & Canada)","location":"Denton, TX","profile_background_image_url":"http:\/\/a0.twimg.com\/images\/themes\/theme1\/bg.png","id_str":"14100886","entities":{"url":{"urls":[{"url":"http:\/\/wynnnetherland.com","display_url":null,"indices":[0,25],"expanded_url":null}]},"description":{"urls":[]}},"profile_link_color":"0084B4","geo_enabled":true,"default_profile":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","utc_offset":-21600,"profile_use_background_image":false,"statuses_count":7384,"name":"Wynn Netherland","follow_request_sent":false,"profile_text_color":"333333","lang":"en","screen_name":"pengwynn","listed_count":397,"protected":false,"is_translator":false,"followers_count":6182,"profile_sidebar_border_color":"FFFFFF","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/2221455972\/wynn-mic-bw_normal.jpg","description":"Christian, husband, father, GitHubber, Co-host of @thechangelog, Co-author of Sass, Compass, #CSS book http:\/\/wynn.fm\/sass-meap","profile_background_tile":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","default_profile_image":false,"url":"http:\/\/wynnnetherland.com","profile_banner_url":"https:\/\/si0.twimg.com\/profile_banners\/14100886\/1347987369","favourites_count":338,"created_at":"Sat Mar 08 16:34:22 +0000 2008","friends_count":3528,"verified":false,"notifications":false,"profile_background_color":"292929","contributors_enabled":false},"following":true,"created_at":"Fri Oct 30 14:39:25 +0000 2009","member_count":499,"id_str":"1129440","subscriber_count":39,"slug":"rubyists","id":1129440}], "next_cursor":0, "previous_cursor":1401037770457540712, "next_cursor_str":"0", "previous_cursor_str":"1401037770457540712"}
@@ -1 +1 @@
1
- [{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","contributors":null,"in_reply_to_screen_name":"chriskottom","created_at":"Fri Oct 22 15:50:35 +0000 2010","user":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2961,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","show_all_inline_media":true,"favourites_count":724,"profile_background_color":"000000","url":null,"contributors_enabled":false,"profile_background_tile":false,"lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","protected":false,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","verified":false,"profile_link_color":"0084B4","followers_count":899,"name":"Erik Michaels-Ober","follow_request_sent":false,"following":true,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"retweet_count":null,"coordinates":null,"in_reply_to_status_id":28416708070,"id":28416898759,"retweeted":false,"in_reply_to_user_id":14565733,"text":"@chriskottom Thanks for the heads up. Doing some major refactoring. I'll fix it as soon as that's done. /cc @jnunemaker @pengwynn"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":28042243078,"created_at":"Thu Oct 21 16:42:43 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":28042775509,"truncated":false,"text":"@scottsil Like @marcoarment, I also owned a 1G MacBook Air. He didn't mention it got *very* hot. Make sure to feel the bottom before buying."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"hurrycane","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":28005857348,"created_at":"Thu Oct 21 08:04:41 +0000 2010","retweeted":false,"in_reply_to_user_id":6238622,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":28006971270,"truncated":false,"text":"@hurrycane Looks like it's back up now!"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 03:38:42 +0000 2010","favorited":false,"coordinates":null,"user":{"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":902,"description":"Adventures in hunger and foolishness.","listed_count":29,"statuses_count":2958,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","contributors_enabled":false,"profile_background_color":"000000","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","friends_count":88,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","follow_request_sent":false,"favourites_count":716,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"show_all_inline_media":true,"utc_offset":-28800},"id":27993658063,"text":"GO GIANTS! Just 1 game away from the World Series! Can't believe it!"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:13:43 +0000 2010","favorited":false,"coordinates":null,"user":{"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","show_all_inline_media":true,"listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2956,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","favourites_count":716,"profile_background_color":"000000","contributors_enabled":false,"profile_background_tile":false,"url":null,"geo_enabled":true,"profile_text_color":"333333","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","verified":false,"profile_link_color":"0084B4","protected":false,"follow_request_sent":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27987592965,"text":"Or not."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:11:20 +0000 2010","favorited":false,"coordinates":null,"user":{"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","profile_background_color":"000000","show_all_inline_media":true,"profile_background_tile":false,"friends_count":88,"url":null,"statuses_count":2955,"profile_text_color":"333333","lang":"en","favourites_count":716,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","contributors_enabled":false,"profile_link_color":"0084B4","protected":false,"geo_enabled":true,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"verified":false,"utc_offset":-28800},"id":27987409907,"text":"That blown call could cost the Giants the series. Shameful."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Thu Oct 21 02:07:17 +0000 2010","favorited":false,"coordinates":null,"user":{"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"show_all_inline_media":true,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","friends_count":88,"statuses_count":2954,"profile_background_color":"000000","profile_background_tile":false,"favourites_count":716,"url":null,"contributors_enabled":false,"profile_text_color":"333333","lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","follow_request_sent":false,"following":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27987099418,"text":"Cody Ross, Hero."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27957622120,"created_at":"Wed Oct 20 23:35:34 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27975367793,"truncated":false,"text":"@scottsil This analysis by @marcoarment is a must-read for you. I agree with every word of it: http://www.marco.org/1361316116"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27956553627,"created_at":"Wed Oct 20 19:00:17 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27956658336,"truncated":false,"text":"@scottsil Why do you care about the footprint? Do you have an unusually small desk or lap? ;)"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27954840818,"created_at":"Wed Oct 20 18:45:01 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27955605710,"truncated":false,"text":"@scottsil Where will you take the 11 that you can't take the 13? It still won't fit in your pocket. The only benefit is that it's cheaper."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"scottsil","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27954840818,"created_at":"Wed Oct 20 18:42:27 +0000 2010","retweeted":false,"in_reply_to_user_id":721623,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27955429909,"truncated":false,"text":"@scottsil I'd go with the 13. The extra screen space doesn't really come at the cost of mobility. Plus: faster processor and bigger battery."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"hurrycane","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27924357919,"created_at":"Wed Oct 20 18:34:27 +0000 2010","retweeted":false,"in_reply_to_user_id":6238622,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27954856269,"truncated":false,"text":"@hurrycane Make sure you don't miss the @github meetup http://github.com/blog/735-github-meetup-in-amsterdam"},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Wed Oct 20 18:01:58 +0000 2010","favorited":false,"coordinates":null,"user":{"geo_enabled":true,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"follow_request_sent":false,"notifications":false,"verified":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","profile_background_color":"000000","profile_background_tile":false,"url":null,"show_all_inline_media":true,"profile_text_color":"333333","lang":"en","statuses_count":2959,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","friends_count":88,"profile_link_color":"0084B4","protected":false,"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"favourites_count":723,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"utc_offset":-28800},"id":27952587995,"text":"Inevitable developer freakout about Mac App Store commencing in 3, 2, 1..."},{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"in_reply_to_user_id":null,"created_at":"Wed Oct 20 17:22:55 +0000 2010","favorited":false,"coordinates":null,"user":{"verified":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":901,"description":"Adventures in hunger and foolishness.","listed_count":29,"notifications":false,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","show_all_inline_media":true,"profile_background_color":"000000","statuses_count":2946,"profile_background_tile":false,"url":null,"friends_count":88,"profile_text_color":"333333","contributors_enabled":false,"lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","location":"San Francisco","favourites_count":715,"profile_link_color":"0084B4","protected":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","name":"Erik Michaels-Ober","following":true,"geo_enabled":true,"profile_sidebar_fill_color":"DDEEF6","id":7505382,"follow_request_sent":false,"utc_offset":-28800},"id":27949759640,"text":"Apple just announced a bookmaking service. How quaint."},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"gruber","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"created_at":"Wed Oct 20 04:14:47 +0000 2010","retweeted":false,"in_reply_to_user_id":33423,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27900704553,"truncated":false,"text":"@gruber it's hard to imagine the Yankees winning the series, having to go through Cliff Lee in a potential game 7. Time to bring the \u272a back?"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"theobermeister","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":27899586377,"created_at":"Wed Oct 20 04:07:59 +0000 2010","retweeted":false,"in_reply_to_user_id":18470183,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27900276587,"truncated":false,"text":"@theobermeister San Francisco is much warmer than Banff in December. Are you comfortable biking in 9 \u00b0C weather? http://bit.ly/cXHZHh"},{"place":null,"favorited":false,"contributors":null,"in_reply_to_screen_name":"gruber","source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"created_at":"Wed Oct 20 03:59:33 +0000 2010","retweeted":false,"in_reply_to_user_id":33423,"user":{"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","description":"Adventures in hunger and foolishness.","listed_count":29,"friends_count":88,"profile_background_color":"000000","statuses_count":2960,"profile_background_tile":false,"show_all_inline_media":true,"favourites_count":724,"profile_text_color":"333333","contributors_enabled":false,"url":null,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","geo_enabled":true,"profile_link_color":"0084B4","followers_count":901,"lang":"en","time_zone":"Pacific Time (US & Canada)","created_at":"Mon Jul 16 12:59:01 +0000 2007","location":"San Francisco","screen_name":"sferik","verified":false,"profile_sidebar_fill_color":"DDEEF6","protected":false,"follow_request_sent":null,"name":"Erik Michaels-Ober","following":null,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","id":7505382,"notifications":null,"utc_offset":-28800},"geo":null,"id":27899716022,"truncated":false,"text":"@gruber there goes another one in your direction!"}]
1
+ [{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"<a href=\"http://www.echofon.com/\" rel=\"nofollow\">Echofon</a>","contributors":null,"in_reply_to_screen_name":"chriskottom","created_at":"Fri Oct 22 15:50:35 +0000 2010","user":{"description":"Adventures in hunger and foolishness.","profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","listed_count":29,"notifications":false,"friends_count":88,"statuses_count":2961,"profile_background_image_url":"http://a3.twimg.com/profile_background_images/162641967/we_concept_bg2.png","show_all_inline_media":true,"favourites_count":724,"profile_background_color":"000000","url":null,"contributors_enabled":false,"profile_background_tile":false,"lang":"en","geo_enabled":true,"created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_text_color":"333333","location":"San Francisco","protected":false,"profile_image_url":"http://a0.twimg.com/profile_images/323331048/me_normal.jpg","verified":false,"profile_link_color":"0084B4","followers_count":899,"name":"Erik Michaels-Ober","follow_request_sent":false,"following":true,"time_zone":"Pacific Time (US & Canada)","screen_name":"sferik","id":7505382,"utc_offset":-28800,"profile_sidebar_fill_color":"DDEEF6"},"retweet_count":null,"coordinates":null,"in_reply_to_status_id":28416708070,"id":28416898759,"retweeted":false,"in_reply_to_user_id":14565733,"text":"@chriskottom Thanks for the heads up. Doing some major refactoring. I'll fix it as soon as that's done. /cc @jnunemaker @pengwynn"}]
@@ -1 +1 @@
1
- {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":"Arizona","favourites_count":200,"description":"Chief hamradio operator (N7ICE) & creator of 73s.org. Founder of Teleku, SurfByTel, Numly, Gospelr, Chug'd, & Spree.ly. Host of Rubyology and HamBrief.TV.","contributors_enabled":false,"profile_sidebar_fill_color":"FFE15C","followers_count":1961,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 05:17:26 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28568059801,"id_str":"28568059801","text":"RT @vivagrams: Today's design, coding & biz dev brought to you by donuts - contributor to our happiness factor! http:\/\/bit.ly\/aGeTNT #swphx"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"7E8279","verified":false,"url":"http:\/\/ChrisMatthieu.com","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/10843800\/Chris_Superman2.jpg","lang":"en","created_at":"Mon Feb 18 01:30:03 +0000 2008","profile_background_color":"c4c4c4","location":"Phoenix, Arizona","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/918916153\/SuperChrisSmall_normal.jpg","profile_text_color":"422828","name":"Chris Matthieu N7ICE","listed_count":158,"following":false,"friends_count":1019,"screen_name":"chrismatthieu","id":13604142,"id_str":"13604142","statuses_count":8877,"utc_offset":-25200,"profile_link_color":"E81717"},{"time_zone":"Eastern Time (US & Canada)","description":"i be mig","profile_sidebar_fill_color":"edffcc","followers_count":0,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":1130221444,"source":"\u003Ca href=\"http:\/\/splitweet.com\" rel=\"nofollow\"\u003ESplitweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"1130221444","created_at":"Mon Jan 19 17:13:27 +0000 2009","in_reply_to_user_id":9885102,"favorited":false,"in_reply_to_user_id_str":"9885102","contributors":null,"coordinates":null,"in_reply_to_screen_name":"drnic","id":1130874731,"id_str":"1130874731","text":"@drnic you are looking for http:\/\/github.com\/potionfactory\/potionstore\/ no?"},"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":3,"profile_use_background_image":false,"profile_sidebar_border_color":"dcdbad","show_all_inline_media":false,"favourites_count":0,"url":"http:\/\/google.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":true,"created_at":"Thu Nov 20 05:46:54 +0000 2008","profile_background_color":"25618e","location":"washington dc","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/69434006\/spudd_normal.jpg","verified":false,"profile_text_color":"333333","name":"Mig Pggbee","follow_request_sent":false,"following":false,"screen_name":"pggbee","id":17505580,"id_str":"17505580","utc_offset":-18000,"profile_link_color":"0084B4"},{"time_zone":"Central Time (US & Canada)","description":"Entrepreneur, Rails Developer, Gamer, Single (divorced) guy in Houston","profile_sidebar_fill_color":"252429","followers_count":590,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twidroid.com\" rel=\"nofollow\"\u003Etwidroid\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 22 01:44:18 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":21793039231,"id_str":"21793039231","text":"Gotta day the premier party is lots of fun. #GarbageMoguls"},"listed_count":13,"notifications":false,"statuses_count":336,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"url":"http:\/\/bcatherall.blogspot.com\/","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme9\/bg.gif","lang":"en","favourites_count":2,"created_at":"Tue Mar 13 20:09:00 +0000 2007","friends_count":679,"profile_background_color":"1A1B1F","location":"Houston, Texas","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/96813420\/me-in-hat_normal.jpg","geo_enabled":false,"profile_text_color":"666666","name":"Billy R Catherall","follow_request_sent":false,"following":false,"screen_name":"bcatherall","id":1112241,"id_str":"1112241","verified":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"},{"statuses_count":206,"profile_text_color":"3C3940","description":"die before you are dead","profile_background_tile":false,"favourites_count":2,"contributors_enabled":false,"profile_link_color":"0099B9","listed_count":4,"geo_enabled":false,"profile_sidebar_fill_color":"95E8EC","url":null,"verified":false,"notifications":null,"time_zone":"New Delhi","follow_request_sent":null,"lang":"en","created_at":"Sun Aug 12 17:33:09 +0000 2007","profile_sidebar_border_color":"5ED4DC","profile_image_url":"http://a1.twimg.com/profile_images/1082656833/sur_at_seashore_normal.jpg","location":"New Delhi, India","protected":true,"profile_use_background_image":true,"followers_count":198,"screen_name":"sur","name":"Sur","following":null,"profile_background_color":"0099B9","id":8143072,"show_all_inline_media":false,"profile_background_image_url":"http://s.twimg.com/a/1285694546/images/themes/theme4/bg.gif","utc_offset":19800,"friends_count":222},{"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Senior Ruby\/Javascript Developer\/Consultant","favourites_count":0,"profile_sidebar_fill_color":"252429","followers_count":99,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/seesmic.com\/seesmic_mobile\/android\/\" rel=\"nofollow\"\u003ESeesmic for Android\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:50:16 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27850500237,"id_str":"27850500237","text":"Some screen-like hotkeys for tmux http:\/\/bit.ly\/bZCgsT"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Tue Jan 13 23:14:33 +0000 2009","profile_background_color":"1A1B1F","location":"Toronto, Ontario, Canada","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/747713188\/profile_normal.jpg","listed_count":7,"profile_text_color":"666666","name":"Angelo","statuses_count":355,"following":false,"screen_name":"rubyblackbelt","id":18958056,"id_str":"18958056","show_all_inline_media":false,"utc_offset":-18000,"friends_count":139,"profile_link_color":"2FC2EF"},{"show_all_inline_media":false,"time_zone":"Amsterdam","favourites_count":0,"description":"I'm a Ruby (on Rails) (Web) Developer. Founder of Final Creation and StackFu. I'm a freelancer and I work with @webbynode.","contributors_enabled":false,"profile_sidebar_fill_color":"efefef","followers_count":209,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28553104064,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28553104064","created_at":"Sun Oct 24 01:58:51 +0000 2010","in_reply_to_user_id":16086543,"favorited":false,"in_reply_to_user_id_str":"16086543","contributors":null,"coordinates":null,"in_reply_to_screen_name":"grahamt1","id":28553915461,"id_str":"28553915461","text":"@grahamt1 tooshay ;) this is true. At least, I try to avoid using it as much as possible!"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","verified":false,"url":"http:\/\/michaelvanrooijen.com\/","follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue May 06 16:20:16 +0000 2008","profile_background_color":"131516","location":"The Netherlands","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1102719219\/Screen_shot_2010-08-14_at_10.14.35_PM_normal.png","profile_text_color":"333333","name":"Michael van Rooijen","listed_count":17,"following":false,"friends_count":117,"screen_name":"meskyanichi","id":14675249,"id_str":"14675249","statuses_count":3981,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":false,"time_zone":"London","description":"\u2665 I Follow Back! \u2665\r\nI'm Helping Find Madeleine McCann!\r\n\r\n~ Let's Make a difference to our World! ~\r\n(If you DM me please let me know by tweet!)","profile_sidebar_fill_color":"ff7700","followers_count":45777,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28495540934,"source":"web","truncated":false,"in_reply_to_status_id_str":"28495540934","created_at":"Sat Oct 23 22:36:06 +0000 2010","in_reply_to_user_id":204854823,"favorited":false,"in_reply_to_user_id_str":"204854823","contributors":null,"coordinates":null,"in_reply_to_screen_name":"msjanemarps","id":28539747916,"id_str":"28539747916","text":"@msjanemarps Your email address isn't working, sorry do you have another or might you have spelt it wrong? Could you post the link by tweet?"},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/facebook.com\/PrayMaddyMcCann","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70145334\/MadeleineMcCann_.jpg","lang":"en","created_at":"Fri May 15 21:33:52 +0000 2009","profile_background_color":"ff0808","location":"Uk","listed_count":2310,"profile_background_tile":false,"friends_count":50324,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/981932263\/mail-6-1-08-km_normal.jpg","statuses_count":7528,"profile_text_color":"000000","name":"For Madeleine McCann","show_all_inline_media":true,"following":false,"favourites_count":9,"screen_name":"PrayMaddyMcCann","id":40339213,"id_str":"40339213","contributors_enabled":false,"utc_offset":0,"profile_link_color":"430082"},{"time_zone":null,"description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":17,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":false,"favourites_count":1,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":false,"created_at":"Mon Sep 21 16:48:22 +0000 2009","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/default_profile_2_normal.png","verified":false,"profile_text_color":"333333","name":"Nikolai Lugovoi","follow_request_sent":false,"following":false,"screen_name":"n_lugovoi","id":76073923,"id_str":"76073923","utc_offset":null,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":null,"description":"def method_missing m; \r\nprint m; \r\nend\r\nself.new.i.l.u.v.r.u.b.y","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":37,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Sep 07 06:27:29 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":23214805288,"id_str":"23214805288","text":"rubyquicktips: http:\/\/tumblr.com\/xg2huvtm0"},"notifications":null,"profile_use_background_image":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","friends_count":141,"url":"http:\/\/milandobrota.tumblr.com","follow_request_sent":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/81257060\/4056385100_3a2470256b_o.jpg","lang":"en","verified":false,"created_at":"Sat Mar 06 21:24:58 +0000 2010","profile_background_color":"C0DEED","location":"Ann Arbor, Michigan","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/915216298\/ruby_normal.png","profile_text_color":"333333","name":"Elite Coding","listed_count":5,"following":null,"screen_name":"elitecoding","id":120569549,"id_str":"120569549","statuses_count":100,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4"},{"time_zone":"New Delhi","description":"Linux Administrator from Hyderabad,India.","profile_sidebar_fill_color":"252429","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":224,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"favourites_count":412,"url":"http:\/\/www.kanthi.in","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/35771977\/king_twitter_wall.png","lang":"en","geo_enabled":false,"created_at":"Wed May 21 15:49:39 +0000 2008","profile_background_color":"1A1B1F","location":"India","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/402524737\/k3_normal.png","verified":false,"profile_text_color":"666666","name":"\u007B k.i.n.g \u007D","follow_request_sent":false,"following":false,"screen_name":"nkanthikiran","id":14857890,"id_str":"14857890","utc_offset":19800,"profile_link_color":"2FC2EF"},{"time_zone":"Quito","favourites_count":9,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"99CC33","followers_count":67,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 15:21:53 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27843044713,"id_str":"27843044713","text":"A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tumblr.com\/xaumcrhf6"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":true,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:10:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27847285170,"id_str":"27847285170","text":"RT @shoooesrb: A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tu ..."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/stwerner.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","lang":"en","created_at":"Wed Jul 08 15:19:06 +0000 2009","profile_background_color":"352726","location":"Pittsburgh","listed_count":8,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/305051659\/scott_normal.jpg","statuses_count":188,"profile_text_color":"3E4415","name":"Scott Werner","show_all_inline_media":false,"following":false,"friends_count":109,"screen_name":"scottwisme","id":54925281,"id_str":"54925281","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"D02B55"},{"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":32,"description":"Rails developer","listed_count":11,"statuses_count":81,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":"anutron","in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://twitter.com\" rel=\"nofollow\">Tweetie for Mac</a>","retweet_count":null,"in_reply_to_user_id":9555952,"created_at":"Wed Oct 20 17:45:04 +0000 2010","favorited":false,"coordinates":null,"id":27951368992,"text":"@anutron The /Test directory is automated via your mootools-test-runner?"},"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","contributors_enabled":false,"profile_background_color":"C0DEED","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Tue Feb 09 18:10:38 +0000 2010","friends_count":179,"profile_image_url":"http://a0.twimg.com/profile_images/685636564/greg_normal.jpg","location":"Los Angeles, CA","follow_request_sent":false,"favourites_count":1,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"gregmoeck","name":"Gregory Moeck","following":false,"profile_sidebar_fill_color":"DDEEF6","id":112784958,"show_all_inline_media":false,"utc_offset":-28800},{"time_zone":"Hawaii","description":"","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":0,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/polecane.pl","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","listed_count":0,"lang":"en","created_at":"Sun Jan 03 09:22:16 +0000 2010","friends_count":0,"profile_background_color":"C0DEED","location":"","statuses_count":1,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/default_profile_5_normal.png","show_all_inline_media":false,"favourites_count":0,"profile_text_color":"333333","name":"kompostownik","contributors_enabled":false,"following":false,"screen_name":"kompostownik","id":101441401,"id_str":"101441401","geo_enabled":false,"utc_offset":-36000,"profile_link_color":"0084B4"},{"verified":false,"description":"Search architect, web developer, product manager, father, runner, DIY geek, Ruby on Rails, Java, Linux","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","status":{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"web","contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 18 18:03:00 +0000 2010","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"id":27756969535,"retweeted":false,"in_reply_to_user_id":null,"text":"I knew updating my iTunes bloatware was a bad idea. It is so much more bloated that it froze on me. :( #fb"},"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","profile_background_color":"022330","url":null,"listed_count":8,"profile_background_tile":false,"friends_count":98,"lang":"en","statuses_count":281,"created_at":"Fri May 22 02:20:32 +0000 2009","profile_text_color":"333333","location":"Montreal, QC","show_all_inline_media":false,"favourites_count":0,"protected":false,"profile_image_url":"http://a2.twimg.com/profile_images/383563406/profile-on-grass-square_normal.JPG","contributors_enabled":false,"profile_link_color":"0084B4","followers_count":128,"name":"Marc Lavigne-Gagnon","following":false,"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","screen_name":"lavignegagnon","id":41731143,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC"},{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"do what you love well","geo_enabled":false,"profile_sidebar_fill_color":"F3F3F3","followers_count":246,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 04:27:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28564806646,"id_str":"28564806646","text":"North Beach is on fire right now"},"notifications":false,"verified":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFDFDF","follow_request_sent":false,"url":"http:\/\/parameterized.net","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3808550\/radiohead.14.jpg","lang":"en","created_at":"Sun Mar 11 01:42:58 +0000 2007","profile_background_color":"EBEBEB","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/651329954\/mug2_normal.jpg","listed_count":12,"friends_count":286,"profile_text_color":"333333","name":"Mike Wadhera","statuses_count":1166,"following":false,"screen_name":"mikewadhera","id":894801,"id_str":"894801","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":3,"profile_link_color":"990000"},{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","description":"Hacker, mathematician, creative developer of web applications. Interested in creating innovative apps. I tweet about #ruby, #coding, #tech, #music and #life. ","contributors_enabled":false,"profile_sidebar_fill_color":"95E8EC","followers_count":1882,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:08:23 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559074728,"id_str":"28559074728","text":"Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:10:42 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559252000,"id_str":"28559252000","text":"RT @MWilliams831: Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"notifications":false,"friends_count":1815,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","geo_enabled":true,"url":"http:\/\/maggit.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28562826\/music-1.jpg","lang":"en","verified":false,"favourites_count":348,"created_at":"Mon Feb 19 21:37:08 +0000 2007","profile_background_color":"0099B9","location":"New York, NY","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1136807699\/IMG_0501_normal.JPG","profile_text_color":"3C3940","name":"Raquel Hern\u00e1ndez","listed_count":100,"following":false,"screen_name":"maggit","id":781314,"id_str":"781314","statuses_count":9431,"utc_offset":-18000,"profile_link_color":"0099B9"},{"listed_count":11,"time_zone":"Eastern Time (US & Canada)","friends_count":280,"description":"Old pro who likes new tools.","statuses_count":622,"profile_sidebar_fill_color":"e0ff92","followers_count":170,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 22 13:57:10 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28406803592,"id_str":"28406803592","text":"My body is still in the office but my mind is on US1 headed down to the keys."},"show_all_inline_media":false,"notifications":false,"favourites_count":1,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","geo_enabled":true,"url":"https:\/\/workbeast.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/32465356\/peachleaf_and_turd.jpg","lang":"en","verified":false,"created_at":"Mon Feb 25 15:13:21 +0000 2008","profile_background_color":"9ae4e8","location":"Miami, Florida","follow_request_sent":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/574757590\/oldhat_normal.jpg","profile_text_color":"000000","name":"Scott Moe","following":false,"screen_name":"scotchmoose","id":13943122,"id_str":"13943122","utc_offset":-18000,"profile_link_color":"0000ff"},{"follow_request_sent":false,"time_zone":"Madrid","description":"","profile_sidebar_fill_color":"efefef","followers_count":69,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 23 08:01:27 +0000 2010","in_reply_to_user_id":6505422,"favorited":false,"in_reply_to_user_id_str":"6505422","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jyurek","id":28482039882,"id_str":"28482039882","text":"@jyurek @elise_huard really enjoyed talking with you during the dinner. Still thinking about the best way to test Websockets... :)"},"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","listed_count":5,"friends_count":95,"url":"http:\/\/codegram.com","statuses_count":209,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme14\/bg.gif","show_all_inline_media":false,"lang":"en","favourites_count":3,"created_at":"Wed Jun 20 13:00:41 +0000 2007","profile_background_color":"131516","location":"Barcelona, Spain","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/705579346\/22157_298504914874_702129874_3297028_6073629_n_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"Josep Jaume","following":false,"screen_name":"josepjaume","id":6965262,"id_str":"6965262","verified":false,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"In pursuit of the Unix philosophy : http:\/\/www.faqs.org\/docs\/artu\/ch01s06.html","profile_sidebar_fill_color":"252429","followers_count":591,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28556641497,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28556641497","created_at":"Sun Oct 24 02:36:50 +0000 2010","in_reply_to_user_id":6614702,"favorited":false,"in_reply_to_user_id_str":"6614702","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jmettraux","id":28556716852,"id_str":"28556716852","text":"@jmettraux \" srm removes each specified file by overwriting, renaming, and truncating it before unlinking.\""},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/nepcoder.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","profile_background_color":"1A1B1F","location":"Mountain View, CA","listed_count":44,"profile_background_tile":false,"friends_count":1778,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112504408\/profile_normal.jpeg","statuses_count":3157,"profile_text_color":"666666","name":"Himanshu Chhetri","show_all_inline_media":false,"following":false,"favourites_count":395,"screen_name":"himanshuc","id":12474212,"id_str":"12474212","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"}], "next_cursor":1322801608223717003, "previous_cursor":0, "next_cursor_str":"1322801608223717003", "previous_cursor_str":"0"}
1
+ {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"}], "next_cursor":1322801608223717003, "previous_cursor":0, "next_cursor_str":"1322801608223717003", "previous_cursor_str":"0"}
@@ -1 +1 @@
1
- {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":"Arizona","favourites_count":200,"description":"Chief hamradio operator (N7ICE) & creator of 73s.org. Founder of Teleku, SurfByTel, Numly, Gospelr, Chug'd, & Spree.ly. Host of Rubyology and HamBrief.TV.","contributors_enabled":false,"profile_sidebar_fill_color":"FFE15C","followers_count":1961,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 05:17:26 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28568059801,"id_str":"28568059801","text":"RT @vivagrams: Today's design, coding & biz dev brought to you by donuts - contributor to our happiness factor! http:\/\/bit.ly\/aGeTNT #swphx"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"7E8279","verified":false,"url":"http:\/\/ChrisMatthieu.com","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/10843800\/Chris_Superman2.jpg","lang":"en","created_at":"Mon Feb 18 01:30:03 +0000 2008","profile_background_color":"c4c4c4","location":"Phoenix, Arizona","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/918916153\/SuperChrisSmall_normal.jpg","profile_text_color":"422828","name":"Chris Matthieu N7ICE","listed_count":158,"following":false,"friends_count":1019,"screen_name":"chrismatthieu","id":13604142,"id_str":"13604142","statuses_count":8877,"utc_offset":-25200,"profile_link_color":"E81717"},{"time_zone":"Eastern Time (US & Canada)","description":"i be mig","profile_sidebar_fill_color":"edffcc","followers_count":0,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":1130221444,"source":"\u003Ca href=\"http:\/\/splitweet.com\" rel=\"nofollow\"\u003ESplitweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"1130221444","created_at":"Mon Jan 19 17:13:27 +0000 2009","in_reply_to_user_id":9885102,"favorited":false,"in_reply_to_user_id_str":"9885102","contributors":null,"coordinates":null,"in_reply_to_screen_name":"drnic","id":1130874731,"id_str":"1130874731","text":"@drnic you are looking for http:\/\/github.com\/potionfactory\/potionstore\/ no?"},"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":3,"profile_use_background_image":false,"profile_sidebar_border_color":"dcdbad","show_all_inline_media":false,"favourites_count":0,"url":"http:\/\/google.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":true,"created_at":"Thu Nov 20 05:46:54 +0000 2008","profile_background_color":"25618e","location":"washington dc","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/69434006\/spudd_normal.jpg","verified":false,"profile_text_color":"333333","name":"Mig Pggbee","follow_request_sent":false,"following":false,"screen_name":"pggbee","id":17505580,"id_str":"17505580","utc_offset":-18000,"profile_link_color":"0084B4"},{"time_zone":"Central Time (US & Canada)","description":"Entrepreneur, Rails Developer, Gamer, Single (divorced) guy in Houston","profile_sidebar_fill_color":"252429","followers_count":590,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twidroid.com\" rel=\"nofollow\"\u003Etwidroid\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 22 01:44:18 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":21793039231,"id_str":"21793039231","text":"Gotta day the premier party is lots of fun. #GarbageMoguls"},"listed_count":13,"notifications":false,"statuses_count":336,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"url":"http:\/\/bcatherall.blogspot.com\/","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme9\/bg.gif","lang":"en","favourites_count":2,"created_at":"Tue Mar 13 20:09:00 +0000 2007","friends_count":679,"profile_background_color":"1A1B1F","location":"Houston, Texas","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/96813420\/me-in-hat_normal.jpg","geo_enabled":false,"profile_text_color":"666666","name":"Billy R Catherall","follow_request_sent":false,"following":false,"screen_name":"bcatherall","id":1112241,"id_str":"1112241","verified":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"},{"statuses_count":206,"profile_text_color":"3C3940","description":"die before you are dead","profile_background_tile":false,"favourites_count":2,"contributors_enabled":false,"profile_link_color":"0099B9","listed_count":4,"geo_enabled":false,"profile_sidebar_fill_color":"95E8EC","url":null,"verified":false,"notifications":null,"time_zone":"New Delhi","follow_request_sent":null,"lang":"en","created_at":"Sun Aug 12 17:33:09 +0000 2007","profile_sidebar_border_color":"5ED4DC","profile_image_url":"http://a1.twimg.com/profile_images/1082656833/sur_at_seashore_normal.jpg","location":"New Delhi, India","protected":true,"profile_use_background_image":true,"followers_count":198,"screen_name":"sur","name":"Sur","following":null,"profile_background_color":"0099B9","id":8143072,"show_all_inline_media":false,"profile_background_image_url":"http://s.twimg.com/a/1285694546/images/themes/theme4/bg.gif","utc_offset":19800,"friends_count":222},{"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Senior Ruby\/Javascript Developer\/Consultant","favourites_count":0,"profile_sidebar_fill_color":"252429","followers_count":99,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/seesmic.com\/seesmic_mobile\/android\/\" rel=\"nofollow\"\u003ESeesmic for Android\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:50:16 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27850500237,"id_str":"27850500237","text":"Some screen-like hotkeys for tmux http:\/\/bit.ly\/bZCgsT"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Tue Jan 13 23:14:33 +0000 2009","profile_background_color":"1A1B1F","location":"Toronto, Ontario, Canada","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/747713188\/profile_normal.jpg","listed_count":7,"profile_text_color":"666666","name":"Angelo","statuses_count":355,"following":false,"screen_name":"rubyblackbelt","id":18958056,"id_str":"18958056","show_all_inline_media":false,"utc_offset":-18000,"friends_count":139,"profile_link_color":"2FC2EF"},{"show_all_inline_media":false,"time_zone":"Amsterdam","favourites_count":0,"description":"I'm a Ruby (on Rails) (Web) Developer. Founder of Final Creation and StackFu. I'm a freelancer and I work with @webbynode.","contributors_enabled":false,"profile_sidebar_fill_color":"efefef","followers_count":209,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28553104064,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28553104064","created_at":"Sun Oct 24 01:58:51 +0000 2010","in_reply_to_user_id":16086543,"favorited":false,"in_reply_to_user_id_str":"16086543","contributors":null,"coordinates":null,"in_reply_to_screen_name":"grahamt1","id":28553915461,"id_str":"28553915461","text":"@grahamt1 tooshay ;) this is true. At least, I try to avoid using it as much as possible!"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","verified":false,"url":"http:\/\/michaelvanrooijen.com\/","follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue May 06 16:20:16 +0000 2008","profile_background_color":"131516","location":"The Netherlands","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1102719219\/Screen_shot_2010-08-14_at_10.14.35_PM_normal.png","profile_text_color":"333333","name":"Michael van Rooijen","listed_count":17,"following":false,"friends_count":117,"screen_name":"meskyanichi","id":14675249,"id_str":"14675249","statuses_count":3981,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":false,"time_zone":"London","description":"\u2665 I Follow Back! \u2665\r\nI'm Helping Find Madeleine McCann!\r\n\r\n~ Let's Make a difference to our World! ~\r\n(If you DM me please let me know by tweet!)","profile_sidebar_fill_color":"ff7700","followers_count":45777,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28495540934,"source":"web","truncated":false,"in_reply_to_status_id_str":"28495540934","created_at":"Sat Oct 23 22:36:06 +0000 2010","in_reply_to_user_id":204854823,"favorited":false,"in_reply_to_user_id_str":"204854823","contributors":null,"coordinates":null,"in_reply_to_screen_name":"msjanemarps","id":28539747916,"id_str":"28539747916","text":"@msjanemarps Your email address isn't working, sorry do you have another or might you have spelt it wrong? Could you post the link by tweet?"},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/facebook.com\/PrayMaddyMcCann","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70145334\/MadeleineMcCann_.jpg","lang":"en","created_at":"Fri May 15 21:33:52 +0000 2009","profile_background_color":"ff0808","location":"Uk","listed_count":2310,"profile_background_tile":false,"friends_count":50324,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/981932263\/mail-6-1-08-km_normal.jpg","statuses_count":7528,"profile_text_color":"000000","name":"For Madeleine McCann","show_all_inline_media":true,"following":false,"favourites_count":9,"screen_name":"PrayMaddyMcCann","id":40339213,"id_str":"40339213","contributors_enabled":false,"utc_offset":0,"profile_link_color":"430082"},{"time_zone":null,"description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":17,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":false,"favourites_count":1,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":false,"created_at":"Mon Sep 21 16:48:22 +0000 2009","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/default_profile_2_normal.png","verified":false,"profile_text_color":"333333","name":"Nikolai Lugovoi","follow_request_sent":false,"following":false,"screen_name":"n_lugovoi","id":76073923,"id_str":"76073923","utc_offset":null,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":null,"description":"def method_missing m; \r\nprint m; \r\nend\r\nself.new.i.l.u.v.r.u.b.y","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":37,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Sep 07 06:27:29 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":23214805288,"id_str":"23214805288","text":"rubyquicktips: http:\/\/tumblr.com\/xg2huvtm0"},"notifications":null,"profile_use_background_image":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","friends_count":141,"url":"http:\/\/milandobrota.tumblr.com","follow_request_sent":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/81257060\/4056385100_3a2470256b_o.jpg","lang":"en","verified":false,"created_at":"Sat Mar 06 21:24:58 +0000 2010","profile_background_color":"C0DEED","location":"Ann Arbor, Michigan","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/915216298\/ruby_normal.png","profile_text_color":"333333","name":"Elite Coding","listed_count":5,"following":null,"screen_name":"elitecoding","id":120569549,"id_str":"120569549","statuses_count":100,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4"},{"time_zone":"New Delhi","description":"Linux Administrator from Hyderabad,India.","profile_sidebar_fill_color":"252429","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":224,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"favourites_count":412,"url":"http:\/\/www.kanthi.in","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/35771977\/king_twitter_wall.png","lang":"en","geo_enabled":false,"created_at":"Wed May 21 15:49:39 +0000 2008","profile_background_color":"1A1B1F","location":"India","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/402524737\/k3_normal.png","verified":false,"profile_text_color":"666666","name":"\u007B k.i.n.g \u007D","follow_request_sent":false,"following":false,"screen_name":"nkanthikiran","id":14857890,"id_str":"14857890","utc_offset":19800,"profile_link_color":"2FC2EF"},{"time_zone":"Quito","favourites_count":9,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"99CC33","followers_count":67,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 15:21:53 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27843044713,"id_str":"27843044713","text":"A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tumblr.com\/xaumcrhf6"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":true,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:10:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27847285170,"id_str":"27847285170","text":"RT @shoooesrb: A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tu ..."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/stwerner.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","lang":"en","created_at":"Wed Jul 08 15:19:06 +0000 2009","profile_background_color":"352726","location":"Pittsburgh","listed_count":8,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/305051659\/scott_normal.jpg","statuses_count":188,"profile_text_color":"3E4415","name":"Scott Werner","show_all_inline_media":false,"following":false,"friends_count":109,"screen_name":"scottwisme","id":54925281,"id_str":"54925281","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"D02B55"},{"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":32,"description":"Rails developer","listed_count":11,"statuses_count":81,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":"anutron","in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://twitter.com\" rel=\"nofollow\">Tweetie for Mac</a>","retweet_count":null,"in_reply_to_user_id":9555952,"created_at":"Wed Oct 20 17:45:04 +0000 2010","favorited":false,"coordinates":null,"id":27951368992,"text":"@anutron The /Test directory is automated via your mootools-test-runner?"},"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","contributors_enabled":false,"profile_background_color":"C0DEED","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Tue Feb 09 18:10:38 +0000 2010","friends_count":179,"profile_image_url":"http://a0.twimg.com/profile_images/685636564/greg_normal.jpg","location":"Los Angeles, CA","follow_request_sent":false,"favourites_count":1,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"gregmoeck","name":"Gregory Moeck","following":false,"profile_sidebar_fill_color":"DDEEF6","id":112784958,"show_all_inline_media":false,"utc_offset":-28800},{"time_zone":"Hawaii","description":"","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":0,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/polecane.pl","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","listed_count":0,"lang":"en","created_at":"Sun Jan 03 09:22:16 +0000 2010","friends_count":0,"profile_background_color":"C0DEED","location":"","statuses_count":1,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/default_profile_5_normal.png","show_all_inline_media":false,"favourites_count":0,"profile_text_color":"333333","name":"kompostownik","contributors_enabled":false,"following":false,"screen_name":"kompostownik","id":101441401,"id_str":"101441401","geo_enabled":false,"utc_offset":-36000,"profile_link_color":"0084B4"},{"verified":false,"description":"Search architect, web developer, product manager, father, runner, DIY geek, Ruby on Rails, Java, Linux","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","status":{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"web","contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 18 18:03:00 +0000 2010","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"id":27756969535,"retweeted":false,"in_reply_to_user_id":null,"text":"I knew updating my iTunes bloatware was a bad idea. It is so much more bloated that it froze on me. :( #fb"},"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","profile_background_color":"022330","url":null,"listed_count":8,"profile_background_tile":false,"friends_count":98,"lang":"en","statuses_count":281,"created_at":"Fri May 22 02:20:32 +0000 2009","profile_text_color":"333333","location":"Montreal, QC","show_all_inline_media":false,"favourites_count":0,"protected":false,"profile_image_url":"http://a2.twimg.com/profile_images/383563406/profile-on-grass-square_normal.JPG","contributors_enabled":false,"profile_link_color":"0084B4","followers_count":128,"name":"Marc Lavigne-Gagnon","following":false,"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","screen_name":"lavignegagnon","id":41731143,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC"},{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"do what you love well","geo_enabled":false,"profile_sidebar_fill_color":"F3F3F3","followers_count":246,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 04:27:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28564806646,"id_str":"28564806646","text":"North Beach is on fire right now"},"notifications":false,"verified":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFDFDF","follow_request_sent":false,"url":"http:\/\/parameterized.net","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3808550\/radiohead.14.jpg","lang":"en","created_at":"Sun Mar 11 01:42:58 +0000 2007","profile_background_color":"EBEBEB","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/651329954\/mug2_normal.jpg","listed_count":12,"friends_count":286,"profile_text_color":"333333","name":"Mike Wadhera","statuses_count":1166,"following":false,"screen_name":"mikewadhera","id":894801,"id_str":"894801","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":3,"profile_link_color":"990000"},{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","description":"Hacker, mathematician, creative developer of web applications. Interested in creating innovative apps. I tweet about #ruby, #coding, #tech, #music and #life. ","contributors_enabled":false,"profile_sidebar_fill_color":"95E8EC","followers_count":1882,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:08:23 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559074728,"id_str":"28559074728","text":"Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:10:42 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559252000,"id_str":"28559252000","text":"RT @MWilliams831: Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"notifications":false,"friends_count":1815,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","geo_enabled":true,"url":"http:\/\/maggit.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28562826\/music-1.jpg","lang":"en","verified":false,"favourites_count":348,"created_at":"Mon Feb 19 21:37:08 +0000 2007","profile_background_color":"0099B9","location":"New York, NY","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1136807699\/IMG_0501_normal.JPG","profile_text_color":"3C3940","name":"Raquel Hern\u00e1ndez","listed_count":100,"following":false,"screen_name":"maggit","id":781314,"id_str":"781314","statuses_count":9431,"utc_offset":-18000,"profile_link_color":"0099B9"},{"listed_count":11,"time_zone":"Eastern Time (US & Canada)","friends_count":280,"description":"Old pro who likes new tools.","statuses_count":622,"profile_sidebar_fill_color":"e0ff92","followers_count":170,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 22 13:57:10 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28406803592,"id_str":"28406803592","text":"My body is still in the office but my mind is on US1 headed down to the keys."},"show_all_inline_media":false,"notifications":false,"favourites_count":1,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","geo_enabled":true,"url":"https:\/\/workbeast.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/32465356\/peachleaf_and_turd.jpg","lang":"en","verified":false,"created_at":"Mon Feb 25 15:13:21 +0000 2008","profile_background_color":"9ae4e8","location":"Miami, Florida","follow_request_sent":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/574757590\/oldhat_normal.jpg","profile_text_color":"000000","name":"Scott Moe","following":false,"screen_name":"scotchmoose","id":13943122,"id_str":"13943122","utc_offset":-18000,"profile_link_color":"0000ff"},{"follow_request_sent":false,"time_zone":"Madrid","description":"","profile_sidebar_fill_color":"efefef","followers_count":69,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 23 08:01:27 +0000 2010","in_reply_to_user_id":6505422,"favorited":false,"in_reply_to_user_id_str":"6505422","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jyurek","id":28482039882,"id_str":"28482039882","text":"@jyurek @elise_huard really enjoyed talking with you during the dinner. Still thinking about the best way to test Websockets... :)"},"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","listed_count":5,"friends_count":95,"url":"http:\/\/codegram.com","statuses_count":209,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme14\/bg.gif","show_all_inline_media":false,"lang":"en","favourites_count":3,"created_at":"Wed Jun 20 13:00:41 +0000 2007","profile_background_color":"131516","location":"Barcelona, Spain","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/705579346\/22157_298504914874_702129874_3297028_6073629_n_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"Josep Jaume","following":false,"screen_name":"josepjaume","id":6965262,"id_str":"6965262","verified":false,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"In pursuit of the Unix philosophy : http:\/\/www.faqs.org\/docs\/artu\/ch01s06.html","profile_sidebar_fill_color":"252429","followers_count":591,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28556641497,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28556641497","created_at":"Sun Oct 24 02:36:50 +0000 2010","in_reply_to_user_id":6614702,"favorited":false,"in_reply_to_user_id_str":"6614702","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jmettraux","id":28556716852,"id_str":"28556716852","text":"@jmettraux \" srm removes each specified file by overwriting, renaming, and truncating it before unlinking.\""},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/nepcoder.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","profile_background_color":"1A1B1F","location":"Mountain View, CA","listed_count":44,"profile_background_tile":false,"friends_count":1778,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112504408\/profile_normal.jpeg","statuses_count":3157,"profile_text_color":"666666","name":"Himanshu Chhetri","show_all_inline_media":false,"following":false,"favourites_count":395,"screen_name":"himanshuc","id":12474212,"id_str":"12474212","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"}], "next_cursor":0, "previous_cursor":1322801608223717003, "next_cursor_str":"0", "previous_cursor_str":"1322801608223717003"}
1
+ {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"}], "next_cursor":0, "previous_cursor":1322801608223717003, "next_cursor_str":"0", "previous_cursor_str":"1322801608223717003"}
@@ -9,7 +9,7 @@ describe Twitter::API::Favorites do
9
9
  describe "#favorites" do
10
10
  context "with a screen name passed" do
11
11
  before do
12
- stub_get("/1.1/favorites/list.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("favorites.json"), :headers => {:content_type => "application/json; charset=utf-8"})
12
+ stub_get("/1.1/favorites/list.json").with(:query => {:screen_name => "sferik"}).to_return(:body => fixture("user_timeline.json"), :headers => {:content_type => "application/json; charset=utf-8"})
13
13
  end
14
14
  it "requests the correct resource" do
15
15
  @client.favorites("sferik")
@@ -19,12 +19,12 @@ describe Twitter::API::Favorites do
19
19
  favorites = @client.favorites("sferik")
20
20
  expect(favorites).to be_an Array
21
21
  expect(favorites.first).to be_a Twitter::Tweet
22
- expect(favorites.first.user.id).to eq 2404341
22
+ expect(favorites.first.user.id).to eq 7505382
23
23
  end
24
24
  end
25
25
  context "without arguments passed" do
26
26
  before do
27
- stub_get("/1.1/favorites/list.json").to_return(:body => fixture("favorites.json"), :headers => {:content_type => "application/json; charset=utf-8"})
27
+ stub_get("/1.1/favorites/list.json").to_return(:body => fixture("user_timeline.json"), :headers => {:content_type => "application/json; charset=utf-8"})
28
28
  end
29
29
  it "requests the correct resource" do
30
30
  @client.favorites
@@ -34,7 +34,7 @@ describe Twitter::API::Favorites do
34
34
  favorites = @client.favorites
35
35
  expect(favorites).to be_an Array
36
36
  expect(favorites.first).to be_a Twitter::Tweet
37
- expect(favorites.first.user.id).to eq 2404341
37
+ expect(favorites.first.user.id).to eq 7505382
38
38
  end
39
39
  end
40
40
  end
@@ -53,11 +53,13 @@ describe Twitter::API::FriendsAndFollowers do
53
53
  end
54
54
  context "without arguments passed" do
55
55
  before do
56
- stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
56
+ stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
57
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
57
58
  end
58
59
  it "requests the correct resource" do
59
60
  @client.friend_ids
60
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
61
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
62
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
61
63
  end
62
64
  it "returns an array of numeric IDs for every user the specified user is following" do
63
65
  friend_ids = @client.friend_ids
@@ -67,12 +69,13 @@ describe Twitter::API::FriendsAndFollowers do
67
69
  end
68
70
  context "with all" do
69
71
  before do
70
- stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
72
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
71
73
  end
72
74
  it "requests the correct resource" do
73
75
  @client.friend_ids.all
74
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
75
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703"})).to have_been_made
76
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
77
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
78
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"})).to have_been_made
76
79
  end
77
80
  end
78
81
  end
@@ -125,11 +128,13 @@ describe Twitter::API::FriendsAndFollowers do
125
128
  end
126
129
  context "without arguments passed" do
127
130
  before do
128
- stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
131
+ stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
132
+ stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
129
133
  end
130
134
  it "requests the correct resource" do
131
135
  @client.follower_ids
132
- expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
136
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
137
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
133
138
  end
134
139
  it "returns an array of numeric IDs for every user following the specified user" do
135
140
  follower_ids = @client.follower_ids
@@ -139,12 +144,13 @@ describe Twitter::API::FriendsAndFollowers do
139
144
  end
140
145
  context "with all" do
141
146
  before do
142
- stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
147
+ stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
143
148
  end
144
149
  it "requests the correct resource" do
145
150
  @client.follower_ids.all
146
- expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
147
- expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703"})).to have_been_made
151
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
152
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
153
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"})).to have_been_made
148
154
  end
149
155
  end
150
156
  end
@@ -295,13 +301,15 @@ describe Twitter::API::FriendsAndFollowers do
295
301
  describe "#follow" do
296
302
  context "with :follow => true passed" do
297
303
  before do
298
- stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
304
+ stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
305
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
299
306
  stub_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"}).to_return(:body => fixture("friendships.json"), :headers => {:content_type => "application/json; charset=utf-8"})
300
307
  stub_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382", :follow => "true"}).to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
301
308
  end
302
309
  it "requests the correct resource" do
303
310
  @client.follow("sferik", "pengwynn", :follow => true)
304
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
311
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
312
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
305
313
  expect(a_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"})).to have_been_made
306
314
  expect(a_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382", :follow => "true"})).to have_been_made
307
315
  end
@@ -314,41 +322,33 @@ describe Twitter::API::FriendsAndFollowers do
314
322
  end
315
323
  context "with :follow => false passed" do
316
324
  before do
317
- stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
325
+ stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
326
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
318
327
  stub_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"}).to_return(:body => fixture("friendships.json"), :headers => {:content_type => "application/json; charset=utf-8"})
319
328
  stub_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382"}).to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
320
329
  end
321
330
  it "requests the correct resource" do
322
331
  @client.follow("sferik", "pengwynn", :follow => false)
323
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
332
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
333
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
324
334
  expect(a_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"})).to have_been_made
325
335
  expect(a_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382"})).to have_been_made
326
336
  end
327
- it "returns an array of befriended users" do
328
- users = @client.follow("sferik", "pengwynn", :follow => false)
329
- expect(users).to be_an Array
330
- expect(users.first).to be_a Twitter::User
331
- expect(users.first.id).to eq 7505382
332
- end
333
337
  end
334
338
  context "without :follow passed" do
335
339
  before do
336
- stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
340
+ stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
341
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
337
342
  stub_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"}).to_return(:body => fixture("friendships.json"), :headers => {:content_type => "application/json; charset=utf-8"})
338
343
  stub_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382"}).to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
339
344
  end
340
345
  it "requests the correct resource" do
341
346
  @client.follow("sferik", "pengwynn")
342
- expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1"})).to have_been_made
347
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
348
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
343
349
  expect(a_post("/1.1/users/lookup.json").with(:body => {:screen_name => "sferik,pengwynn"})).to have_been_made
344
350
  expect(a_post("/1.1/friendships/create.json").with(:body => {:user_id => "7505382"})).to have_been_made
345
351
  end
346
- it "returns an array of befriended users" do
347
- users = @client.follow("sferik", "pengwynn")
348
- expect(users).to be_an Array
349
- expect(users.first).to be_a Twitter::User
350
- expect(users.first.id).to eq 7505382
351
- end
352
352
  end
353
353
  end
354
354
 
@@ -570,6 +570,7 @@ describe Twitter::API::FriendsAndFollowers do
570
570
  end
571
571
  it "requests the correct resource" do
572
572
  @client.followers
573
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
573
574
  expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
574
575
  end
575
576
  it "returns a cursor of followers with details for every user the specified user is followed by" do
@@ -584,6 +585,7 @@ describe Twitter::API::FriendsAndFollowers do
584
585
  end
585
586
  it "requests the correct resource" do
586
587
  @client.followers.all
588
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
587
589
  expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
588
590
  expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :screen_name => "sferik"})).to have_been_made
589
591
  end
@@ -643,6 +645,7 @@ describe Twitter::API::FriendsAndFollowers do
643
645
  end
644
646
  it "requests the correct resource" do
645
647
  @client.friends
648
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
646
649
  expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
647
650
  end
648
651
  it "returns a cursor of friends with details for every user the specified user is following" do
@@ -657,6 +660,7 @@ describe Twitter::API::FriendsAndFollowers do
657
660
  end
658
661
  it "requests the correct resource" do
659
662
  @client.friends.all
663
+ expect(a_get("/1.1/account/verify_credentials.json")).to have_been_made
660
664
  expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
661
665
  expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :screen_name => "sferik"})).to have_been_made
662
666
  end
@@ -52,7 +52,7 @@ describe Twitter::API::SuggestedUsers do
52
52
  suggest_users = @client.suggest_users("art-design")
53
53
  expect(suggest_users).to be_an Array
54
54
  expect(suggest_users.first).to be_a Twitter::User
55
- expect(suggest_users.first.name).to eq "OMGFacts"
55
+ expect(suggest_users.first.id).to eq 13
56
56
  end
57
57
  end
58
58