twitter 4.4.1 → 4.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,9 @@
1
+ 4.4.2
2
+ -----
3
+ * [Fix to `Twitter::API::FriendsAndFollowers#friends` and `Twitter::API::FriendsAndFollowers#followers`](https://github.com/sferik/twitter/commit/d97438f5de89a1a15ad8ff5e67e8e0c7d412911f) ([@nbraem](https://twitter.com/nbraem))
4
+ * [Alias `Twitter::DirectMessage#text` to `Twitter::DirectMessage#full_text`](https://github.com/sferik/twitter/commit/dde92816beac5076507b3c0fb5b036222e2a4889)
5
+ * [Remove `Kernel#calling_method`](https://github.com/sferik/twitter/commit/045d6e17178520641509f884ed4ce4e4f2f765fb)
6
+
1
7
  4.4.1
2
8
  -----
3
9
  * [Do not modify `Thread.abort_on_exception`](https://github.com/sferik/twitter/commit/6de998ced1f3dce97a24e500ecf2348192ae9316)
data/README.md CHANGED
@@ -370,8 +370,8 @@ recommend [Oj][].
370
370
  Here are some fun facts about this library:
371
371
 
372
372
  * It is implemented in just 2,000 lines of Ruby code
373
- * With over 4,000 lines of specs, the spec-to-code ratio is over 2:1
374
- * The spec suite contains over 700 examples and runs in about 5 seconds
373
+ * With over 5,000 lines of specs, the spec-to-code ratio is about 2.5:1
374
+ * The spec suite contains over 750 examples and runs in about 5 seconds
375
375
  * It has 100% C0 code coverage (the tests execute every line of
376
376
  source code at least once)
377
377
  * It is comprehensive: you can request all documented Twitter REST API
@@ -31,7 +31,7 @@ module Twitter
31
31
  # Twitter.friend_ids('sferik')
32
32
  # Twitter.friend_ids(7505382) # Same as above
33
33
  def friend_ids(*args)
34
- ids_from_response(:get, "/1.1/friends/ids.json", args)
34
+ ids_from_response(:get, "/1.1/friends/ids.json", args, :friend_ids)
35
35
  end
36
36
 
37
37
  # @see https://dev.twitter.com/docs/api/1.1/get/followers/ids
@@ -56,7 +56,7 @@ module Twitter
56
56
  # Twitter.follower_ids('sferik')
57
57
  # Twitter.follower_ids(7505382) # Same as above
58
58
  def follower_ids(*args)
59
- ids_from_response(:get, "/1.1/followers/ids.json", args)
59
+ ids_from_response(:get, "/1.1/followers/ids.json", args, :follower_ids)
60
60
  end
61
61
 
62
62
  # Returns the relationship of the authenticating user to the comma separated list of up to 100 screen_names or user_ids provided. Values for connections can be: following, following_requested, followed_by, none.
@@ -94,7 +94,7 @@ module Twitter
94
94
  # Twitter.friendships_incoming
95
95
  def friendships_incoming(options={})
96
96
  merge_default_cursor!(options)
97
- cursor_from_response(:ids, nil, :get, "/1.1/friendships/incoming.json", options)
97
+ cursor_from_response(:ids, nil, :get, "/1.1/friendships/incoming.json", options, :friendships_incoming)
98
98
  end
99
99
 
100
100
  # Returns an array of numeric IDs for every protected user for whom the authenticating user has a pending follow request
@@ -110,7 +110,7 @@ module Twitter
110
110
  # Twitter.friendships_outgoing
111
111
  def friendships_outgoing(options={})
112
112
  merge_default_cursor!(options)
113
- cursor_from_response(:ids, nil, :get, "/1.1/friendships/outgoing.json", options)
113
+ cursor_from_response(:ids, nil, :get, "/1.1/friendships/outgoing.json", options, :friendships_outgoing)
114
114
  end
115
115
 
116
116
  # Allows the authenticating user to follow the specified users, unless they are already followed
@@ -282,7 +282,7 @@ module Twitter
282
282
  # Twitter.followers('sferik')
283
283
  # Twitter.followers(7505382) # Same as above
284
284
  def followers(*args)
285
- friends_or_followers_from_response(:get, "/1.1/followers/list.json", args)
285
+ friends_or_followers_from_response(:get, "/1.1/followers/list.json", args, :followers)
286
286
  end
287
287
 
288
288
  # Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").
@@ -313,7 +313,7 @@ module Twitter
313
313
  # Twitter.friends('sferik')
314
314
  # Twitter.friends(7505382) # Same as above
315
315
  def friends(*args)
316
- friends_or_followers_from_response(:get, "/1.1/friends/list.json", args)
316
+ friends_or_followers_from_response(:get, "/1.1/friends/list.json", args, :friends)
317
317
  end
318
318
  alias following friends
319
319
 
@@ -323,10 +323,10 @@ module Twitter
323
323
  # @param path [String]
324
324
  # @param args [Array]
325
325
  # @return [Array<Integer>]
326
- def friends_or_followers_from_response(request_method, path, args)
326
+ def friends_or_followers_from_response(request_method, path, args, calling_method)
327
327
  options = extract_options!(args)
328
328
  merge_default_cursor!(options)
329
- merge_user!(options, args.pop || screen_name)
329
+ merge_user!(options, args.pop || screen_name) unless options[:user_id] || options[:screen_name]
330
330
  cursor_from_response(:users, Twitter::User, request_method, path, options, calling_method)
331
331
  end
332
332
 
@@ -120,7 +120,7 @@ module Twitter
120
120
  # Twitter.memberships('sferik')
121
121
  # Twitter.memberships(7505382)
122
122
  def memberships(*args)
123
- lists_from_response(:get, "/1.1/lists/memberships.json", args)
123
+ lists_from_response(:get, "/1.1/lists/memberships.json", args, :memberships)
124
124
  end
125
125
 
126
126
  # Returns the subscribers of the specified list
@@ -147,7 +147,7 @@ module Twitter
147
147
  # Twitter.list_subscribers('sferik', 8863586)
148
148
  # Twitter.list_subscribers(7505382, 'presidents')
149
149
  def list_subscribers(*args)
150
- list_users(:get, "/1.1/lists/subscribers.json", args)
150
+ list_users(:get, "/1.1/lists/subscribers.json", args, :list_subscribers)
151
151
  end
152
152
 
153
153
  # Make the authenticated user follow the specified list
@@ -315,7 +315,7 @@ module Twitter
315
315
  # Twitter.list_members(7505382, 'presidents')
316
316
  # Twitter.list_members(7505382, 8863586)
317
317
  def list_members(*args)
318
- list_users(:get, "/1.1/lists/members.json", args)
318
+ list_users(:get, "/1.1/lists/members.json", args, :list_members)
319
319
  end
320
320
 
321
321
  # Add a member to a list
@@ -469,7 +469,7 @@ module Twitter
469
469
  # Twitter.subscriptions('sferik')
470
470
  # Twitter.subscriptions(7505382)
471
471
  def subscriptions(*args)
472
- lists_from_response(:get, "/1.1/lists/subscriptions.json", args)
472
+ lists_from_response(:get, "/1.1/lists/subscriptions.json", args, :subscriptions)
473
473
  end
474
474
 
475
475
  # Removes specified members from the list
@@ -521,14 +521,14 @@ module Twitter
521
521
  # @param path [String]
522
522
  # @param args [Array]
523
523
  # @return [Array<Twitter::List>]
524
- def lists_from_response(request_method, path, args)
524
+ def lists_from_response(request_method, path, args, calling_method)
525
525
  options = extract_options!(args)
526
526
  merge_default_cursor!(options)
527
- merge_user!(options, args.pop)
527
+ merge_user!(options, args.pop || screen_name) unless options[:user_id] || options[:screen_name]
528
528
  cursor_from_response(:lists, Twitter::List, request_method, path, options, calling_method)
529
529
  end
530
530
 
531
- def list_users(request_method, path, args)
531
+ def list_users(request_method, path, args, calling_method)
532
532
  options = extract_options!(args)
533
533
  merge_default_cursor!(options)
534
534
  merge_list!(options, args.pop)
@@ -68,8 +68,8 @@ module Twitter
68
68
  def following_followers_of(*args)
69
69
  options = extract_options!(args)
70
70
  merge_default_cursor!(options)
71
- merge_user!(options, args.pop || screen_name)
72
- cursor_from_response(:users, Twitter::User, :get, "/users/following_followers_of.json", options)
71
+ merge_user!(options, args.pop || screen_name) unless options[:user_id] || options[:screen_name]
72
+ cursor_from_response(:users, Twitter::User, :get, "/users/following_followers_of.json", options, :following_followers_of)
73
73
  end
74
74
 
75
75
  # Returns activity summary for a Tweet
@@ -148,7 +148,7 @@ module Twitter
148
148
  # Twitter.blocking
149
149
  def blocking(options={})
150
150
  merge_default_cursor!(options)
151
- cursor_from_response(:users, Twitter::User, :get, "/1.1/blocks/list.json", options)
151
+ cursor_from_response(:users, Twitter::User, :get, "/1.1/blocks/list.json", options, :blocking)
152
152
  end
153
153
 
154
154
  # Returns an array of numeric user ids the authenticating user is blocking
@@ -163,7 +163,7 @@ module Twitter
163
163
  # @overload block(options={})
164
164
  # @param options [Hash] A customizable set of options.
165
165
  def blocked_ids(*args)
166
- ids_from_response(:get, "/1.1/blocks/ids.json", args)
166
+ ids_from_response(:get, "/1.1/blocks/ids.json", args, :blocked_ids)
167
167
  end
168
168
 
169
169
  # Returns true if the authenticating user is blocking a target user
@@ -424,7 +424,7 @@ module Twitter
424
424
  # Twitter.profile_banner(7505382) # Same as above
425
425
  def profile_banner(*args)
426
426
  options = extract_options!(args)
427
- merge_user!(options, args.pop || screen_name)
427
+ merge_user!(options, args.pop || screen_name) unless options[:user_id] || options[:screen_name]
428
428
  object_from_response(Twitter::ProfileBanner, :get, "/1.1/users/profile_banner.json", options)
429
429
  end
430
430
 
@@ -54,7 +54,7 @@ module Twitter
54
54
  # @param path [String]
55
55
  # @param args [Array]
56
56
  # @return [Array<Integer>]
57
- def ids_from_response(request_method, path, args)
57
+ def ids_from_response(request_method, path, args, calling_method)
58
58
  options = extract_options!(args)
59
59
  merge_default_cursor!(options)
60
60
  merge_user!(options, args.pop)
@@ -68,7 +68,7 @@ module Twitter
68
68
  # @param params [Hash]
69
69
  # @param method_name [Symbol]
70
70
  # @return [Twitter::Cursor]
71
- def cursor_from_response(collection_name, klass, request_method, path, params={}, method_name=calling_method)
71
+ def cursor_from_response(collection_name, klass, request_method, path, params, method_name)
72
72
  response = send(request_method.to_sym, path, params)
73
73
  Twitter::Cursor.from_response(response, collection_name.to_sym, klass, self, method_name, params)
74
74
  end
@@ -79,7 +79,7 @@ module Twitter
79
79
  # @return [Array<Twitter::User>]
80
80
  def users_from_response(request_method, path, args)
81
81
  options = extract_options!(args)
82
- merge_user!(options, args.pop || screen_name)
82
+ merge_user!(options, args.pop || screen_name) unless options[:user_id] || options[:screen_name]
83
83
  collection_from_response(Twitter::User, request_method, path, options)
84
84
  end
85
85
 
@@ -1,9 +1,5 @@
1
1
  module Kernel
2
2
 
3
- def calling_method
4
- caller[1][/`([^']*)'/, 1].to_sym
5
- end
6
-
7
3
  # Returns the object's singleton class (exists in Ruby 1.9.2)
8
4
  def singleton_class; class << self; self; end; end unless method_defined?(:singleton_class)
9
5
 
@@ -5,6 +5,7 @@ module Twitter
5
5
  class DirectMessage < Twitter::Identity
6
6
  include Twitter::Creatable
7
7
  attr_reader :text
8
+ alias full_text text
8
9
 
9
10
  # @return [Twitter::User]
10
11
  def recipient
@@ -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 = 1 unless defined? Twitter::Version::PATCH
5
+ PATCH = 2 unless defined? Twitter::Version::PATCH
6
6
  PRE = nil unless defined? Twitter::Version::PRE
7
7
 
8
8
  class << self
@@ -0,0 +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"}
@@ -0,0 +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"}
@@ -0,0 +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 +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":0, "next_cursor_str":"0", "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},{"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"}
@@ -0,0 +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"}
@@ -0,0 +1 @@
1
+ {"users":[{"show_all_inline_media":true,"time_zone":"Pacific Time (US & Canada)","favourites_count":727,"description":"Adventures in hunger and foolishness.","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":897,"geo_enabled":true,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","verified":false,"url":null,"follow_request_sent":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/162641967\/we_concept_bg2.png","lang":"en","created_at":"Mon Jul 16 12:59:01 +0000 2007","profile_background_color":"000000","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/323331048\/me_normal.jpg","profile_text_color":"333333","name":"Erik Michaels-Ober","listed_count":28,"following":false,"friends_count":88,"screen_name":"sferik","id":7505382,"id_str":"7505382","statuses_count":2964,"utc_offset":-28800,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":"Arizona","favourites_count":200,"description":"Chief hamradio operator (N7ICE) & creator of 73s.org. Founder of Teleku, SurfByTel, Numly, Gospelr, Chug'd, & Spree.ly. Host of Rubyology and HamBrief.TV.","contributors_enabled":false,"profile_sidebar_fill_color":"FFE15C","followers_count":1961,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tweetdeck.com\" rel=\"nofollow\"\u003ETweetDeck\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 05:17:26 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28568059801,"id_str":"28568059801","text":"RT @vivagrams: Today's design, coding & biz dev brought to you by donuts - contributor to our happiness factor! http:\/\/bit.ly\/aGeTNT #swphx"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"7E8279","verified":false,"url":"http:\/\/ChrisMatthieu.com","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/10843800\/Chris_Superman2.jpg","lang":"en","created_at":"Mon Feb 18 01:30:03 +0000 2008","profile_background_color":"c4c4c4","location":"Phoenix, Arizona","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/918916153\/SuperChrisSmall_normal.jpg","profile_text_color":"422828","name":"Chris Matthieu N7ICE","listed_count":158,"following":false,"friends_count":1019,"screen_name":"chrismatthieu","id":13604142,"id_str":"13604142","statuses_count":8877,"utc_offset":-25200,"profile_link_color":"E81717"},{"time_zone":"Eastern Time (US & Canada)","description":"i be mig","profile_sidebar_fill_color":"edffcc","followers_count":0,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":1130221444,"source":"\u003Ca href=\"http:\/\/splitweet.com\" rel=\"nofollow\"\u003ESplitweet\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"1130221444","created_at":"Mon Jan 19 17:13:27 +0000 2009","in_reply_to_user_id":9885102,"favorited":false,"in_reply_to_user_id_str":"9885102","contributors":null,"coordinates":null,"in_reply_to_screen_name":"drnic","id":1130874731,"id_str":"1130874731","text":"@drnic you are looking for http:\/\/github.com\/potionfactory\/potionstore\/ no?"},"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":3,"profile_use_background_image":false,"profile_sidebar_border_color":"dcdbad","show_all_inline_media":false,"favourites_count":0,"url":"http:\/\/google.com","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":true,"created_at":"Thu Nov 20 05:46:54 +0000 2008","profile_background_color":"25618e","location":"washington dc","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/69434006\/spudd_normal.jpg","verified":false,"profile_text_color":"333333","name":"Mig Pggbee","follow_request_sent":false,"following":false,"screen_name":"pggbee","id":17505580,"id_str":"17505580","utc_offset":-18000,"profile_link_color":"0084B4"},{"time_zone":"Central Time (US & Canada)","description":"Entrepreneur, Rails Developer, Gamer, Single (divorced) guy in Houston","profile_sidebar_fill_color":"252429","followers_count":590,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twidroid.com\" rel=\"nofollow\"\u003Etwidroid\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Aug 22 01:44:18 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":21793039231,"id_str":"21793039231","text":"Gotta day the premier party is lots of fun. #GarbageMoguls"},"listed_count":13,"notifications":false,"statuses_count":336,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"url":"http:\/\/bcatherall.blogspot.com\/","contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme9\/bg.gif","lang":"en","favourites_count":2,"created_at":"Tue Mar 13 20:09:00 +0000 2007","friends_count":679,"profile_background_color":"1A1B1F","location":"Houston, Texas","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/96813420\/me-in-hat_normal.jpg","geo_enabled":false,"profile_text_color":"666666","name":"Billy R Catherall","follow_request_sent":false,"following":false,"screen_name":"bcatherall","id":1112241,"id_str":"1112241","verified":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"},{"statuses_count":206,"profile_text_color":"3C3940","description":"die before you are dead","profile_background_tile":false,"favourites_count":2,"contributors_enabled":false,"profile_link_color":"0099B9","listed_count":4,"geo_enabled":false,"profile_sidebar_fill_color":"95E8EC","url":null,"verified":false,"notifications":null,"time_zone":"New Delhi","follow_request_sent":null,"lang":"en","created_at":"Sun Aug 12 17:33:09 +0000 2007","profile_sidebar_border_color":"5ED4DC","profile_image_url":"http://a1.twimg.com/profile_images/1082656833/sur_at_seashore_normal.jpg","location":"New Delhi, India","protected":true,"profile_use_background_image":true,"followers_count":198,"screen_name":"sur","name":"Sur","following":null,"profile_background_color":"0099B9","id":8143072,"show_all_inline_media":false,"profile_background_image_url":"http://s.twimg.com/a/1285694546/images/themes/theme4/bg.gif","utc_offset":19800,"friends_count":222},{"contributors_enabled":false,"time_zone":"Eastern Time (US & Canada)","description":"Senior Ruby\/Javascript Developer\/Consultant","favourites_count":0,"profile_sidebar_fill_color":"252429","followers_count":99,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/seesmic.com\/seesmic_mobile\/android\/\" rel=\"nofollow\"\u003ESeesmic for Android\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:50:16 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27850500237,"id_str":"27850500237","text":"Some screen-like hotkeys for tmux http:\/\/bit.ly\/bZCgsT"},"notifications":false,"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","follow_request_sent":false,"url":null,"verified":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Tue Jan 13 23:14:33 +0000 2009","profile_background_color":"1A1B1F","location":"Toronto, Ontario, Canada","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/747713188\/profile_normal.jpg","listed_count":7,"profile_text_color":"666666","name":"Angelo","statuses_count":355,"following":false,"screen_name":"rubyblackbelt","id":18958056,"id_str":"18958056","show_all_inline_media":false,"utc_offset":-18000,"friends_count":139,"profile_link_color":"2FC2EF"},{"show_all_inline_media":false,"time_zone":"Amsterdam","favourites_count":0,"description":"I'm a Ruby (on Rails) (Web) Developer. Founder of Final Creation and StackFu. I'm a freelancer and I work with @webbynode.","contributors_enabled":false,"profile_sidebar_fill_color":"efefef","followers_count":209,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28553104064,"source":"\u003Ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ETweetie for Mac\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28553104064","created_at":"Sun Oct 24 01:58:51 +0000 2010","in_reply_to_user_id":16086543,"favorited":false,"in_reply_to_user_id_str":"16086543","contributors":null,"coordinates":null,"in_reply_to_screen_name":"grahamt1","id":28553915461,"id_str":"28553915461","text":"@grahamt1 tooshay ;) this is true. At least, I try to avoid using it as much as possible!"},"geo_enabled":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","verified":false,"url":"http:\/\/michaelvanrooijen.com\/","follow_request_sent":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme14\/bg.gif","lang":"en","created_at":"Tue May 06 16:20:16 +0000 2008","profile_background_color":"131516","location":"The Netherlands","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1102719219\/Screen_shot_2010-08-14_at_10.14.35_PM_normal.png","profile_text_color":"333333","name":"Michael van Rooijen","listed_count":17,"following":false,"friends_count":117,"screen_name":"meskyanichi","id":14675249,"id_str":"14675249","statuses_count":3981,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":false,"time_zone":"London","description":"\u2665 I Follow Back! \u2665\r\nI'm Helping Find Madeleine McCann!\r\n\r\n~ Let's Make a difference to our World! ~\r\n(If you DM me please let me know by tweet!)","profile_sidebar_fill_color":"ff7700","followers_count":45777,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28495540934,"source":"web","truncated":false,"in_reply_to_status_id_str":"28495540934","created_at":"Sat Oct 23 22:36:06 +0000 2010","in_reply_to_user_id":204854823,"favorited":false,"in_reply_to_user_id_str":"204854823","contributors":null,"coordinates":null,"in_reply_to_screen_name":"msjanemarps","id":28539747916,"id_str":"28539747916","text":"@msjanemarps Your email address isn't working, sorry do you have another or might you have spelt it wrong? Could you post the link by tweet?"},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"FFFFFF","url":"http:\/\/facebook.com\/PrayMaddyMcCann","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/70145334\/MadeleineMcCann_.jpg","lang":"en","created_at":"Fri May 15 21:33:52 +0000 2009","profile_background_color":"ff0808","location":"Uk","listed_count":2310,"profile_background_tile":false,"friends_count":50324,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/981932263\/mail-6-1-08-km_normal.jpg","statuses_count":7528,"profile_text_color":"000000","name":"For Madeleine McCann","show_all_inline_media":true,"following":false,"favourites_count":9,"screen_name":"PrayMaddyMcCann","id":40339213,"id_str":"40339213","contributors_enabled":false,"utc_offset":0,"profile_link_color":"430082"},{"time_zone":null,"description":"","profile_sidebar_fill_color":"DDEEF6","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":17,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","show_all_inline_media":false,"favourites_count":1,"url":null,"contributors_enabled":false,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/themes\/theme1\/bg.png","lang":"en","geo_enabled":false,"created_at":"Mon Sep 21 16:48:22 +0000 2009","profile_background_color":"C0DEED","location":"","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1286563368\/images\/default_profile_2_normal.png","verified":false,"profile_text_color":"333333","name":"Nikolai Lugovoi","follow_request_sent":false,"following":false,"screen_name":"n_lugovoi","id":76073923,"id_str":"76073923","utc_offset":null,"profile_link_color":"0084B4"},{"show_all_inline_media":false,"time_zone":null,"description":"def method_missing m; \r\nprint m; \r\nend\r\nself.new.i.l.u.v.r.u.b.y","contributors_enabled":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":37,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Sep 07 06:27:29 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":23214805288,"id_str":"23214805288","text":"rubyquicktips: http:\/\/tumblr.com\/xg2huvtm0"},"notifications":null,"profile_use_background_image":true,"favourites_count":0,"profile_sidebar_border_color":"C0DEED","friends_count":141,"url":"http:\/\/milandobrota.tumblr.com","follow_request_sent":null,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/81257060\/4056385100_3a2470256b_o.jpg","lang":"en","verified":false,"created_at":"Sat Mar 06 21:24:58 +0000 2010","profile_background_color":"C0DEED","location":"Ann Arbor, Michigan","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/915216298\/ruby_normal.png","profile_text_color":"333333","name":"Elite Coding","listed_count":5,"following":null,"screen_name":"elitecoding","id":120569549,"id_str":"120569549","statuses_count":100,"geo_enabled":false,"utc_offset":null,"profile_link_color":"0084B4"},{"time_zone":"New Delhi","description":"Linux Administrator from Hyderabad,India.","profile_sidebar_fill_color":"252429","followers_count":0,"listed_count":0,"notifications":false,"friends_count":0,"statuses_count":224,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","show_all_inline_media":false,"favourites_count":412,"url":"http:\/\/www.kanthi.in","contributors_enabled":false,"profile_background_image_url":"http:\/\/a3.twimg.com\/profile_background_images\/35771977\/king_twitter_wall.png","lang":"en","geo_enabled":false,"created_at":"Wed May 21 15:49:39 +0000 2008","profile_background_color":"1A1B1F","location":"India","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/402524737\/k3_normal.png","verified":false,"profile_text_color":"666666","name":"\u007B k.i.n.g \u007D","follow_request_sent":false,"following":false,"screen_name":"nkanthikiran","id":14857890,"id_str":"14857890","utc_offset":19800,"profile_link_color":"2FC2EF"},{"time_zone":"Quito","favourites_count":9,"description":"","geo_enabled":false,"profile_sidebar_fill_color":"99CC33","followers_count":67,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003ETumblr\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 15:21:53 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27843044713,"id_str":"27843044713","text":"A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tumblr.com\/xaumcrhf6"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":true,"in_reply_to_status_id_str":null,"created_at":"Tue Oct 19 16:10:31 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":27847285170,"id_str":"27847285170","text":"RT @shoooesrb: A Rainbow of Shoes: Brown Shoes - It\u2019s time to wrap up our rainbow with the last pair of Shoes: Brown Shoes.... http:\/\/tu ..."},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"829D5E","url":"http:\/\/stwerner.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287523226\/images\/themes\/theme5\/bg.gif","lang":"en","created_at":"Wed Jul 08 15:19:06 +0000 2009","profile_background_color":"352726","location":"Pittsburgh","listed_count":8,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/305051659\/scott_normal.jpg","statuses_count":188,"profile_text_color":"3E4415","name":"Scott Werner","show_all_inline_media":false,"following":false,"friends_count":109,"screen_name":"scottwisme","id":54925281,"id_str":"54925281","contributors_enabled":false,"utc_offset":-18000,"profile_link_color":"D02B55"},{"geo_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","followers_count":32,"description":"Rails developer","listed_count":11,"statuses_count":81,"notifications":false,"status":{"place":null,"geo":null,"truncated":false,"contributors":null,"in_reply_to_screen_name":"anutron","in_reply_to_status_id":null,"retweeted":false,"source":"<a href=\"http://twitter.com\" rel=\"nofollow\">Tweetie for Mac</a>","retweet_count":null,"in_reply_to_user_id":9555952,"created_at":"Wed Oct 20 17:45:04 +0000 2010","favorited":false,"coordinates":null,"id":27951368992,"text":"@anutron The /Test directory is automated via your mootools-test-runner?"},"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme1/bg.png","contributors_enabled":false,"profile_background_color":"C0DEED","profile_background_tile":false,"url":null,"profile_text_color":"333333","lang":"en","created_at":"Tue Feb 09 18:10:38 +0000 2010","friends_count":179,"profile_image_url":"http://a0.twimg.com/profile_images/685636564/greg_normal.jpg","location":"Los Angeles, CA","follow_request_sent":false,"favourites_count":1,"profile_link_color":"0084B4","protected":false,"verified":false,"time_zone":"Pacific Time (US & Canada)","screen_name":"gregmoeck","name":"Gregory Moeck","following":false,"profile_sidebar_fill_color":"DDEEF6","id":112784958,"show_all_inline_media":false,"utc_offset":-28800},{"time_zone":"Hawaii","description":"","verified":false,"profile_sidebar_fill_color":"DDEEF6","followers_count":0,"follow_request_sent":false,"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"C0DEED","url":"http:\/\/polecane.pl","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/themes\/theme1\/bg.png","listed_count":0,"lang":"en","created_at":"Sun Jan 03 09:22:16 +0000 2010","friends_count":0,"profile_background_color":"C0DEED","location":"","statuses_count":1,"profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/s.twimg.com\/a\/1287774835\/images\/default_profile_5_normal.png","show_all_inline_media":false,"favourites_count":0,"profile_text_color":"333333","name":"kompostownik","contributors_enabled":false,"following":false,"screen_name":"kompostownik","id":101441401,"id_str":"101441401","geo_enabled":false,"utc_offset":-36000,"profile_link_color":"0084B4"},{"verified":false,"description":"Search architect, web developer, product manager, father, runner, DIY geek, Ruby on Rails, Java, Linux","follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"a8c7f7","status":{"place":null,"geo":null,"truncated":false,"favorited":false,"source":"web","contributors":null,"in_reply_to_screen_name":null,"created_at":"Mon Oct 18 18:03:00 +0000 2010","retweet_count":null,"coordinates":null,"in_reply_to_status_id":null,"id":27756969535,"retweeted":false,"in_reply_to_user_id":null,"text":"I knew updating my iTunes bloatware was a bad idea. It is so much more bloated that it froze on me. :( #fb"},"notifications":false,"profile_background_image_url":"http://s.twimg.com/a/1287010001/images/themes/theme15/bg.png","profile_background_color":"022330","url":null,"listed_count":8,"profile_background_tile":false,"friends_count":98,"lang":"en","statuses_count":281,"created_at":"Fri May 22 02:20:32 +0000 2009","profile_text_color":"333333","location":"Montreal, QC","show_all_inline_media":false,"favourites_count":0,"protected":false,"profile_image_url":"http://a2.twimg.com/profile_images/383563406/profile-on-grass-square_normal.JPG","contributors_enabled":false,"profile_link_color":"0084B4","followers_count":128,"name":"Marc Lavigne-Gagnon","following":false,"geo_enabled":true,"time_zone":"Eastern Time (US & Canada)","screen_name":"lavignegagnon","id":41731143,"utc_offset":-18000,"profile_sidebar_fill_color":"C0DFEC"},{"contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","description":"do what you love well","geo_enabled":false,"profile_sidebar_fill_color":"F3F3F3","followers_count":246,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 04:27:12 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28564806646,"id_str":"28564806646","text":"North Beach is on fire right now"},"notifications":false,"verified":false,"profile_use_background_image":false,"profile_sidebar_border_color":"DFDFDF","follow_request_sent":false,"url":"http:\/\/parameterized.net","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/3808550\/radiohead.14.jpg","lang":"en","created_at":"Sun Mar 11 01:42:58 +0000 2007","profile_background_color":"EBEBEB","location":"San Francisco","profile_background_tile":false,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/651329954\/mug2_normal.jpg","listed_count":12,"friends_count":286,"profile_text_color":"333333","name":"Mike Wadhera","statuses_count":1166,"following":false,"screen_name":"mikewadhera","id":894801,"id_str":"894801","show_all_inline_media":false,"utc_offset":-28800,"favourites_count":3,"profile_link_color":"990000"},{"show_all_inline_media":false,"time_zone":"Eastern Time (US & Canada)","description":"Hacker, mathematician, creative developer of web applications. Interested in creating innovative apps. I tweet about #ruby, #coding, #tech, #music and #life. ","contributors_enabled":false,"profile_sidebar_fill_color":"95E8EC","followers_count":1882,"status":{"retweeted_status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003ETwitter for BlackBerry\u00ae\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:08:23 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559074728,"id_str":"28559074728","text":"Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sun Oct 24 03:10:42 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28559252000,"id_str":"28559252000","text":"RT @MWilliams831: Tito all fucked up!! He looked like he got hit be a HAMMER!!!lol @ufc http:\/\/yfrog.com\/c8ycnfj"},"notifications":false,"friends_count":1815,"profile_use_background_image":true,"profile_sidebar_border_color":"5ED4DC","geo_enabled":true,"url":"http:\/\/maggit.net","follow_request_sent":false,"profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/28562826\/music-1.jpg","lang":"en","verified":false,"favourites_count":348,"created_at":"Mon Feb 19 21:37:08 +0000 2007","profile_background_color":"0099B9","location":"New York, NY","profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/1136807699\/IMG_0501_normal.JPG","profile_text_color":"3C3940","name":"Raquel Hern\u00e1ndez","listed_count":100,"following":false,"screen_name":"maggit","id":781314,"id_str":"781314","statuses_count":9431,"utc_offset":-18000,"profile_link_color":"0099B9"},{"listed_count":11,"time_zone":"Eastern Time (US & Canada)","friends_count":280,"description":"Old pro who likes new tools.","statuses_count":622,"profile_sidebar_fill_color":"e0ff92","followers_count":170,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Fri Oct 22 13:57:10 +0000 2010","in_reply_to_user_id":null,"favorited":false,"in_reply_to_user_id_str":null,"contributors":null,"coordinates":null,"in_reply_to_screen_name":null,"id":28406803592,"id_str":"28406803592","text":"My body is still in the office but my mind is on US1 headed down to the keys."},"show_all_inline_media":false,"notifications":false,"favourites_count":1,"contributors_enabled":false,"profile_use_background_image":true,"profile_sidebar_border_color":"87bc44","geo_enabled":true,"url":"https:\/\/workbeast.com","profile_background_image_url":"http:\/\/a1.twimg.com\/profile_background_images\/32465356\/peachleaf_and_turd.jpg","lang":"en","verified":false,"created_at":"Mon Feb 25 15:13:21 +0000 2008","profile_background_color":"9ae4e8","location":"Miami, Florida","follow_request_sent":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/574757590\/oldhat_normal.jpg","profile_text_color":"000000","name":"Scott Moe","following":false,"screen_name":"scotchmoose","id":13943122,"id_str":"13943122","utc_offset":-18000,"profile_link_color":"0000ff"},{"follow_request_sent":false,"time_zone":"Madrid","description":"","profile_sidebar_fill_color":"efefef","followers_count":69,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":null,"source":"web","truncated":false,"in_reply_to_status_id_str":null,"created_at":"Sat Oct 23 08:01:27 +0000 2010","in_reply_to_user_id":6505422,"favorited":false,"in_reply_to_user_id_str":"6505422","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jyurek","id":28482039882,"id_str":"28482039882","text":"@jyurek @elise_huard really enjoyed talking with you during the dinner. Still thinking about the best way to test Websockets... :)"},"notifications":false,"profile_use_background_image":true,"profile_sidebar_border_color":"eeeeee","listed_count":5,"friends_count":95,"url":"http:\/\/codegram.com","statuses_count":209,"profile_background_image_url":"http:\/\/s.twimg.com\/a\/1286916367\/images\/themes\/theme14\/bg.gif","show_all_inline_media":false,"lang":"en","favourites_count":3,"created_at":"Wed Jun 20 13:00:41 +0000 2007","profile_background_color":"131516","location":"Barcelona, Spain","contributors_enabled":false,"profile_background_tile":true,"protected":false,"profile_image_url":"http:\/\/a2.twimg.com\/profile_images\/705579346\/22157_298504914874_702129874_3297028_6073629_n_normal.jpg","geo_enabled":true,"profile_text_color":"333333","name":"Josep Jaume","following":false,"screen_name":"josepjaume","id":6965262,"id_str":"6965262","verified":false,"utc_offset":3600,"profile_link_color":"009999"},{"geo_enabled":true,"time_zone":"Central Time (US & Canada)","description":"In pursuit of the Unix philosophy : http:\/\/www.faqs.org\/docs\/artu\/ch01s06.html","profile_sidebar_fill_color":"252429","followers_count":591,"status":{"place":null,"retweet_count":null,"geo":null,"retweeted":false,"in_reply_to_status_id":28556641497,"source":"\u003Ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003EYoruFukurou\u003C\/a\u003E","truncated":false,"in_reply_to_status_id_str":"28556641497","created_at":"Sun Oct 24 02:36:50 +0000 2010","in_reply_to_user_id":6614702,"favorited":false,"in_reply_to_user_id_str":"6614702","contributors":null,"coordinates":null,"in_reply_to_screen_name":"jmettraux","id":28556716852,"id_str":"28556716852","text":"@jmettraux \" srm removes each specified file by overwriting, renaming, and truncating it before unlinking.\""},"verified":false,"notifications":false,"follow_request_sent":false,"profile_use_background_image":true,"profile_sidebar_border_color":"181A1E","url":"http:\/\/nepcoder.com","profile_background_image_url":"http:\/\/s.twimg.com\/a\/1287010001\/images\/themes\/theme9\/bg.gif","lang":"en","created_at":"Sun Jan 20 23:42:09 +0000 2008","profile_background_color":"1A1B1F","location":"Mountain View, CA","listed_count":44,"profile_background_tile":false,"friends_count":1778,"protected":false,"profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1112504408\/profile_normal.jpeg","statuses_count":3157,"profile_text_color":"666666","name":"Himanshu Chhetri","show_all_inline_media":false,"following":false,"favourites_count":395,"screen_name":"himanshuc","id":12474212,"id_str":"12474212","contributors_enabled":false,"utc_offset":-21600,"profile_link_color":"2FC2EF"}], "next_cursor":0, "previous_cursor":1322801608223717003, "next_cursor_str":"0", "previous_cursor_str":"1322801608223717003"}
@@ -21,6 +21,35 @@ describe Twitter::API::FriendsAndFollowers do
21
21
  expect(friend_ids.ids).to be_an Array
22
22
  expect(friend_ids.ids.first).to eq 14100886
23
23
  end
24
+ context "with all" do
25
+ before do
26
+ 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"})
27
+ end
28
+ it "requests the correct resource" do
29
+ @client.friend_ids("sferik").all
30
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
31
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"})).to have_been_made
32
+ end
33
+ end
34
+ end
35
+ context "with a user ID passed" do
36
+ before do
37
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
38
+ end
39
+ it "requests the correct resource" do
40
+ @client.friend_ids(7505382)
41
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
42
+ end
43
+ context "with all" do
44
+ before do
45
+ stub_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703", :user_id => "7505382"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
46
+ end
47
+ it "requests the correct resource" do
48
+ @client.friend_ids(7505382).all
49
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
50
+ expect(a_get("/1.1/friends/ids.json").with(:query => {:cursor => "1305102810874389703", :user_id => "7505382"})).to have_been_made
51
+ end
52
+ end
24
53
  end
25
54
  context "without arguments passed" do
26
55
  before do
@@ -36,6 +65,16 @@ describe Twitter::API::FriendsAndFollowers do
36
65
  expect(friend_ids.ids).to be_an Array
37
66
  expect(friend_ids.ids.first).to eq 14100886
38
67
  end
68
+ context "with all" do
69
+ 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"})
71
+ end
72
+ it "requests the correct resource" do
73
+ @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
+ end
77
+ end
39
78
  end
40
79
  end
41
80
 
@@ -54,6 +93,35 @@ describe Twitter::API::FriendsAndFollowers do
54
93
  expect(follower_ids.ids).to be_an Array
55
94
  expect(follower_ids.ids.first).to eq 14100886
56
95
  end
96
+ context "with all" do
97
+ before do
98
+ 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"})
99
+ end
100
+ it "requests the correct resource" do
101
+ @client.follower_ids("sferik").all
102
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
103
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703", :screen_name => "sferik"})).to have_been_made
104
+ end
105
+ end
106
+ end
107
+ context "with a user ID passed" do
108
+ before do
109
+ stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"}).to_return(:body => fixture("ids_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
110
+ end
111
+ it "requests the correct resource" do
112
+ @client.follower_ids(7505382)
113
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
114
+ end
115
+ context "with all" do
116
+ before do
117
+ stub_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703", :user_id => "7505382"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
118
+ end
119
+ it "requests the correct resource" do
120
+ @client.follower_ids(7505382).all
121
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
122
+ expect(a_get("/1.1/followers/ids.json").with(:query => {:cursor => "1305102810874389703", :user_id => "7505382"})).to have_been_made
123
+ end
124
+ end
57
125
  end
58
126
  context "without arguments passed" do
59
127
  before do
@@ -69,6 +137,16 @@ describe Twitter::API::FriendsAndFollowers do
69
137
  expect(follower_ids.ids).to be_an Array
70
138
  expect(follower_ids.ids.first).to eq 14100886
71
139
  end
140
+ context "with all" do
141
+ 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"})
143
+ end
144
+ it "requests the correct resource" do
145
+ @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
148
+ end
149
+ end
72
150
  end
73
151
  end
74
152
 
@@ -178,6 +256,15 @@ describe Twitter::API::FriendsAndFollowers do
178
256
  expect(friendships_incoming.ids).to be_an Array
179
257
  expect(friendships_incoming.ids.first).to eq 14100886
180
258
  end
259
+ context "with all" do
260
+ before do
261
+ stub_get("/1.1/friendships/incoming.json").with(:query => {:cursor => "1305102810874389703"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
262
+ end
263
+ it "requests the correct resource" do
264
+ @client.friendships_incoming.all
265
+ expect(a_get("/1.1/friendships/incoming.json").with(:query => {:cursor => "1305102810874389703"})).to have_been_made
266
+ end
267
+ end
181
268
  end
182
269
 
183
270
  describe "#friendships_outgoing" do
@@ -194,6 +281,15 @@ describe Twitter::API::FriendsAndFollowers do
194
281
  expect(friendships_outgoing.ids).to be_an Array
195
282
  expect(friendships_outgoing.ids.first).to eq 14100886
196
283
  end
284
+ context "with all" do
285
+ before do
286
+ stub_get("/1.1/friendships/outgoing.json").with(:query => {:cursor => "1305102810874389703"}).to_return(:body => fixture("ids_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
287
+ end
288
+ it "requests the correct resource" do
289
+ @client.friendships_outgoing.all
290
+ expect(a_get("/1.1/friendships/outgoing.json").with(:query => {:cursor => "1305102810874389703"})).to have_been_made
291
+ end
292
+ end
197
293
  end
198
294
 
199
295
  describe "#follow" do
@@ -373,8 +469,8 @@ describe Twitter::API::FriendsAndFollowers do
373
469
  stub_get("/1.1/friendships/show.json").with(:query => {:source_id => "7505382", :target_id => "14100886"}).to_return(:body => fixture("following.json"), :headers => {:content_type => "application/json; charset=utf-8"})
374
470
  end
375
471
  it "requests the correct resource" do
376
- user1 = Twitter::User.new(:id => '7505382')
377
- user2 = Twitter::User.new(:id => '14100886')
472
+ user1 = Twitter::User.new(:id => "7505382")
473
+ user2 = Twitter::User.new(:id => "14100886")
378
474
  @client.friendship(user1, user2)
379
475
  expect(a_get("/1.1/friendships/show.json").with(:query => {:source_id => "7505382", :target_id => "14100886"})).to have_been_made
380
476
  end
@@ -414,8 +510,8 @@ describe Twitter::API::FriendsAndFollowers do
414
510
  stub_get("/1.1/friendships/show.json").with(:query => {:source_id => "7505382", :target_id => "14100886"}).to_return(:body => fixture("following.json"), :headers => {:content_type => "application/json; charset=utf-8"})
415
511
  end
416
512
  it "requests the correct resource" do
417
- user1 = Twitter::User.new(:id => '7505382')
418
- user2 = Twitter::User.new(:id => '14100886')
513
+ user1 = Twitter::User.new(:id => "7505382")
514
+ user2 = Twitter::User.new(:id => "14100886")
419
515
  @client.friendship?(user1, user2)
420
516
  expect(a_get("/1.1/friendships/show.json").with(:query => {:source_id => "7505382", :target_id => "14100886"})).to have_been_made
421
517
  end
@@ -425,7 +521,6 @@ describe Twitter::API::FriendsAndFollowers do
425
521
  describe "#followers" do
426
522
  context "with a screen_name passed" do
427
523
  before do
428
- stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
429
524
  stub_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("followers_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
430
525
  end
431
526
  it "requests the correct resource" do
@@ -433,25 +528,39 @@ describe Twitter::API::FriendsAndFollowers do
433
528
  expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
434
529
  end
435
530
  it "returns a cursor of followers with details for every user the specified user is followed by" do
436
- followers = @client.followers
531
+ followers = @client.followers("sferik")
437
532
  expect(followers).to be_a Twitter::Cursor
438
533
  expect(followers.users).to be_an Array
439
534
  expect(followers.users.first).to be_a Twitter::User
440
535
  end
536
+ context "with all" do
537
+ before do
538
+ stub_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :screen_name => "sferik"}).to_return(:body => fixture("followers_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
539
+ end
540
+ it "requests the correct resource" do
541
+ @client.followers("sferik").all
542
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
543
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :screen_name => "sferik"})).to have_been_made
544
+ end
545
+ end
441
546
  end
442
547
  context "with a user ID passed" do
443
548
  before do
444
- stub_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :user_id => "14100886"}).to_return(:body => fixture("followers_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
549
+ stub_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"}).to_return(:body => fixture("followers_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
445
550
  end
446
551
  it "requests the correct resource" do
447
- @client.followers(14100886)
448
- expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :user_id => "14100886"})).to have_been_made
552
+ @client.followers(7505382)
553
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
449
554
  end
450
- it "returns a cursor of followers with details for every user the specified user is followed by" do
451
- followers = @client.followers(14100886)
452
- expect(followers).to be_a Twitter::Cursor
453
- expect(followers.users).to be_an Array
454
- expect(followers.users.first).to be_a Twitter::User
555
+ context "with all" do
556
+ before do
557
+ stub_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :user_id => "7505382"}).to_return(:body => fixture("followers_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
558
+ end
559
+ it "requests the correct resource" do
560
+ @client.followers(7505382).all
561
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
562
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :user_id => "7505382"})).to have_been_made
563
+ end
455
564
  end
456
565
  end
457
566
  context "without arguments passed" do
@@ -469,39 +578,62 @@ describe Twitter::API::FriendsAndFollowers do
469
578
  expect(followers.users).to be_an Array
470
579
  expect(followers.users.first).to be_a Twitter::User
471
580
  end
581
+ context "with all" do
582
+ before do
583
+ stub_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :screen_name => "sferik"}).to_return(:body => fixture("followers_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
584
+ end
585
+ it "requests the correct resource" do
586
+ @client.followers.all
587
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
588
+ expect(a_get("/1.1/followers/list.json").with(:query => {:cursor => "1419103567112105362", :screen_name => "sferik"})).to have_been_made
589
+ end
590
+ end
472
591
  end
473
592
  end
474
593
 
475
594
  describe "#friends" do
476
595
  context "with a screen_name passed" do
477
596
  before do
478
- stub_get("/1.1/account/verify_credentials.json").to_return(:body => fixture("sferik.json"), :headers => {:content_type => "application/json; charset=utf-8"})
479
597
  stub_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"}).to_return(:body => fixture("friends_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
480
598
  end
481
599
  it "requests the correct resource" do
482
600
  @client.friends("sferik")
483
601
  expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
484
602
  end
485
- it "returns a cursor of followers with details for every user the specified user is following" do
486
- friends = @client.friends
603
+ it "returns a cursor of friends with details for every user the specified user is following" do
604
+ friends = @client.friends("sferik")
487
605
  expect(friends).to be_a Twitter::Cursor
488
606
  expect(friends.users).to be_an Array
489
607
  expect(friends.users.first).to be_a Twitter::User
490
608
  end
609
+ context "with all" do
610
+ before do
611
+ stub_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :screen_name => "sferik"}).to_return(:body => fixture("friends_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
612
+ end
613
+ it "requests the correct resource" do
614
+ @client.friends("sferik").all
615
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
616
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :screen_name => "sferik"})).to have_been_made
617
+ end
618
+ end
491
619
  end
492
620
  context "with a user ID passed" do
493
621
  before do
494
- stub_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :user_id => "14100886"}).to_return(:body => fixture("friends_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
622
+ stub_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"}).to_return(:body => fixture("friends_list.json"), :headers => {:content_type => "application/json; charset=utf-8"})
495
623
  end
496
624
  it "requests the correct resource" do
497
- @client.friends(14100886)
498
- expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :user_id => "14100886"})).to have_been_made
625
+ @client.friends(7505382)
626
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
499
627
  end
500
- it "returns a cursor of followers with details for every user the specified user is following" do
501
- friends = @client.friends(14100886)
502
- expect(friends).to be_a Twitter::Cursor
503
- expect(friends.users).to be_an Array
504
- expect(friends.users.first).to be_a Twitter::User
628
+ context "with all" do
629
+ before do
630
+ stub_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :user_id => "7505382"}).to_return(:body => fixture("friends_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
631
+ end
632
+ it "requests the correct resource" do
633
+ @client.friends(7505382).all
634
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :user_id => "7505382"})).to have_been_made
635
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :user_id => "7505382"})).to have_been_made
636
+ end
505
637
  end
506
638
  end
507
639
  context "without arguments passed" do
@@ -513,12 +645,22 @@ describe Twitter::API::FriendsAndFollowers do
513
645
  @client.friends
514
646
  expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
515
647
  end
516
- it "returns a cursor of followers with details for every user the specified user is following" do
648
+ it "returns a cursor of friends with details for every user the specified user is following" do
517
649
  friends = @client.friends
518
650
  expect(friends).to be_a Twitter::Cursor
519
651
  expect(friends.users).to be_an Array
520
652
  expect(friends.users.first).to be_a Twitter::User
521
653
  end
654
+ context "with all" do
655
+ before do
656
+ stub_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :screen_name => "sferik"}).to_return(:body => fixture("friends_list2.json"), :headers => {:content_type => "application/json; charset=utf-8"})
657
+ end
658
+ it "requests the correct resource" do
659
+ @client.friends.all
660
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "-1", :screen_name => "sferik"})).to have_been_made
661
+ expect(a_get("/1.1/friends/list.json").with(:query => {:cursor => "1418947360875712729", :screen_name => "sferik"})).to have_been_made
662
+ end
663
+ end
522
664
  end
523
665
  end
524
666