twitterland 0.4.5 → 0.4.6

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.
data/History CHANGED
@@ -1,3 +1,6 @@
1
+ 0.4.6
2
+ - Patch from reddavis to add one40proof support
3
+ - Cadmus support http://thecadmus.com
1
4
  0.4.5 - Applied patch from shingara for BackTweets
2
5
  0.4.4 - Applied patch from pengwynn to update httparty dependency
3
6
  0.4.3 - Applied patch from seboslaw for BackTweets paging params
@@ -1,19 +1,21 @@
1
- # twitterland
1
+ # Twitterland
2
2
 
3
3
  Twitterland is a Ruby gem that bundles various Twitter-related APIs
4
4
 
5
5
  Including:
6
6
 
7
- * Follow Cost
8
- * Twitter Grader
9
- * Mr. Tweet
10
- * Twinfluence
11
- * Twitter Counter
12
- * TweetBlocker
13
- * Thumbfight
14
- * TweetMeme
15
- * FollerMe
16
- * Zutual
7
+ * [Follow Cost](http://followcost.com/)
8
+ * [Twitter Grader](http://twitter.grader.com/)
9
+ * [Mr. Tweet](http://mrtweet.com/)
10
+ * [Twinfluence](http://twinfluence.com/)
11
+ * [Twitter Counter](http://twittercounter.com)
12
+ * [TweetBlocker](http://tweetblocker.com)
13
+ * [Thumbfight](http://thumbfight.com)
14
+ * [TweetMeme](http://tweetmeme.com)
15
+ * [FollerMe](http://foller.me)
16
+ * [Zutual](http://www.zutual.com/)
17
+ * [140Proof](http://140proof.com/)
18
+ * [Cadmus](http://thecadmus.com)
17
19
 
18
20
  ### Install
19
21
  sudo gem install twitterland
@@ -194,7 +196,50 @@ You can compare what topics any two Twitter users have in common:
194
196
 
195
197
  Twitterland::Zutual.match('pengwynn', 'adamstac')
196
198
  => [<Mash strength=87 topic="google">, <Mash strength=87 topic="interview">, <Mash strength=67 topic="google chrome">, <Mash strength=60 topic="sass">, <Mash strength=52 topic="rsync">, <Mash strength=52 topic="rake">, <Mash strength=47 topic="gemcutter">, <Mash strength=45 topic="facebook">, <Mash strength=42 topic="wordpress deployment">, <Mash strength=42 topic="haml">, <Mash strength=42 topic="github">, <Mash strength=35 topic="dallas">, <Mash strength=32 topic="logo">, <Mash strength=32 topic="village church">, <Mash strength=32 topic="css">, <Mash strength=32 topic="mac">, <Mash strength=22 topic="tv">, <Mash strength=22 topic="fix-me">, <Mash strength=22 topic="dns">, <Mash strength=22 topic="lord">]
199
+
200
+ ### 140 Proof
201
+
202
+ #### Usage
203
+
204
+ Testing ad placement while in development
205
+
206
+ ad = Twitterland::One40Proof::Test.new
207
+
208
+ # The Ad
209
+ ad.image_url
210
+ ad.byline
211
+ ad.text
212
+
213
+ # User
214
+ ad.user.screen_name
215
+ ad.user.user_id
216
+ ad.user.profile_image_url
217
+ ad.user.name
218
+
219
+ # Action URLS
220
+ ad.action_urls.click_url
221
+ ad.action_urls.favorite_url # Or ad.action_urls.favourite_url for the English
222
+ ad.action_urls.impression_url
223
+ ad.action_urls.friendship_url
224
+ ad.action_urls.reply_url
225
+ ad.action_urls.retweet_url
226
+
227
+ # Status
228
+ ad.status.id
229
+
230
+ To get an ad for a specific user
231
+
232
+ ad = Twitterland::One40Proof::UserAd.new(:user_id => 'reddavis', :app_id => 'your app_id')
233
+
234
+ To get an ad for a specific query
235
+
236
+ ad = Twitterland::One40Proof::Search.new(:user_id => 'reddavis', :app_id => 'your app_id', :q => 'magic hats')
197
237
 
238
+ ### Cadmus
239
+
240
+ # get posts in a user's stream including related tweets and comments
241
+ posts = Twitterland::Cadmus.posts(:key => 'OU812', :count => 30, :page => 2)
242
+
198
243
  ### Source
199
244
  [http://github.com/squeejee/twitterland/](http://github.com/squeejee/twitterland/)
200
245
 
data/Rakefile CHANGED
@@ -6,20 +6,21 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "twitterland"
8
8
  gem.summary = %Q{wrappers for various twitter apis}
9
- gem.email = "info@squeejee.com"
10
- gem.homepage = "http://github.com/squeejee/twitterland"
9
+ gem.email = "wynn.netherland@gmail.com"
10
+ gem.homepage = "http://github.com/pengwynn/twitterland"
11
11
  gem.authors = ["Wynn Netherland","Bradley Joyce", "Ron Evans"]
12
12
  gem.rubyforge_project = "twitterland"
13
13
  gem.files = FileList["[A-Z]*", "{examples,lib,test}/**/*"]
14
14
 
15
- gem.add_dependency('mash', '0.0.3')
15
+ gem.add_dependency('hashie', '>= 0.2.0')
16
16
  gem.add_dependency('httparty', '>= 0.4.3')
17
+ gem.add_dependency('one40_proof', '>= 0.0.3')
17
18
 
18
19
  gem.add_development_dependency('thoughtbot-shoulda')
19
20
  gem.add_development_dependency('jeremymcanally-matchy')
20
21
  gem.add_development_dependency('mocha')
21
22
  gem.add_development_dependency('fakeweb')
22
- gem.add_development_dependency('mash')
23
+ gem.add_development_dependency('hashie')
23
24
  end
24
25
  Jeweler::GemcutterTasks.new
25
26
  rescue LoadError
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 4
4
- :patch: 5
4
+ :patch: 6
5
5
  :build:
@@ -1,12 +1,10 @@
1
1
  require 'forwardable'
2
2
  require 'rubygems'
3
-
4
- gem 'mash', '0.0.3'
5
- require 'mash'
6
-
7
- gem 'httparty', '>= 0.4.5'
3
+ require 'hashie'
8
4
  require 'httparty'
9
5
 
6
+ Hash.send :include, Hashie::HashExtensions
7
+
10
8
  module Twitterland
11
9
  class TwitterError < StandardError
12
10
  attr_reader :data
@@ -34,7 +32,7 @@ module Twitterland
34
32
  #
35
33
  # Twitterland::TweetMeme.url_info('http://squeejee.com')
36
34
  def self.url_info(url)
37
- Mash.new get("/url_info.json", :query => {:url => url})
35
+ Hashie::Mash.new get("/url_info.json", :query => {:url => url})
38
36
  end
39
37
 
40
38
  end
@@ -43,6 +41,7 @@ end
43
41
 
44
42
  directory = File.expand_path(File.dirname(__FILE__))
45
43
 
44
+ require File.join(directory, 'twitterland', 'cadmus')
46
45
  require File.join(directory, 'twitterland', 'zutual')
47
46
  require File.join(directory, 'twitterland', 'autoff')
48
47
  require File.join(directory, 'twitterland', 'foller_me')
@@ -56,4 +55,5 @@ require File.join(directory, 'twitterland', 'back_tweets')
56
55
  require File.join(directory, 'twitterland', 'thumbfight')
57
56
  require File.join(directory, 'twitterland', 'tweet_meme', 'stories')
58
57
  require File.join(directory, 'twitterland', 'tweet_meme', 'comments')
59
- require File.join(directory, 'twitterland', 'tweet_meme', 'analytics')
58
+ require File.join(directory, 'twitterland', 'tweet_meme', 'analytics')
59
+ require File.join(directory, 'twitterland', 'one40_proof')
@@ -11,19 +11,19 @@ module Twitterland
11
11
  # Twitterland::BackTweets.search('http://squeejee.com', 'OU812')
12
12
  def self.search(q, api_key, options={})
13
13
  options['itemsperpage'] = options.delete(:items_per_page) if options[:items_per_page]
14
- rubyize_response(Mash.new(get("/search.json", :query => {:q => q, :key => api_key}.merge(options))))
14
+ rubyize_response(Hashie::Mash.new(get("/search.json", :query => {:q => q, :key => api_key}.merge(options))))
15
15
  end
16
16
 
17
17
 
18
18
  # Scrubs the response from Back Tweets to rubyize keys
19
19
  def self.rubyize_response(response)
20
- results = Mash.new
20
+ results = Hashie::Mash.new
21
21
  raise BackTweets::Unauthenticated.new if response.has_key?('error')
22
22
  results.total_results = response['totalresults'].to_i
23
23
  results.start_index = response['startindex']
24
24
  results.items_per_page = response['itemsperpage']
25
25
  results.tweets = response['tweets'].map do |tweet|
26
- new_tweet = Mash.new
26
+ new_tweet = Hashie::Mash.new
27
27
  tweet.each do |key, value|
28
28
  new_tweet[key.to_s.gsub('tweet_', '')] = value
29
29
  end
@@ -0,0 +1,23 @@
1
+ module Twitterland
2
+ class Cadmus
3
+ include HTTParty
4
+ base_uri 'http://thecadmus.com/api'
5
+ format :json
6
+
7
+ def self.posts(options={})
8
+ response = get("/posts", :query => options)
9
+ handle_response(response)
10
+ response.map{|p| Hashie::Mash.new(p)}
11
+ end
12
+
13
+ def self.handle_response(response)
14
+ case response.code.to_i
15
+ when 401
16
+ raise Twitterland::Unauthorized.new(response.body)
17
+ when 500
18
+ raise Twitterland::General.new(response.body)
19
+ end
20
+ end
21
+
22
+ end
23
+ end
@@ -54,7 +54,7 @@ module Twitterland
54
54
  options = options.to_hash.to_mash
55
55
  terms = options.delete('terms')
56
56
  terms ||= 'all'
57
- result = Mash.new get("/#{username}/#{terms}.json", :query => options)
57
+ result = Hashie::Mash.new get("/#{username}/#{terms}.json", :query => options)
58
58
  case terms
59
59
  when 'all'
60
60
  result.topics ||= result.delete('terms_topics')
@@ -8,7 +8,7 @@ module Twitterland
8
8
  #
9
9
  # Twitterland::FollowCost.show('bradleyjoyce')
10
10
  def self.show(username)
11
- Mash.new get("/#{username}.json")
11
+ Hashie::Mash.new get("/#{username}.json")
12
12
  end
13
13
 
14
14
  end
@@ -17,7 +17,7 @@ module Twitterland
17
17
  #
18
18
  # Twitterland::Mrtweet.new(api_key,'bradleyjoyce').is_user
19
19
  def is_user
20
- Mash.new(self.class.get("/is_user/#{@username}/#{@api_key}.json")).is_user
20
+ Hashie::Mash.new(self.class.get("/is_user/#{@username}/#{@api_key}.json")).is_user
21
21
  end
22
22
 
23
23
  # Check whether the given user is a MrTweet user (caches first request)
@@ -32,7 +32,7 @@ module Twitterland
32
32
  # Twitterland::Mrtweet.new(api_key,'bradleyjoyce').profile
33
33
  def profile
34
34
  if is_user?
35
- @profile ||= Mash.new(self.class.get("/profile/#{@username}/#{@api_key}.json")).profile
35
+ @profile ||= Hashie::Mash.new(self.class.get("/profile/#{@username}/#{@api_key}.json")).profile
36
36
  end
37
37
  end
38
38
 
@@ -41,7 +41,7 @@ module Twitterland
41
41
  # Twitterland::Mrtweet.new(api_key,'bradleyjoyce').recommendations
42
42
  def recommendations
43
43
  if is_user?
44
- @recommendations ||= Mash.new(self.class.get("/recommendations/#{@username}/#{@api_key}.json")).recommendations
44
+ @recommendations ||= Hashie::Mash.new(self.class.get("/recommendations/#{@username}/#{@api_key}.json")).recommendations
45
45
  end
46
46
  end
47
47
 
@@ -51,7 +51,7 @@ module Twitterland
51
51
  # Twitterland::Mrtweet.new(api_key,'bradleyjoyce').most_attention_towards
52
52
  def most_attention_towards
53
53
  if is_user?
54
- @most_attention_towards ||= Mash.new(self.class.get("/most_attention_towards/#{@username}/#{@api_key}.json")).most_attention_towards
54
+ @most_attention_towards ||= Hashie::Mash.new(self.class.get("/most_attention_towards/#{@username}/#{@api_key}.json")).most_attention_towards
55
55
  end
56
56
  end
57
57
 
@@ -62,7 +62,7 @@ module Twitterland
62
62
  # Twitterland::Mrtweet.new(api_key,'bradleyjoyce').recommend(reason,friend_name)
63
63
  def recommend(reason, friend_name)
64
64
  if is_user?
65
- Mash.new(self.class.post("/recommend/#{@username}/#{@api_key}.json", :body => { :reason => reason, :friend_name => friend_name})).status == "success"
65
+ Hashie::Mash.new(self.class.post("/recommend/#{@username}/#{@api_key}.json", :body => { :reason => reason, :friend_name => friend_name})).status == "success"
66
66
  end
67
67
  end
68
68
 
@@ -0,0 +1,8 @@
1
+ gem 'one40_proof'
2
+ require 'one40_proof/simple'
3
+
4
+ module Twitterland
5
+ module One40Proof; end
6
+ end
7
+
8
+ Twitterland::One40Proof.send(:include, One40Proof)
@@ -11,7 +11,7 @@ module Twitterland
11
11
  params = {}
12
12
  params[:challenger1] = args[0] if args[0]
13
13
  params[:challenger2] = args[1] if args[1]
14
- Mash.new get("/fight.json", :query => params)
14
+ Hashie::Mash.new get("/fight.json", :query => params)
15
15
  end
16
16
 
17
17
  end
@@ -8,14 +8,14 @@ module Twitterland
8
8
  #
9
9
  # Twitterland::TweetBlocker.user('bradleyjoyce')
10
10
  def self.user(username)
11
- Mash.new(self.get("/username/#{username}.json")).user
11
+ Hashie::Mash.new(self.get("/username/#{username}.json")).user
12
12
  end
13
13
 
14
14
  # Report user as spammer
15
15
  #
16
16
  # Twitterland::TweetBlocker.spam('leetspeeker39203959230390235')
17
17
  def self.report_spam(username)
18
- status = Mash.new(self.get("/spam/#{username}.json"))
18
+ status = Hashie::Mash.new(self.get("/spam/#{username}.json"))
19
19
  status['error'].blank? ? status : status['error']
20
20
  end
21
21
 
@@ -24,7 +24,7 @@ module Twitterland
24
24
  #
25
25
  # Twitterland::TweetBlocker.rate_limit
26
26
  def self.rate_limit
27
- @rate_limit = Mash.new(self.get("/user/rate_limit_status.json"))
27
+ @rate_limit = Hashie::Mash.new(self.get("/user/rate_limit_status.json"))
28
28
  end
29
29
  end
30
30
  end
@@ -11,7 +11,7 @@ module Twitterland
11
11
  #
12
12
  # Twitterland::TweetMeme::Analytics.build(1234, 'OU812', 'http://tweetcongress.org')
13
13
  def self.build(app_id, api_key, url)
14
- Mash.new(get("/build.json", :query => {:appid => app_id, :apikey => api_key, :url => url})).uid
14
+ Hashie::Mash.new(get("/build.json", :query => {:appid => app_id, :apikey => api_key, :url => url})).uid
15
15
  end
16
16
 
17
17
  # Returns a list of all Analytics that you have built, optionally filtered by domain. Accessible to anyone with an App ID and App Key.
@@ -20,7 +20,7 @@ module Twitterland
20
20
  def self.built(app_id, api_key, url=nil)
21
21
  options = {:appid => app_id, :apikey => api_key}
22
22
  options.merge({:url => url}) unless url.blank?
23
- Mash.new get("/built.json", :query => options)
23
+ Hashie::Mash.new get("/built.json", :query => options)
24
24
  end
25
25
 
26
26
  # Returns the HTML to display the built Analytics to the user.
@@ -29,7 +29,7 @@ module Twitterland
29
29
  #
30
30
  # Twitterland::TweetMeme::Analytics.get(1234, 'OU812', '37758bd44025edb222022dcd1491c29g')
31
31
  def self.get_data(app_id, api_key, uid)
32
- Mash.new get("/get.json", :query => {:appid => app_id, :apikey => api_key, :uid => uid})
32
+ Hashie::Mash.new get("/get.json", :query => {:appid => app_id, :apikey => api_key, :uid => uid})
33
33
  end
34
34
 
35
35
  end
@@ -9,14 +9,14 @@ module Twitterland
9
9
  #
10
10
  # Twitterland::TweetMeme::Comments.firehose
11
11
  def self.firehose(options={})
12
- Mash.new get("/firehose.json")
12
+ Hashie::Mash.new get("/firehose.json")
13
13
  end
14
14
 
15
15
  # Returns comments posted on a particular URL
16
16
  #
17
17
  # Twitterland::TweetMeme.get_url('http://squeejee.com')
18
18
  def self.get_url(url)
19
- Mash.new get("/get_url.json", :query => {:url => url})
19
+ Hashie::Mash.new get("/get_url.json", :query => {:url => url})
20
20
  end
21
21
 
22
22
  end
@@ -14,7 +14,7 @@ module Twitterland
14
14
  #
15
15
  # Twitterland::TweetMeme::Stories.popular(options)
16
16
  def self.popular(options={})
17
- Mash.new get("/popular.json", :query => options)
17
+ Hashie::Mash.new get("/popular.json", :query => options)
18
18
  end
19
19
 
20
20
  # Returns the most recent stories found by TweetMeme.
@@ -26,7 +26,7 @@ module Twitterland
26
26
  #
27
27
  # Twitterland::TweetMeme::Stories.recent(options)
28
28
  def self.recent(options={})
29
- Mash.new get("/recent.json", :query => options)
29
+ Hashie::Mash.new get("/recent.json", :query => options)
30
30
  end
31
31
 
32
32
  # Returns a list of categories down to the specified depth, optionally filtered by a parent category.
@@ -36,7 +36,7 @@ module Twitterland
36
36
  #
37
37
  # Twitterland::TweetMeme::Stories.categories(options)
38
38
  def self.categories(options={})
39
- Mash.new get("/categories.json", :query => options)
39
+ Hashie::Mash.new get("/categories.json", :query => options)
40
40
  end
41
41
 
42
42
  # Returns 10 tweets for the specified URL.
@@ -46,7 +46,7 @@ module Twitterland
46
46
  #
47
47
  # Twitterland::TweetMeme::Stories.tweets(url, from_id)
48
48
  def self.tweets(url, from_id=0)
49
- Mash.new get("/tweets.json", :query => {:url => url, :from_id => from_id})
49
+ Hashie::Mash.new get("/tweets.json", :query => {:url => url, :from_id => from_id})
50
50
  end
51
51
 
52
52
  end
@@ -13,7 +13,7 @@ module Twitterland
13
13
  #
14
14
  # Twitterland::Twinfluence.new(username,password)
15
15
  def user(id, cacheonly=true)
16
- Mash.new Twinfluence.post("/api_user.php", :body => {:id => id, :user => @username, :pwd => @password, :cacheonly => cacheonly})
16
+ Hashie::Mash.new Twinfluence.post("/api_user.php", :body => {:id => id, :user => @username, :pwd => @password, :cacheonly => cacheonly})
17
17
  end
18
18
 
19
19
  # Search Twinfluence users
@@ -25,7 +25,7 @@ module Twitterland
25
25
  #
26
26
  # Twitterland::Twinfluence.search(username,password)
27
27
  def search(id, options={})
28
- Mash.new Twinfluence.post("/api_search.php", :body => {:user => @username, :pwd => @password}.merge(options))
28
+ Hashie::Mash.new Twinfluence.post("/api_search.php", :body => {:user => @username, :pwd => @password}.merge(options))
29
29
  end
30
30
 
31
31
  end
@@ -29,7 +29,7 @@ module Twitterland
29
29
  def self.show(username, results=365)
30
30
  stats = get("/", :query => {:username => username, :output => 'json', :results => results})
31
31
  totals = stats.delete('followersperdate')
32
- stats = Mash.new stats
32
+ stats = Hashie::Mash.new stats
33
33
  # map values to integers because strings are a PIA for stats
34
34
  [
35
35
  "tomorrow_2w",
@@ -5,7 +5,7 @@ module Twitterland
5
5
  format :json
6
6
 
7
7
  def self.match(first_user, second_user)
8
- Mash.new(get("/twitter/match/#{first_user}+#{second_user}.json")).matches
8
+ Hashie::Mash.new(get("/twitter/match/#{first_user}+#{second_user}.json")).matches
9
9
  end
10
10
  end
11
11
  end
@@ -0,0 +1,2199 @@
1
+ [{
2
+ "id": "00000000000000000000011602523109",
3
+ "text": "Your dream business to own\/operate would be _______\u2026",
4
+ "created_at": "Sun Apr 04 19:37:38 +0000 2010",
5
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11602523109",
6
+ "type": "twitter",
7
+ "user": {
8
+ "screen_name": "chrisbrogan",
9
+ "name": "Chris Brogan",
10
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
11
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
12
+ },
13
+ "related": [],
14
+ "comments": [{
15
+ "id": "00000000000000000000011602780274",
16
+ "text": "@chrisbrogan A confidential feedack consultant helping people fine tune their voice :)",
17
+ "created_at": "Sun Apr 04 19:44:32 +0000 2010",
18
+ "link": "http:\/\/twitter.com\/Ed\/statuses\/11602780274",
19
+ "type": "twitter",
20
+ "user": {
21
+ "screen_name": "Ed",
22
+ "name": "Ed Shahzade",
23
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/728518658\/twitterProfilePhoto_normal.jpg",
24
+ "profile_url": "http:\/\/twitter.com\/Ed"
25
+ }
26
+ },
27
+ {
28
+ "id": "00000000000000000000011602590242",
29
+ "text": "@chrisbrogan playboy magazine",
30
+ "created_at": "Sun Apr 04 19:39:26 +0000 2010",
31
+ "link": "http:\/\/twitter.com\/jaimesteele\/statuses\/11602590242",
32
+ "type": "twitter",
33
+ "user": {
34
+ "screen_name": "jaimesteele",
35
+ "name": "Jaime Steele",
36
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/563008973\/jaime2_normal.gif",
37
+ "profile_url": "http:\/\/twitter.com\/jaimesteele"
38
+ }
39
+ },
40
+ {
41
+ "id": "00000000000000000000011602768557",
42
+ "text": "@chrisbrogan an urban planning\/architecture bookstore :)",
43
+ "created_at": "Sun Apr 04 19:44:14 +0000 2010",
44
+ "link": "http:\/\/twitter.com\/acnatta\/statuses\/11602768557",
45
+ "type": "twitter",
46
+ "user": {
47
+ "screen_name": "acnatta",
48
+ "name": "Andre Natta",
49
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/66166148\/Natta_headshot_normal.jpg",
50
+ "profile_url": "http:\/\/twitter.com\/acnatta"
51
+ }
52
+ },
53
+ {
54
+ "id": "00000000000000000000011602814951",
55
+ "text": "@chrisbrogan My dream business to own\/operate would be @AZProDJs :)",
56
+ "created_at": "Sun Apr 04 19:45:26 +0000 2010",
57
+ "link": "http:\/\/twitter.com\/AZProDJs\/statuses\/11602814951",
58
+ "type": "twitter",
59
+ "user": {
60
+ "screen_name": "AZProDJs",
61
+ "name": "Arizona Pro DJs",
62
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/60731343\/iphone_background_green_normal.png",
63
+ "profile_url": "http:\/\/twitter.com\/AZProDJs"
64
+ }
65
+ },
66
+ {
67
+ "id": "00000000000000000000011602688799",
68
+ "text": "@chrisbrogan well...the one I've been trying to start since 2006. (no operational budget is an issue ;p)",
69
+ "created_at": "Sun Apr 04 19:42:04 +0000 2010",
70
+ "link": "http:\/\/twitter.com\/agent139\/statuses\/11602688799",
71
+ "type": "twitter",
72
+ "user": {
73
+ "screen_name": "agent139",
74
+ "name": "James Curcio",
75
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/706515420\/jamescomp2_normal.jpg",
76
+ "profile_url": "http:\/\/twitter.com\/agent139"
77
+ }
78
+ },
79
+ {
80
+ "id": "00000000000000000000011602616511",
81
+ "text": "@chrisbrogan this may sound cliche, but the one I'm currently owning\/opeating. And maybe a go kart track.",
82
+ "created_at": "Sun Apr 04 19:40:08 +0000 2010",
83
+ "link": "http:\/\/twitter.com\/suzemuse\/statuses\/11602616511",
84
+ "type": "twitter",
85
+ "user": {
86
+ "screen_name": "suzemuse",
87
+ "name": "Susan Murphy",
88
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/700216521\/twitterProfilePhoto_normal.jpg",
89
+ "profile_url": "http:\/\/twitter.com\/suzemuse"
90
+ }
91
+ },
92
+ {
93
+ "id": "00000000000000000000011602646769",
94
+ "text": "@suzemuse - can you tack that on to Jester? :-)",
95
+ "created_at": "Sun Apr 04 19:40:55 +0000 2010",
96
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11602646769",
97
+ "type": "twitter",
98
+ "user": {
99
+ "screen_name": "chrisbrogan",
100
+ "name": "Chris Brogan",
101
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
102
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
103
+ }
104
+ },
105
+ {
106
+ "id": "00000000000000000000011602672925",
107
+ "text": "@chrisbrogan there's got to be a way. :)",
108
+ "created_at": "Sun Apr 04 19:41:38 +0000 2010",
109
+ "link": "http:\/\/twitter.com\/suzemuse\/statuses\/11602672925",
110
+ "type": "twitter",
111
+ "user": {
112
+ "screen_name": "suzemuse",
113
+ "name": "Susan Murphy",
114
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/700216521\/twitterProfilePhoto_normal.jpg",
115
+ "profile_url": "http:\/\/twitter.com\/suzemuse"
116
+ }
117
+ },
118
+ {
119
+ "id": "00000000000000000000011602610851",
120
+ "text": "@chrisbrogan Your dream business to own\/operate would be comic book store owner expanding services to general community.",
121
+ "created_at": "Sun Apr 04 19:39:59 +0000 2010",
122
+ "link": "http:\/\/twitter.com\/briguyblock\/statuses\/11602610851",
123
+ "type": "twitter",
124
+ "user": {
125
+ "screen_name": "briguyblock",
126
+ "name": "Brian Block",
127
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/706452871\/coco_normal.jpg",
128
+ "profile_url": "http:\/\/twitter.com\/briguyblock"
129
+ }
130
+ },
131
+ {
132
+ "id": "00000000000000000000011602986713",
133
+ "text": "@chrisbrogan ...not possible.",
134
+ "created_at": "Sun Apr 04 19:49:52 +0000 2010",
135
+ "link": "http:\/\/twitter.com\/abiteofsanity\/statuses\/11602986713",
136
+ "type": "twitter",
137
+ "user": {
138
+ "screen_name": "abiteofsanity",
139
+ "name": "Bryce",
140
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/52007972\/cookie_bite_small_normal.jpg",
141
+ "profile_url": "http:\/\/twitter.com\/abiteofsanity"
142
+ }
143
+ },
144
+ {
145
+ "id": "00000000000000000000011603032354",
146
+ "text": "@abiteofsanity - what is it?",
147
+ "created_at": "Sun Apr 04 19:51:00 +0000 2010",
148
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603032354",
149
+ "type": "twitter",
150
+ "user": {
151
+ "screen_name": "chrisbrogan",
152
+ "name": "Chris Brogan",
153
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
154
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
155
+ }
156
+ },
157
+ {
158
+ "id": "00000000000000000000011603885867",
159
+ "text": "@chrisbrogan adult toy store.",
160
+ "created_at": "Sun Apr 04 20:13:36 +0000 2010",
161
+ "link": "http:\/\/twitter.com\/whitneytaylor\/statuses\/11603885867",
162
+ "type": "twitter",
163
+ "user": {
164
+ "screen_name": "whitneytaylor",
165
+ "name": "whitneytaylor",
166
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/58191569\/Photo_90_normal.jpg",
167
+ "profile_url": "http:\/\/twitter.com\/whitneytaylor"
168
+ }
169
+ },
170
+ {
171
+ "id": "00000000000000000000011604057845",
172
+ "text": "@chrisbrogan a bed and breakfast on the beach when I retire",
173
+ "created_at": "Sun Apr 04 20:18:12 +0000 2010",
174
+ "link": "http:\/\/twitter.com\/fidjissimo\/statuses\/11604057845",
175
+ "type": "twitter",
176
+ "user": {
177
+ "screen_name": "fidjissimo",
178
+ "name": "Fidji Simo",
179
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/773108910\/final_normal.bmp",
180
+ "profile_url": "http:\/\/twitter.com\/fidjissimo"
181
+ }
182
+ }]
183
+ },
184
+ {
185
+ "id": "00000000000000000000011605423958",
186
+ "text": "Twitter is unbelievably silent today..Not silent but lesser tweets..Anyone awake from my timezone?",
187
+ "created_at": "Sun Apr 04 20:54:54 +0000 2010",
188
+ "link": "http:\/\/twitter.com\/cheth\/statuses\/11605423958",
189
+ "type": "twitter",
190
+ "user": {
191
+ "screen_name": "cheth",
192
+ "name": "Chetan R",
193
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/614324566\/DSC06120_normal.jpg",
194
+ "profile_url": "http:\/\/twitter.com\/cheth"
195
+ },
196
+ "related": [],
197
+ "comments": [{
198
+ "id": "00000000000000000000011605499208",
199
+ "text": "@cheth Not your timezone, but still awake here. Guess loads of people still enjoy another chocolate easter egg ;).",
200
+ "created_at": "Sun Apr 04 20:56:57 +0000 2010",
201
+ "link": "http:\/\/twitter.com\/marcofolio\/statuses\/11605499208",
202
+ "type": "twitter",
203
+ "user": {
204
+ "screen_name": "marcofolio",
205
+ "name": "Marco Kuiper",
206
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/429991040\/marcofolio_normal.png",
207
+ "profile_url": "http:\/\/twitter.com\/marcofolio"
208
+ }
209
+ },
210
+ {
211
+ "id": "00000000000000000000011605455921",
212
+ "text": "@cheth #meAwake ;)",
213
+ "created_at": "Sun Apr 04 20:55:46 +0000 2010",
214
+ "link": "http:\/\/twitter.com\/arunbasillal\/statuses\/11605455921",
215
+ "type": "twitter",
216
+ "user": {
217
+ "screen_name": "arunbasillal",
218
+ "name": "Arun Basil Lal",
219
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/667451646\/Arun-Basil-Lal_normal.jpg",
220
+ "profile_url": "http:\/\/twitter.com\/arunbasillal"
221
+ }
222
+ },
223
+ {
224
+ "id": "00000000000000000000011605506792",
225
+ "text": "@cheth Yep, here I am bro :)",
226
+ "created_at": "Sun Apr 04 20:57:10 +0000 2010",
227
+ "link": "http:\/\/twitter.com\/manikarthik\/statuses\/11605506792",
228
+ "type": "twitter",
229
+ "user": {
230
+ "screen_name": "manikarthik",
231
+ "name": "Mani Karthik",
232
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/750089889\/twitter-bg-new-small_normal.jpg",
233
+ "profile_url": "http:\/\/twitter.com\/manikarthik"
234
+ }
235
+ },
236
+ {
237
+ "id": "00000000000000000000011605531593",
238
+ "text": "@arunbasillal hey! I've been keeping up w your blog. Fabulous job!",
239
+ "created_at": "Sun Apr 04 20:57:51 +0000 2010",
240
+ "link": "http:\/\/twitter.com\/TheDailyBlonde\/statuses\/11605531593",
241
+ "type": "twitter",
242
+ "user": {
243
+ "screen_name": "TheDailyBlonde",
244
+ "name": "Cheryl",
245
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/683734523\/momma_normal.jpg",
246
+ "profile_url": "http:\/\/twitter.com\/TheDailyBlonde"
247
+ }
248
+ },
249
+ {
250
+ "id": "00000000000000000000011605563057",
251
+ "text": "@manikarthik me too, Technically we are not in the same time zone, rt? Back in India?",
252
+ "created_at": "Sun Apr 04 20:58:43 +0000 2010",
253
+ "link": "http:\/\/twitter.com\/arunbasillal\/statuses\/11605563057",
254
+ "type": "twitter",
255
+ "user": {
256
+ "screen_name": "arunbasillal",
257
+ "name": "Arun Basil Lal",
258
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/667451646\/Arun-Basil-Lal_normal.jpg",
259
+ "profile_url": "http:\/\/twitter.com\/arunbasillal"
260
+ }
261
+ },
262
+ {
263
+ "id": "00000000000000000000011605587560",
264
+ "text": "@TheDailyBlonde Hey there! Thanks a lot :) How is Easter coming along? Happy Easter :)",
265
+ "created_at": "Sun Apr 04 20:59:23 +0000 2010",
266
+ "link": "http:\/\/twitter.com\/arunbasillal\/statuses\/11605587560",
267
+ "type": "twitter",
268
+ "user": {
269
+ "screen_name": "arunbasillal",
270
+ "name": "Arun Basil Lal",
271
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/667451646\/Arun-Basil-Lal_normal.jpg",
272
+ "profile_url": "http:\/\/twitter.com\/arunbasillal"
273
+ }
274
+ },
275
+ {
276
+ "id": "00000000000000000000011605620861",
277
+ "text": "@arunbasillal Well no am at the 4:30 GMT zone :)",
278
+ "created_at": "Sun Apr 04 21:00:12 +0000 2010",
279
+ "link": "http:\/\/twitter.com\/manikarthik\/statuses\/11605620861",
280
+ "type": "twitter",
281
+ "user": {
282
+ "screen_name": "manikarthik",
283
+ "name": "Mani Karthik",
284
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/750089889\/twitter-bg-new-small_normal.jpg",
285
+ "profile_url": "http:\/\/twitter.com\/manikarthik"
286
+ }
287
+ },
288
+ {
289
+ "id": "00000000000000000000011606003097",
290
+ "text": "@cheth It's 4:15AM in Jakarta, and I'm still awake.. :). What time is it there?",
291
+ "created_at": "Sun Apr 04 21:10:14 +0000 2010",
292
+ "link": "http:\/\/twitter.com\/nonkanya\/statuses\/11606003097",
293
+ "type": "twitter",
294
+ "user": {
295
+ "screen_name": "nonkanya",
296
+ "name": "Kanya Anjari Subroto",
297
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/618301192\/me-1_normal.jpg",
298
+ "profile_url": "http:\/\/twitter.com\/nonkanya"
299
+ }
300
+ },
301
+ {
302
+ "id": "00000000000000000000011605554126",
303
+ "text": "@cheth i agree. it is kinda quiet. :)",
304
+ "created_at": "Sun Apr 04 20:58:29 +0000 2010",
305
+ "link": "http:\/\/twitter.com\/nadeemd\/statuses\/11605554126",
306
+ "type": "twitter",
307
+ "user": {
308
+ "screen_name": "nadeemd",
309
+ "name": "Nadeem Damani",
310
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/706963047\/n634881166_1976864_1297946_normal.jpg",
311
+ "profile_url": "http:\/\/twitter.com\/nadeemd"
312
+ }
313
+ },
314
+ {
315
+ "id": "00000000000000000000011605445788",
316
+ "text": "@cheth I am here dude :))",
317
+ "created_at": "Sun Apr 04 20:55:29 +0000 2010",
318
+ "link": "http:\/\/twitter.com\/BalaSN\/statuses\/11605445788",
319
+ "type": "twitter",
320
+ "user": {
321
+ "screen_name": "BalaSN",
322
+ "name": "Balasubramanian",
323
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/572650819\/Image059_normal.jpg",
324
+ "profile_url": "http:\/\/twitter.com\/BalaSN"
325
+ }
326
+ },
327
+ {
328
+ "id": "00000000000000000000011606088341",
329
+ "text": "@cheth LoL, yes, me! me! I'm awake! ;) Everyone else is eating or praying, I'm doing both, just on a keyboard ;) e.",
330
+ "created_at": "Sun Apr 04 21:12:35 +0000 2010",
331
+ "link": "http:\/\/twitter.com\/sheconsulting\/statuses\/11606088341",
332
+ "type": "twitter",
333
+ "user": {
334
+ "screen_name": "sheconsulting",
335
+ "name": "esta h. singer",
336
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/660139504\/me_copy_2_4_normal.jpg",
337
+ "profile_url": "http:\/\/twitter.com\/sheconsulting"
338
+ }
339
+ }]
340
+ },
341
+ {
342
+ "id": "00000000000000000000011603368191",
343
+ "text": "I spent half of yesterday trying to rock a rhyme, until my cousin pointed out that it's tricky to do that.",
344
+ "created_at": "Sun Apr 04 19:59:54 +0000 2010",
345
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603368191",
346
+ "type": "twitter",
347
+ "user": {
348
+ "screen_name": "chrisbrogan",
349
+ "name": "Chris Brogan",
350
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
351
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
352
+ },
353
+ "related": [],
354
+ "comments": [{
355
+ "id": "00000000000000000000011603448205",
356
+ "text": "@chrisbrogan did you just slip in a Run DMC reference? heh",
357
+ "created_at": "Sun Apr 04 20:01:50 +0000 2010",
358
+ "link": "http:\/\/twitter.com\/acnatta\/statuses\/11603448205",
359
+ "type": "twitter",
360
+ "user": {
361
+ "screen_name": "acnatta",
362
+ "name": "Andre Natta",
363
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/66166148\/Natta_headshot_normal.jpg",
364
+ "profile_url": "http:\/\/twitter.com\/acnatta"
365
+ }
366
+ },
367
+ {
368
+ "id": "00000000000000000000011603462342",
369
+ "text": "@chrisbrogan LOL! Tricky. Now that will be in my head.",
370
+ "created_at": "Sun Apr 04 20:02:12 +0000 2010",
371
+ "link": "http:\/\/twitter.com\/JeanineByers\/statuses\/11603462342",
372
+ "type": "twitter",
373
+ "user": {
374
+ "screen_name": "JeanineByers",
375
+ "name": "Jeanine Byers Hoag",
376
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/614605612\/Me_regularsize_normal.jpg",
377
+ "profile_url": "http:\/\/twitter.com\/JeanineByers"
378
+ }
379
+ },
380
+ {
381
+ "id": "00000000000000000000011603491518",
382
+ "text": "@JeanineByers - :)",
383
+ "created_at": "Sun Apr 04 20:02:58 +0000 2010",
384
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603491518",
385
+ "type": "twitter",
386
+ "user": {
387
+ "screen_name": "chrisbrogan",
388
+ "name": "Chris Brogan",
389
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
390
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
391
+ }
392
+ },
393
+ {
394
+ "id": "00000000000000000000011603489605",
395
+ "text": "@chrisbrogan Would that be cousin Run?",
396
+ "created_at": "Sun Apr 04 20:02:55 +0000 2010",
397
+ "link": "http:\/\/twitter.com\/iGoByDoc\/statuses\/11603489605",
398
+ "type": "twitter",
399
+ "user": {
400
+ "screen_name": "iGoByDoc",
401
+ "name": "Darin Berntson - Doc",
402
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/714511610\/_igobydoc-Feb2010-avatar_normal.jpg",
403
+ "profile_url": "http:\/\/twitter.com\/iGoByDoc"
404
+ }
405
+ },
406
+ {
407
+ "id": "00000000000000000000011603516394",
408
+ "text": "@iGoByDoc - oui.",
409
+ "created_at": "Sun Apr 04 20:03:37 +0000 2010",
410
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603516394",
411
+ "type": "twitter",
412
+ "user": {
413
+ "screen_name": "chrisbrogan",
414
+ "name": "Chris Brogan",
415
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
416
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
417
+ }
418
+ },
419
+ {
420
+ "id": "00000000000000000000011603575572",
421
+ "text": "@chrisbrogan Is that your easter ode to the brothas known as RUN DMC",
422
+ "created_at": "Sun Apr 04 20:05:10 +0000 2010",
423
+ "link": "http:\/\/twitter.com\/keyinfluencer\/statuses\/11603575572",
424
+ "type": "twitter",
425
+ "user": {
426
+ "screen_name": "keyinfluencer",
427
+ "name": "James Andrews",
428
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/675282072\/wsj_normal.jpg",
429
+ "profile_url": "http:\/\/twitter.com\/keyinfluencer"
430
+ }
431
+ },
432
+ {
433
+ "id": "00000000000000000000011603585125",
434
+ "text": "@keyinfluencer - si.",
435
+ "created_at": "Sun Apr 04 20:05:26 +0000 2010",
436
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603585125",
437
+ "type": "twitter",
438
+ "user": {
439
+ "screen_name": "chrisbrogan",
440
+ "name": "Chris Brogan",
441
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
442
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
443
+ }
444
+ },
445
+ {
446
+ "id": "00000000000000000000011603642759",
447
+ "text": "@chrisbrogan: Rockin a rhyme w\/ MC Brogan - Vid Op ;)",
448
+ "created_at": "Sun Apr 04 20:06:59 +0000 2010",
449
+ "link": "http:\/\/twitter.com\/AdvertisingPR\/statuses\/11603642759",
450
+ "type": "twitter",
451
+ "user": {
452
+ "screen_name": "AdvertisingPR",
453
+ "name": "Candice Blaesing",
454
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/578171290\/advertisingpr_normal.jpg",
455
+ "profile_url": "http:\/\/twitter.com\/AdvertisingPR"
456
+ }
457
+ },
458
+ {
459
+ "id": "00000000000000000000011603406869",
460
+ "text": "@chrisbrogan Especially one that's right on time.",
461
+ "created_at": "Sun Apr 04 20:00:48 +0000 2010",
462
+ "link": "http:\/\/twitter.com\/chrisbergman\/statuses\/11603406869",
463
+ "type": "twitter",
464
+ "user": {
465
+ "screen_name": "chrisbergman",
466
+ "name": " Chris Bergman",
467
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/590519588\/chrisnew1_normal.jpg",
468
+ "profile_url": "http:\/\/twitter.com\/chrisbergman"
469
+ }
470
+ },
471
+ {
472
+ "id": "00000000000000000000011603455504",
473
+ "text": "@chrisbergman - that just won't happen. I tried, but they were bothering my poor father by that point.",
474
+ "created_at": "Sun Apr 04 20:02:01 +0000 2010",
475
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603455504",
476
+ "type": "twitter",
477
+ "user": {
478
+ "screen_name": "chrisbrogan",
479
+ "name": "Chris Brogan",
480
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
481
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
482
+ }
483
+ },
484
+ {
485
+ "id": "00000000000000000000011603701566",
486
+ "text": "@chrisbrogan tried to resist the temptation to say \"how is it? \" I was not able to resist.",
487
+ "created_at": "Sun Apr 04 20:08:37 +0000 2010",
488
+ "link": "http:\/\/twitter.com\/jminni\/statuses\/11603701566",
489
+ "type": "twitter",
490
+ "user": {
491
+ "screen_name": "jminni",
492
+ "name": "John Minni",
493
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/369402829\/jminni_normal.jpg",
494
+ "profile_url": "http:\/\/twitter.com\/jminni"
495
+ }
496
+ },
497
+ {
498
+ "id": "00000000000000000000011603751995",
499
+ "text": "@jminni - I'm a better man for knowing, though. :-)",
500
+ "created_at": "Sun Apr 04 20:09:59 +0000 2010",
501
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603751995",
502
+ "type": "twitter",
503
+ "user": {
504
+ "screen_name": "chrisbrogan",
505
+ "name": "Chris Brogan",
506
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
507
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
508
+ }
509
+ }]
510
+ },
511
+ {
512
+ "id": "00000000000000000000011601260293",
513
+ "text": "went to the apple store to finally buy snow leopard. it was closed for Easter (both happy and sad about that). no ipad hacking today...",
514
+ "created_at": "Sun Apr 04 19:04:25 +0000 2010",
515
+ "link": "http:\/\/twitter.com\/jazzychad\/statuses\/11601260293",
516
+ "type": "twitter",
517
+ "user": {
518
+ "screen_name": "jazzychad",
519
+ "name": "Chad",
520
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/28332812\/addisontodd_normal.jpg",
521
+ "profile_url": "http:\/\/twitter.com\/jazzychad"
522
+ },
523
+ "related": [],
524
+ "comments": [{
525
+ "id": "00000000000000000000011601736947",
526
+ "text": "@jazzychad ok, this following option on push.ly is pimp. Thanks! Now I can selectively follow peeps i want :)",
527
+ "created_at": "Sun Apr 04 19:16:56 +0000 2010",
528
+ "link": "http:\/\/twitter.com\/jmartinez302\/statuses\/11601736947",
529
+ "type": "twitter",
530
+ "user": {
531
+ "screen_name": "jmartinez302",
532
+ "name": "Jesse Martinez",
533
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/773209439\/n1160053210_41_normal.jpg",
534
+ "profile_url": "http:\/\/twitter.com\/jmartinez302"
535
+ }
536
+ },
537
+ {
538
+ "id": "00000000000000000000011601812224",
539
+ "text": "@jmartinez302 sweet! Make sure to tell your friends :)",
540
+ "created_at": "Sun Apr 04 19:18:55 +0000 2010",
541
+ "link": "http:\/\/twitter.com\/jazzychad\/statuses\/11601812224",
542
+ "type": "twitter",
543
+ "user": {
544
+ "screen_name": "jazzychad",
545
+ "name": "Chad",
546
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/28332812\/addisontodd_normal.jpg",
547
+ "profile_url": "http:\/\/twitter.com\/jazzychad"
548
+ }
549
+ },
550
+ {
551
+ "id": "00000000000000000000011601862933",
552
+ "text": "@jazzychad lol I put it on my wife's phone without her permission. She needs it just doesn't know it ;)",
553
+ "created_at": "Sun Apr 04 19:20:15 +0000 2010",
554
+ "link": "http:\/\/twitter.com\/jmartinez302\/statuses\/11601862933",
555
+ "type": "twitter",
556
+ "user": {
557
+ "screen_name": "jmartinez302",
558
+ "name": "Jesse Martinez",
559
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/773209439\/n1160053210_41_normal.jpg",
560
+ "profile_url": "http:\/\/twitter.com\/jmartinez302"
561
+ }
562
+ },
563
+ {
564
+ "id": "00000000000000000000011603096038",
565
+ "text": "@jazzychad i went to log into push.ly and it froze again. :(",
566
+ "created_at": "Sun Apr 04 19:52:39 +0000 2010",
567
+ "link": "http:\/\/twitter.com\/jmartinez302\/statuses\/11603096038",
568
+ "type": "twitter",
569
+ "user": {
570
+ "screen_name": "jmartinez302",
571
+ "name": "Jesse Martinez",
572
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/773209439\/n1160053210_41_normal.jpg",
573
+ "profile_url": "http:\/\/twitter.com\/jmartinez302"
574
+ }
575
+ },
576
+ {
577
+ "id": "00000000000000000000011603213684",
578
+ "text": "@jmartinez302 what error are you seeing? email me, chad at notifo dot com",
579
+ "created_at": "Sun Apr 04 19:55:44 +0000 2010",
580
+ "link": "http:\/\/twitter.com\/jazzychad\/statuses\/11603213684",
581
+ "type": "twitter",
582
+ "user": {
583
+ "screen_name": "jazzychad",
584
+ "name": "Chad",
585
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/28332812\/addisontodd_normal.jpg",
586
+ "profile_url": "http:\/\/twitter.com\/jazzychad"
587
+ }
588
+ },
589
+ {
590
+ "id": "00000000000000000000011603274932",
591
+ "text": "@jazzychad that's what's weird. No error just a blank page when I hit sign in with Twitter.",
592
+ "created_at": "Sun Apr 04 19:57:23 +0000 2010",
593
+ "link": "http:\/\/twitter.com\/jmartinez302\/statuses\/11603274932",
594
+ "type": "twitter",
595
+ "user": {
596
+ "screen_name": "jmartinez302",
597
+ "name": "Jesse Martinez",
598
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/773209439\/n1160053210_41_normal.jpg",
599
+ "profile_url": "http:\/\/twitter.com\/jmartinez302"
600
+ }
601
+ },
602
+ {
603
+ "id": "00000000000000000000011603755031",
604
+ "text": "@jmartinez302 ok.. i see what happened. i put an error message in place to help out. not sure of root cause yet.",
605
+ "created_at": "Sun Apr 04 20:10:04 +0000 2010",
606
+ "link": "http:\/\/twitter.com\/jazzychad\/statuses\/11603755031",
607
+ "type": "twitter",
608
+ "user": {
609
+ "screen_name": "jazzychad",
610
+ "name": "Chad",
611
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/28332812\/addisontodd_normal.jpg",
612
+ "profile_url": "http:\/\/twitter.com\/jazzychad"
613
+ }
614
+ },
615
+ {
616
+ "id": "00000000000000000000011603885305",
617
+ "text": "@jazzychad ok cool thanks.",
618
+ "created_at": "Sun Apr 04 20:13:35 +0000 2010",
619
+ "link": "http:\/\/twitter.com\/jmartinez302\/statuses\/11603885305",
620
+ "type": "twitter",
621
+ "user": {
622
+ "screen_name": "jmartinez302",
623
+ "name": "Jesse Martinez",
624
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/773209439\/n1160053210_41_normal.jpg",
625
+ "profile_url": "http:\/\/twitter.com\/jmartinez302"
626
+ }
627
+ }]
628
+ },
629
+ {
630
+ "id": "00000000000000000000011603162334",
631
+ "text": "Hmm, in A\/B testing, my milkshake brings all the boys to the yard. My frappe? Nothing.",
632
+ "created_at": "Sun Apr 04 19:54:23 +0000 2010",
633
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603162334",
634
+ "type": "twitter",
635
+ "user": {
636
+ "screen_name": "chrisbrogan",
637
+ "name": "Chris Brogan",
638
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
639
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
640
+ },
641
+ "related": [],
642
+ "comments": [{
643
+ "id": "00000000000000000000011603430867",
644
+ "text": "@chrisbrogan LOL! I don't want to bring boys to the yard, but I think my milkshake does alright.",
645
+ "created_at": "Sun Apr 04 20:01:24 +0000 2010",
646
+ "link": "http:\/\/twitter.com\/JeanineByers\/statuses\/11603430867",
647
+ "type": "twitter",
648
+ "user": {
649
+ "screen_name": "JeanineByers",
650
+ "name": "Jeanine Byers Hoag",
651
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/614605612\/Me_regularsize_normal.jpg",
652
+ "profile_url": "http:\/\/twitter.com\/JeanineByers"
653
+ }
654
+ },
655
+ {
656
+ "id": "00000000000000000000011603221064",
657
+ "text": "@chrisbrogan put some booze in it and you'll get a lot more boys to your yard : ) if that's what you're into...",
658
+ "created_at": "Sun Apr 04 19:55:56 +0000 2010",
659
+ "link": "http:\/\/twitter.com\/jaimesteele\/statuses\/11603221064",
660
+ "type": "twitter",
661
+ "user": {
662
+ "screen_name": "jaimesteele",
663
+ "name": "Jaime Steele",
664
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/563008973\/jaime2_normal.gif",
665
+ "profile_url": "http:\/\/twitter.com\/jaimesteele"
666
+ }
667
+ },
668
+ {
669
+ "id": "00000000000000000000011604897997",
670
+ "text": "@chrisbrogan I knew it ! ;)",
671
+ "created_at": "Sun Apr 04 20:40:45 +0000 2010",
672
+ "link": "http:\/\/twitter.com\/clementyeung\/statuses\/11604897997",
673
+ "type": "twitter",
674
+ "user": {
675
+ "screen_name": "clementyeung",
676
+ "name": "Clement Yeung",
677
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/501965085\/headshot-close_normal.jpg",
678
+ "profile_url": "http:\/\/twitter.com\/clementyeung"
679
+ }
680
+ },
681
+ {
682
+ "id": "00000000000000000000011603190085",
683
+ "text": "@chrisbrogan actual lol #easilyamused #andgeeky",
684
+ "created_at": "Sun Apr 04 19:55:07 +0000 2010",
685
+ "link": "http:\/\/twitter.com\/ElizabethPW\/statuses\/11603190085",
686
+ "type": "twitter",
687
+ "user": {
688
+ "screen_name": "ElizabethPW",
689
+ "name": "Elizabeth Weinstein",
690
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/667393218\/epw-weapons-sq_normal.jpg",
691
+ "profile_url": "http:\/\/twitter.com\/ElizabethPW"
692
+ }
693
+ },
694
+ {
695
+ "id": "00000000000000000000011603211201",
696
+ "text": "@ElizabethPW - #icouldteachyou",
697
+ "created_at": "Sun Apr 04 19:55:40 +0000 2010",
698
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11603211201",
699
+ "type": "twitter",
700
+ "user": {
701
+ "screen_name": "chrisbrogan",
702
+ "name": "Chris Brogan",
703
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
704
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
705
+ }
706
+ },
707
+ {
708
+ "id": "00000000000000000000011603297119",
709
+ "text": "@chrisbrogan #aretheylikeitsbetterthanyours?",
710
+ "created_at": "Sun Apr 04 19:57:59 +0000 2010",
711
+ "link": "http:\/\/twitter.com\/ElizabethPW\/statuses\/11603297119",
712
+ "type": "twitter",
713
+ "user": {
714
+ "screen_name": "ElizabethPW",
715
+ "name": "Elizabeth Weinstein",
716
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/667393218\/epw-weapons-sq_normal.jpg",
717
+ "profile_url": "http:\/\/twitter.com\/ElizabethPW"
718
+ }
719
+ }]
720
+ },
721
+ {
722
+ "id": "00000000000000000000011602211215",
723
+ "text": "Dinner today was ______ \u2026",
724
+ "created_at": "Sun Apr 04 19:29:34 +0000 2010",
725
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11602211215",
726
+ "type": "twitter",
727
+ "user": {
728
+ "screen_name": "chrisbrogan",
729
+ "name": "Chris Brogan",
730
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
731
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
732
+ },
733
+ "related": [],
734
+ "comments": [{
735
+ "id": "00000000000000000000011602246800",
736
+ "text": "@chrisbrogan hmmm Early?",
737
+ "created_at": "Sun Apr 04 19:30:27 +0000 2010",
738
+ "link": "http:\/\/twitter.com\/A_F\/statuses\/11602246800",
739
+ "type": "twitter",
740
+ "user": {
741
+ "screen_name": "A_F",
742
+ "name": "Andy Finkle",
743
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/349021600\/ndqdj23161-0_normal.png",
744
+ "profile_url": "http:\/\/twitter.com\/A_F"
745
+ }
746
+ },
747
+ {
748
+ "id": "00000000000000000000011602325882",
749
+ "text": "@chrisbrogan phenomenal, thanks to @vanillabean45!",
750
+ "created_at": "Sun Apr 04 19:32:29 +0000 2010",
751
+ "link": "http:\/\/twitter.com\/gradontripp\/statuses\/11602325882",
752
+ "type": "twitter",
753
+ "user": {
754
+ "screen_name": "gradontripp",
755
+ "name": "Gradon Tripp",
756
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/677528735\/Photo_91_normal.jpg",
757
+ "profile_url": "http:\/\/twitter.com\/gradontripp"
758
+ }
759
+ },
760
+ {
761
+ "id": "00000000000000000000011602292114",
762
+ "text": "@chrisbrogan - chocolate eggs",
763
+ "created_at": "Sun Apr 04 19:31:36 +0000 2010",
764
+ "link": "http:\/\/twitter.com\/randymatheson\/statuses\/11602292114",
765
+ "type": "twitter",
766
+ "user": {
767
+ "screen_name": "randymatheson",
768
+ "name": "Randy Matheson",
769
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/738518344\/moodyboy_tw_normal.jpg",
770
+ "profile_url": "http:\/\/twitter.com\/randymatheson"
771
+ }
772
+ },
773
+ {
774
+ "id": "00000000000000000000011602293685",
775
+ "text": "@chrisbrogan Well, that's not good.",
776
+ "created_at": "Sun Apr 04 19:31:39 +0000 2010",
777
+ "link": "http:\/\/twitter.com\/ajleon\/statuses\/11602293685",
778
+ "type": "twitter",
779
+ "user": {
780
+ "screen_name": "ajleon",
781
+ "name": "AJ Leon",
782
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/72325923\/AJ_New_Profile_pic_normal.jpg",
783
+ "profile_url": "http:\/\/twitter.com\/ajleon"
784
+ }
785
+ },
786
+ {
787
+ "id": "00000000000000000000011602572843",
788
+ "text": "@ajleon Hope you and @melissaleon have an amazing Easter. Rarely are there more deserving peeps...",
789
+ "created_at": "Sun Apr 04 19:38:58 +0000 2010",
790
+ "link": "http:\/\/twitter.com\/arshimbo\/statuses\/11602572843",
791
+ "type": "twitter",
792
+ "user": {
793
+ "screen_name": "arshimbo",
794
+ "name": "Andre Archimbaud",
795
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/638649587\/photo_normal.jpeg",
796
+ "profile_url": "http:\/\/twitter.com\/arshimbo"
797
+ }
798
+ },
799
+ {
800
+ "id": "00000000000000000000011602859357",
801
+ "text": "@arshimbo Thank you, bro, as always for the kind words and I hope you have a great day as well :)",
802
+ "created_at": "Sun Apr 04 19:46:34 +0000 2010",
803
+ "link": "http:\/\/twitter.com\/ajleon\/statuses\/11602859357",
804
+ "type": "twitter",
805
+ "user": {
806
+ "screen_name": "ajleon",
807
+ "name": "AJ Leon",
808
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/72325923\/AJ_New_Profile_pic_normal.jpg",
809
+ "profile_url": "http:\/\/twitter.com\/ajleon"
810
+ }
811
+ },
812
+ {
813
+ "id": "00000000000000000000011605643295",
814
+ "text": "@chrisbrogan not as good as last night's but still very tasty. tilapia nuggets vs filet mignon ;)",
815
+ "created_at": "Sun Apr 04 21:00:44 +0000 2010",
816
+ "link": "http:\/\/twitter.com\/fiberartisan\/statuses\/11605643295",
817
+ "type": "twitter",
818
+ "user": {
819
+ "screen_name": "fiberartisan",
820
+ "name": "Mary McRae",
821
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/112978815\/Video_Snapshot-1_normal.jpg",
822
+ "profile_url": "http:\/\/twitter.com\/fiberartisan"
823
+ }
824
+ },
825
+ {
826
+ "id": "00000000000000000000011602406430",
827
+ "text": "@chrisbrogan Sushi!",
828
+ "created_at": "Sun Apr 04 19:34:33 +0000 2010",
829
+ "link": "http:\/\/twitter.com\/lkpetrolino\/statuses\/11602406430",
830
+ "type": "twitter",
831
+ "user": {
832
+ "screen_name": "lkpetrolino",
833
+ "name": "Laura Petrolino",
834
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/763842756\/match2_normal.jpg",
835
+ "profile_url": "http:\/\/twitter.com\/lkpetrolino"
836
+ }
837
+ }]
838
+ },
839
+ {
840
+ "id": "00000000000000000000011599547934",
841
+ "text": "RT @badbanana: They should make an iPad with a fold-open keyboard that can sit on your lap.",
842
+ "created_at": "Sun Apr 04 18:19:24 +0000 2010",
843
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11599547934",
844
+ "type": "twitter",
845
+ "user": {
846
+ "screen_name": "chrisbrogan",
847
+ "name": "Chris Brogan",
848
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
849
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
850
+ },
851
+ "related": [],
852
+ "comments": [{
853
+ "id": "00000000000000000000011599569844",
854
+ "text": "@chrisbrogan totally agree. but this keypads pretty quick. Happy Easter Sir.",
855
+ "created_at": "Sun Apr 04 18:19:59 +0000 2010",
856
+ "link": "http:\/\/twitter.com\/AJBombers\/statuses\/11599569844",
857
+ "type": "twitter",
858
+ "user": {
859
+ "screen_name": "AJBombers",
860
+ "name": "AJ Bombers",
861
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739937542\/twitterProfilePhoto_normal.jpg",
862
+ "profile_url": "http:\/\/twitter.com\/AJBombers"
863
+ }
864
+ },
865
+ {
866
+ "id": "00000000000000000000011599661598",
867
+ "text": "@chrisbrogan you end up with a Movie last night?",
868
+ "created_at": "Sun Apr 04 18:22:20 +0000 2010",
869
+ "link": "http:\/\/twitter.com\/AJBombers\/statuses\/11599661598",
870
+ "type": "twitter",
871
+ "user": {
872
+ "screen_name": "AJBombers",
873
+ "name": "AJ Bombers",
874
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739937542\/twitterProfilePhoto_normal.jpg",
875
+ "profile_url": "http:\/\/twitter.com\/AJBombers"
876
+ }
877
+ },
878
+ {
879
+ "id": "00000000000000000000011600892628",
880
+ "text": "RT @chrisbrogan RT @badbanana: They should make an iPad with a fold-open keyboard that can sit on your lap.",
881
+ "created_at": "Sun Apr 04 18:54:58 +0000 2010",
882
+ "link": "http:\/\/twitter.com\/JonAston\/statuses\/11600892628",
883
+ "type": "twitter",
884
+ "user": {
885
+ "screen_name": "JonAston",
886
+ "name": "Jon Aston",
887
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/693807722\/twitterProfilePhoto_normal.jpg",
888
+ "profile_url": "http:\/\/twitter.com\/JonAston"
889
+ }
890
+ },
891
+ {
892
+ "id": "00000000000000000000011600079227",
893
+ "text": "@chrisbrogan @badbanana Isnt that a MacBook? If only they had them for $499.00!",
894
+ "created_at": "Sun Apr 04 18:33:19 +0000 2010",
895
+ "link": "http:\/\/twitter.com\/ValuePagesGroup\/statuses\/11600079227",
896
+ "type": "twitter",
897
+ "user": {
898
+ "screen_name": "ValuePagesGroup",
899
+ "name": "Jason Sanders",
900
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/543798185\/JasonHeadIdea_copy_normal.jpg",
901
+ "profile_url": "http:\/\/twitter.com\/ValuePagesGroup"
902
+ }
903
+ },
904
+ {
905
+ "id": "00000000000000000000011599725639",
906
+ "text": "@chrisbrogan @badbanana wouldn't that be a Netbook?",
907
+ "created_at": "Sun Apr 04 18:24:01 +0000 2010",
908
+ "link": "http:\/\/twitter.com\/ahockley\/statuses\/11599725639",
909
+ "type": "twitter",
910
+ "user": {
911
+ "screen_name": "ahockley",
912
+ "name": "Aaron Hockley",
913
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/52276204\/me-mirror_normal.jpg",
914
+ "profile_url": "http:\/\/twitter.com\/ahockley"
915
+ }
916
+ },
917
+ {
918
+ "id": "00000000000000000000011599718711",
919
+ "text": "@chrisbrogan but then...isn't that a laptop?",
920
+ "created_at": "Sun Apr 04 18:23:50 +0000 2010",
921
+ "link": "http:\/\/twitter.com\/URwingman\/statuses\/11599718711",
922
+ "type": "twitter",
923
+ "user": {
924
+ "screen_name": "URwingman",
925
+ "name": "Thomas Edwards",
926
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/719717929\/klise_edwards_cover01_normal.jpg",
927
+ "profile_url": "http:\/\/twitter.com\/URwingman"
928
+ }
929
+ }]
930
+ },
931
+ {
932
+ "id": "00000000000000000000011602757266",
933
+ "text": "You're not running your dream business because. ..",
934
+ "created_at": "Sun Apr 04 19:43:56 +0000 2010",
935
+ "link": "http:\/\/twitter.com\/chrisbrogan\/statuses\/11602757266",
936
+ "type": "twitter",
937
+ "user": {
938
+ "screen_name": "chrisbrogan",
939
+ "name": "Chris Brogan",
940
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/716780274\/callsfromnowhere_normal.jpg",
941
+ "profile_url": "http:\/\/twitter.com\/chrisbrogan"
942
+ },
943
+ "related": [],
944
+ "comments": [{
945
+ "id": "00000000000000000000011602856529",
946
+ "text": "@chrisbrogan My dream business has a mind of it's own and runs on cereal and lives in dressups. That's why.",
947
+ "created_at": "Sun Apr 04 19:46:29 +0000 2010",
948
+ "link": "http:\/\/twitter.com\/mooshinindy\/statuses\/11602856529",
949
+ "type": "twitter",
950
+ "user": {
951
+ "screen_name": "mooshinindy",
952
+ "name": "Casey-moosh in indy.",
953
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/787003365\/bw_avatar_normal.jpg",
954
+ "profile_url": "http:\/\/twitter.com\/mooshinindy"
955
+ }
956
+ },
957
+ {
958
+ "id": "00000000000000000000011603048201",
959
+ "text": "@chrisbrogan because it's hard for me to find out what exactly IS my dream business. Suggestions 'how to'?",
960
+ "created_at": "Sun Apr 04 19:51:25 +0000 2010",
961
+ "link": "http:\/\/twitter.com\/maatmann\/statuses\/11603048201",
962
+ "type": "twitter",
963
+ "user": {
964
+ "screen_name": "maatmann",
965
+ "name": "Paul Maatmann",
966
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/281742983\/paulus_normal.jpg",
967
+ "profile_url": "http:\/\/twitter.com\/maatmann"
968
+ }
969
+ },
970
+ {
971
+ "id": "00000000000000000000011602813179",
972
+ "text": "@chrisbrogan ... I'm still growing a set to make that leap of faith :) But it will happen",
973
+ "created_at": "Sun Apr 04 19:45:24 +0000 2010",
974
+ "link": "http:\/\/twitter.com\/patrickallmond\/statuses\/11602813179",
975
+ "type": "twitter",
976
+ "user": {
977
+ "screen_name": "patrickallmond",
978
+ "name": "Patrick Allmond",
979
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/564052492\/DSCF7598-8x10-72dpi_normal.jpg",
980
+ "profile_url": "http:\/\/twitter.com\/patrickallmond"
981
+ }
982
+ },
983
+ {
984
+ "id": "00000000000000000000011602823959",
985
+ "text": "@chrisbrogan \"because. ..\" it is running me :) I hope you have been well. You should come back to the MSP. Having an awesome early spring",
986
+ "created_at": "Sun Apr 04 19:45:40 +0000 2010",
987
+ "link": "http:\/\/twitter.com\/MNHeadhunter\/statuses\/11602823959",
988
+ "type": "twitter",
989
+ "user": {
990
+ "screen_name": "MNHeadhunter",
991
+ "name": "Paul DeBettignies",
992
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739549760\/paul_hand_final_crop1_copy_smaller_normal.jpg",
993
+ "profile_url": "http:\/\/twitter.com\/MNHeadhunter"
994
+ }
995
+ },
996
+ {
997
+ "id": "00000000000000000000011603665376",
998
+ "text": "@chrisbrogan I already am.",
999
+ "created_at": "Sun Apr 04 20:07:37 +0000 2010",
1000
+ "link": "http:\/\/twitter.com\/jonnew\/statuses\/11603665376",
1001
+ "type": "twitter",
1002
+ "user": {
1003
+ "screen_name": "jonnew",
1004
+ "name": "Jon Newman",
1005
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/655566144\/twitterProfilePhoto_normal.jpg",
1006
+ "profile_url": "http:\/\/twitter.com\/jonnew"
1007
+ }
1008
+ },
1009
+ {
1010
+ "id": "00000000000000000000011602925908",
1011
+ "text": "@chrisbrogan because I am working in it! I will get to running it one of these days :)",
1012
+ "created_at": "Sun Apr 04 19:48:17 +0000 2010",
1013
+ "link": "http:\/\/twitter.com\/MSchechter\/statuses\/11602925908",
1014
+ "type": "twitter",
1015
+ "user": {
1016
+ "screen_name": "MSchechter",
1017
+ "name": "Michael Schechter",
1018
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/472999490\/Michael_Schechter_Headshot_normal.jpg",
1019
+ "profile_url": "http:\/\/twitter.com\/MSchechter"
1020
+ }
1021
+ },
1022
+ {
1023
+ "id": "00000000000000000000011602896154",
1024
+ "text": "@chrisbrogan ... I'm having more fun doing what I'm doing now.",
1025
+ "created_at": "Sun Apr 04 19:47:30 +0000 2010",
1026
+ "link": "http:\/\/twitter.com\/davidleeking\/statuses\/11602896154",
1027
+ "type": "twitter",
1028
+ "user": {
1029
+ "screen_name": "davidleeking",
1030
+ "name": "David Lee King",
1031
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/713989823\/dude_normal.jpg",
1032
+ "profile_url": "http:\/\/twitter.com\/davidleeking"
1033
+ }
1034
+ },
1035
+ {
1036
+ "id": "00000000000000000000011602822959",
1037
+ "text": "@chrisbrogan ...we don't have the economic conditions to support it here and I can't\/won't move to CA. \n\nSo working on fixing the conditions",
1038
+ "created_at": "Sun Apr 04 19:45:38 +0000 2010",
1039
+ "link": "http:\/\/twitter.com\/cimota\/statuses\/11602822959",
1040
+ "type": "twitter",
1041
+ "user": {
1042
+ "screen_name": "cimota",
1043
+ "name": "Matt Johnston",
1044
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/609676417\/matty_normal.jpg",
1045
+ "profile_url": "http:\/\/twitter.com\/cimota"
1046
+ }
1047
+ },
1048
+ {
1049
+ "id": "00000000000000000000011603193498",
1050
+ "text": "@chrisbrogan ... lack of time.. 24hrs just wont cut it",
1051
+ "created_at": "Sun Apr 04 19:55:12 +0000 2010",
1052
+ "link": "http:\/\/twitter.com\/jaymartinez\/statuses\/11603193498",
1053
+ "type": "twitter",
1054
+ "user": {
1055
+ "screen_name": "jaymartinez",
1056
+ "name": "Jay Martinez",
1057
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/691518309\/100_0489_normal.jpg",
1058
+ "profile_url": "http:\/\/twitter.com\/jaymartinez"
1059
+ }
1060
+ },
1061
+ {
1062
+ "id": "00000000000000000000011604069072",
1063
+ "text": "@chrisbrogan People normally await for the RIGHT moment! Failing to realise, there is no RIGHT moment!",
1064
+ "created_at": "Sun Apr 04 20:18:30 +0000 2010",
1065
+ "link": "http:\/\/twitter.com\/tuhinkumar\/statuses\/11604069072",
1066
+ "type": "twitter",
1067
+ "user": {
1068
+ "screen_name": "tuhinkumar",
1069
+ "name": "Tuhin Kumar",
1070
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/721886852\/art_thumb_normal.jpg",
1071
+ "profile_url": "http:\/\/twitter.com\/tuhinkumar"
1072
+ }
1073
+ }]
1074
+ },
1075
+ {
1076
+ "id": "00000000000000000000011595681398",
1077
+ "text": "I guess I'm a dork for thinking Best Buy would be open on Easter Sunday. Oh well.",
1078
+ "created_at": "Sun Apr 04 16:42:21 +0000 2010",
1079
+ "link": "http:\/\/twitter.com\/tericee\/statuses\/11595681398",
1080
+ "type": "twitter",
1081
+ "user": {
1082
+ "screen_name": "tericee",
1083
+ "name": "Teri Centner",
1084
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/446611643\/freinsheim_normal.jpg",
1085
+ "profile_url": "http:\/\/twitter.com\/tericee"
1086
+ },
1087
+ "related": [],
1088
+ "comments": [{
1089
+ "id": "00000000000000000000011595862362",
1090
+ "text": "@tericee Office Depot is open today. You can even spill coffee everywhere and they won't kick you out (as I learned yesterday LOL)",
1091
+ "created_at": "Sun Apr 04 16:46:46 +0000 2010",
1092
+ "link": "http:\/\/twitter.com\/cyberslate\/statuses\/11595862362",
1093
+ "type": "twitter",
1094
+ "user": {
1095
+ "screen_name": "cyberslate",
1096
+ "name": "Michelle S",
1097
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/456077184\/twitterProfilePhoto_normal.jpg",
1098
+ "profile_url": "http:\/\/twitter.com\/cyberslate"
1099
+ }
1100
+ },
1101
+ {
1102
+ "id": "00000000000000000000011597278358",
1103
+ "text": "@cyberslate Nice! I should go by and look for an iPhone case I can run with. I still need to return the other one to Best Buy though.",
1104
+ "created_at": "Sun Apr 04 17:21:26 +0000 2010",
1105
+ "link": "http:\/\/twitter.com\/tericee\/statuses\/11597278358",
1106
+ "type": "twitter",
1107
+ "user": {
1108
+ "screen_name": "tericee",
1109
+ "name": "Teri Centner",
1110
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/446611643\/freinsheim_normal.jpg",
1111
+ "profile_url": "http:\/\/twitter.com\/tericee"
1112
+ }
1113
+ },
1114
+ {
1115
+ "id": "00000000000000000000011597518952",
1116
+ "text": "@tericee Congrats on your half-marathon initiative - very cool #getupandmove",
1117
+ "created_at": "Sun Apr 04 17:27:29 +0000 2010",
1118
+ "link": "http:\/\/twitter.com\/cyberslate\/statuses\/11597518952",
1119
+ "type": "twitter",
1120
+ "user": {
1121
+ "screen_name": "cyberslate",
1122
+ "name": "Michelle S",
1123
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/456077184\/twitterProfilePhoto_normal.jpg",
1124
+ "profile_url": "http:\/\/twitter.com\/cyberslate"
1125
+ }
1126
+ },
1127
+ {
1128
+ "id": "00000000000000000000011598526729",
1129
+ "text": "@cyberslate Thank you!",
1130
+ "created_at": "Sun Apr 04 17:53:01 +0000 2010",
1131
+ "link": "http:\/\/twitter.com\/tericee\/statuses\/11598526729",
1132
+ "type": "twitter",
1133
+ "user": {
1134
+ "screen_name": "tericee",
1135
+ "name": "Teri Centner",
1136
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/446611643\/freinsheim_normal.jpg",
1137
+ "profile_url": "http:\/\/twitter.com\/tericee"
1138
+ }
1139
+ }]
1140
+ },
1141
+ {
1142
+ "id": "00000000000000000000011597188426",
1143
+ "text": "Chatting about Hilbert space saving curves and geohashes with the @simplegeoinc team. Just another Sunday morning.",
1144
+ "created_at": "Sun Apr 04 17:19:11 +0000 2010",
1145
+ "link": "http:\/\/twitter.com\/joestump\/statuses\/11597188426",
1146
+ "type": "twitter",
1147
+ "user": {
1148
+ "screen_name": "joestump",
1149
+ "name": "Joe Stump",
1150
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/323578343\/Avatar_normal.png",
1151
+ "profile_url": "http:\/\/twitter.com\/joestump"
1152
+ },
1153
+ "related": [],
1154
+ "comments": [{
1155
+ "id": "00000000000000000000011597348419",
1156
+ "text": "@joestump remind me to send some r-tree goodness your way.",
1157
+ "created_at": "Sun Apr 04 17:23:11 +0000 2010",
1158
+ "link": "http:\/\/twitter.com\/janl\/statuses\/11597348419",
1159
+ "type": "twitter",
1160
+ "user": {
1161
+ "screen_name": "janl",
1162
+ "name": "Jan Lehnardt",
1163
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/421992458\/jan-lehnardt-small.jpg_normal.jpeg",
1164
+ "profile_url": "http:\/\/twitter.com\/janl"
1165
+ }
1166
+ },
1167
+ {
1168
+ "id": "00000000000000000000011597541042",
1169
+ "text": "@janl Yes, please.",
1170
+ "created_at": "Sun Apr 04 17:28:04 +0000 2010",
1171
+ "link": "http:\/\/twitter.com\/joestump\/statuses\/11597541042",
1172
+ "type": "twitter",
1173
+ "user": {
1174
+ "screen_name": "joestump",
1175
+ "name": "Joe Stump",
1176
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/323578343\/Avatar_normal.png",
1177
+ "profile_url": "http:\/\/twitter.com\/joestump"
1178
+ }
1179
+ },
1180
+ {
1181
+ "id": "00000000000000000000011597767795",
1182
+ "text": "@joestump Can you add support for multidimension as well in the @simplegeoinc api please? #kthxbaii",
1183
+ "created_at": "Sun Apr 04 17:33:40 +0000 2010",
1184
+ "link": "http:\/\/twitter.com\/davidcoallier\/statuses\/11597767795",
1185
+ "type": "twitter",
1186
+ "user": {
1187
+ "screen_name": "davidcoallier",
1188
+ "name": "David Coallier",
1189
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/482726701\/myface-revert_normal.png",
1190
+ "profile_url": "http:\/\/twitter.com\/davidcoallier"
1191
+ }
1192
+ },
1193
+ {
1194
+ "id": "00000000000000000000011598040067",
1195
+ "text": "@davidcoallier Could you expound on what that means on help.simplegeo.com please? #kthxbai",
1196
+ "created_at": "Sun Apr 04 17:40:29 +0000 2010",
1197
+ "link": "http:\/\/twitter.com\/joestump\/statuses\/11598040067",
1198
+ "type": "twitter",
1199
+ "user": {
1200
+ "screen_name": "joestump",
1201
+ "name": "Joe Stump",
1202
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/323578343\/Avatar_normal.png",
1203
+ "profile_url": "http:\/\/twitter.com\/joestump"
1204
+ }
1205
+ }]
1206
+ },
1207
+ {
1208
+ "id": "00000000000000000000011604454939",
1209
+ "text": "Awesome! @repopular, code worth mentioning http:\/\/repopular.com\/",
1210
+ "created_at": "Sun Apr 04 20:28:57 +0000 2010",
1211
+ "link": "http:\/\/twitter.com\/changelogshow\/statuses\/11604454939",
1212
+ "type": "twitter",
1213
+ "user": {
1214
+ "screen_name": "changelogshow",
1215
+ "name": "The Changelog",
1216
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/544002721\/Album-Art_normal.png",
1217
+ "profile_url": "http:\/\/twitter.com\/changelogshow"
1218
+ },
1219
+ "related": [{
1220
+ "id": "00000000000000000000011604692620",
1221
+ "text": "RT @changelogshow: Awesome! @repopular, code worth mentioning http:\/\/repopular.com\/",
1222
+ "created_at": "Sun Apr 04 20:35:11 +0000 2010",
1223
+ "link": "http:\/\/twitter.com\/kennethreitz\/statuses\/11604692620",
1224
+ "type": "twitter",
1225
+ "user": {
1226
+ "screen_name": "kennethreitz",
1227
+ "name": "Kenneth Reitz",
1228
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739641486\/icon_128_normal.png",
1229
+ "profile_url": "http:\/\/twitter.com\/kennethreitz"
1230
+ },
1231
+ "comments": []
1232
+ },
1233
+ {
1234
+ "id": "00000000000000000000011605091439",
1235
+ "text": "Congrats @chadfowler and @marchdoe! @repopular is a great way to find cool projects http:\/\/repopular.com\/",
1236
+ "created_at": "Sun Apr 04 20:45:59 +0000 2010",
1237
+ "link": "http:\/\/twitter.com\/pengwynn\/statuses\/11605091439",
1238
+ "type": "twitter",
1239
+ "user": {
1240
+ "screen_name": "You",
1241
+ "name": "Wynn Netherland",
1242
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png",
1243
+ "profile_url": "http:\/\/twitter.com\/pengwynn"
1244
+ },
1245
+ "comments": [{
1246
+ "id": "00000000000000000000011605392949",
1247
+ "text": "@pengwynn - Thanks Wynn, some fun stuff coming soon, trying to bubble up stats\/info on the project pages. Follow @repopular for updates.",
1248
+ "created_at": "Sun Apr 04 20:54:03 +0000 2010",
1249
+ "link": "http:\/\/twitter.com\/Marchdoe\/statuses\/11605392949",
1250
+ "type": "twitter",
1251
+ "user": {
1252
+ "screen_name": "Marchdoe",
1253
+ "name": "Doug March",
1254
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/14716872\/dm_normal.jpg",
1255
+ "profile_url": "http:\/\/twitter.com\/Marchdoe"
1256
+ }
1257
+ },
1258
+ {
1259
+ "id": "00000000000000000000011605467213",
1260
+ "text": "@pengwynn Seems like it could use some sorts and filters to be useful. Currently lists the most recently mentioned by language.",
1261
+ "created_at": "Sun Apr 04 20:56:05 +0000 2010",
1262
+ "link": "http:\/\/twitter.com\/elight\/statuses\/11605467213",
1263
+ "type": "twitter",
1264
+ "user": {
1265
+ "screen_name": "elight",
1266
+ "name": "Evan Light",
1267
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/120188352\/iPhoto_normal.jpg",
1268
+ "profile_url": "http:\/\/twitter.com\/elight"
1269
+ }
1270
+ },
1271
+ {
1272
+ "id": "00000000000000000000011605562899",
1273
+ "text": "@Marchdoe Would love to bounce some ideas\/compare notes with you sometime. Maybe in #thechangelog on freenode?",
1274
+ "created_at": "Sun Apr 04 20:58:43 +0000 2010",
1275
+ "link": "http:\/\/twitter.com\/pengwynn\/statuses\/11605562899",
1276
+ "type": "twitter",
1277
+ "user": {
1278
+ "screen_name": "You",
1279
+ "name": "Wynn Netherland",
1280
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png",
1281
+ "profile_url": "http:\/\/twitter.com\/pengwynn"
1282
+ }
1283
+ },
1284
+ {
1285
+ "id": "00000000000000000000011605665096",
1286
+ "text": "@elight Yup, I'm sure there's more on tap. Great start though!",
1287
+ "created_at": "Sun Apr 04 21:01:16 +0000 2010",
1288
+ "link": "http:\/\/twitter.com\/pengwynn\/statuses\/11605665096",
1289
+ "type": "twitter",
1290
+ "user": {
1291
+ "screen_name": "You",
1292
+ "name": "Wynn Netherland",
1293
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png",
1294
+ "profile_url": "http:\/\/twitter.com\/pengwynn"
1295
+ }
1296
+ },
1297
+ {
1298
+ "id": "00000000000000000000011607075318",
1299
+ "text": "@pengwynn Thanks! Still working on making it more interesting\/useful but I've already found a bunch of stuff I would have otherwise missed.",
1300
+ "created_at": "Sun Apr 04 21:39:38 +0000 2010",
1301
+ "link": "http:\/\/twitter.com\/chadfowler\/statuses\/11607075318",
1302
+ "type": "twitter",
1303
+ "user": {
1304
+ "screen_name": "chadfowler",
1305
+ "name": "Chad Fowler",
1306
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/305354379\/ChadFowler_normal.jpg",
1307
+ "profile_url": "http:\/\/twitter.com\/chadfowler"
1308
+ }
1309
+ }]
1310
+ },
1311
+ {
1312
+ "id": "00000000000000000000011605778937",
1313
+ "text": "Awesome! @repopular, code worth mentioning http:\/\/repopular.com\/ (via @changelogshow)",
1314
+ "created_at": "Sun Apr 04 21:04:14 +0000 2010",
1315
+ "link": "http:\/\/twitter.com\/elubow\/statuses\/11605778937",
1316
+ "type": "twitter",
1317
+ "user": {
1318
+ "screen_name": "elubow",
1319
+ "name": "Eric Lubow",
1320
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/116423519\/TEMP-1CD2YY_normal.png",
1321
+ "profile_url": "http:\/\/twitter.com\/elubow"
1322
+ },
1323
+ "comments": []
1324
+ }],
1325
+ "comments": []
1326
+ },
1327
+ {
1328
+ "id": "00000000000000000000011598171763",
1329
+ "text": "RT @flyosity iPad has already been jail-broken: http:\/\/idek.net\/1Glm",
1330
+ "created_at": "Sun Apr 04 17:43:52 +0000 2010",
1331
+ "link": "http:\/\/twitter.com\/nathansmith\/statuses\/11598171763",
1332
+ "type": "twitter",
1333
+ "user": {
1334
+ "screen_name": "nathansmith",
1335
+ "name": "Nathan Smith",
1336
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/575482650\/nsmith_avatar_normal.png",
1337
+ "profile_url": "http:\/\/twitter.com\/nathansmith"
1338
+ },
1339
+ "related": [{
1340
+ "id": "00000000000000000000011600691441",
1341
+ "text": "RT @flyosity: iPad has already been jailbroken, wow: http:\/\/idek.net\/1Glm",
1342
+ "created_at": "Sun Apr 04 18:49:37 +0000 2010",
1343
+ "link": "http:\/\/twitter.com\/waynesutton\/statuses\/11600691441",
1344
+ "type": "twitter",
1345
+ "user": {
1346
+ "screen_name": "waynesutton",
1347
+ "name": "Wayne Sutton",
1348
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/125323787\/WayneSutton-headshot2_normal.jpg",
1349
+ "profile_url": "http:\/\/twitter.com\/waynesutton"
1350
+ },
1351
+ "comments": []
1352
+ },
1353
+ {
1354
+ "id": "00000000000000000000011601257048",
1355
+ "text": "For those with their knickers in a twist about closed devices: the iPad is already jailbroken. http:\/\/bit.ly\/cpOcSc",
1356
+ "created_at": "Sun Apr 04 19:04:20 +0000 2010",
1357
+ "link": "http:\/\/twitter.com\/MikeG1\/statuses\/11601257048",
1358
+ "type": "twitter",
1359
+ "user": {
1360
+ "screen_name": "MikeG1",
1361
+ "name": "Mike Gunderloy",
1362
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/57930155\/Photo1Small_normal.png",
1363
+ "profile_url": "http:\/\/twitter.com\/MikeG1"
1364
+ },
1365
+ "comments": []
1366
+ },
1367
+ {
1368
+ "id": "00000000000000000000011602441109",
1369
+ "text": "Hah! iPad Jailbroken already. Life is good: http:\/\/bit.ly\/bZb9PN",
1370
+ "created_at": "Sun Apr 04 19:35:26 +0000 2010",
1371
+ "link": "http:\/\/twitter.com\/kennethreitz\/statuses\/11602441109",
1372
+ "type": "twitter",
1373
+ "user": {
1374
+ "screen_name": "kennethreitz",
1375
+ "name": "Kenneth Reitz",
1376
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739641486\/icon_128_normal.png",
1377
+ "profile_url": "http:\/\/twitter.com\/kennethreitz"
1378
+ },
1379
+ "comments": []
1380
+ }],
1381
+ "comments": []
1382
+ },
1383
+ {
1384
+ "id": "00000000000000000000011563700448",
1385
+ "text": "via @pengwynn I love this! A bit of #jquery @CLImagic. Even supports the Konami code (\u2191, \u2191, \u2193, \u2193, \u2190, \u2192, \u2190, \u2192, B, A) http:\/\/bit.ly\/djYw6z",
1386
+ "created_at": "Sun Apr 04 01:47:39 +0000 2010",
1387
+ "link": "http:\/\/twitter.com\/JQueryBot\/statuses\/11563700448",
1388
+ "type": "twitter",
1389
+ "user": {
1390
+ "screen_name": "JQueryBot",
1391
+ "name": "JQuery Watcher",
1392
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/791224795\/JQuery_normal.gif",
1393
+ "profile_url": "http:\/\/twitter.com\/JQueryBot"
1394
+ },
1395
+ "related": [{
1396
+ "id": "00000000000000000000011564466504",
1397
+ "text": "RT @pengwynn: I love this! A bit of #jquery @CLImagic. Even supports the Konami code (\u2191, \u2191, \u2193, \u2193, \u2190, \u2192, \u2190, \u2192, B, A) http:\/\/bit.ly\/djYw6z",
1398
+ "created_at": "Sun Apr 04 02:05:33 +0000 2010",
1399
+ "link": "http:\/\/twitter.com\/jimeh\/statuses\/11564466504",
1400
+ "type": "twitter",
1401
+ "user": {
1402
+ "screen_name": "jimeh",
1403
+ "name": "Jim Myhrberg",
1404
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/676305911\/jimeh_2.0__512x512__normal.jpg",
1405
+ "profile_url": "http:\/\/twitter.com\/jimeh"
1406
+ },
1407
+ "comments": []
1408
+ },
1409
+ {
1410
+ "id": "00000000000000000000011575155354",
1411
+ "text": "RT @pengwynn: I love this! A bit of #jquery @CLImagic. Even supports the Konami code (\u2191, \u2191, \u2193, \u2193, \u2190, \u2192, \u2190, \u2192, B, A) http:\/\/bit.ly\/djYw6z",
1412
+ "created_at": "Sun Apr 04 06:26:26 +0000 2010",
1413
+ "link": "http:\/\/twitter.com\/amackera\/statuses\/11575155354",
1414
+ "type": "twitter",
1415
+ "user": {
1416
+ "screen_name": "amackera",
1417
+ "name": "Anson MacKeracher",
1418
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/66238023\/n122612272_31419669_8743_normal.jpg",
1419
+ "profile_url": "http:\/\/twitter.com\/amackera"
1420
+ },
1421
+ "comments": []
1422
+ }],
1423
+ "comments": []
1424
+ },
1425
+ {
1426
+ "id": "00000000000000000000011607154305",
1427
+ "text": "Always amazed the work of @jstutzman, like the new take of the @spreecommerce logo http:\/\/drbl.in\/10530",
1428
+ "created_at": "Sun Apr 04 21:41:43 +0000 2010",
1429
+ "link": "http:\/\/twitter.com\/pengwynn\/statuses\/11607154305",
1430
+ "type": "twitter",
1431
+ "user": {
1432
+ "screen_name": "You",
1433
+ "name": "Wynn Netherland",
1434
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png",
1435
+ "profile_url": "http:\/\/twitter.com\/pengwynn"
1436
+ },
1437
+ "related": [],
1438
+ "comments": [{
1439
+ "id": "00000000000000000000011607958739",
1440
+ "text": "@pengwynn thx man!",
1441
+ "created_at": "Sun Apr 04 22:03:07 +0000 2010",
1442
+ "link": "http:\/\/twitter.com\/jstutzman\/statuses\/11607958739",
1443
+ "type": "twitter",
1444
+ "user": {
1445
+ "screen_name": "jstutzman",
1446
+ "name": "Jake Stutzman",
1447
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/306465418\/jake_icon2_normal.jpg",
1448
+ "profile_url": "http:\/\/twitter.com\/jstutzman"
1449
+ }
1450
+ },
1451
+ {
1452
+ "id": "00000000000000000000011608051802",
1453
+ "text": "@pengwynn It's such an honor to work with him. Incredible designs flying everywhere..",
1454
+ "created_at": "Sun Apr 04 22:05:31 +0000 2010",
1455
+ "link": "http:\/\/twitter.com\/adamyonk\/statuses\/11608051802",
1456
+ "type": "twitter",
1457
+ "user": {
1458
+ "screen_name": "adamyonk",
1459
+ "name": "Adam Jahnke",
1460
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/566612101\/IMG_5256w_normal.jpg",
1461
+ "profile_url": "http:\/\/twitter.com\/adamyonk"
1462
+ }
1463
+ }]
1464
+ },
1465
+ {
1466
+ "id": "00000000000000000000011595421458",
1467
+ "text": "@scottw lol, then I completely agree! I wonder if HTML 5 will provide any facilities for that interaction.",
1468
+ "created_at": "Sun Apr 04 16:36:05 +0000 2010",
1469
+ "link": "http:\/\/twitter.com\/samdelagarza\/statuses\/11595421458",
1470
+ "type": "twitter",
1471
+ "user": {
1472
+ "screen_name": "samdelagarza",
1473
+ "name": "samdelagarza",
1474
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/475415073\/Sam_FaceShot_normal.jpg",
1475
+ "profile_url": "http:\/\/twitter.com\/samdelagarza"
1476
+ },
1477
+ "related": [],
1478
+ "comments": [{
1479
+ "id": "00000000000000000000011599567698",
1480
+ "text": "@samdelagarza google is pushing to make drag\/drop part of HTLM5. Your other option for doing it today is google gears.",
1481
+ "created_at": "Sun Apr 04 18:19:55 +0000 2010",
1482
+ "link": "http:\/\/twitter.com\/scottw\/statuses\/11599567698",
1483
+ "type": "twitter",
1484
+ "user": {
1485
+ "screen_name": "scottw",
1486
+ "name": "Scott Watermasysk",
1487
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/290916441\/4TCNX0WI9WGT.jpg-100x180_normal.jpg",
1488
+ "profile_url": "http:\/\/twitter.com\/scottw"
1489
+ }
1490
+ },
1491
+ {
1492
+ "id": "00000000000000000000011600600125",
1493
+ "text": "@scottw nice. i hope ideas from gears make it into the final spec.",
1494
+ "created_at": "Sun Apr 04 18:47:10 +0000 2010",
1495
+ "link": "http:\/\/twitter.com\/samdelagarza\/statuses\/11600600125",
1496
+ "type": "twitter",
1497
+ "user": {
1498
+ "screen_name": "samdelagarza",
1499
+ "name": "samdelagarza",
1500
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/475415073\/Sam_FaceShot_normal.jpg",
1501
+ "profile_url": "http:\/\/twitter.com\/samdelagarza"
1502
+ }
1503
+ }]
1504
+ },
1505
+ {
1506
+ "id": "00000000000000000000011603490055",
1507
+ "text": "My hot wife is now my hot tattooed wife. #upgrades",
1508
+ "created_at": "Sun Apr 04 20:02:56 +0000 2010",
1509
+ "link": "http:\/\/twitter.com\/al3x\/statuses\/11603490055",
1510
+ "type": "twitter",
1511
+ "user": {
1512
+ "screen_name": "al3x",
1513
+ "name": "Alex Payne",
1514
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/357750272\/small_3_normal.png",
1515
+ "profile_url": "http:\/\/twitter.com\/al3x"
1516
+ },
1517
+ "related": [],
1518
+ "comments": [{
1519
+ "id": "00000000000000000000011604169162",
1520
+ "text": "@al3x Good to know I'm not the only one that finds tattoos on ladies to be extremely hot.",
1521
+ "created_at": "Sun Apr 04 20:21:10 +0000 2010",
1522
+ "link": "http:\/\/twitter.com\/joestump\/statuses\/11604169162",
1523
+ "type": "twitter",
1524
+ "user": {
1525
+ "screen_name": "joestump",
1526
+ "name": "Joe Stump",
1527
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/323578343\/Avatar_normal.png",
1528
+ "profile_url": "http:\/\/twitter.com\/joestump"
1529
+ }
1530
+ },
1531
+ {
1532
+ "id": "00000000000000000000011604942766",
1533
+ "text": "@al3x Pics or it didn't happen?",
1534
+ "created_at": "Sun Apr 04 20:41:57 +0000 2010",
1535
+ "link": "http:\/\/twitter.com\/chartier\/statuses\/11604942766",
1536
+ "type": "twitter",
1537
+ "user": {
1538
+ "screen_name": "chartier",
1539
+ "name": "David Chartier",
1540
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/721539528\/image_normal.jpg",
1541
+ "profile_url": "http:\/\/twitter.com\/chartier"
1542
+ }
1543
+ },
1544
+ {
1545
+ "id": "00000000000000000000011603553589",
1546
+ "text": "@al3x pics or it didn't happen.",
1547
+ "created_at": "Sun Apr 04 20:04:36 +0000 2010",
1548
+ "link": "http:\/\/twitter.com\/embee\/statuses\/11603553589",
1549
+ "type": "twitter",
1550
+ "user": {
1551
+ "screen_name": "embee",
1552
+ "name": "Embee",
1553
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/536237254\/IMG_4840_normal.jpg",
1554
+ "profile_url": "http:\/\/twitter.com\/embee"
1555
+ }
1556
+ }]
1557
+ },
1558
+ {
1559
+ "id": "00000000000000000000011601001558",
1560
+ "text": "Too freaking hot in Atlanta today. :( #want #cold",
1561
+ "created_at": "Sun Apr 04 18:57:53 +0000 2010",
1562
+ "link": "http:\/\/twitter.com\/mtodd\/statuses\/11601001558",
1563
+ "type": "twitter",
1564
+ "user": {
1565
+ "screen_name": "mtodd",
1566
+ "name": "Matt Todd",
1567
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/615027479\/55426050-482d7b78c163dd129547da1f39adf6b8.4b454bd2-scaled_normal.jpg",
1568
+ "profile_url": "http:\/\/twitter.com\/mtodd"
1569
+ },
1570
+ "related": [],
1571
+ "comments": [{
1572
+ "id": "00000000000000000000011601184498",
1573
+ "text": "@mtodd Atlanta is humid, too, right? I guess I'll know what hot and humid feels like come May. (Been to NYC in Oct, ORD in Feb.)",
1574
+ "created_at": "Sun Apr 04 19:02:28 +0000 2010",
1575
+ "link": "http:\/\/twitter.com\/benatkin\/statuses\/11601184498",
1576
+ "type": "twitter",
1577
+ "user": {
1578
+ "screen_name": "benatkin",
1579
+ "name": "Ben Atkin",
1580
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/530122106\/twitter_normal.jpg",
1581
+ "profile_url": "http:\/\/twitter.com\/benatkin"
1582
+ }
1583
+ },
1584
+ {
1585
+ "id": "00000000000000000000011602735754",
1586
+ "text": "@benatkin Yep, hot and humid. I loathe the coming summer months. Atlanta has beautiful weather for 1 month out of the year, total. :(",
1587
+ "created_at": "Sun Apr 04 19:43:20 +0000 2010",
1588
+ "link": "http:\/\/twitter.com\/mtodd\/statuses\/11602735754",
1589
+ "type": "twitter",
1590
+ "user": {
1591
+ "screen_name": "mtodd",
1592
+ "name": "Matt Todd",
1593
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/615027479\/55426050-482d7b78c163dd129547da1f39adf6b8.4b454bd2-scaled_normal.jpg",
1594
+ "profile_url": "http:\/\/twitter.com\/mtodd"
1595
+ }
1596
+ }]
1597
+ },
1598
+ {
1599
+ "id": "00000000000000000000011601117888",
1600
+ "text": "UIDocumentInteractionController \u2014 it's WORKING on the device, it is!",
1601
+ "created_at": "Sun Apr 04 19:00:50 +0000 2010",
1602
+ "link": "http:\/\/twitter.com\/ericasadun\/statuses\/11601117888",
1603
+ "type": "twitter",
1604
+ "user": {
1605
+ "screen_name": "ericasadun",
1606
+ "name": "ericasadun",
1607
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/292927387\/dogbert-e_normal.png",
1608
+ "profile_url": "http:\/\/twitter.com\/ericasadun"
1609
+ },
1610
+ "related": [],
1611
+ "comments": [{
1612
+ "id": "00000000000000000000011601293076",
1613
+ "text": "@ericasadun And now that we can test with a working UIDocumentInteractionController, we can prepare that Air Sharing HD 1.0.1 update!",
1614
+ "created_at": "Sun Apr 04 19:05:15 +0000 2010",
1615
+ "link": "http:\/\/twitter.com\/dshowell\/statuses\/11601293076",
1616
+ "type": "twitter",
1617
+ "user": {
1618
+ "screen_name": "dshowell",
1619
+ "name": "Dave Howell",
1620
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/65706669\/Dave-on-Air-Sharing-icon_normal.jpg",
1621
+ "profile_url": "http:\/\/twitter.com\/dshowell"
1622
+ }
1623
+ },
1624
+ {
1625
+ "id": "00000000000000000000011601416026",
1626
+ "text": "@ericasadun apple says it ONLY works on the device.",
1627
+ "created_at": "Sun Apr 04 19:08:28 +0000 2010",
1628
+ "link": "http:\/\/twitter.com\/drunknbass\/statuses\/11601416026",
1629
+ "type": "twitter",
1630
+ "user": {
1631
+ "screen_name": "drunknbass",
1632
+ "name": "Aaron Alexander",
1633
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/483909269\/9928_172101318544_683798544_2719406_4705067_n_normal.jpg",
1634
+ "profile_url": "http:\/\/twitter.com\/drunknbass"
1635
+ }
1636
+ }]
1637
+ },
1638
+ {
1639
+ "id": "00000000000000000000011596999731",
1640
+ "text": "Want to be a good Christian on the day of your savior's resurrection? Go here. Donate. http:\/\/www.takumisheart.com\/Takumis_Heart\/home.html",
1641
+ "created_at": "Sun Apr 04 17:14:31 +0000 2010",
1642
+ "link": "http:\/\/twitter.com\/ReinH\/statuses\/11596999731",
1643
+ "type": "twitter",
1644
+ "user": {
1645
+ "screen_name": "ReinH",
1646
+ "name": "Rein Henrichs",
1647
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/73343025\/s_ec3528dde7dd4363eb85ed30d9f0738e_normal.jpg",
1648
+ "profile_url": "http:\/\/twitter.com\/ReinH"
1649
+ },
1650
+ "related": [],
1651
+ "comments": [{
1652
+ "id": "00000000000000000000011597149028",
1653
+ "text": "@ReinH but showing human decency to gay ppl goes against everything the lord stands for doesn't it?",
1654
+ "created_at": "Sun Apr 04 17:18:12 +0000 2010",
1655
+ "link": "http:\/\/twitter.com\/rsl\/statuses\/11597149028",
1656
+ "type": "twitter",
1657
+ "user": {
1658
+ "screen_name": "rsl",
1659
+ "name": "RSL",
1660
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/609922628\/avatar_normal.jpg",
1661
+ "profile_url": "http:\/\/twitter.com\/rsl"
1662
+ }
1663
+ },
1664
+ {
1665
+ "id": "00000000000000000000011597257071",
1666
+ "text": "@rsl One would certainly hope not.",
1667
+ "created_at": "Sun Apr 04 17:20:54 +0000 2010",
1668
+ "link": "http:\/\/twitter.com\/ReinH\/statuses\/11597257071",
1669
+ "type": "twitter",
1670
+ "user": {
1671
+ "screen_name": "ReinH",
1672
+ "name": "Rein Henrichs",
1673
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/73343025\/s_ec3528dde7dd4363eb85ed30d9f0738e_normal.jpg",
1674
+ "profile_url": "http:\/\/twitter.com\/ReinH"
1675
+ }
1676
+ }]
1677
+ },
1678
+ {
1679
+ "id": "00000000000000000000011595069444",
1680
+ "text": "#redsox Opening day #yankeessuck",
1681
+ "created_at": "Sun Apr 04 16:27:49 +0000 2010",
1682
+ "link": "http:\/\/twitter.com\/katzpdx\/statuses\/11595069444",
1683
+ "type": "twitter",
1684
+ "user": {
1685
+ "screen_name": "katzpdx",
1686
+ "name": "Jeff Katz",
1687
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/304369101\/katz_normal.jpg",
1688
+ "profile_url": "http:\/\/twitter.com\/katzpdx"
1689
+ },
1690
+ "related": [],
1691
+ "comments": [{
1692
+ "id": "00000000000000000000011595192928",
1693
+ "text": "@katzpdx Let the rivalry begin #yankeesrule #redsoxlose :-)",
1694
+ "created_at": "Sun Apr 04 16:30:42 +0000 2010",
1695
+ "link": "http:\/\/twitter.com\/PDXrox\/statuses\/11595192928",
1696
+ "type": "twitter",
1697
+ "user": {
1698
+ "screen_name": "PDXrox",
1699
+ "name": "Anne Buckley",
1700
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/226114768\/AnneBday_normal.jpg",
1701
+ "profile_url": "http:\/\/twitter.com\/PDXrox"
1702
+ }
1703
+ },
1704
+ {
1705
+ "id": "00000000000000000000011595623682",
1706
+ "text": "@PDXrox Et tu, brute? Oy freaking vey. Still #yankeessuck",
1707
+ "created_at": "Sun Apr 04 16:40:57 +0000 2010",
1708
+ "link": "http:\/\/twitter.com\/katzpdx\/statuses\/11595623682",
1709
+ "type": "twitter",
1710
+ "user": {
1711
+ "screen_name": "katzpdx",
1712
+ "name": "Jeff Katz",
1713
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/304369101\/katz_normal.jpg",
1714
+ "profile_url": "http:\/\/twitter.com\/katzpdx"
1715
+ }
1716
+ },
1717
+ {
1718
+ "id": "00000000000000000000011598467269",
1719
+ "text": "@katzpdx to be fair @PDXrox is a native new yoker. Only excuse damn yankees",
1720
+ "created_at": "Sun Apr 04 17:51:27 +0000 2010",
1721
+ "link": "http:\/\/twitter.com\/missorian\/statuses\/11598467269",
1722
+ "type": "twitter",
1723
+ "user": {
1724
+ "screen_name": "missorian",
1725
+ "name": "Orian Imaki",
1726
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/785981875\/DSCN2011_normal.JPG",
1727
+ "profile_url": "http:\/\/twitter.com\/missorian"
1728
+ }
1729
+ },
1730
+ {
1731
+ "id": "00000000000000000000011600730284",
1732
+ "text": "@missorian yeah, I figured that about @PDXrox's liability",
1733
+ "created_at": "Sun Apr 04 18:50:38 +0000 2010",
1734
+ "link": "http:\/\/twitter.com\/katzpdx\/statuses\/11600730284",
1735
+ "type": "twitter",
1736
+ "user": {
1737
+ "screen_name": "katzpdx",
1738
+ "name": "Jeff Katz",
1739
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/304369101\/katz_normal.jpg",
1740
+ "profile_url": "http:\/\/twitter.com\/katzpdx"
1741
+ }
1742
+ }]
1743
+ },
1744
+ {
1745
+ "id": "00000000000000000000011595994150",
1746
+ "text": "Had a good turn out online for the 1st service. Next live service starts at 10:00am, join us here, http:\/\/bit.ly\/b5hSo8",
1747
+ "created_at": "Sun Apr 04 16:50:02 +0000 2010",
1748
+ "link": "http:\/\/twitter.com\/MarsHill\/statuses\/11595994150",
1749
+ "type": "twitter",
1750
+ "user": {
1751
+ "screen_name": "MarsHill",
1752
+ "name": "Mars Hill Church",
1753
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/610248060\/MH_wht_k_normal.jpg",
1754
+ "profile_url": "http:\/\/twitter.com\/MarsHill"
1755
+ },
1756
+ "related": [{
1757
+ "id": "00000000000000000000011596819247",
1758
+ "text": "RT @BoLane: I'm watching Mars Hill Resurrection Service streaming online. Awesome. \/\/ http:\/\/bit.ly\/b5hSo8",
1759
+ "created_at": "Sun Apr 04 17:10:02 +0000 2010",
1760
+ "link": "http:\/\/twitter.com\/MarsHill\/statuses\/11596819247",
1761
+ "type": "twitter",
1762
+ "user": {
1763
+ "screen_name": "MarsHill",
1764
+ "name": "Mars Hill Church",
1765
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/610248060\/MH_wht_k_normal.jpg",
1766
+ "profile_url": "http:\/\/twitter.com\/MarsHill"
1767
+ },
1768
+ "comments": []
1769
+ },
1770
+ {
1771
+ "id": "00000000000000000000011599187036",
1772
+ "text": "Love Easter at @MarsHill! Risen Lord, baptisms, drum corps, bagpipes. You can watch online today. 11:30am, 5pm, 715pm. http:\/\/bit.ly\/b5hSo8",
1773
+ "created_at": "Sun Apr 04 18:10:02 +0000 2010",
1774
+ "link": "http:\/\/twitter.com\/PastorMark\/statuses\/11599187036",
1775
+ "type": "twitter",
1776
+ "user": {
1777
+ "screen_name": "PastorMark",
1778
+ "name": "Mark Driscoll",
1779
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/715007664\/Mark_Driscoll_Portrait_Resized_normal.jpg",
1780
+ "profile_url": "http:\/\/twitter.com\/PastorMark"
1781
+ },
1782
+ "comments": []
1783
+ }],
1784
+ "comments": []
1785
+ },
1786
+ {
1787
+ "id": "00000000000000000000011606184685",
1788
+ "text": "Scrabble for the iPad + iPhone\/s looks incredible: http:\/\/bit.ly\/cjsrgE",
1789
+ "created_at": "Sun Apr 04 21:15:14 +0000 2010",
1790
+ "link": "http:\/\/twitter.com\/kennethreitz\/statuses\/11606184685",
1791
+ "type": "twitter",
1792
+ "user": {
1793
+ "screen_name": "kennethreitz",
1794
+ "name": "Kenneth Reitz",
1795
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/739641486\/icon_128_normal.png",
1796
+ "profile_url": "http:\/\/twitter.com\/kennethreitz"
1797
+ },
1798
+ "related": [{
1799
+ "id": "00000000000000000000011606406215",
1800
+ "text": "Wow: Scrabble for the iPad + iPhone\/s looks incredible: http:\/\/bit.ly\/cjsrgE \/via @kennethreitz",
1801
+ "created_at": "Sun Apr 04 21:21:17 +0000 2010",
1802
+ "link": "http:\/\/twitter.com\/pengwynn\/statuses\/11606406215",
1803
+ "type": "twitter",
1804
+ "user": {
1805
+ "screen_name": "You",
1806
+ "name": "Wynn Netherland",
1807
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png",
1808
+ "profile_url": "http:\/\/twitter.com\/pengwynn"
1809
+ },
1810
+ "comments": [{
1811
+ "id": "00000000000000000000011607190498",
1812
+ "text": "@pengwynn Scrabble for BBerry is pretty cool, too",
1813
+ "created_at": "Sun Apr 04 21:42:40 +0000 2010",
1814
+ "link": "http:\/\/twitter.com\/WiiPigSooie\/statuses\/11607190498",
1815
+ "type": "twitter",
1816
+ "user": {
1817
+ "screen_name": "WiiPigSooie",
1818
+ "name": "Caroline Proctor",
1819
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/670319207\/Profile_Pic_normal.jpg",
1820
+ "profile_url": "http:\/\/twitter.com\/WiiPigSooie"
1821
+ }
1822
+ }]
1823
+ }],
1824
+ "comments": []
1825
+ },
1826
+ {
1827
+ "id": "00000000000000000000011603500944",
1828
+ "text": "RT @bsletten: RT @ros3 Hahaha. The Programming Husband http:\/\/bit.ly\/beSHwg",
1829
+ "created_at": "Sun Apr 04 20:03:13 +0000 2010",
1830
+ "link": "http:\/\/twitter.com\/deadprogram\/statuses\/11603500944",
1831
+ "type": "twitter",
1832
+ "user": {
1833
+ "screen_name": "deadprogram",
1834
+ "name": "Ron Evans",
1835
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/502653952\/roneye_normal.jpg",
1836
+ "profile_url": "http:\/\/twitter.com\/deadprogram"
1837
+ },
1838
+ "related": [{
1839
+ "id": "00000000000000000000011603965456",
1840
+ "text": "RT @bsletten: RT @ros3 Hahaha. The Programming Husband http:\/\/bit.ly\/beSHwg (via @deadprogram)",
1841
+ "created_at": "Sun Apr 04 20:15:44 +0000 2010",
1842
+ "link": "http:\/\/twitter.com\/cicekhayri\/statuses\/11603965456",
1843
+ "type": "twitter",
1844
+ "user": {
1845
+ "screen_name": "cicekhayri",
1846
+ "name": "Hayri Cicek",
1847
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/564545971\/Bild_19_normal.jpg",
1848
+ "profile_url": "http:\/\/twitter.com\/cicekhayri"
1849
+ },
1850
+ "comments": []
1851
+ }],
1852
+ "comments": []
1853
+ },
1854
+ {
1855
+ "id": "00000000000000000000011599664958",
1856
+ "text": "Handy CSS3 cross browser code generator: http:\/\/css3please.com\/",
1857
+ "created_at": "Sun Apr 04 18:22:25 +0000 2010",
1858
+ "link": "http:\/\/twitter.com\/peterc\/statuses\/11599664958",
1859
+ "type": "twitter",
1860
+ "user": {
1861
+ "screen_name": "peterc",
1862
+ "name": "Peter \u00c7oop\u00e8r",
1863
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/574631418\/peter-beard-2_normal.png",
1864
+ "profile_url": "http:\/\/twitter.com\/peterc"
1865
+ },
1866
+ "related": [{
1867
+ "id": "00000000000000000000011603015851",
1868
+ "text": "CSS3 Please: http:\/\/bit.ly\/aHDvuY",
1869
+ "created_at": "Sun Apr 04 19:50:35 +0000 2010",
1870
+ "link": "http:\/\/twitter.com\/dbbradle\/statuses\/11603015851",
1871
+ "type": "twitter",
1872
+ "user": {
1873
+ "screen_name": "dbbradle",
1874
+ "name": "Derrick Bradley",
1875
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/607801352\/Picture_of_Derrick_Bradley_normal.jpeg",
1876
+ "profile_url": "http:\/\/twitter.com\/dbbradle"
1877
+ },
1878
+ "comments": []
1879
+ }],
1880
+ "comments": []
1881
+ },
1882
+ {
1883
+ "id": "00000000000000000000011601284490",
1884
+ "text": "Guide to Localizing Your Design Business http:\/\/bit.ly\/dwQe5K",
1885
+ "created_at": "Sun Apr 04 19:05:02 +0000 2010",
1886
+ "link": "http:\/\/twitter.com\/DesignerDepot\/statuses\/11601284490",
1887
+ "type": "twitter",
1888
+ "user": {
1889
+ "screen_name": "DesignerDepot",
1890
+ "name": "Webdesigner Depot",
1891
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/68683285\/wdd_normal.jpg",
1892
+ "profile_url": "http:\/\/twitter.com\/DesignerDepot"
1893
+ },
1894
+ "related": [{
1895
+ "id": "00000000000000000000011606044285",
1896
+ "text": "DESIGNERS: Guide to Localizing Your Design Business http:\/\/is.gd\/betXJ. #in",
1897
+ "created_at": "Sun Apr 04 21:11:22 +0000 2010",
1898
+ "link": "http:\/\/twitter.com\/GreyVisual\/statuses\/11606044285",
1899
+ "type": "twitter",
1900
+ "user": {
1901
+ "screen_name": "GreyVisual",
1902
+ "name": "Bill Grey",
1903
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/320062274\/BillPortrait-engaged-crop_normal.jpg",
1904
+ "profile_url": "http:\/\/twitter.com\/GreyVisual"
1905
+ },
1906
+ "comments": []
1907
+ }],
1908
+ "comments": [{
1909
+ "id": "00000000000000000000011603158386",
1910
+ "text": "@DesignerDepot interesante",
1911
+ "created_at": "Sun Apr 04 19:54:17 +0000 2010",
1912
+ "link": "http:\/\/twitter.com\/fanultra\/statuses\/11603158386",
1913
+ "type": "twitter",
1914
+ "user": {
1915
+ "screen_name": "fanultra",
1916
+ "name": "Juan Valdez Cafe",
1917
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/716256753\/JVpeque_o_normal.JPG",
1918
+ "profile_url": "http:\/\/twitter.com\/fanultra"
1919
+ }
1920
+ }]
1921
+ },
1922
+ {
1923
+ "id": "00000000000000000000011598333570",
1924
+ "text": "New post: The Undiscovered Value of the Check In -> http:\/\/goo.gl\/fb\/pbCfr by @LawPower via @TriOut cc: @Louisgray tip @Techmeme",
1925
+ "created_at": "Sun Apr 04 17:48:01 +0000 2010",
1926
+ "link": "http:\/\/twitter.com\/waynesutton\/statuses\/11598333570",
1927
+ "type": "twitter",
1928
+ "user": {
1929
+ "screen_name": "waynesutton",
1930
+ "name": "Wayne Sutton",
1931
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/125323787\/WayneSutton-headshot2_normal.jpg",
1932
+ "profile_url": "http:\/\/twitter.com\/waynesutton"
1933
+ },
1934
+ "related": [{
1935
+ "id": "00000000000000000000011605435014",
1936
+ "text": "The Undiscovered Value of the Check In | TriOut http:\/\/ff.im\/-izTIL",
1937
+ "created_at": "Sun Apr 04 20:55:11 +0000 2010",
1938
+ "link": "http:\/\/twitter.com\/louisgray\/statuses\/11605435014",
1939
+ "type": "twitter",
1940
+ "user": {
1941
+ "screen_name": "louisgray",
1942
+ "name": "Louis Gray",
1943
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/445785969\/cli-0183-1253277155001-prf_normal.jpg",
1944
+ "profile_url": "http:\/\/twitter.com\/louisgray"
1945
+ },
1946
+ "comments": [{
1947
+ "id": "00000000000000000000011606530949",
1948
+ "text": "@louisgray thanks for the tweet Louis",
1949
+ "created_at": "Sun Apr 04 21:24:47 +0000 2010",
1950
+ "link": "http:\/\/twitter.com\/triout\/statuses\/11606530949",
1951
+ "type": "twitter",
1952
+ "user": {
1953
+ "screen_name": "triout",
1954
+ "name": "TriOut",
1955
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/736675456\/tridot_normal.png",
1956
+ "profile_url": "http:\/\/twitter.com\/triout"
1957
+ }
1958
+ }]
1959
+ }],
1960
+ "comments": []
1961
+ },
1962
+ {
1963
+ "id": "00000000000000000000011598931112",
1964
+ "text": "I'm at Arlington National Cemetery (Memorial Drive, Jefferson Davis Hwy, Arlington) w\/ 2 others. http:\/\/4sq.com\/7696Hm",
1965
+ "created_at": "Sun Apr 04 18:03:20 +0000 2010",
1966
+ "link": "http:\/\/twitter.com\/davidharrity\/statuses\/11598931112",
1967
+ "type": "twitter",
1968
+ "user": {
1969
+ "screen_name": "davidharrity",
1970
+ "name": "David Harrity",
1971
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/643136690\/Headshot-1_normal.JPG",
1972
+ "profile_url": "http:\/\/twitter.com\/davidharrity"
1973
+ },
1974
+ "related": [],
1975
+ "comments": [{
1976
+ "id": "00000000000000000000011599210536",
1977
+ "text": "@davidharrity Why are you at Arlington Cemetery?",
1978
+ "created_at": "Sun Apr 04 18:10:38 +0000 2010",
1979
+ "link": "http:\/\/twitter.com\/tericee\/statuses\/11599210536",
1980
+ "type": "twitter",
1981
+ "user": {
1982
+ "screen_name": "tericee",
1983
+ "name": "Teri Centner",
1984
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/446611643\/freinsheim_normal.jpg",
1985
+ "profile_url": "http:\/\/twitter.com\/tericee"
1986
+ }
1987
+ }]
1988
+ },
1989
+ {
1990
+ "id": "00000000000000000000011604881733",
1991
+ "text": "RT @SarahGMTV: We'll be welcoming @tweetminster to the @GMTV sofa as the countdown to the General Election begins <- looking forward to it.",
1992
+ "created_at": "Sun Apr 04 20:40:19 +0000 2010",
1993
+ "link": "http:\/\/twitter.com\/AlbertoNardelli\/statuses\/11604881733",
1994
+ "type": "twitter",
1995
+ "user": {
1996
+ "screen_name": "AlbertoNardelli",
1997
+ "name": "Alberto Nardelli",
1998
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/286728278\/profilefinal_normal.jpg",
1999
+ "profile_url": "http:\/\/twitter.com\/AlbertoNardelli"
2000
+ },
2001
+ "related": [],
2002
+ "comments": [{
2003
+ "id": "00000000000000000000011605388642",
2004
+ "text": "@AlbertoNardelli nice one man. have fun :-)",
2005
+ "created_at": "Sun Apr 04 20:53:56 +0000 2010",
2006
+ "link": "http:\/\/twitter.com\/DarenBBC\/statuses\/11605388642",
2007
+ "type": "twitter",
2008
+ "user": {
2009
+ "screen_name": "DarenBBC",
2010
+ "name": "Admiral Charity",
2011
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/724473553\/DarenBBC-AdmiralCharity_normal.jpg",
2012
+ "profile_url": "http:\/\/twitter.com\/DarenBBC"
2013
+ }
2014
+ }]
2015
+ },
2016
+ {
2017
+ "id": "00000000000000000000011605612859",
2018
+ "text": "Do I have an Apple fanboy problem? Let the pictures be your guide. http:\/\/twitpic.com\/1d91vv http:\/\/twitpic.com\/1d91ua",
2019
+ "created_at": "Sun Apr 04 21:00:03 +0000 2010",
2020
+ "link": "http:\/\/twitter.com\/louisgray\/statuses\/11605612859",
2021
+ "type": "twitter",
2022
+ "user": {
2023
+ "screen_name": "louisgray",
2024
+ "name": "Louis Gray",
2025
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/445785969\/cli-0183-1253277155001-prf_normal.jpg",
2026
+ "profile_url": "http:\/\/twitter.com\/louisgray"
2027
+ },
2028
+ "related": [],
2029
+ "comments": [{
2030
+ "id": "00000000000000000000011605685378",
2031
+ "text": "@louisgray Yes, definately :)",
2032
+ "created_at": "Sun Apr 04 21:01:46 +0000 2010",
2033
+ "link": "http:\/\/twitter.com\/rbonini\/statuses\/11605685378",
2034
+ "type": "twitter",
2035
+ "user": {
2036
+ "screen_name": "rbonini",
2037
+ "name": "Roberto Bonini",
2038
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/613637895\/462709237_XSKhv-S_normal.jpg",
2039
+ "profile_url": "http:\/\/twitter.com\/rbonini"
2040
+ }
2041
+ },
2042
+ {
2043
+ "id": "00000000000000000000011607101678",
2044
+ "text": "@louisgray you have a *serious* problem, #apple #fanboy",
2045
+ "created_at": "Sun Apr 04 21:40:19 +0000 2010",
2046
+ "link": "http:\/\/twitter.com\/jungleG\/statuses\/11607101678",
2047
+ "type": "twitter",
2048
+ "user": {
2049
+ "screen_name": "jungleG",
2050
+ "name": "Jorge Escobar",
2051
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/26148992\/jorge_y_normal.jpg",
2052
+ "profile_url": "http:\/\/twitter.com\/jungleG"
2053
+ }
2054
+ },
2055
+ {
2056
+ "id": "00000000000000000000011606631203",
2057
+ "text": "@louisgray no but you got 2 ipads I see!",
2058
+ "created_at": "Sun Apr 04 21:27:34 +0000 2010",
2059
+ "link": "http:\/\/twitter.com\/jaimesteele\/statuses\/11606631203",
2060
+ "type": "twitter",
2061
+ "user": {
2062
+ "screen_name": "jaimesteele",
2063
+ "name": "Jaime Steele",
2064
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/563008973\/jaime2_normal.gif",
2065
+ "profile_url": "http:\/\/twitter.com\/jaimesteele"
2066
+ }
2067
+ },
2068
+ {
2069
+ "id": "00000000000000000000011605864208",
2070
+ "text": "@louisgray You might have a small Apple fanboy problem!",
2071
+ "created_at": "Sun Apr 04 21:06:29 +0000 2010",
2072
+ "link": "http:\/\/twitter.com\/jfavreau\/statuses\/11605864208",
2073
+ "type": "twitter",
2074
+ "user": {
2075
+ "screen_name": "jfavreau",
2076
+ "name": "Jfavreau",
2077
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/745461308\/twitterProfilePhoto_normal.jpg",
2078
+ "profile_url": "http:\/\/twitter.com\/jfavreau"
2079
+ }
2080
+ },
2081
+ {
2082
+ "id": "00000000000000000000011605874211",
2083
+ "text": "@louisgray I think they'll soon have a 12-step program for you. LOL And I thought I was bad for having 4 apple devices online in my office",
2084
+ "created_at": "Sun Apr 04 21:06:46 +0000 2010",
2085
+ "link": "http:\/\/twitter.com\/jimgoldstein\/statuses\/11605874211",
2086
+ "type": "twitter",
2087
+ "user": {
2088
+ "screen_name": "jimgoldstein",
2089
+ "name": "Jim Goldstein",
2090
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/304968836\/delicate_arch_jmg_normal.jpg",
2091
+ "profile_url": "http:\/\/twitter.com\/jimgoldstein"
2092
+ }
2093
+ },
2094
+ {
2095
+ "id": "00000000000000000000011605952362",
2096
+ "text": "@louisgray No Apple fanboy problem as far as I can see,but that is me.",
2097
+ "created_at": "Sun Apr 04 21:08:52 +0000 2010",
2098
+ "link": "http:\/\/twitter.com\/sandbagger13\/statuses\/11605952362",
2099
+ "type": "twitter",
2100
+ "user": {
2101
+ "screen_name": "sandbagger13",
2102
+ "name": "Bill Paterson",
2103
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/63793682\/Photo_3_normal.jpg",
2104
+ "profile_url": "http:\/\/twitter.com\/sandbagger13"
2105
+ }
2106
+ },
2107
+ {
2108
+ "id": "00000000000000000000011605958824",
2109
+ "text": "@louisgray we're not worthy! :)",
2110
+ "created_at": "Sun Apr 04 21:09:03 +0000 2010",
2111
+ "link": "http:\/\/twitter.com\/craigt44\/statuses\/11605958824",
2112
+ "type": "twitter",
2113
+ "user": {
2114
+ "screen_name": "craigt44",
2115
+ "name": "Craig Thornton",
2116
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/589415752\/DSCF0007_normal.JPG",
2117
+ "profile_url": "http:\/\/twitter.com\/craigt44"
2118
+ }
2119
+ },
2120
+ {
2121
+ "id": "00000000000000000000011606597766",
2122
+ "text": "@louisgray maybe",
2123
+ "created_at": "Sun Apr 04 21:26:38 +0000 2010",
2124
+ "link": "http:\/\/twitter.com\/nchenga\/statuses\/11606597766",
2125
+ "type": "twitter",
2126
+ "user": {
2127
+ "screen_name": "nchenga",
2128
+ "name": "nchenga nchenga",
2129
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/56938674\/detail_normal.jpg",
2130
+ "profile_url": "http:\/\/twitter.com\/nchenga"
2131
+ }
2132
+ },
2133
+ {
2134
+ "id": "00000000000000000000011607039180",
2135
+ "text": "@louisgray flip,that's almost as many as we have....!",
2136
+ "created_at": "Sun Apr 04 21:38:38 +0000 2010",
2137
+ "link": "http:\/\/twitter.com\/robelkin\/statuses\/11607039180",
2138
+ "type": "twitter",
2139
+ "user": {
2140
+ "screen_name": "robelkin",
2141
+ "name": "Rob Elkin",
2142
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/422014409\/simpsonsheadshot_normal.jpg",
2143
+ "profile_url": "http:\/\/twitter.com\/robelkin"
2144
+ }
2145
+ },
2146
+ {
2147
+ "id": "00000000000000000000011607921074",
2148
+ "text": "@louisgray that's more like Apple pr0n.",
2149
+ "created_at": "Sun Apr 04 22:02:08 +0000 2010",
2150
+ "link": "http:\/\/twitter.com\/FoneFrenzy\/statuses\/11607921074",
2151
+ "type": "twitter",
2152
+ "user": {
2153
+ "screen_name": "FoneFrenzy",
2154
+ "name": "FoneFrenzy",
2155
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/594079976\/Fone_Frenzy_Logo-small_bigger_normal.jpg",
2156
+ "profile_url": "http:\/\/twitter.com\/FoneFrenzy"
2157
+ }
2158
+ },
2159
+ {
2160
+ "id": "00000000000000000000011616846886",
2161
+ "text": "@louisgray you definitely do... heehee :D",
2162
+ "created_at": "Mon Apr 05 01:27:08 +0000 2010",
2163
+ "link": "http:\/\/twitter.com\/n1ckt4ng\/statuses\/11616846886",
2164
+ "type": "twitter",
2165
+ "user": {
2166
+ "screen_name": "n1ckt4ng",
2167
+ "name": " Nicholas Tang",
2168
+ "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/783493693\/27214_378450343136_696963136_3809787_7694817_n_normal.jpg",
2169
+ "profile_url": "http:\/\/twitter.com\/n1ckt4ng"
2170
+ }
2171
+ }]
2172
+ },
2173
+ {
2174
+ "id": "00000000000000000000011603607119",
2175
+ "text": "2x iPhone apps on iPad must be some kind of late April Fools joke",
2176
+ "created_at": "Sun Apr 04 20:06:01 +0000 2010",
2177
+ "link": "http:\/\/twitter.com\/defunkt\/statuses\/11603607119",
2178
+ "type": "twitter",
2179
+ "user": {
2180
+ "screen_name": "defunkt",
2181
+ "name": "Chris Wanstrath",
2182
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/500320366\/Desktop_2_normal.gif",
2183
+ "profile_url": "http:\/\/twitter.com\/defunkt"
2184
+ },
2185
+ "related": [],
2186
+ "comments": [{
2187
+ "id": "00000000000000000000011604285417",
2188
+ "text": "@defunkt agreed, I wish there was an easy way to hide all iPhone-only apps, they look and feel terrible",
2189
+ "created_at": "Sun Apr 04 20:24:20 +0000 2010",
2190
+ "link": "http:\/\/twitter.com\/jqr\/statuses\/11604285417",
2191
+ "type": "twitter",
2192
+ "user": {
2193
+ "screen_name": "jqr",
2194
+ "name": "Elijah Miller",
2195
+ "profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/52648536\/Picture_3_normal.png",
2196
+ "profile_url": "http:\/\/twitter.com\/jqr"
2197
+ }
2198
+ }]
2199
+ }]