twitterland 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -11,6 +11,8 @@ Including:
11
11
  * Twitter Counter
12
12
  * TweetBlocker
13
13
  * Thumbfight
14
+ * TweetMeme
15
+ * FollerMe
14
16
 
15
17
  ### Install
16
18
  sudo gem install twitterland
@@ -166,6 +168,19 @@ Get your api_key at [http://www.backtype.com/developers](http://www.backtype.com
166
168
  Twitterland::Thumbfight.fight('apple', 'microsoft')
167
169
  => <Mash challenger1=<Mash score="3 thumbs up" title="apple"> challenger2=<Mash score="2 thumbs up" title="microsoft">>
168
170
 
171
+ ### TweetMeme
172
+
173
+ #### Usage
174
+
175
+ # Get comments for a given url
176
+ details = Twitterland::TweetMeme.url_info('http://tweetcongress.org')
177
+
178
+ # Get recent comments
179
+ comments = Twitterland::TweetMeme::Comments.firehose
180
+
181
+ # Get popular stories
182
+ popular = Twitterland::TweetMeme::Stories.popular
183
+
169
184
  ### Source
170
185
  [http://github.com/squeejee/twitterland/](http://github.com/squeejee/twitterland/)
171
186
 
data/VERSION.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  ---
2
- :patch: 0
3
2
  :major: 0
4
- :minor: 3
3
+ :minor: 4
4
+ :build:
5
+ :patch: 0
data/lib/twitterland.rb CHANGED
@@ -25,11 +25,25 @@ module Twitterland
25
25
  class InformTwitter < StandardError; end
26
26
  class NotFound < StandardError; end
27
27
 
28
+ module TweetMeme
29
+ include HTTParty
30
+ base_uri 'api.tweetmeme.com'
31
+ format :json
32
+
33
+ # Takes any URL posted to Twitter and resolves it to its original URL as well as details about that webpage, such as the title.
34
+ #
35
+ # Twitterland::TweetMeme.url_info('http://squeejee.com')
36
+ def self.url_info(url)
37
+ Mash.new get("/url_info.json", :query => {:url => url})
38
+ end
39
+
40
+ end
41
+
28
42
  end
29
43
 
30
44
  directory = File.expand_path(File.dirname(__FILE__))
31
45
 
32
-
46
+ require File.join(directory, 'twitterland', 'foller_me')
33
47
  require File.join(directory, 'twitterland', 'follow_cost')
34
48
  require File.join(directory, 'twitterland', 'twitter_counter')
35
49
  require File.join(directory, 'twitterland', 'twinfluence')
@@ -37,4 +51,7 @@ require File.join(directory, 'twitterland', 'mrtweet')
37
51
  require File.join(directory, 'twitterland', 'twitter_grader')
38
52
  require File.join(directory, 'twitterland', 'tweet_blocker')
39
53
  require File.join(directory, 'twitterland', 'back_tweets')
40
- require File.join(directory, 'twitterland', 'thumbfight')
54
+ require File.join(directory, 'twitterland', 'thumbfight')
55
+ require File.join(directory, 'twitterland', 'tweet_meme', 'stories')
56
+ require File.join(directory, 'twitterland', 'tweet_meme', 'comments')
57
+ require File.join(directory, 'twitterland', 'tweet_meme', 'analytics')
@@ -0,0 +1,74 @@
1
+ module Twitterland
2
+ class FollerMe
3
+ include HTTParty
4
+ base_uri 'api.foller.me'
5
+ format :json
6
+
7
+
8
+ # Get hashtags for a specific user
9
+ #
10
+ # Twitterland::FollerMe.hashtags('pengwynn', options)
11
+ # options:
12
+ # exclude => 'rails,ruby'
13
+ # render => true|false
14
+ # font_min => 12
15
+ # font_max => 20
16
+ def self.hashtags(username, options={})
17
+ terms(username, {:terms => 'hashtags'}.merge(options))
18
+ end
19
+
20
+ # Get topics for a specific user
21
+ #
22
+ # Twitterland::FollerMe.topics('pengwynn', options)
23
+ # options:
24
+ # exclude => 'rails,ruby'
25
+ # render => true|false
26
+ # font_min => 12
27
+ # font_max => 20
28
+ def self.topics(username, options={})
29
+ terms(username, {:terms => 'topics'}.merge(options))
30
+ end
31
+
32
+ # Get mentions for a specific user
33
+ #
34
+ # Twitterland::FollerMe.mentions('pengwynn', options)
35
+ # options:
36
+ # exclude => 'mully,jdirt'
37
+ # render => true|false
38
+ # font_min => 12
39
+ # font_max => 20
40
+ def self.mentions(username, options={})
41
+ terms(username, {:terms => 'mentions'}.merge(options))
42
+ end
43
+
44
+ # Get terms for a specific user
45
+ #
46
+ # Twitterland::FollerMe.terms('pengwynn', options)
47
+ # options:
48
+ # terms => 'all|hashtags|topics|mentions}
49
+ # exclude => 'rails,ruby'
50
+ # render => true|false
51
+ # font_min => 12
52
+ # font_max => 20
53
+ def self.terms(username, options={})
54
+ options = options.to_hash.to_mash
55
+ terms = options.delete('terms')
56
+ terms ||= 'all'
57
+ result = Mash.new get("/#{username}/#{terms}.json", :query => options)
58
+ case terms
59
+ when 'all'
60
+ result.topics ||= result.delete('terms_topics')
61
+ result.mentions ||= result.delete('terms_mentions')
62
+ result.hashtags ||= result.delete('terms_hashtags')
63
+ when 'hashtags'
64
+ result.hashtags ||= result.delete('terms')
65
+ when 'topics'
66
+ result.topics ||= result.delete('terms')
67
+ when 'mentions'
68
+ result.mentions ||= result.delete('terms')
69
+ end
70
+ result
71
+ end
72
+
73
+ end
74
+ end
@@ -0,0 +1,37 @@
1
+ module Twitterland
2
+ module TweetMeme
3
+ class Analytics
4
+ include HTTParty
5
+ base_uri 'api.tweetmeme.com/analytics'
6
+ format :json
7
+
8
+ # API Docs: http://help.tweetmeme.com/2009/10/12/analytics-api/
9
+
10
+ # Sends a request to the Analytics system top build a report for the specified URL. Accessible to anyone with an App ID and App Key.
11
+ #
12
+ # Twitterland::TweetMeme::Analytics.build(1234, 'OU812', 'http://tweetcongress.org')
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
15
+ end
16
+
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.
18
+ #
19
+ # Twitterland::TweetMeme::Analytics.built(1234, 'OU812', 'http://tweetcongress.org')
20
+ def self.built(app_id, api_key, url=nil)
21
+ options = {:appid => app_id, :apikey => api_key}
22
+ options.merge({:url => url}) unless url.blank?
23
+ Mash.new get("/built.json", :query => options)
24
+ end
25
+
26
+ # Returns the HTML to display the built Analytics to the user.
27
+ # Access to this API call is only available to those with elevated permissions to do so.
28
+ # In order to get permission, please contact analytics@tweetmeme.com.
29
+ #
30
+ # Twitterland::TweetMeme::Analytics.get(1234, 'OU812', '37758bd44025edb222022dcd1491c29g')
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})
33
+ end
34
+
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,24 @@
1
+ module Twitterland
2
+ module TweetMeme
3
+ class Comments
4
+ include HTTParty
5
+ base_uri 'api.tweetmeme.com/comments'
6
+ format :json
7
+
8
+ # Returns the most recent comments posted on TweetMeme, along with information on which URL they were posted on.
9
+ #
10
+ # Twitterland::TweetMeme::Comments.firehose
11
+ def self.firehose(options={})
12
+ Mash.new get("/firehose.json")
13
+ end
14
+
15
+ # Returns comments posted on a particular URL
16
+ #
17
+ # Twitterland::TweetMeme.get_url('http://squeejee.com')
18
+ def self.get_url(url)
19
+ Mash.new get("/get_url.json", :query => {:url => url})
20
+ end
21
+
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,54 @@
1
+ module Twitterland
2
+ module TweetMeme
3
+ class Stories
4
+ include HTTParty
5
+ base_uri 'api.tweetmeme.com/stories'
6
+ format :json
7
+
8
+ # Returns the most popular stories in the last 24 hours.
9
+ # parameters:
10
+ # (optional) count: int how many results to return per page, in the range 1-100, default 10
11
+ # (optional) category: string an optional category to filter results by, default none
12
+ # (optional) media: string a filter of media type (news/video/image) with default of all
13
+ # (optional) page: int the page of results you would like, in the range 1-100 with default 1
14
+ #
15
+ # Twitterland::TweetMeme::Stories.popular(options)
16
+ def self.popular(options={})
17
+ Mash.new get("/popular.json", :query => options)
18
+ end
19
+
20
+ # Returns the most recent stories found by TweetMeme.
21
+ # parameters:
22
+ # (optional) count: int how many results to return per page, in the range 1-100, default 10
23
+ # (optional) category: string an optional category to filter results by, default none
24
+ # (optional) media: string a filter of media type (news/video/image) with default of all
25
+ # (optional) page: int the page of results you would like, in the range 1-100 with default 1
26
+ #
27
+ # Twitterland::TweetMeme::Stories.recent(options)
28
+ def self.recent(options={})
29
+ Mash.new get("/recent.json", :query => options)
30
+ end
31
+
32
+ # Returns a list of categories down to the specified depth, optionally filtered by a parent category.
33
+ # parameters:
34
+ # (optional) filter: string a string to filter the categories by (default is empty string)
35
+ # (optional) depth: int the depth of categories to return (range 1-10, default 1)
36
+ #
37
+ # Twitterland::TweetMeme::Stories.categories(options)
38
+ def self.categories(options={})
39
+ Mash.new get("/categories.json", :query => options)
40
+ end
41
+
42
+ # Returns 10 tweets for the specified URL.
43
+ # parameters:
44
+ # url: string the URL of the page you want tweets for
45
+ # from_id: int the last Tweet ID you have (it will return tweets after but not including this Tweet ID)
46
+ #
47
+ # Twitterland::TweetMeme::Stories.tweets(url, from_id)
48
+ def self.tweets(url, from_id=0)
49
+ Mash.new get("/tweets.json", :query => {:url => url, :from_id => from_id})
50
+ end
51
+
52
+ end
53
+ end
54
+ end
@@ -0,0 +1 @@
1
+ {"status":"ok","description":"Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org.","user_url":"http:\/\/wynnnetherland.com","followers_count":2193,"following_count":1608,"updates_count":1948,"url":"http:\/\/foller.me\/pengwynn","terms_topics":{"eventbug":{"popularity":1},"event":{"popularity":1},"panel":{"popularity":1},"firebug":{"popularity":2},"firefox":{"popularity":2},"developer":{"popularity":4},"plugin":{"popularity":2},"ow":{"popularity":10},"15yxp4":{"popularity":1},"heart":{"popularity":1},"surgery":{"popularity":1},"metaphysics":{"popularity":1},"death":{"popularity":1},"easier":{"popularity":2},"understand":{"popularity":1},"google":{"popularity":1},"wave":{"popularity":1},"retwt":{"popularity":1},"kxnp":{"popularity":1},"rt":{"popularity":4},"avoid":{"popularity":1},"submit":{"popularity":1},"button":{"popularity":2},"url":{"popularity":1},"parameters":{"popularity":1},"4rwair":{"popularity":1},"help":{"popularity":1},"lobby":{"popularity":1},"change":{"popularity":3},"creative":{"popularity":1},"twitter":{"popularity":12},"backgrounds":{"popularity":1},"2ggvkw":{"popularity":1},"explain":{"popularity":1},"puzzled":{"popularity":1},"look":{"popularity":1},"lemme":{"popularity":1},"yes":{"popularity":9},"disqus":{"popularity":1},"runs":{"popularity":1},"developers":{"popularity":1},"yckm":{"popularity":1},"blog":{"popularity":4},"wish":{"popularity":2},"list":{"popularity":1},"alignment":{"popularity":1},"bt":{"popularity":3},"io":{"popularity":3},"wwq":{"popularity":1},"beautiful":{"popularity":2},"scripture":{"popularity":1},"wallpapers":{"popularity":1},"theresurgence":{"popularity":1},"15yv7g":{"popularity":1},"migrating":{"popularity":1},"gems":{"popularity":3},"gemcutter":{"popularity":4},"process":{"popularity":1},"expected":{"popularity":1},"long":{"popularity":3},"walks":{"popularity":1},"power":{"popularity":1},"screens":{"popularity":1},"iphone":{"popularity":11},"icons":{"popularity":4},"search":{"popularity":3},"screen":{"popularity":1},"useful":{"popularity":2},"pagination":{"popularity":1},"rails":{"popularity":4},"15ykjs":{"popularity":1},"wordpress":{"popularity":6},"visual":{"popularity":1},"cheat":{"popularity":2},"sheet":{"popularity":2},"15ykhv":{"popularity":1},"examples":{"popularity":2},"add":{"popularity":3},"cart":{"popularity":1},"buttons":{"popularity":1},"design":{"popularity":3},"inspiration":{"popularity":1},"15yice":{"popularity":1},"mongodb":{"popularity":5},"application":{"popularity":1},"perspective":{"popularity":2},"2th0ji":{"popularity":1},"via":{"popularity":28},"gem":{"popularity":3},"lists":{"popularity":1},"usl":{"popularity":1},"love":{"popularity":4},"treefrog":{"popularity":1},"macrophotography":{"popularity":1},"zbew7":{"popularity":1},"firequery":{"popularity":1},"enhancements":{"popularity":1},"jquery":{"popularity":1},"15yyrz":{"popularity":1},"mirror":{"popularity":1},"pissed":{"popularity":1},"unicorn":{"popularity":1},"build":{"popularity":1},"theme":{"popularity":2},"thematic":{"popularity":4},"rvf":{"popularity":1},"successful":{"popularity":1},"distributed":{"popularity":1},"team":{"popularity":2},"vtyec":{"popularity":1},"ratio":{"popularity":1},"common":{"popularity":2},"meetups":{"popularity":1},"hope":{"popularity":1},"reach":{"popularity":1},"posted":{"popularity":1},"slides":{"popularity":1},"talk":{"popularity":4},"night":{"popularity":2},"4mqi5y":{"popularity":1},"improve":{"popularity":3},"photography":{"popularity":4},"15xiky":{"popularity":1},"themes":{"popularity":3},"frameworks":{"popularity":2},"wynn":{"popularity":1},"netherland":{"popularity":3},"15xhgf":{"popularity":1},"heading":{"popularity":2},"austin":{"popularity":1},"having":{"popularity":2},"fun":{"popularity":4},"playing":{"popularity":2},"fm":{"popularity":2},"api":{"popularity":1},"favorite":{"popularity":7},"tracks":{"popularity":1},"footer":{"popularity":1},"wynnnetherland":{"popularity":1},"time":{"popularity":3},"face":{"popularity":1},"easy":{"popularity":2},"i2kik":{"popularity":1},"buddy":{"popularity":1},"created":{"popularity":2},"listing":{"popularity":1},"haystack":{"popularity":1},"site":{"popularity":4},"launches":{"popularity":1},"designers":{"popularity":1},"sign":{"popularity":1},"nook":{"popularity":1},"wait":{"popularity":2},"cranny":{"popularity":1},"2rhjdo":{"popularity":1},"offense":{"popularity":1},"watch":{"popularity":1},"fresh":{"popularity":1},"prince":{"popularity":1},"hot":{"popularity":2},"air":{"popularity":1},"imgur":{"popularity":1},"8swi9":{"popularity":1},"png":{"popularity":1},"tee":{"popularity":1},"4b8jmc":{"popularity":1},"congrats":{"popularity":2},"addition":{"popularity":1},"balloon":{"popularity":1},"boy":{"popularity":1},"busts":{"popularity":1},"parents":{"popularity":1},"23w0ub":{"popularity":1},"real":{"popularity":1},"life":{"popularity":1},"flight":{"popularity":1},"navigator":{"popularity":1},"10npgj":{"popularity":1},"loving":{"popularity":3},"redesign":{"popularity":1},"brandstack":{"popularity":1},"careful":{"popularity":1},"swine":{"popularity":1},"flu":{"popularity":1},"twitpic":{"popularity":1},"ldrqf":{"popularity":1},"work":{"popularity":1},"lcdtvdealguide":{"popularity":1},"use":{"popularity":3},"zippy":{"popularity":1},"mistakes":{"popularity":1},"commerce":{"popularity":2},"15uphw":{"popularity":1},"outstanding":{"popularity":1},"free":{"popularity":4},"vintage":{"popularity":1},"fonts":{"popularity":2},"1vgjag":{"popularity":1},"nfl":{"popularity":1},"teams":{"popularity":1},"update":{"popularity":2},"logos":{"popularity":1},"based":{"popularity":2},"performance":{"popularity":1},"4pjyvt":{"popularity":1},"lt":{"popularity":3},"car":{"popularity":1},"dal":{"popularity":1},"faves":{"popularity":1},"modernizr":{"popularity":2},"detects":{"popularity":1},"browser":{"popularity":1},"support":{"popularity":3},"advanced":{"popularity":1},"html5":{"popularity":1},"css":{"popularity":6},"features":{"popularity":2},"plugins":{"popularity":1},"extreme":{"popularity":1},"functionality":{"popularity":1},"ffgcd":{"popularity":1},"toolbar":{"popularity":1},"app":{"popularity":12},"bits":{"popularity":3},"mongomapper":{"popularity":4},"vvsu6":{"popularity":1},"reading":{"popularity":1},"children":{"popularity":1},"igscc":{"popularity":1},"tacky":{"popularity":1},"techie":{"popularity":1},"conundrum":{"popularity":1},"31cdjs":{"popularity":1},"child":{"popularity":1},"fiddle":{"popularity":1},"busrj":{"popularity":1},"improved":{"popularity":1},"ruby":{"popularity":6},"hosting":{"popularity":1},"true":{"popularity":2},"especially":{"popularity":1},"lunch":{"popularity":1},"smells":{"popularity":1},"things":{"popularity":2},"miss":{"popularity":1},"9to5":{"popularity":1},"zhvz":{"popularity":1},"neat":{"popularity":2},"3d":{"popularity":1},"color":{"popularity":2},"picker":{"popularity":1},"colorotate":{"popularity":1},"scenario":{"popularity":1},"tool":{"popularity":1},"fit":{"popularity":1},"cases":{"popularity":1},"parody":{"popularity":1},"trailer":{"popularity":2},"better":{"popularity":2},"cyop1":{"popularity":1},"dumbest":{"popularity":1},"hvnrs":{"popularity":1},"geek":{"popularity":1},"knows":{"popularity":1},"doomsday":{"popularity":1},"isn":{"popularity":3},"happened":{"popularity":1},"dirty":{"popularity":1},"laundry":{"popularity":1},"airing":{"popularity":1},"near":{"popularity":1},"page":{"popularity":2},"puts":{"popularity":1},"fundable":{"popularity":1},"hung":{"popularity":1},"wife":{"popularity":4},"yukon":{"popularity":1},"garage":{"popularity":1},"door":{"popularity":1},"evidently":{"popularity":1},"unfold":{"popularity":1},"nicely":{"popularity":1},"folds":{"popularity":1},"snagged":{"popularity":1},"catechizeme":{"popularity":2},"itunes":{"popularity":3},"store":{"popularity":3},"yep":{"popularity":1},"typetester":{"popularity":1},"tools":{"popularity":1},"type":{"popularity":1},"set":{"popularity":2},"preview":{"popularity":1},"grab":{"popularity":1},"csstypeset":{"popularity":1},"dashed":{"popularity":1},"fiveruns":{"popularity":1},"accommodate":{"popularity":1},"drawl":{"popularity":1},"paddin":{"popularity":1},"0px":{"popularity":1},"years":{"popularity":1},"later":{"popularity":1},"hidden":{"popularity":1},"caps":{"popularity":1},"lock":{"popularity":1},"feature":{"popularity":1},"anp4a":{"popularity":1},"bring":{"popularity":1},"checkbook":{"popularity":1},"want":{"popularity":2},"mention":{"popularity":1},"barcampdc3":{"popularity":1},"38qism":{"popularity":1},"food":{"popularity":1},"promotions":{"popularity":1},"gone":{"popularity":1},"wrong":{"popularity":1},"cuyuy":{"popularity":1},"memories":{"popularity":1},"release":{"popularity":1},"dates":{"popularity":1},"believe":{"popularity":1},"joined":{"popularity":1},"party":{"popularity":1},"e7rpo":{"popularity":1},"pondering":{"popularity":3},"impact":{"popularity":1},"match":{"popularity":1},"technology":{"popularity":1},"native":{"popularity":2},"arkansas":{"popularity":1},"meet":{"popularity":1},"cousin":{"popularity":1},"cjhki":{"popularity":1},"hooked":{"popularity":2},"logging":{"popularity":1},"2wwhp6":{"popularity":1},"happen":{"popularity":1},"baltimore":{"popularity":2},"convention":{"popularity":1},"center":{"popularity":1},"md":{"popularity":1},"railsconf":{"popularity":2},"ad":{"popularity":1},"pull":{"popularity":1},"pdxv6":{"popularity":1},"sues":{"popularity":1},"bofa":{"popularity":1},"billion":{"popularity":1},"trillion":{"popularity":1},"dollars":{"popularity":1},"46y1b":{"popularity":1},"flea":{"popularity":1},"market":{"popularity":1},"photographs":{"popularity":2},"cloudy":{"popularity":1},"4usrj7":{"popularity":1},"structure":{"popularity":1},"diagram":{"popularity":1},"building":{"popularity":1},"3ntahu":{"popularity":1},"fan":{"popularity":2},"facebook":{"popularity":7},"treefrogstudios":{"popularity":1},"skinning":{"popularity":1},"themeshaper":{"popularity":1},"launched":{"popularity":2},"paula":{"popularity":2},"treefrogkids":{"popularity":1},"working":{"popularity":3},"denton":{"popularity":1},"using":{"popularity":3},"18hmyr":{"popularity":1},"spree":{"popularity":1},"released":{"popularity":1},"open":{"popularity":3},"source":{"popularity":3},"4l0lm6":{"popularity":1},"sounds":{"popularity":1},"chat":{"popularity":1},"gmail":{"popularity":1},"push":{"popularity":2},"rqakr":{"popularity":1},"geeks":{"popularity":1},"pregnant":{"popularity":1},"twins":{"popularity":1},"3ereby":{"popularity":1},"extra":{"popularity":1},"days":{"popularity":1},"person":{"popularity":1},"signs":{"popularity":2},"tweetsaver":{"popularity":4},"stunning":{"popularity":1},"infrared":{"popularity":1},"pctav":{"popularity":1},"interested":{"popularity":1},"live":{"popularity":1},"tweeting":{"popularity":1},"jury":{"popularity":1},"duty":{"popularity":1},"remember":{"popularity":1},"texans":{"popularity":1},"winning":{"popularity":2},"game":{"popularity":1},"stadium":{"popularity":1},"rmagick":{"popularity":1},"snow":{"popularity":2},"leopard":{"popularity":2},"2ib2zu":{"popularity":1},"study":{"popularity":2},"classics":{"popularity":1},"youth":{"popularity":1},"deprived":{"popularity":1},"uvo9k":{"popularity":1},"feeling":{"popularity":1},"playoff":{"popularity":1},"matchup":{"popularity":1},"vick":{"popularity":1},"rusty":{"popularity":1},"mcnabb":{"popularity":1},"ultimate":{"popularity":1},"guide":{"popularity":1},"embedding":{"popularity":1},"sound":{"popularity":1},"web":{"popularity":2},"pages":{"popularity":2},"ljind":{"popularity":1},"ok":{"popularity":2},"let":{"popularity":5},"saints":{"popularity":2},"philly":{"popularity":1},"ui":{"popularity":1},"programmer":{"popularity":1},"3uityw":{"popularity":1},"idea":{"popularity":3},"movie":{"popularity":1},"star":{"popularity":1},"m993b":{"popularity":1},"stuff":{"popularity":2},"versions":{"popularity":1},"mongo":{"popularity":2},"server":{"popularity":1},"college":{"popularity":1},"kicker":{"popularity":1},"wearing":{"popularity":1},"requires":{"popularity":1},"somebody":{"popularity":1},"production":{"popularity":1},"afaik":{"popularity":1},"driver":{"popularity":1},"orm":{"popularity":1},"share":{"popularity":1},"test":{"popularity":1},"came":{"popularity":1},"haml":{"popularity":1},"stayed":{"popularity":1},"sass":{"popularity":2},"lang":{"popularity":1},"choppa":{"popularity":1},"suspended":{"popularity":1},"shoulda":{"popularity":2},"20k":{"popularity":1},"tweets":{"popularity":4},"glad":{"popularity":2},"little":{"popularity":5},"project":{"popularity":1},"provide":{"popularity":1},"outlet":{"popularity":1},"angst":{"popularity":1},"popular":{"popularity":1},"hashtag":{"popularity":1},"2mxcgh":{"popularity":1},"trial":{"popularity":1},"16oofi":{"popularity":1},"rediscovered":{"popularity":1},"tweet":{"popularity":2},"rieo7":{"popularity":1},"default":{"popularity":1},"avatar":{"popularity":2},"longer":{"popularity":1},"smacked":{"popularity":1},"ugly":{"popularity":1},"stick":{"popularity":1},"khsjd":{"popularity":1},"database":{"popularity":1},"corrupted":{"popularity":2},"dunno":{"popularity":1},"gov":{"popularity":1},"works":{"popularity":1},"somewhat":{"popularity":1},"s3dqa":{"popularity":1},"congress":{"popularity":1},"10unum":{"popularity":1},"photographer":{"popularity":1},"paulanetherland":{"popularity":1},"rebranding":{"popularity":1},"coming":{"popularity":2},"soon":{"popularity":1},"ordering":{"popularity":1},"business":{"popularity":1},"cards":{"popularity":1},"designed":{"popularity":1},"glyphish":{"popularity":2},"applications":{"popularity":1},"nooooo":{"popularity":1},"mint":{"popularity":1},"sells":{"popularity":1},"intuit":{"popularity":1},"million":{"popularity":1},"3zfjoo":{"popularity":1},"kanye":{"popularity":1},"finish":{"popularity":1},"pres":{"popularity":1},"2ct5m7":{"popularity":1},"refer":{"popularity":1},"spoilers":{"popularity":1},"12pm":{"popularity":1},"opening":{"popularity":1},"usually":{"popularity":1},"peak":{"popularity":1},"orleans":{"popularity":1},"season":{"popularity":1},"yup":{"popularity":2},"yelp":{"popularity":2},"monacle":{"popularity":1},"3gs":{"popularity":1},"amazing":{"popularity":1},"heads":{"popularity":1},"display":{"popularity":1},"nearby":{"popularity":1},"places":{"popularity":1},"yfrog":{"popularity":2},"0huy5tj":{"popularity":1},"introduces":{"popularity":1},"status":{"popularity":1},"updates":{"popularity":1},"4a4kv8":{"popularity":1},"installing":{"popularity":3},"finally":{"popularity":2},"music":{"popularity":1},"sync":{"popularity":1},"organize":{"popularity":1},"4bpub4":{"popularity":1},"port":{"popularity":1},"couchdb":{"popularity":1},"futon":{"popularity":1},"utility":{"popularity":1},"nbgfn":{"popularity":1},"appears":{"popularity":1},"hitting":{"popularity":1},"spike":{"popularity":1},"newsweek":{"popularity":2},"article":{"popularity":2},"tweetcongress":{"popularity":1},"giving":{"popularity":1},"cap":{"popularity":1},"covered":{"popularity":1},"nh49u":{"popularity":1},"esv":{"popularity":1},"service":{"popularity":1},"j6fqy":{"popularity":1},"admit":{"popularity":1},"saw":{"popularity":1},"bob":{"popularity":1},"barker":{"popularity":1},"trending":{"popularity":1},"thought":{"popularity":1},"dead":{"popularity":1},"huh":{"popularity":1},"flixster":{"popularity":1},"darn":{"popularity":1},"upcoming":{"popularity":2},"movies":{"popularity":1},"dvds":{"popularity":1},"reviews":{"popularity":1},"2yjl1e":{"popularity":1},"shameless":{"popularity":1},"plug":{"popularity":1},"super":{"popularity":1},"talented":{"popularity":1},"15bd4g":{"popularity":1},"thinking":{"popularity":1},"driving":{"popularity":1},"okc":{"popularity":1},"rb":{"popularity":2},"meeting":{"popularity":1},"north":{"popularity":1},"texas":{"popularity":1},"rubyists":{"popularity":1},"tag":{"popularity":2},"ready":{"popularity":2},"fight":{"popularity":1},"twitterland":{"popularity":1},"includes":{"popularity":1},"thumbfight":{"popularity":1},"5jz1i":{"popularity":1},"problems":{"popularity":1},"dying":{"popularity":1},"purty":{"popularity":1},"scared":{"popularity":1},"upgrade":{"popularity":1},"installation":{"popularity":1},"lzdwi":{"popularity":1},"mended":{"popularity":1},"shorts":{"popularity":1},"afraid":{"popularity":1},"lost":{"popularity":1},"friends":{"popularity":2},"powers":{"popularity":1},"apps":{"popularity":1},"stats":{"popularity":2},"bug":{"popularity":1},"account":{"popularity":1},"inactive":{"popularity":1},"accounts":{"popularity":1},"simple":{"popularity":1},"tricks":{"popularity":1},"greatly":{"popularity":1},"typography":{"popularity":1},"c5ht0":{"popularity":1},"hold":{"popularity":1},"officials":{"popularity":1},"higher":{"popularity":1},"standards":{"popularity":1},"stop":{"popularity":1},"defending":{"popularity":1},"idiotic":{"popularity":1},"behavior":{"popularity":1},"agree":{"popularity":1},"issues":{"popularity":1},"melrose":{"popularity":1},"place":{"popularity":1},"tv":{"popularity":1},"itpcw":{"popularity":1},"van":{"popularity":1},"jones":{"popularity":1},"job":{"popularity":1},"h2hlg":{"popularity":1},"auto":{"popularity":1},"tagging":{"popularity":2},"forget":{"popularity":1},"workshop":{"popularity":1},"gcjad":{"popularity":1},"maybe":{"popularity":1},"dad":{"popularity":1},"250k":{"popularity":1},"followers":{"popularity":1},"quips":{"popularity":1},"2kqhpf":{"popularity":1},"special":{"popularity":1},"password":{"popularity":1},"characters":{"popularity":1},"pet":{"popularity":1},"peeve":{"popularity":1},"visualizations":{"popularity":1},"regular":{"popularity":1},"expressions":{"popularity":1},"joxi2":{"popularity":1},"fusioncharts":{"popularity":1},"flash":{"popularity":1},"charting":{"popularity":1},"package":{"popularity":1},"swvcq":{"popularity":1},"excited":{"popularity":1},"positive":{"popularity":1},"12jhmb":{"popularity":1},"mobile":{"popularity":3},"desktop":{"popularity":1},"beta":{"popularity":1},"chatted":{"popularity":1},"lsrc":{"popularity":2},"nk5ft":{"popularity":1},"jigawatts":{"popularity":1},"heard":{"popularity":1},"pronounced":{"popularity":1},"jit":{"popularity":1},"hub":{"popularity":1},"getting":{"popularity":2},"scoop":{"popularity":1},"waiting":{"popularity":1},"genius":{"popularity":1},"bar":{"popularity":1},"stonebriar":{"popularity":1},"apple":{"popularity":2},"dallas":{"popularity":1},"seen":{"popularity":1},"mission":{"popularity":1},"control":{"popularity":1},"nasa":{"popularity":1},"trouble":{"popularity":1},"loud":{"popularity":1},"pulling":{"popularity":1},"curtain":{"popularity":1},"backup":{"popularity":1},"clean":{"popularity":1},"magic":{"popularity":1},"eraser":{"popularity":1},"29obqv":{"popularity":1},"backing":{"popularity":1},"searching":{"popularity":1},"shouldn":{"popularity":1},"raise":{"popularity":1},"boom":{"popularity":1},"shacka":{"popularity":1},"lacka":{"popularity":1},"required":{"popularity":1},"sure":{"popularity":1},"gave":{"popularity":1},"imac":{"popularity":1},"laws":{"popularity":1},"theirs":{"popularity":1},"hurts":{"popularity":1},"5jpzzj":{"popularity":1},"paperclip":{"popularity":1},"1936yk":{"popularity":1},"replacement":{"popularity":1},"started":{"popularity":1},"mobileme":{"popularity":1},"registered":{"popularity":1},"device":{"popularity":1},"lesson":{"popularity":1},"learned":{"popularity":1},"rep":{"popularity":1},"stolen":{"popularity":1},"truck":{"popularity":1},"ride":{"popularity":1},"guess":{"popularity":1},"didn":{"popularity":1},"dc":{"popularity":1},"charger":{"popularity":1},"rock":{"popularity":1},"keynote":{"popularity":1},"recommend":{"popularity":2},"tagged":{"popularity":1},"missed":{"popularity":1},"shirt":{"popularity":1},"book":{"popularity":1},"present":{"popularity":1},"win":{"popularity":1},"daughter":{"popularity":1},"dm":{"popularity":1},"film":{"popularity":1},"following":{"popularity":2},"watching":{"popularity":1},"install":{"popularity":1},"showing":{"popularity":1},"touch":{"popularity":1},"couch":{"popularity":1},"comparison":{"popularity":1},"slide":{"popularity":1},"deck":{"popularity":1},"4pg00":{"popularity":1},"rubyist":{"popularity":1},"conference":{"popularity":2},"speakers":{"popularity":1},"entertaining":{"popularity":1},"funny":{"popularity":1},"smartest":{"popularity":1},"guy":{"popularity":1},"room":{"popularity":1},"funnier":{"popularity":1},"xlciw":{"popularity":1},"twibbon":{"popularity":1},"join":{"popularity":1},"chance":{"popularity":1},"breakfast":{"popularity":1},"led":{"popularity":1},"wrapper":{"popularity":1},"cleaning":{"popularity":1},"view":{"popularity":1},"code":{"popularity":1},"tutorial":{"popularity":1},"big":{"popularity":1},"completing":{"popularity":1},"simplyscreen":{"popularity":1},"goers":{"popularity":1},"iyg62":{"popularity":1},"wondering":{"popularity":1},"going":{"popularity":2},"compass":{"popularity":1},"min":{"popularity":1},"goodness":{"popularity":1},"click":{"popularity":1},"added":{"popularity":1},"yppii":{"popularity":1},"hxot6":{"popularity":1},"winding":{"popularity":1},"zu43x":{"popularity":1},"chances":{"popularity":1},"whipping":{"popularity":1},"brought":{"popularity":1},"monster":{"popularity":1},"energy":{"popularity":1},"drink":{"popularity":1},"succeed":{"popularity":1},"_why":{"popularity":1},"twtpoll":{"popularity":1},"aqy6hj":{"popularity":1},"apart":{"popularity":1},"joy":{"popularity":1},"integrate":{"popularity":1},"handle":{"popularity":1},"billing":{"popularity":1},"subscriptions":{"popularity":1},"simulated":{"popularity":1},"ring":{"popularity":1},"skype":{"popularity":1},"simulate":{"popularity":1},"number":{"popularity":1},"dialing":{"popularity":1},"beeps":{"popularity":1},"ghb6y":{"popularity":1},"spreading":{"popularity":1},"word":{"popularity":1},"wishing":{"popularity":1},"approve":{"popularity":1},"dusto":{"popularity":1}},"terms_hashtags":{"#mongodb":{"popularity":6},"#footer":{"popularity":1},"#saints":{"popularity":1},"#balloonboy":{"popularity":1},"#fff":{"popularity":1},"#typos":{"popularity":1},"#rails":{"popularity":1},"#railsconf":{"popularity":1},"#drevil":{"popularity":1},"#wemustprotectthishouse":{"popularity":1},"#57":{"popularity":1},"#tweetcongress":{"popularity":1},"#httparty":{"popularity":1},"#titanium":{"popularity":1},"#dallasrb":{"popularity":1},"#lsrc":{"popularity":7},"#floxee":{"popularity":1},"#css":{"popularity":1},"#sass":{"popularity":1},"#design":{"popularity":1},"#twibbon":{"popularity":1},"#railsrumble":{"popularity":5},"#8":{"popularity":1},"#twtpoll":{"popularity":1},"#smaz":{"popularity":1}},"terms_mentions":{"@squeejeeinc":{"popularity":2},"@kriscolvin":{"popularity":1},"@benhamill":{"popularity":1},"@elight":{"popularity":2},"@shanselman":{"popularity":1},"@damon":{"popularity":1},"@mully":{"popularity":6},"@treefrogstudios":{"popularity":5},"@amygdala":{"popularity":1},"@brianthecoder":{"popularity":1},"@austinonrails":{"popularity":2},"@mongodb":{"popularity":2},"@dslunceford":{"popularity":1},"@font":{"popularity":1},"@fontsquirrel":{"popularity":1},"@nessence":{"popularity":1},"@37signals":{"popularity":1},"@adamstac":{"popularity":3},"@mrspengwynn":{"popularity":8},"@vbehzadi":{"popularity":1},"@curvezilla":{"popularity":1},"@seanasullivan":{"popularity":1},"@gwenbell":{"popularity":1},"@jeffk":{"popularity":1},"@blue_bovine":{"popularity":1},"@leinweber":{"popularity":1},"@ericclemmons":{"popularity":1},"@ladyfox14":{"popularity":1},"@gdagley":{"popularity":2},"@joshuaclayton":{"popularity":2},"@geni":{"popularity":1},"@peburrows":{"popularity":1},"@railsconf":{"popularity":1},"@derrich":{"popularity":1},"@luigimontanez":{"popularity":1},"@bryanray":{"popularity":2},"@developdaly":{"popularity":1},"@bradleyjoyce":{"popularity":5},"@weyus":{"popularity":2},"@keith_lancaster":{"popularity":1},"@tweetsaver":{"popularity":9},"@hayesdavis":{"popularity":1},"@hulu":{"popularity":1},"@steveeichert":{"popularity":1},"@ghardin":{"popularity":1},"@kevinrose":{"popularity":1},"@jimeh":{"popularity":2},"@kblake":{"popularity":1},"@grantmichaels":{"popularity":2},"@schwarzenegger":{"popularity":1},"@jgilliam":{"popularity":1},"@waynesutton":{"popularity":1},"@capecoddergal":{"popularity":1},"@jonathannelson":{"popularity":1},"@govtwit":{"popularity":1},"@golbeck":{"popularity":1},"@tweetcongress":{"popularity":4},"@josiemorris":{"popularity":1},"@overnightprints":{"popularity":1},"@mentions":{"popularity":1},"@mashable":{"popularity":2},"@sbellity":{"popularity":1},"@cesar_alaniz":{"popularity":1},"@deadprogram":{"popularity":1},"@josuer":{"popularity":1},"@floxee":{"popularity":3},"@4dbryan":{"popularity":1},"@josiahivey":{"popularity":1},"@cohabitat":{"popularity":1},"@texascoders":{"popularity":1},"@codeodor":{"popularity":1},"@mwhagedorn":{"popularity":1},"@wycats":{"popularity":2},"@appcelerator":{"popularity":2},"@ssoper":{"popularity":1},"@pengwynn":{"popularity":1},"@marshall_law":{"popularity":1},"@obxdesignworks":{"popularity":1},"@jdirt":{"popularity":2},"@wdperson":{"popularity":1},"@madwilliamflint":{"popularity":1},"@rich_kilmer":{"popularity":2},"@prezi":{"popularity":1},"@locomotivation":{"popularity":1},"@renaebair":{"popularity":1},"@jnunemaker":{"popularity":2},"@confreaks":{"popularity":1},"@peteforde":{"popularity":1},"@jeg2":{"popularity":1},"@glv":{"popularity":1},"@rossjimenez":{"popularity":1},"@gadgetnate":{"popularity":1},"@cglee":{"popularity":1},"@simplyscreen":{"popularity":1},"@lsrc":{"popularity":2},"@chriseppstein":{"popularity":1},"@boblmartens":{"popularity":1},"@techmeets":{"popularity":1},"@lastfm":{"popularity":1},"@handcrafted":{"popularity":1},"@railsrumble":{"popularity":1},"@spreedly":{"popularity":1},"@josephinemorris":{"popularity":1}}}
@@ -0,0 +1,86 @@
1
+ {
2
+ "status": "ok",
3
+ "description": "Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org.",
4
+ "user_url": "http:\/\/wynnnetherland.com",
5
+ "followers_count": 2193,
6
+ "following_count": 1608,
7
+ "updates_count": 1948,
8
+ "url": "http:\/\/foller.me\/pengwynn",
9
+ "terms": {
10
+ "#mongodb": {
11
+ "popularity": 6
12
+ },
13
+ "#footer": {
14
+ "popularity": 1
15
+ },
16
+ "#saints": {
17
+ "popularity": 1
18
+ },
19
+ "#balloonboy": {
20
+ "popularity": 1
21
+ },
22
+ "#fff": {
23
+ "popularity": 1
24
+ },
25
+ "#typos": {
26
+ "popularity": 1
27
+ },
28
+ "#rails": {
29
+ "popularity": 1
30
+ },
31
+ "#railsconf": {
32
+ "popularity": 1
33
+ },
34
+ "#drevil": {
35
+ "popularity": 1
36
+ },
37
+ "#wemustprotectthishouse": {
38
+ "popularity": 1
39
+ },
40
+ "#57": {
41
+ "popularity": 1
42
+ },
43
+ "#tweetcongress": {
44
+ "popularity": 1
45
+ },
46
+ "#httparty": {
47
+ "popularity": 1
48
+ },
49
+ "#titanium": {
50
+ "popularity": 1
51
+ },
52
+ "#dallasrb": {
53
+ "popularity": 1
54
+ },
55
+ "#lsrc": {
56
+ "popularity": 7
57
+ },
58
+ "#floxee": {
59
+ "popularity": 1
60
+ },
61
+ "#css": {
62
+ "popularity": 1
63
+ },
64
+ "#sass": {
65
+ "popularity": 1
66
+ },
67
+ "#design": {
68
+ "popularity": 1
69
+ },
70
+ "#twibbon": {
71
+ "popularity": 1
72
+ },
73
+ "#railsrumble": {
74
+ "popularity": 5
75
+ },
76
+ "#8": {
77
+ "popularity": 1
78
+ },
79
+ "#twtpoll": {
80
+ "popularity": 1
81
+ },
82
+ "#smaz": {
83
+ "popularity": 1
84
+ }
85
+ }
86
+ }
@@ -0,0 +1 @@
1
+ {"status":"ok","description":"Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org.","user_url":"http:\/\/wynnnetherland.com","followers_count":2193,"following_count":1608,"updates_count":1948,"url":"http:\/\/foller.me\/pengwynn","terms":{"@squeejeeinc":{"popularity":2},"@kriscolvin":{"popularity":1},"@benhamill":{"popularity":1},"@elight":{"popularity":2},"@shanselman":{"popularity":1},"@damon":{"popularity":1},"@mully":{"popularity":6},"@treefrogstudios":{"popularity":5},"@amygdala":{"popularity":1},"@brianthecoder":{"popularity":1},"@austinonrails":{"popularity":2},"@mongodb":{"popularity":2},"@dslunceford":{"popularity":1},"@font":{"popularity":1},"@fontsquirrel":{"popularity":1},"@nessence":{"popularity":1},"@37signals":{"popularity":1},"@adamstac":{"popularity":3},"@mrspengwynn":{"popularity":8},"@vbehzadi":{"popularity":1},"@curvezilla":{"popularity":1},"@seanasullivan":{"popularity":1},"@gwenbell":{"popularity":1},"@jeffk":{"popularity":1},"@blue_bovine":{"popularity":1},"@leinweber":{"popularity":1},"@ericclemmons":{"popularity":1},"@ladyfox14":{"popularity":1},"@gdagley":{"popularity":2},"@joshuaclayton":{"popularity":2},"@geni":{"popularity":1},"@peburrows":{"popularity":1},"@railsconf":{"popularity":1},"@derrich":{"popularity":1},"@luigimontanez":{"popularity":1},"@bryanray":{"popularity":2},"@developdaly":{"popularity":1},"@bradleyjoyce":{"popularity":5},"@weyus":{"popularity":2},"@keith_lancaster":{"popularity":1},"@tweetsaver":{"popularity":9},"@hayesdavis":{"popularity":1},"@hulu":{"popularity":1},"@steveeichert":{"popularity":1},"@ghardin":{"popularity":1},"@kevinrose":{"popularity":1},"@jimeh":{"popularity":2},"@kblake":{"popularity":1},"@grantmichaels":{"popularity":2},"@schwarzenegger":{"popularity":1},"@jgilliam":{"popularity":1},"@waynesutton":{"popularity":1},"@capecoddergal":{"popularity":1},"@jonathannelson":{"popularity":1},"@govtwit":{"popularity":1},"@golbeck":{"popularity":1},"@tweetcongress":{"popularity":4},"@josiemorris":{"popularity":1},"@overnightprints":{"popularity":1},"@mentions":{"popularity":1},"@mashable":{"popularity":2},"@sbellity":{"popularity":1},"@cesar_alaniz":{"popularity":1},"@deadprogram":{"popularity":1},"@josuer":{"popularity":1},"@floxee":{"popularity":3},"@4dbryan":{"popularity":1},"@josiahivey":{"popularity":1},"@cohabitat":{"popularity":1},"@texascoders":{"popularity":1},"@codeodor":{"popularity":1},"@mwhagedorn":{"popularity":1},"@wycats":{"popularity":2},"@appcelerator":{"popularity":2},"@ssoper":{"popularity":1},"@pengwynn":{"popularity":1},"@marshall_law":{"popularity":1},"@obxdesignworks":{"popularity":1},"@jdirt":{"popularity":2},"@wdperson":{"popularity":1},"@madwilliamflint":{"popularity":1},"@rich_kilmer":{"popularity":2},"@prezi":{"popularity":1},"@locomotivation":{"popularity":1},"@renaebair":{"popularity":1},"@jnunemaker":{"popularity":2},"@confreaks":{"popularity":1},"@peteforde":{"popularity":1},"@jeg2":{"popularity":1},"@glv":{"popularity":1},"@rossjimenez":{"popularity":1},"@gadgetnate":{"popularity":1},"@cglee":{"popularity":1},"@simplyscreen":{"popularity":1},"@lsrc":{"popularity":2},"@chriseppstein":{"popularity":1},"@boblmartens":{"popularity":1},"@techmeets":{"popularity":1},"@lastfm":{"popularity":1},"@handcrafted":{"popularity":1},"@railsrumble":{"popularity":1},"@spreedly":{"popularity":1},"@josephinemorris":{"popularity":1}}}
@@ -0,0 +1 @@
1
+ {"status":"ok","description":"Christian husband and father, Ruby developer and web designer. Co-founder of TweetCongress.org.","user_url":"http:\/\/wynnnetherland.com","followers_count":2193,"following_count":1608,"updates_count":1948,"url":"http:\/\/foller.me\/pengwynn","terms":{"eventbug":{"popularity":1},"event":{"popularity":1},"panel":{"popularity":1},"firebug":{"popularity":2},"firefox":{"popularity":2},"developer":{"popularity":4},"plugin":{"popularity":2},"ow":{"popularity":10},"15yxp4":{"popularity":1},"heart":{"popularity":1},"surgery":{"popularity":1},"metaphysics":{"popularity":1},"death":{"popularity":1},"easier":{"popularity":2},"understand":{"popularity":1},"google":{"popularity":1},"wave":{"popularity":1},"retwt":{"popularity":1},"kxnp":{"popularity":1},"rt":{"popularity":4},"avoid":{"popularity":1},"submit":{"popularity":1},"button":{"popularity":2},"url":{"popularity":1},"parameters":{"popularity":1},"4rwair":{"popularity":1},"help":{"popularity":1},"lobby":{"popularity":1},"change":{"popularity":3},"creative":{"popularity":1},"twitter":{"popularity":12},"backgrounds":{"popularity":1},"2ggvkw":{"popularity":1},"explain":{"popularity":1},"puzzled":{"popularity":1},"look":{"popularity":1},"lemme":{"popularity":1},"yes":{"popularity":9},"disqus":{"popularity":1},"runs":{"popularity":1},"developers":{"popularity":1},"yckm":{"popularity":1},"blog":{"popularity":4},"wish":{"popularity":2},"list":{"popularity":1},"alignment":{"popularity":1},"bt":{"popularity":3},"io":{"popularity":3},"wwq":{"popularity":1},"beautiful":{"popularity":2},"scripture":{"popularity":1},"wallpapers":{"popularity":1},"theresurgence":{"popularity":1},"15yv7g":{"popularity":1},"migrating":{"popularity":1},"gems":{"popularity":3},"gemcutter":{"popularity":4},"process":{"popularity":1},"expected":{"popularity":1},"long":{"popularity":3},"walks":{"popularity":1},"power":{"popularity":1},"screens":{"popularity":1},"iphone":{"popularity":11},"icons":{"popularity":4},"search":{"popularity":3},"screen":{"popularity":1},"useful":{"popularity":2},"pagination":{"popularity":1},"rails":{"popularity":4},"15ykjs":{"popularity":1},"wordpress":{"popularity":6},"visual":{"popularity":1},"cheat":{"popularity":2},"sheet":{"popularity":2},"15ykhv":{"popularity":1},"examples":{"popularity":2},"add":{"popularity":3},"cart":{"popularity":1},"buttons":{"popularity":1},"design":{"popularity":3},"inspiration":{"popularity":1},"15yice":{"popularity":1},"mongodb":{"popularity":5},"application":{"popularity":1},"perspective":{"popularity":2},"2th0ji":{"popularity":1},"via":{"popularity":28},"gem":{"popularity":3},"lists":{"popularity":1},"usl":{"popularity":1},"love":{"popularity":4},"treefrog":{"popularity":1},"macrophotography":{"popularity":1},"zbew7":{"popularity":1},"firequery":{"popularity":1},"enhancements":{"popularity":1},"jquery":{"popularity":1},"15yyrz":{"popularity":1},"mirror":{"popularity":1},"pissed":{"popularity":1},"unicorn":{"popularity":1},"build":{"popularity":1},"theme":{"popularity":2},"thematic":{"popularity":4},"rvf":{"popularity":1},"successful":{"popularity":1},"distributed":{"popularity":1},"team":{"popularity":2},"vtyec":{"popularity":1},"ratio":{"popularity":1},"common":{"popularity":2},"meetups":{"popularity":1},"hope":{"popularity":1},"reach":{"popularity":1},"posted":{"popularity":1},"slides":{"popularity":1},"talk":{"popularity":4},"night":{"popularity":2},"4mqi5y":{"popularity":1},"improve":{"popularity":3},"photography":{"popularity":4},"15xiky":{"popularity":1},"themes":{"popularity":3},"frameworks":{"popularity":2},"wynn":{"popularity":1},"netherland":{"popularity":3},"15xhgf":{"popularity":1},"heading":{"popularity":2},"austin":{"popularity":1},"having":{"popularity":2},"fun":{"popularity":4},"playing":{"popularity":2},"fm":{"popularity":2},"api":{"popularity":1},"favorite":{"popularity":7},"tracks":{"popularity":1},"footer":{"popularity":1},"wynnnetherland":{"popularity":1},"time":{"popularity":3},"face":{"popularity":1},"easy":{"popularity":2},"i2kik":{"popularity":1},"buddy":{"popularity":1},"created":{"popularity":2},"listing":{"popularity":1},"haystack":{"popularity":1},"site":{"popularity":4},"launches":{"popularity":1},"designers":{"popularity":1},"sign":{"popularity":1},"nook":{"popularity":1},"wait":{"popularity":2},"cranny":{"popularity":1},"2rhjdo":{"popularity":1},"offense":{"popularity":1},"watch":{"popularity":1},"fresh":{"popularity":1},"prince":{"popularity":1},"hot":{"popularity":2},"air":{"popularity":1},"imgur":{"popularity":1},"8swi9":{"popularity":1},"png":{"popularity":1},"tee":{"popularity":1},"4b8jmc":{"popularity":1},"congrats":{"popularity":2},"addition":{"popularity":1},"balloon":{"popularity":1},"boy":{"popularity":1},"busts":{"popularity":1},"parents":{"popularity":1},"23w0ub":{"popularity":1},"real":{"popularity":1},"life":{"popularity":1},"flight":{"popularity":1},"navigator":{"popularity":1},"10npgj":{"popularity":1},"loving":{"popularity":3},"redesign":{"popularity":1},"brandstack":{"popularity":1},"careful":{"popularity":1},"swine":{"popularity":1},"flu":{"popularity":1},"twitpic":{"popularity":1},"ldrqf":{"popularity":1},"work":{"popularity":1},"lcdtvdealguide":{"popularity":1},"use":{"popularity":3},"zippy":{"popularity":1},"mistakes":{"popularity":1},"commerce":{"popularity":2},"15uphw":{"popularity":1},"outstanding":{"popularity":1},"free":{"popularity":4},"vintage":{"popularity":1},"fonts":{"popularity":2},"1vgjag":{"popularity":1},"nfl":{"popularity":1},"teams":{"popularity":1},"update":{"popularity":2},"logos":{"popularity":1},"based":{"popularity":2},"performance":{"popularity":1},"4pjyvt":{"popularity":1},"lt":{"popularity":3},"car":{"popularity":1},"dal":{"popularity":1},"faves":{"popularity":1},"modernizr":{"popularity":2},"detects":{"popularity":1},"browser":{"popularity":1},"support":{"popularity":3},"advanced":{"popularity":1},"html5":{"popularity":1},"css":{"popularity":6},"features":{"popularity":2},"plugins":{"popularity":1},"extreme":{"popularity":1},"functionality":{"popularity":1},"ffgcd":{"popularity":1},"toolbar":{"popularity":1},"app":{"popularity":12},"bits":{"popularity":3},"mongomapper":{"popularity":4},"vvsu6":{"popularity":1},"reading":{"popularity":1},"children":{"popularity":1},"igscc":{"popularity":1},"tacky":{"popularity":1},"techie":{"popularity":1},"conundrum":{"popularity":1},"31cdjs":{"popularity":1},"child":{"popularity":1},"fiddle":{"popularity":1},"busrj":{"popularity":1},"improved":{"popularity":1},"ruby":{"popularity":6},"hosting":{"popularity":1},"true":{"popularity":2},"especially":{"popularity":1},"lunch":{"popularity":1},"smells":{"popularity":1},"things":{"popularity":2},"miss":{"popularity":1},"9to5":{"popularity":1},"zhvz":{"popularity":1},"neat":{"popularity":2},"3d":{"popularity":1},"color":{"popularity":2},"picker":{"popularity":1},"colorotate":{"popularity":1},"scenario":{"popularity":1},"tool":{"popularity":1},"fit":{"popularity":1},"cases":{"popularity":1},"parody":{"popularity":1},"trailer":{"popularity":2},"better":{"popularity":2},"cyop1":{"popularity":1},"dumbest":{"popularity":1},"hvnrs":{"popularity":1},"geek":{"popularity":1},"knows":{"popularity":1},"doomsday":{"popularity":1},"isn":{"popularity":3},"happened":{"popularity":1},"dirty":{"popularity":1},"laundry":{"popularity":1},"airing":{"popularity":1},"near":{"popularity":1},"page":{"popularity":2},"puts":{"popularity":1},"fundable":{"popularity":1},"hung":{"popularity":1},"wife":{"popularity":4},"yukon":{"popularity":1},"garage":{"popularity":1},"door":{"popularity":1},"evidently":{"popularity":1},"unfold":{"popularity":1},"nicely":{"popularity":1},"folds":{"popularity":1},"snagged":{"popularity":1},"catechizeme":{"popularity":2},"itunes":{"popularity":3},"store":{"popularity":3},"yep":{"popularity":1},"typetester":{"popularity":1},"tools":{"popularity":1},"type":{"popularity":1},"set":{"popularity":2},"preview":{"popularity":1},"grab":{"popularity":1},"csstypeset":{"popularity":1},"dashed":{"popularity":1},"fiveruns":{"popularity":1},"accommodate":{"popularity":1},"drawl":{"popularity":1},"paddin":{"popularity":1},"0px":{"popularity":1},"years":{"popularity":1},"later":{"popularity":1},"hidden":{"popularity":1},"caps":{"popularity":1},"lock":{"popularity":1},"feature":{"popularity":1},"anp4a":{"popularity":1},"bring":{"popularity":1},"checkbook":{"popularity":1},"want":{"popularity":2},"mention":{"popularity":1},"barcampdc3":{"popularity":1},"38qism":{"popularity":1},"food":{"popularity":1},"promotions":{"popularity":1},"gone":{"popularity":1},"wrong":{"popularity":1},"cuyuy":{"popularity":1},"memories":{"popularity":1},"release":{"popularity":1},"dates":{"popularity":1},"believe":{"popularity":1},"joined":{"popularity":1},"party":{"popularity":1},"e7rpo":{"popularity":1},"pondering":{"popularity":3},"impact":{"popularity":1},"match":{"popularity":1},"technology":{"popularity":1},"native":{"popularity":2},"arkansas":{"popularity":1},"meet":{"popularity":1},"cousin":{"popularity":1},"cjhki":{"popularity":1},"hooked":{"popularity":2},"logging":{"popularity":1},"2wwhp6":{"popularity":1},"happen":{"popularity":1},"baltimore":{"popularity":2},"convention":{"popularity":1},"center":{"popularity":1},"md":{"popularity":1},"railsconf":{"popularity":2},"ad":{"popularity":1},"pull":{"popularity":1},"pdxv6":{"popularity":1},"sues":{"popularity":1},"bofa":{"popularity":1},"billion":{"popularity":1},"trillion":{"popularity":1},"dollars":{"popularity":1},"46y1b":{"popularity":1},"flea":{"popularity":1},"market":{"popularity":1},"photographs":{"popularity":2},"cloudy":{"popularity":1},"4usrj7":{"popularity":1},"structure":{"popularity":1},"diagram":{"popularity":1},"building":{"popularity":1},"3ntahu":{"popularity":1},"fan":{"popularity":2},"facebook":{"popularity":7},"treefrogstudios":{"popularity":1},"skinning":{"popularity":1},"themeshaper":{"popularity":1},"launched":{"popularity":2},"paula":{"popularity":2},"treefrogkids":{"popularity":1},"working":{"popularity":3},"denton":{"popularity":1},"using":{"popularity":3},"18hmyr":{"popularity":1},"spree":{"popularity":1},"released":{"popularity":1},"open":{"popularity":3},"source":{"popularity":3},"4l0lm6":{"popularity":1},"sounds":{"popularity":1},"chat":{"popularity":1},"gmail":{"popularity":1},"push":{"popularity":2},"rqakr":{"popularity":1},"geeks":{"popularity":1},"pregnant":{"popularity":1},"twins":{"popularity":1},"3ereby":{"popularity":1},"extra":{"popularity":1},"days":{"popularity":1},"person":{"popularity":1},"signs":{"popularity":2},"tweetsaver":{"popularity":4},"stunning":{"popularity":1},"infrared":{"popularity":1},"pctav":{"popularity":1},"interested":{"popularity":1},"live":{"popularity":1},"tweeting":{"popularity":1},"jury":{"popularity":1},"duty":{"popularity":1},"remember":{"popularity":1},"texans":{"popularity":1},"winning":{"popularity":2},"game":{"popularity":1},"stadium":{"popularity":1},"rmagick":{"popularity":1},"snow":{"popularity":2},"leopard":{"popularity":2},"2ib2zu":{"popularity":1},"study":{"popularity":2},"classics":{"popularity":1},"youth":{"popularity":1},"deprived":{"popularity":1},"uvo9k":{"popularity":1},"feeling":{"popularity":1},"playoff":{"popularity":1},"matchup":{"popularity":1},"vick":{"popularity":1},"rusty":{"popularity":1},"mcnabb":{"popularity":1},"ultimate":{"popularity":1},"guide":{"popularity":1},"embedding":{"popularity":1},"sound":{"popularity":1},"web":{"popularity":2},"pages":{"popularity":2},"ljind":{"popularity":1},"ok":{"popularity":2},"let":{"popularity":5},"saints":{"popularity":2},"philly":{"popularity":1},"ui":{"popularity":1},"programmer":{"popularity":1},"3uityw":{"popularity":1},"idea":{"popularity":3},"movie":{"popularity":1},"star":{"popularity":1},"m993b":{"popularity":1},"stuff":{"popularity":2},"versions":{"popularity":1},"mongo":{"popularity":2},"server":{"popularity":1},"college":{"popularity":1},"kicker":{"popularity":1},"wearing":{"popularity":1},"requires":{"popularity":1},"somebody":{"popularity":1},"production":{"popularity":1},"afaik":{"popularity":1},"driver":{"popularity":1},"orm":{"popularity":1},"share":{"popularity":1},"test":{"popularity":1},"came":{"popularity":1},"haml":{"popularity":1},"stayed":{"popularity":1},"sass":{"popularity":2},"lang":{"popularity":1},"choppa":{"popularity":1},"suspended":{"popularity":1},"shoulda":{"popularity":2},"20k":{"popularity":1},"tweets":{"popularity":4},"glad":{"popularity":2},"little":{"popularity":5},"project":{"popularity":1},"provide":{"popularity":1},"outlet":{"popularity":1},"angst":{"popularity":1},"popular":{"popularity":1},"hashtag":{"popularity":1},"2mxcgh":{"popularity":1},"trial":{"popularity":1},"16oofi":{"popularity":1},"rediscovered":{"popularity":1},"tweet":{"popularity":2},"rieo7":{"popularity":1},"default":{"popularity":1},"avatar":{"popularity":2},"longer":{"popularity":1},"smacked":{"popularity":1},"ugly":{"popularity":1},"stick":{"popularity":1},"khsjd":{"popularity":1},"database":{"popularity":1},"corrupted":{"popularity":2},"dunno":{"popularity":1},"gov":{"popularity":1},"works":{"popularity":1},"somewhat":{"popularity":1},"s3dqa":{"popularity":1},"congress":{"popularity":1},"10unum":{"popularity":1},"photographer":{"popularity":1},"paulanetherland":{"popularity":1},"rebranding":{"popularity":1},"coming":{"popularity":2},"soon":{"popularity":1},"ordering":{"popularity":1},"business":{"popularity":1},"cards":{"popularity":1},"designed":{"popularity":1},"glyphish":{"popularity":2},"applications":{"popularity":1},"nooooo":{"popularity":1},"mint":{"popularity":1},"sells":{"popularity":1},"intuit":{"popularity":1},"million":{"popularity":1},"3zfjoo":{"popularity":1},"kanye":{"popularity":1},"finish":{"popularity":1},"pres":{"popularity":1},"2ct5m7":{"popularity":1},"refer":{"popularity":1},"spoilers":{"popularity":1},"12pm":{"popularity":1},"opening":{"popularity":1},"usually":{"popularity":1},"peak":{"popularity":1},"orleans":{"popularity":1},"season":{"popularity":1},"yup":{"popularity":2},"yelp":{"popularity":2},"monacle":{"popularity":1},"3gs":{"popularity":1},"amazing":{"popularity":1},"heads":{"popularity":1},"display":{"popularity":1},"nearby":{"popularity":1},"places":{"popularity":1},"yfrog":{"popularity":2},"0huy5tj":{"popularity":1},"introduces":{"popularity":1},"status":{"popularity":1},"updates":{"popularity":1},"4a4kv8":{"popularity":1},"installing":{"popularity":3},"finally":{"popularity":2},"music":{"popularity":1},"sync":{"popularity":1},"organize":{"popularity":1},"4bpub4":{"popularity":1},"port":{"popularity":1},"couchdb":{"popularity":1},"futon":{"popularity":1},"utility":{"popularity":1},"nbgfn":{"popularity":1},"appears":{"popularity":1},"hitting":{"popularity":1},"spike":{"popularity":1},"newsweek":{"popularity":2},"article":{"popularity":2},"tweetcongress":{"popularity":1},"giving":{"popularity":1},"cap":{"popularity":1},"covered":{"popularity":1},"nh49u":{"popularity":1},"esv":{"popularity":1},"service":{"popularity":1},"j6fqy":{"popularity":1},"admit":{"popularity":1},"saw":{"popularity":1},"bob":{"popularity":1},"barker":{"popularity":1},"trending":{"popularity":1},"thought":{"popularity":1},"dead":{"popularity":1},"huh":{"popularity":1},"flixster":{"popularity":1},"darn":{"popularity":1},"upcoming":{"popularity":2},"movies":{"popularity":1},"dvds":{"popularity":1},"reviews":{"popularity":1},"2yjl1e":{"popularity":1},"shameless":{"popularity":1},"plug":{"popularity":1},"super":{"popularity":1},"talented":{"popularity":1},"15bd4g":{"popularity":1},"thinking":{"popularity":1},"driving":{"popularity":1},"okc":{"popularity":1},"rb":{"popularity":2},"meeting":{"popularity":1},"north":{"popularity":1},"texas":{"popularity":1},"rubyists":{"popularity":1},"tag":{"popularity":2},"ready":{"popularity":2},"fight":{"popularity":1},"twitterland":{"popularity":1},"includes":{"popularity":1},"thumbfight":{"popularity":1},"5jz1i":{"popularity":1},"problems":{"popularity":1},"dying":{"popularity":1},"purty":{"popularity":1},"scared":{"popularity":1},"upgrade":{"popularity":1},"installation":{"popularity":1},"lzdwi":{"popularity":1},"mended":{"popularity":1},"shorts":{"popularity":1},"afraid":{"popularity":1},"lost":{"popularity":1},"friends":{"popularity":2},"powers":{"popularity":1},"apps":{"popularity":1},"stats":{"popularity":2},"bug":{"popularity":1},"account":{"popularity":1},"inactive":{"popularity":1},"accounts":{"popularity":1},"simple":{"popularity":1},"tricks":{"popularity":1},"greatly":{"popularity":1},"typography":{"popularity":1},"c5ht0":{"popularity":1},"hold":{"popularity":1},"officials":{"popularity":1},"higher":{"popularity":1},"standards":{"popularity":1},"stop":{"popularity":1},"defending":{"popularity":1},"idiotic":{"popularity":1},"behavior":{"popularity":1},"agree":{"popularity":1},"issues":{"popularity":1},"melrose":{"popularity":1},"place":{"popularity":1},"tv":{"popularity":1},"itpcw":{"popularity":1},"van":{"popularity":1},"jones":{"popularity":1},"job":{"popularity":1},"h2hlg":{"popularity":1},"auto":{"popularity":1},"tagging":{"popularity":2},"forget":{"popularity":1},"workshop":{"popularity":1},"gcjad":{"popularity":1},"maybe":{"popularity":1},"dad":{"popularity":1},"250k":{"popularity":1},"followers":{"popularity":1},"quips":{"popularity":1},"2kqhpf":{"popularity":1},"special":{"popularity":1},"password":{"popularity":1},"characters":{"popularity":1},"pet":{"popularity":1},"peeve":{"popularity":1},"visualizations":{"popularity":1},"regular":{"popularity":1},"expressions":{"popularity":1},"joxi2":{"popularity":1},"fusioncharts":{"popularity":1},"flash":{"popularity":1},"charting":{"popularity":1},"package":{"popularity":1},"swvcq":{"popularity":1},"excited":{"popularity":1},"positive":{"popularity":1},"12jhmb":{"popularity":1},"mobile":{"popularity":3},"desktop":{"popularity":1},"beta":{"popularity":1},"chatted":{"popularity":1},"lsrc":{"popularity":2},"nk5ft":{"popularity":1},"jigawatts":{"popularity":1},"heard":{"popularity":1},"pronounced":{"popularity":1},"jit":{"popularity":1},"hub":{"popularity":1},"getting":{"popularity":2},"scoop":{"popularity":1},"waiting":{"popularity":1},"genius":{"popularity":1},"bar":{"popularity":1},"stonebriar":{"popularity":1},"apple":{"popularity":2},"dallas":{"popularity":1},"seen":{"popularity":1},"mission":{"popularity":1},"control":{"popularity":1},"nasa":{"popularity":1},"trouble":{"popularity":1},"loud":{"popularity":1},"pulling":{"popularity":1},"curtain":{"popularity":1},"backup":{"popularity":1},"clean":{"popularity":1},"magic":{"popularity":1},"eraser":{"popularity":1},"29obqv":{"popularity":1},"backing":{"popularity":1},"searching":{"popularity":1},"shouldn":{"popularity":1},"raise":{"popularity":1},"boom":{"popularity":1},"shacka":{"popularity":1},"lacka":{"popularity":1},"required":{"popularity":1},"sure":{"popularity":1},"gave":{"popularity":1},"imac":{"popularity":1},"laws":{"popularity":1},"theirs":{"popularity":1},"hurts":{"popularity":1},"5jpzzj":{"popularity":1},"paperclip":{"popularity":1},"1936yk":{"popularity":1},"replacement":{"popularity":1},"started":{"popularity":1},"mobileme":{"popularity":1},"registered":{"popularity":1},"device":{"popularity":1},"lesson":{"popularity":1},"learned":{"popularity":1},"rep":{"popularity":1},"stolen":{"popularity":1},"truck":{"popularity":1},"ride":{"popularity":1},"guess":{"popularity":1},"didn":{"popularity":1},"dc":{"popularity":1},"charger":{"popularity":1},"rock":{"popularity":1},"keynote":{"popularity":1},"recommend":{"popularity":2},"tagged":{"popularity":1},"missed":{"popularity":1},"shirt":{"popularity":1},"book":{"popularity":1},"present":{"popularity":1},"win":{"popularity":1},"daughter":{"popularity":1},"dm":{"popularity":1},"film":{"popularity":1},"following":{"popularity":2},"watching":{"popularity":1},"install":{"popularity":1},"showing":{"popularity":1},"touch":{"popularity":1},"couch":{"popularity":1},"comparison":{"popularity":1},"slide":{"popularity":1},"deck":{"popularity":1},"4pg00":{"popularity":1},"rubyist":{"popularity":1},"conference":{"popularity":2},"speakers":{"popularity":1},"entertaining":{"popularity":1},"funny":{"popularity":1},"smartest":{"popularity":1},"guy":{"popularity":1},"room":{"popularity":1},"funnier":{"popularity":1},"xlciw":{"popularity":1},"twibbon":{"popularity":1},"join":{"popularity":1},"chance":{"popularity":1},"breakfast":{"popularity":1},"led":{"popularity":1},"wrapper":{"popularity":1},"cleaning":{"popularity":1},"view":{"popularity":1},"code":{"popularity":1},"tutorial":{"popularity":1},"big":{"popularity":1},"completing":{"popularity":1},"simplyscreen":{"popularity":1},"goers":{"popularity":1},"iyg62":{"popularity":1},"wondering":{"popularity":1},"going":{"popularity":2},"compass":{"popularity":1},"min":{"popularity":1},"goodness":{"popularity":1},"click":{"popularity":1},"added":{"popularity":1},"yppii":{"popularity":1},"hxot6":{"popularity":1},"winding":{"popularity":1},"zu43x":{"popularity":1},"chances":{"popularity":1},"whipping":{"popularity":1},"brought":{"popularity":1},"monster":{"popularity":1},"energy":{"popularity":1},"drink":{"popularity":1},"succeed":{"popularity":1},"_why":{"popularity":1},"twtpoll":{"popularity":1},"aqy6hj":{"popularity":1},"apart":{"popularity":1},"joy":{"popularity":1},"integrate":{"popularity":1},"handle":{"popularity":1},"billing":{"popularity":1},"subscriptions":{"popularity":1},"simulated":{"popularity":1},"ring":{"popularity":1},"skype":{"popularity":1},"simulate":{"popularity":1},"number":{"popularity":1},"dialing":{"popularity":1},"beeps":{"popularity":1},"ghb6y":{"popularity":1},"spreading":{"popularity":1},"word":{"popularity":1},"wishing":{"popularity":1},"approve":{"popularity":1},"dusto":{"popularity":1}}}
@@ -0,0 +1 @@
1
+ {"status":"success","uid":"94496fd8227104a06bbb1a07a6ea9e3c"}
@@ -0,0 +1,21 @@
1
+ {
2
+ "status": "success",
3
+ "builtURLs": [{
4
+ "name": "tweetcongress.org",
5
+ "id": "456165"
6
+ }],
7
+ "builds": {
8
+ "tweetcongress.org": [[{
9
+ "id": "1531",
10
+ "builddate": "2009-11-03 04:04:33",
11
+ "title": "Tweet Congress",
12
+ "url": "http:\/\/my.tweetmeme.com\/analytics\/1531"
13
+ },
14
+ {
15
+ "id": "1530",
16
+ "builddate": "2009-11-03 03:52:46",
17
+ "title": "Randy Neugebauer is on Twitter - TweetCongress",
18
+ "url": "http:\/\/my.tweetmeme.com\/analytics\/1530"
19
+ }]]
20
+ }
21
+ }
@@ -0,0 +1 @@
1
+ {"status":"success","categories":[{"display":"Comedy","name":"comedy"},{"display":"Entertainment","name":"entertainment"},{"display":"Gaming","name":"gaming"},{"display":"Lifestyle","name":"lifestyle"},{"display":"Science","name":"science"},{"display":"Sports","name":"sports"},{"display":"Technology","name":"technology"},{"display":"World & Business","name":"worldbusiness"}]}
@@ -0,0 +1,2329 @@
1
+ {
2
+ "comments": [{
3
+ "id": "14495",
4
+ "text": "M\u00e9xico caso sui generis, mi querido Vic, solo aqui pasan esos casos, lamentablemente el costo pol\u00edtico para el reci\u00e9n nacido nuevo PRI sera brutal pues la anmesia temporal que sumergio a M\u00e9xico esta pasando y solo nos resta recordar los peores a\u00f1os de M\u00e9xico cuando el PRI goberno, a no es opci\u00f3n ni PAN ni PRI ni Verde, por lo pronto veremos que sucedera en cuanto a la cauda de amparos que seguramente generara esta accion de el Cartel Legislativo, Eso si de recortar el gasto suntuoso de los miembros de los 3 Carteles ni para cuando. ",
5
+ "url_id": "247901734",
6
+ "retweets": "1",
7
+ "user_id": "291165408",
8
+ "last_referenced": "2009-11-03 03:39:14",
9
+ "created_at": "2009-11-03 03:39:14",
10
+ "user": {
11
+ "id": "291165408",
12
+ "tweeter": "alfro2004",
13
+ "url": "http:\/\/s.twimg.com\/a\/1257210731\/images\/default_profile_1_normal.png"
14
+ },
15
+ "story": {
16
+ "url": "http:\/\/gaceta.cddhcu.gob.mx\/Gaceta\/Dictamenes\/61\/gp61_a1primero.html#Votas31oct",
17
+ "title": "Gaceta Parlamentaria, C\u00e1mara de Diputados",
18
+ "url_count": 60,
19
+ "comment_count": 1
20
+ },
21
+ "url": "http:\/\/tweetmeme.com\/comment\/247901734-14495"
22
+ },
23
+ {
24
+ "id": "14494",
25
+ "text": "eres muy hermosa que Dios te vendiga",
26
+ "url_id": "207041570",
27
+ "retweets": "1",
28
+ "user_id": "291165402",
29
+ "last_referenced": "2009-11-03 03:26:45",
30
+ "created_at": "2009-11-03 03:26:45",
31
+ "user": {
32
+ "id": "291165402",
33
+ "tweeter": "latiabetty",
34
+ "url": "http:\/\/s.twimg.com\/a\/1257210731\/images\/default_profile_3_normal.png"
35
+ },
36
+ "story": {
37
+ "url": "http:\/\/www.womanoftheearth.tv\/cms\/index.php\/miss-earth-2009\/dominican-republic",
38
+ "title": "Woman of the Earth: ME09 Delegates - Dominican Republic",
39
+ "url_count": "0",
40
+ "comment_count": 2
41
+ },
42
+ "url": "http:\/\/tweetmeme.com\/comment\/207041570-14494"
43
+ },
44
+ {
45
+ "id": "14493",
46
+ "text": "hola mi amor muchas felicidades y muchisima suerte",
47
+ "url_id": "207041570",
48
+ "retweets": "1",
49
+ "user_id": "291165402",
50
+ "last_referenced": "2009-11-03 03:26:01",
51
+ "created_at": "2009-11-03 03:26:01",
52
+ "user": {
53
+ "id": "291165402",
54
+ "tweeter": "latiabetty",
55
+ "url": "http:\/\/s.twimg.com\/a\/1257210731\/images\/default_profile_3_normal.png"
56
+ },
57
+ "story": {
58
+ "url": "http:\/\/www.womanoftheearth.tv\/cms\/index.php\/miss-earth-2009\/dominican-republic",
59
+ "title": "Woman of the Earth: ME09 Delegates - Dominican Republic",
60
+ "url_count": "0",
61
+ "comment_count": 1
62
+ },
63
+ "url": "http:\/\/tweetmeme.com\/comment\/207041570-14493"
64
+ },
65
+ {
66
+ "id": "14492",
67
+ "text": "Can't wait to all my Christmas shopping here ",
68
+ "url_id": "248888438",
69
+ "retweets": "1",
70
+ "user_id": "287272195",
71
+ "last_referenced": "2009-11-03 03:18:41",
72
+ "created_at": "2009-11-03 03:18:41",
73
+ "user": {
74
+ "id": "287272195",
75
+ "tweeter": "chicuffbydaneve",
76
+ "url": "http:\/\/a1.twimg.com\/profile_images\/438760220\/n517240441_494565_1364_normal.jpg"
77
+ },
78
+ "story": {
79
+ "url": "http:\/\/brisstyle.blogspot.com\/2009\/11\/bidm-market-update.html",
80
+ "title": "BrisStyle: BIDM Market Update",
81
+ "url_count": 2,
82
+ "comment_count": 1
83
+ },
84
+ "url": "http:\/\/tweetmeme.com\/comment\/248888438-14492"
85
+ },
86
+ {
87
+ "id": "14491",
88
+ "text": "Backstreet boys are the best!!!! BIGGER is bigger! the video is amazing!!!<br \/><br \/><br \/>Go THIS IS US TOUR is incredible!!!",
89
+ "url_id": "248161262",
90
+ "retweets": "1",
91
+ "user_id": "83544238",
92
+ "last_referenced": "2009-11-03 03:16:47",
93
+ "created_at": "2009-11-03 03:16:47",
94
+ "user": {
95
+ "id": "83544238",
96
+ "tweeter": "Nicolebsb",
97
+ "url": "http:\/\/a1.twimg.com\/profile_images\/132863522\/nicolcita_2_normal.jpg"
98
+ },
99
+ "story": {
100
+ "url": "http:\/\/perezhilton.com\/2009-11-02-the-backstreet-boys-are-still-around",
101
+ "title": "Perez Hilton: The Backstreet Boys Are Still Around",
102
+ "url_count": 52,
103
+ "comment_count": 1
104
+ },
105
+ "url": "http:\/\/tweetmeme.com\/comment\/248161262-14491"
106
+ },
107
+ {
108
+ "id": "14490",
109
+ "text": "I like this article.<br \/>Thanks.",
110
+ "url_id": "28402543",
111
+ "retweets": "1",
112
+ "user_id": "290850496",
113
+ "last_referenced": "2009-11-03 03:08:59",
114
+ "created_at": "2009-11-03 03:08:59",
115
+ "user": {
116
+ "id": "290850496",
117
+ "tweeter": "prakashpriti",
118
+ "url": "http:\/\/a3.twimg.com\/profile_images\/501025863\/Prakash_half_Photo_normal.jpg"
119
+ },
120
+ "story": {
121
+ "url": "http:\/\/www.makeuseof.com\/tag\/top-20-wordpress-plugins-for-power-users\/",
122
+ "title": "Top 20 Wordpress Plugins for Power Users | MakeUseOf.com",
123
+ "url_count": "4",
124
+ "comment_count": 1
125
+ },
126
+ "url": "http:\/\/tweetmeme.com\/comment\/28402543-14490"
127
+ },
128
+ {
129
+ "id": "14489",
130
+ "text": "How incredible! my heart lept with the stripped down beauty at its finest!",
131
+ "url_id": "93745440",
132
+ "retweets": "1",
133
+ "user_id": "287639738",
134
+ "last_referenced": "2009-11-03 03:07:19",
135
+ "created_at": "2009-11-03 03:07:19",
136
+ "user": {
137
+ "id": "287639738",
138
+ "tweeter": "nydarling",
139
+ "url": "http:\/\/a1.twimg.com\/profile_images\/397464238\/Darlene_on_way_to_Maine_normal.jpg"
140
+ },
141
+ "story": {
142
+ "url": "http:\/\/almostfearless.com\/2008\/09\/09\/the-canary-islands-where-there-are-no-small-yellow-birds-who-like-to-sing\/",
143
+ "title": "The Canary Islands, Where There Are No Small Yellow Birds Who Like to Sing|AlmostFearless.com",
144
+ "url_count": 1,
145
+ "comment_count": 1
146
+ },
147
+ "url": "http:\/\/tweetmeme.com\/comment\/93745440-14489"
148
+ },
149
+ {
150
+ "id": "14488",
151
+ "text": "It has been a very exciting event so far. The Festival is getting world wide coverage",
152
+ "url_id": "248293315",
153
+ "retweets": "1",
154
+ "user_id": "251770582",
155
+ "last_referenced": "2009-11-03 02:59:03",
156
+ "created_at": "2009-11-03 02:59:03",
157
+ "user": {
158
+ "id": "251770582",
159
+ "tweeter": "HCTmedia",
160
+ "url": "http:\/\/a1.twimg.com\/profile_images\/356917722\/hct_logo_small_normal.png"
161
+ },
162
+ "story": {
163
+ "url": "http:\/\/www.khaleejtimes.com\/DisplayArticle.asp?xfile=data\/theuae\/2009\/November\/theuae_November69.xml&section=theuae&col=",
164
+ "title": "Festival of Thinkers Debate World\u2019s Burning Issues",
165
+ "url_count": "1",
166
+ "comment_count": 1
167
+ },
168
+ "url": "http:\/\/tweetmeme.com\/comment\/248293315-14488"
169
+ },
170
+ {
171
+ "id": "14487",
172
+ "text": "learn it before you get it: RT Mashable Google Wave guide: user Manual Released for Wave",
173
+ "url_id": "245557492",
174
+ "retweets": "1",
175
+ "user_id": "157952974",
176
+ "last_referenced": "2009-11-03 02:58:52",
177
+ "created_at": "2009-11-03 02:58:52",
178
+ "user": {
179
+ "id": "157952974",
180
+ "tweeter": "hannahchatmedia",
181
+ "url": "http:\/\/s.twimg.com\/a\/1257210731\/images\/default_profile_4_normal.png"
182
+ },
183
+ "story": {
184
+ "url": "http:\/\/mashable.com\/2009\/11\/01\/google-wave-guide-2\/",
185
+ "title": "Google Wave Guide: User Manual Released for Wave",
186
+ "url_count": 1796,
187
+ "comment_count": 1
188
+ },
189
+ "url": "http:\/\/tweetmeme.com\/comment\/245557492-14487"
190
+ },
191
+ {
192
+ "id": "14486",
193
+ "text": "haha take that swine flu, I don't believe in you!",
194
+ "url_id": "238133848",
195
+ "retweets": "1",
196
+ "user_id": "50997084",
197
+ "last_referenced": "2009-11-03 02:54:43",
198
+ "created_at": "2009-11-03 02:54:43",
199
+ "user": {
200
+ "id": "50997084",
201
+ "tweeter": "stranger_danger",
202
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504066838\/stuff_249ed_normal.jpg"
203
+ },
204
+ "story": {
205
+ "url": "http:\/\/www.weebls-stuff.com\/toons\/Pork+Remix\/",
206
+ "title": "Pork Remix - Weebl's Stuff",
207
+ "url_count": 3,
208
+ "comment_count": 1
209
+ },
210
+ "url": "http:\/\/tweetmeme.com\/comment\/238133848-14486"
211
+ },
212
+ {
213
+ "id": "14485",
214
+ "text": "manda um convite ae porfavor :)) <br \/>guilherme_mule_ke@hotmail.com",
215
+ "url_id": "239374373",
216
+ "retweets": "1",
217
+ "user_id": "291164121",
218
+ "last_referenced": "2009-11-03 02:48:35",
219
+ "created_at": "2009-11-03 02:48:35",
220
+ "user": {
221
+ "id": "291164121",
222
+ "tweeter": "guidibob",
223
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_3_normal.png"
224
+ },
225
+ "story": {
226
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
227
+ "title": "Novo Orkut: primeiras impress\u00f5es",
228
+ "url_count": 316,
229
+ "comment_count": 28
230
+ },
231
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14485"
232
+ },
233
+ {
234
+ "id": "14484",
235
+ "text": "Eu tb quero me manda um convite! ;) ninhomot@gmail.com",
236
+ "url_id": "239374373",
237
+ "retweets": "1",
238
+ "user_id": "274002613",
239
+ "last_referenced": "2009-11-03 02:21:12",
240
+ "created_at": "2009-11-03 02:21:12",
241
+ "user": {
242
+ "id": "274002613",
243
+ "tweeter": "Ninho_",
244
+ "url": "http:\/\/a1.twimg.com\/profile_images\/374065308\/twitterProfilePhoto_normal.jpg"
245
+ },
246
+ "story": {
247
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
248
+ "title": "Novo Orkut: primeiras impress\u00f5es",
249
+ "url_count": 314,
250
+ "comment_count": 27
251
+ },
252
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14484"
253
+ },
254
+ {
255
+ "id": "14483",
256
+ "text": "Great opportunity for entrepreneur to launch multi-million franchise for international Jeans co #{1}# ",
257
+ "url_id": "243458766",
258
+ "retweets": "1",
259
+ "user_id": "51719372",
260
+ "last_referenced": "2009-11-03 02:11:40",
261
+ "created_at": "2009-11-03 02:11:40",
262
+ "media": [{
263
+ "id": "243458766",
264
+ "url": "http:\/\/www.efactor.com\/p\/news\/id=4473",
265
+ "alias": "http:\/\/tinyurl.com\/yl4456r",
266
+ "title": "E.Factor",
267
+ "text": "E.Factor News: http:\/\/tinyurl.com\/yl4456r - \"G-Star and E.Factor launch new style campaign\"",
268
+ "url_count": 2,
269
+ "comment_count": 1,
270
+ "media_type": "news",
271
+ "last_referenced": "2009-11-03 02:11:40",
272
+ "created_at": "2009-10-31 15:04:27",
273
+ "language": "unknown",
274
+ "media_thumb": 0,
275
+ "user_id": "14666508",
276
+ "score": "0",
277
+ "nurl": "http:\/\/efactor.com\/p\/news\/id=4473",
278
+ "status": true
279
+ }],
280
+ "user": {
281
+ "id": "51719372",
282
+ "tweeter": "marionfreijsen",
283
+ "url": "http:\/\/a3.twimg.com\/profile_images\/304828349\/ls_9067_Marion_2_normal.jpg"
284
+ },
285
+ "story": {
286
+ "url": "http:\/\/www.efactor.com\/p\/news\/id=4473",
287
+ "title": "E.Factor",
288
+ "url_count": 2,
289
+ "comment_count": 1
290
+ },
291
+ "url": "http:\/\/tweetmeme.com\/comment\/243458766-14483"
292
+ },
293
+ {
294
+ "id": "14482",
295
+ "text": "Please let us know when this is ready. I want to buy one for my future off-grid home.",
296
+ "url_id": "201119534",
297
+ "retweets": "1",
298
+ "user_id": "291162570",
299
+ "last_referenced": "2009-11-03 02:08:10",
300
+ "created_at": "2009-11-03 02:08:10",
301
+ "user": {
302
+ "id": "291162570",
303
+ "tweeter": "KopperRose",
304
+ "url": "http:\/\/s.twimg.com\/a\/1257210731\/images\/default_profile_6_normal.png"
305
+ },
306
+ "story": {
307
+ "url": "http:\/\/www.impactlab.com\/2008\/09\/21\/refrigerator-that-runs-without-electricity\/",
308
+ "title": "Refrigerator that Runs Without Electricity",
309
+ "url_count": 1,
310
+ "comment_count": 1
311
+ },
312
+ "url": "http:\/\/tweetmeme.com\/comment\/201119534-14482"
313
+ },
314
+ {
315
+ "id": "14481",
316
+ "text": "When I first saw this photograph, I thought it was an artists way of being creative, and actually thought it looked amazing and could be symbolic for oh i don't know, duality being one example? It's obvious to me that this model was painted a dark charcoal Grey (not black), and black face did not even cross my mind until it was mentioned. <br \/><br \/>The rest of the image didn't support the idea of black face. It simply looks like a beautiful photograph. When i think of black face, i think of an obvious, over the top visual image created by cruddy painting a white person face black, and then maybe modifying hair, clothing, or any other accessories that would support the idea of blackface. This photograph shows non of this, just a beautiful girl painted from head to toe in a beautiful dark color.<br \/><br \/> I think of Aaliyahs character from queen of the damned during the death scene, or Rihanna's umbrella video where she is painted in silver when I look at this image. I think enough time has passed in our history, to assume that not all photos of white girls painted a dark color, especially when it's done in such an artistic, to be taken automatically as blackface. Not to say there still isn't racism present in the world, but in this case, I'm not so sure racism applies. it depends on the intent of the person(s) involved, and the assumptions of the viewers I suppose. <br \/><br \/>I've said all I had to say about that! In conclusion, the photograph it is not racist to me. I think it's beautiful.",
317
+ "url_id": "248665079",
318
+ "retweets": "0",
319
+ "user_id": "289777272",
320
+ "last_referenced": "2009-11-03 02:03:58",
321
+ "created_at": "2009-11-03 02:03:58",
322
+ "user": {
323
+ "id": "289777272",
324
+ "tweeter": "evanatal",
325
+ "url": "http:\/\/a1.twimg.com\/profile_images\/256349210\/hair_normal.jpg"
326
+ },
327
+ "story": {
328
+ "url": "http:\/\/cocoperez.com\/2009-11-02-a-dark-day-for-v-magazine",
329
+ "title": "CocoPerez: A Dark Day For V Magazine",
330
+ "url_count": 0,
331
+ "comment_count": 1
332
+ },
333
+ "url": "http:\/\/tweetmeme.com\/comment\/248665079-14481"
334
+ },
335
+ {
336
+ "id": "14480",
337
+ "text": "ROSESPEAKS.COM - ",
338
+ "url_id": "248523726",
339
+ "retweets": "0",
340
+ "user_id": "290464615",
341
+ "last_referenced": "2009-11-03 01:58:22",
342
+ "created_at": "2009-11-03 01:58:22",
343
+ "user": {
344
+ "id": "290464615",
345
+ "tweeter": "jojobo1",
346
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
347
+ },
348
+ "story": {
349
+ "url": "http:\/\/www.rosespeaks.com\/rose-blog\/2009\/11\/02\/our-thoughts-and-trying-to-underdstand-and-comfort-our-friend-roxanne\/",
350
+ "title": "Our Thoughts and Trying to Underdstand and Comfort our friend Roxanne",
351
+ "url_count": "0",
352
+ "comment_count": 1
353
+ },
354
+ "url": "http:\/\/tweetmeme.com\/comment\/248523726-14480"
355
+ },
356
+ {
357
+ "id": "14479",
358
+ "text": "The Atl Pink Palace ballroom has been re-created in the #{1}# Atlantic Station Millennium Gate ",
359
+ "url_id": "245661549",
360
+ "retweets": 4,
361
+ "user_id": "179116264",
362
+ "last_referenced": "2009-11-03 01:48:08",
363
+ "created_at": "2009-11-03 01:43:31",
364
+ "media": [{
365
+ "title": "Millennium Gate Museum",
366
+ "lang": "en",
367
+ "media_type": "news",
368
+ "alias": "http:\/\/bit.ly\/4hs0dH",
369
+ "created_at": "2009-11-03T01:43:31+00:00",
370
+ "url_count": 0,
371
+ "comment_count": 0,
372
+ "url": "http:\/\/www.thegateatlanta.com\/",
373
+ "id": 248834722,
374
+ "status": true,
375
+ "nurl": "http:\/\/thegateatlanta.com"
376
+ }],
377
+ "user": {
378
+ "id": "179116264",
379
+ "tweeter": "AtlLifestyles",
380
+ "url": "http:\/\/a1.twimg.com\/profile_images\/370237742\/AH_ballet_normal.jpg"
381
+ },
382
+ "story": {
383
+ "url": "http:\/\/www.leaseluxuryproperties.com\/pink-palace\/",
384
+ "title": "Pink Palace - Lease Luxury Properties",
385
+ "url_count": "4",
386
+ "comment_count": 1
387
+ },
388
+ "url": "http:\/\/tweetmeme.com\/comment\/245661549-14479"
389
+ },
390
+ {
391
+ "id": "14478",
392
+ "text": "i was in it !! by the keenan flag! ",
393
+ "url_id": "248005897",
394
+ "retweets": "1",
395
+ "user_id": "291161562",
396
+ "last_referenced": "2009-11-03 01:40:34",
397
+ "created_at": "2009-11-03 01:40:34",
398
+ "user": {
399
+ "id": "291161562",
400
+ "tweeter": "AlmostFamousTMR",
401
+ "url": "http:\/\/s.twimg.com\/a\/1257199076\/images\/default_profile_3_normal.png"
402
+ },
403
+ "story": {
404
+ "url": "http:\/\/www.palmbeachpost.com\/localnews\/content\/local_news\/epaper\/2009\/11\/02\/1102breakers.html?bypassLSN=y",
405
+ "title": "600 employees at The Breakers will don special T-shirts, stand in mapped grid pattern to create human portrait of the historic hotel",
406
+ "url_count": 4,
407
+ "comment_count": 1
408
+ },
409
+ "url": "http:\/\/tweetmeme.com\/comment\/248005897-14478"
410
+ },
411
+ {
412
+ "id": "14477",
413
+ "text": "RT @astheygrowup As They Grow Up: Introducing Jones Soda Yummy New Holiday Flavors: Reivew & Giveaway Go enter the giveaway!",
414
+ "url_id": "247529862",
415
+ "retweets": "1",
416
+ "user_id": "180309418",
417
+ "last_referenced": "2009-11-03 01:35:08",
418
+ "created_at": "2009-11-03 01:35:08",
419
+ "user": {
420
+ "id": "180309418",
421
+ "tweeter": "Luvdaylilies",
422
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
423
+ },
424
+ "story": {
425
+ "url": "http:\/\/www.astheygrowup.com\/2009\/11\/introducing-jones-soda-yummy-new.html",
426
+ "title": "As They Grow Up: Introducing Jones Soda Yummy New Holiday Flavors: Reivew & Giveaway",
427
+ "url_count": 2,
428
+ "comment_count": 1
429
+ },
430
+ "url": "http:\/\/tweetmeme.com\/comment\/247529862-14477"
431
+ },
432
+ {
433
+ "id": "14476",
434
+ "text": "parceria",
435
+ "url_id": "248793784",
436
+ "retweets": "1",
437
+ "user_id": "291112250",
438
+ "last_referenced": "2009-11-03 01:33:13",
439
+ "created_at": "2009-11-03 01:33:13",
440
+ "user": {
441
+ "id": "291112250",
442
+ "tweeter": "clydownloads",
443
+ "url": "http:\/\/s.twimg.com\/a\/1257205189\/images\/default_profile_2_normal.png"
444
+ },
445
+ "story": {
446
+ "url": "http:\/\/cly-downloads.blogspot.com\/2009\/11\/parceria.html",
447
+ "title": "-: Parceria",
448
+ "url_count": 1,
449
+ "comment_count": 1
450
+ },
451
+ "url": "http:\/\/tweetmeme.com\/comment\/248793784-14476"
452
+ },
453
+ {
454
+ "id": "14475",
455
+ "text": "This is a great article!",
456
+ "url_id": "248806763",
457
+ "retweets": "1",
458
+ "user_id": "51694837",
459
+ "last_referenced": "2009-11-03 01:27:15",
460
+ "created_at": "2009-11-03 01:27:15",
461
+ "user": {
462
+ "id": "51694837",
463
+ "tweeter": "davissm",
464
+ "url": "http:\/\/a3.twimg.com\/profile_images\/150584297\/sigpic06_105pix_normal.jpg"
465
+ },
466
+ "story": {
467
+ "url": "http:\/\/www.masterfacilitatorjournal.com\/skill.html",
468
+ "title": "Master Facilitator Journal | Transmitting Self-Cooperation | Issue #415, October 27, 2009",
469
+ "url_count": 0,
470
+ "comment_count": 1
471
+ },
472
+ "url": "http:\/\/tweetmeme.com\/comment\/248806763-14475"
473
+ },
474
+ {
475
+ "id": "14474",
476
+ "text": "by the way, since I wrote this, a website dedicated to the book has gone up: www.comfortlivingbychristine.com. The book is called Comfort Living: A Back-to-Basics Guide to a More Balanced Lifestyle. There's also The Comfort Living Journal. Come visit!",
477
+ "url_id": "247189559",
478
+ "retweets": "1",
479
+ "user_id": "207147438",
480
+ "last_referenced": "2009-11-03 01:25:18",
481
+ "created_at": "2009-11-03 01:25:18",
482
+ "user": {
483
+ "id": "207147438",
484
+ "tweeter": "comfort_living",
485
+ "url": "http:\/\/a1.twimg.com\/profile_images\/370311738\/closeup.2_normal.JPG"
486
+ },
487
+ "story": {
488
+ "url": "http:\/\/under30ceo.com\/making-lifestyle-design-into-a-business\/",
489
+ "title": "Making Lifestyle Design into a Business | Under30CEO",
490
+ "url_count": 11,
491
+ "comment_count": 1
492
+ },
493
+ "url": "http:\/\/tweetmeme.com\/comment\/247189559-14474"
494
+ },
495
+ {
496
+ "id": "14473",
497
+ "text": "Essa vale a pena ver",
498
+ "url_id": "238668159",
499
+ "retweets": "1",
500
+ "user_id": "288583910",
501
+ "last_referenced": "2009-11-03 01:18:10",
502
+ "created_at": "2009-11-03 01:18:10",
503
+ "user": {
504
+ "id": "288583910",
505
+ "tweeter": "amnoticias",
506
+ "url": "http:\/\/a3.twimg.com\/profile_images\/376854507\/AM_normal.jpg"
507
+ },
508
+ "story": {
509
+ "url": "http:\/\/www.twitvid.com\/181B9",
510
+ "title": "TwitVid - @britneyspears Here's the first video clip from Britney's 3 video... more later today!",
511
+ "url_count": 2311,
512
+ "comment_count": 1
513
+ },
514
+ "url": "http:\/\/tweetmeme.com\/comment\/238668159-14473"
515
+ },
516
+ {
517
+ "id": "14472",
518
+ "text": "RT @LeslieVeg Leslie Loves Veggies: Jones Naturals 12-pack Mixed Case {FUN GIVEAWAY} ",
519
+ "url_id": "246505447",
520
+ "retweets": 2,
521
+ "user_id": "49143852",
522
+ "last_referenced": "2009-11-03 01:14:10",
523
+ "created_at": "2009-11-03 01:08:53",
524
+ "user": {
525
+ "id": "49143852",
526
+ "tweeter": "Nankani",
527
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
528
+ },
529
+ "story": {
530
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/11\/jones-naturals-12-pack-mixed-case-fun.html",
531
+ "title": "Leslie Loves Veggies: Jones Naturals 12-pack Mixed Case {FUN GIVEAWAY}",
532
+ "url_count": 12,
533
+ "comment_count": 1
534
+ },
535
+ "url": "http:\/\/tweetmeme.com\/comment\/246505447-14472"
536
+ },
537
+ {
538
+ "id": "14471",
539
+ "text": "The LARGEST Party of The Year in NORTHWEST GEORGIA ((BLACK FRIDAY))(NOVEMBER 27th). www.blazedentertainment.com #{1}#",
540
+ "url_id": "246534705",
541
+ "retweets": "1",
542
+ "user_id": "291111466",
543
+ "last_referenced": "2009-11-03 01:08:38",
544
+ "created_at": "2009-11-03 01:08:38",
545
+ "media": [{
546
+ "id": "246534705",
547
+ "url": "http:\/\/twitgoo.com\/4njbo",
548
+ "alias": "http:\/\/bit.ly\/1BNRVN",
549
+ "title": "The LARGEST Party of The Year in NORTHWEST GEORGIA ((BLACK FRIDAY))(NOVEMBER 27th). www.blazedentertainment.co",
550
+ "text": "The LARGEST Party of The Year in NORTHWEST GEORGIA ((BLACK FRIDAY))(NOVEMBER 27th). www.blazedentertainment.co http:\/\/twitgoo.com\/4njbo",
551
+ "url_count": "1",
552
+ "comment_count": 1,
553
+ "media_type": "image",
554
+ "last_referenced": "2009-11-03 01:08:38",
555
+ "created_at": "2009-11-02 03:11:07",
556
+ "language": "en",
557
+ "user_id": "291111466",
558
+ "score": "0",
559
+ "nurl": "http:\/\/twitgoo.com\/4njbo",
560
+ "status": true,
561
+ "thumbnail": "http:\/\/tweetmeme.s3.amazonaws.com\/thumbs\/246534705.jpg"
562
+ }],
563
+ "user": {
564
+ "id": "291111466",
565
+ "tweeter": "DJDLOW",
566
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_5_normal.png"
567
+ },
568
+ "story": {
569
+ "url": "http:\/\/twitgoo.com\/4njbo",
570
+ "title": "The LARGEST Party of The Year in NORTHWEST GEORGIA ((BLACK FRIDAY))(NOVEMBER 27th). www.blazedentertainment.co",
571
+ "url_count": "1",
572
+ "comment_count": 1
573
+ },
574
+ "url": "http:\/\/tweetmeme.com\/comment\/246534705-14471"
575
+ },
576
+ {
577
+ "id": "14470",
578
+ "text": "RT @LeslieVeg Leslie Loves Veggies: High Sierra Sport Company ~ Chip Messenger Bag {Giveaway} ",
579
+ "url_id": "245586891",
580
+ "retweets": "1",
581
+ "user_id": "49143852",
582
+ "last_referenced": "2009-11-03 01:07:34",
583
+ "created_at": "2009-11-03 01:07:34",
584
+ "user": {
585
+ "id": "49143852",
586
+ "tweeter": "Nankani",
587
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
588
+ },
589
+ "story": {
590
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/11\/high-sierra-sport-company-chip.html",
591
+ "title": "Leslie Loves Veggies: High Sierra Sport Company ~ Chip Messenger Bag {Giveaway}",
592
+ "url_count": 10,
593
+ "comment_count": 1
594
+ },
595
+ "url": "http:\/\/tweetmeme.com\/comment\/245586891-14470"
596
+ },
597
+ {
598
+ "id": "14469",
599
+ "text": "RT Win a SodaStream Fountain Jet Soda Lover's Start-Up Kit @LeslieVeg Leslie Loves Veggies: :: ends 11\/14",
600
+ "url_id": "243537963",
601
+ "retweets": "1",
602
+ "user_id": "49143852",
603
+ "last_referenced": "2009-11-03 01:05:31",
604
+ "created_at": "2009-11-03 01:05:31",
605
+ "user": {
606
+ "id": "49143852",
607
+ "tweeter": "Nankani",
608
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
609
+ },
610
+ "story": {
611
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/sodastream-fountain-jet-soda-lovers.html",
612
+ "title": "Leslie Loves Veggies: SodaStream Fountain Jet Soda Lover's Start-Up Kit Review & Giveaway",
613
+ "url_count": 25,
614
+ "comment_count": 3
615
+ },
616
+ "url": "http:\/\/tweetmeme.com\/comment\/243537963-14469"
617
+ },
618
+ {
619
+ "id": "14468",
620
+ "text": "#blamedrewscancer Drew beat the cancer! Okay sponsors, pony up with the money\/donations!",
621
+ "url_id": "247966115",
622
+ "retweets": "1",
623
+ "user_id": "129053981",
624
+ "last_referenced": "2009-11-03 01:04:12",
625
+ "created_at": "2009-11-03 01:04:12",
626
+ "user": {
627
+ "id": "129053981",
628
+ "tweeter": "jenisecook",
629
+ "url": "http:\/\/a1.twimg.com\/profile_images\/213234148\/profileJeniseCook_normal.png"
630
+ },
631
+ "story": {
632
+ "url": "http:\/\/www.youtube.com\/watch?v=UwnFJg57K-k",
633
+ "title": "YouTube - I walk out of the Drs office a survivor!!",
634
+ "url_count": 172,
635
+ "comment_count": 1
636
+ },
637
+ "url": "http:\/\/tweetmeme.com\/comment\/247966115-14468"
638
+ },
639
+ {
640
+ "id": "14467",
641
+ "text": "Hello",
642
+ "url_id": "248763815",
643
+ "retweets": "1",
644
+ "user_id": "291160056",
645
+ "last_referenced": "2009-11-03 01:01:53",
646
+ "created_at": "2009-11-03 01:01:53",
647
+ "user": {
648
+ "id": "291160056",
649
+ "tweeter": "Your_Trainer",
650
+ "url": "http:\/\/a1.twimg.com\/profile_images\/463377488\/teil_normal.jpg"
651
+ },
652
+ "story": {
653
+ "url": "http:\/\/www.imss.at\/index.php?option=com_content&amp;view=article&amp;id=47:watch-your-dog-einfuehrung&amp;catid=34:dog&amp;Itemid=56",
654
+ "title": "Watch Your Dog Einf\u00fchrung",
655
+ "url_count": 0,
656
+ "comment_count": 1
657
+ },
658
+ "url": "http:\/\/tweetmeme.com\/comment\/248763815-14467"
659
+ },
660
+ {
661
+ "id": "14466",
662
+ "text": "RT @LeslieVeg Leslie Loves Veggies: Zico Pure Coconut Water Prize Pack {Giveaway} 3 Winners #{1}#",
663
+ "url_id": "236571378",
664
+ "retweets": "1",
665
+ "user_id": "49143852",
666
+ "last_referenced": "2009-11-03 01:01:52",
667
+ "created_at": "2009-11-03 01:01:52",
668
+ "media": [{
669
+ "media_type": "news",
670
+ "title": "Leslie Loves Veggies: Zico Pure Coconut Water Prize Pack {Giveaway} 3 Winners",
671
+ "lang": "unknown",
672
+ "alias": "http:\/\/retwt.me\/1DAnL",
673
+ "created_at": "2009-10-28T17:42:26+00:00",
674
+ "url_count": 15,
675
+ "comment_count": 2,
676
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/zico-pure-coconut-water-prize-pack.html",
677
+ "id": 236571378,
678
+ "status": true,
679
+ "text": "RT @LeslieVeg Leslie Loves Veggies: Zico Pure Coconut Water Prize Pack {Giveaway} 3 Winners http:\/\/retwt.me\/1DAnL",
680
+ "last_referenced": "2009-11-03 01:01:52",
681
+ "user_id": 220733972,
682
+ "spamscore": 7,
683
+ "nurl": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/zico-pure-coconut-water-prize-pack.html",
684
+ "thumbnail": "http:\/\/tweetmeme.s3.amazonaws.com\/thumbs\/236571378.jpg"
685
+ }],
686
+ "user": {
687
+ "id": "49143852",
688
+ "tweeter": "Nankani",
689
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
690
+ },
691
+ "story": {
692
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/zico-pure-coconut-water-prize-pack.html",
693
+ "title": "Leslie Loves Veggies: Zico Pure Coconut Water Prize Pack {Giveaway} 3 Winners",
694
+ "url_count": 15,
695
+ "comment_count": 2
696
+ },
697
+ "url": "http:\/\/tweetmeme.com\/comment\/236571378-14466"
698
+ },
699
+ {
700
+ "id": "14465",
701
+ "text": "RT The Big Popper ~ 2 Gallon Popcorn Tin of Choice {Giveaway} Leslie Loves Veggies So Many Flavors to choose ",
702
+ "url_id": "231569769",
703
+ "retweets": "1",
704
+ "user_id": "49143852",
705
+ "last_referenced": "2009-11-03 01:00:24",
706
+ "created_at": "2009-11-03 01:00:24",
707
+ "user": {
708
+ "id": "49143852",
709
+ "tweeter": "Nankani",
710
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
711
+ },
712
+ "story": {
713
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/big-popper-2-gallon-tin-of-choice.html",
714
+ "title": "Leslie Loves Veggies: The Big Popper ~ 2 Gallon Tin of Choice {Giveaway}",
715
+ "url_count": 37,
716
+ "comment_count": 4
717
+ },
718
+ "url": "http:\/\/tweetmeme.com\/comment\/231569769-14465"
719
+ },
720
+ {
721
+ "id": "14464",
722
+ "text": "RT Annie Chun's Vegan Noodle Bowls Prize Package {Giveaway} 3 Winners Leslie Loves Veggies YUMMY GOOD! ",
723
+ "url_id": "231521553",
724
+ "retweets": "1",
725
+ "user_id": "49143852",
726
+ "last_referenced": "2009-11-03 00:58:19",
727
+ "created_at": "2009-11-03 00:58:19",
728
+ "user": {
729
+ "id": "49143852",
730
+ "tweeter": "Nankani",
731
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
732
+ },
733
+ "story": {
734
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/annie-chuns-vegan-noodle-bowls-giveaway.html",
735
+ "title": "Leslie Loves Veggies: Annie Chun's Vegan Noodle Bowls {Giveaway} 3 Winners",
736
+ "url_count": 19,
737
+ "comment_count": 3
738
+ },
739
+ "url": "http:\/\/tweetmeme.com\/comment\/231521553-14464"
740
+ },
741
+ {
742
+ "id": "14463",
743
+ "text": "RT @leslieveg Amano Artisan Chocolate Giveaway ~ 3 Winners Leslie Loves Veggies~ Winners get 3 FABULOUS Flavors to try! ",
744
+ "url_id": "227897331",
745
+ "retweets": "1",
746
+ "user_id": "49143852",
747
+ "last_referenced": "2009-11-03 00:56:35",
748
+ "created_at": "2009-11-03 00:56:35",
749
+ "user": {
750
+ "id": "49143852",
751
+ "tweeter": "Nankani",
752
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
753
+ },
754
+ "story": {
755
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/amano-artisan-chocolate-giveaway-3.html",
756
+ "title": "Leslie Loves Veggies: Amano Artisan Chocolate Giveaway ~ 3 Winners",
757
+ "url_count": 31,
758
+ "comment_count": 6
759
+ },
760
+ "url": "http:\/\/tweetmeme.com\/comment\/227897331-14463"
761
+ },
762
+ {
763
+ "id": "14462",
764
+ "text": "Showcasing your work in your portfolio site",
765
+ "url_id": "193646697",
766
+ "retweets": "1",
767
+ "user_id": "254004917",
768
+ "last_referenced": "2009-11-03 00:55:52",
769
+ "created_at": "2009-11-03 00:55:52",
770
+ "user": {
771
+ "id": "254004917",
772
+ "tweeter": "dwysefisher",
773
+ "url": "http:\/\/a3.twimg.com\/profile_images\/354688199\/wfc_logo_bw_normal.gif"
774
+ },
775
+ "story": {
776
+ "url": "http:\/\/vandelaydesign.com\/blog\/design\/showcasing-your-portfolio\/",
777
+ "title": "Approaches to Showcasing Work in Your Portfolio Site | Vandelay Design Blog",
778
+ "url_count": 100,
779
+ "comment_count": 1
780
+ },
781
+ "url": "http:\/\/tweetmeme.com\/comment\/193646697-14462"
782
+ },
783
+ {
784
+ "id": "14461",
785
+ "text": "RT @LeslieVeg Leslie Loves Veggies: The Natural Dentist {Giveaway} 3 Winners ",
786
+ "url_id": "227345679",
787
+ "retweets": "1",
788
+ "user_id": "49143852",
789
+ "last_referenced": "2009-11-03 00:55:09",
790
+ "created_at": "2009-11-03 00:55:09",
791
+ "user": {
792
+ "id": "49143852",
793
+ "tweeter": "Nankani",
794
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
795
+ },
796
+ "story": {
797
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/natural-dentist-giveaway-3-winners.html",
798
+ "title": "Leslie Loves Veggies: The Natural Dentist {Giveaway} 3 Winners",
799
+ "url_count": 23,
800
+ "comment_count": 3
801
+ },
802
+ "url": "http:\/\/tweetmeme.com\/comment\/227345679-14461"
803
+ },
804
+ {
805
+ "id": "14460",
806
+ "text": "RT @LeslieVeg Leslie Loves Veggies: L'uvalla ~ Balancing Skin Care System {Giveaway} -$119 Value ",
807
+ "url_id": "221829960",
808
+ "retweets": "1",
809
+ "user_id": "49143852",
810
+ "last_referenced": "2009-11-03 00:53:42",
811
+ "created_at": "2009-11-03 00:53:42",
812
+ "user": {
813
+ "id": "49143852",
814
+ "tweeter": "Nankani",
815
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
816
+ },
817
+ "story": {
818
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/luvalla-balancing-skin-care-system.html",
819
+ "title": "Leslie Loves Veggies: L'uvalla ~ Balancing Skin Care System {Giveaway} -$119 Value",
820
+ "url_count": 52,
821
+ "comment_count": 6
822
+ },
823
+ "url": "http:\/\/tweetmeme.com\/comment\/221829960-14460"
824
+ },
825
+ {
826
+ "id": "14459",
827
+ "text": "RT Annie Chun's Vegan Noodle Bowls Prize Package {Giveaway} 3 Winners Leslie Loves Veggies YUMMY GOOD! #{1}#<br \/><br \/>",
828
+ "url_id": "231521553",
829
+ "retweets": "1",
830
+ "user_id": "49143852",
831
+ "last_referenced": "2009-11-03 00:47:33",
832
+ "created_at": "2009-11-03 00:47:33",
833
+ "media": [{
834
+ "title": "Leslie Loves Veggies: Annie Chun's Vegan Noodle Bowls {Giveaway} 3 Winners",
835
+ "lang": "unknown",
836
+ "media_type": "news",
837
+ "alias": "http:\/\/bit.ly\/421mm1",
838
+ "created_at": "2009-11-03T00:47:33+00:00",
839
+ "url_count": 0,
840
+ "comment_count": 0,
841
+ "url": "http:\/\/tweetmeme.com\/story\/231521553\/leslie-loves-veggies-annie-chuns-vegan-noodle-bowls-giveaway-3-winners\/order\/retweets",
842
+ "id": 248745360,
843
+ "status": true,
844
+ "nurl": "http:\/\/tweetmeme.com\/story\/231521553\/leslie-loves-veggies-annie-chuns-vegan-noodle-bowls-giveaway-3-winners\/order\/retweets"
845
+ }],
846
+ "user": {
847
+ "id": "49143852",
848
+ "tweeter": "Nankani",
849
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
850
+ },
851
+ "story": {
852
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/10\/annie-chuns-vegan-noodle-bowls-giveaway.html",
853
+ "title": "Leslie Loves Veggies: Annie Chun's Vegan Noodle Bowls {Giveaway} 3 Winners",
854
+ "url_count": 19,
855
+ "comment_count": 2
856
+ },
857
+ "url": "http:\/\/tweetmeme.com\/comment\/231521553-14459"
858
+ },
859
+ {
860
+ "id": "14458",
861
+ "text": "WASHINGTONINDEPENDENT.COM - Kyl in No Real Hurry to Extend Unemployment Benefits #{1}#",
862
+ "url_id": "236918336",
863
+ "retweets": "0",
864
+ "user_id": "290464615",
865
+ "last_referenced": "2009-11-03 00:37:29",
866
+ "created_at": "2009-11-03 00:37:29",
867
+ "media": [{
868
+ "title": "Kyl in No Real Hurry to Extend Unemployment Benefits",
869
+ "lang": "en-us",
870
+ "media_type": "news",
871
+ "alias": "http:\/\/retwt.me\/1E9sa",
872
+ "created_at": "2009-10-28T20:32:09+00:00",
873
+ "url_count": 11,
874
+ "comment_count": 2,
875
+ "url": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits",
876
+ "id": 236918336,
877
+ "status": true,
878
+ "media_thumb": 0,
879
+ "last_referenced": "2009-11-03 00:37:29",
880
+ "text": "Kyl in No Real Hurry to Extend Unemployment Benefits http:\/\/tinyurl.com\/yhmmd4l",
881
+ "user_id": 282411337,
882
+ "spamscore": 100,
883
+ "nurl": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits"
884
+ }],
885
+ "user": {
886
+ "id": "290464615",
887
+ "tweeter": "jojobo1",
888
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
889
+ },
890
+ "story": {
891
+ "url": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits",
892
+ "title": "Kyl in No Real Hurry to Extend Unemployment Benefits",
893
+ "url_count": 11,
894
+ "comment_count": 2
895
+ },
896
+ "url": "http:\/\/tweetmeme.com\/comment\/236918336-14458"
897
+ },
898
+ {
899
+ "id": "14457",
900
+ "text": "WASHINGTONINDEPENDENT.COM - Kyl in No Real Hurry to Extend Unemployment Benefits #{1}#",
901
+ "url_id": "236918336",
902
+ "retweets": "0",
903
+ "user_id": "290464615",
904
+ "last_referenced": "2009-11-03 00:36:09",
905
+ "created_at": "2009-11-03 00:36:09",
906
+ "media": [{
907
+ "title": "Kyl in No Real Hurry to Extend Unemployment Benefits",
908
+ "lang": "en-us",
909
+ "media_type": "news",
910
+ "alias": "http:\/\/retwt.me\/1E9sa",
911
+ "created_at": "2009-10-28T20:32:09+00:00",
912
+ "url_count": 11,
913
+ "comment_count": 1,
914
+ "url": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits",
915
+ "id": 236918336,
916
+ "status": true,
917
+ "media_thumb": 0,
918
+ "last_referenced": "2009-11-03 00:36:09",
919
+ "text": "Kyl in No Real Hurry to Extend Unemployment Benefits http:\/\/tinyurl.com\/yhmmd4l",
920
+ "user_id": 282411337,
921
+ "spamscore": 100,
922
+ "nurl": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits"
923
+ }],
924
+ "user": {
925
+ "id": "290464615",
926
+ "tweeter": "jojobo1",
927
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
928
+ },
929
+ "story": {
930
+ "url": "http:\/\/washingtonindependent.com\/65536\/kyl-in-no-real-hurry-to-extend-unemployment-benefits",
931
+ "title": "Kyl in No Real Hurry to Extend Unemployment Benefits",
932
+ "url_count": 11,
933
+ "comment_count": 1
934
+ },
935
+ "url": "http:\/\/tweetmeme.com\/comment\/236918336-14457"
936
+ },
937
+ {
938
+ "id": "14456",
939
+ "text": "manda o convite blz valeuuuuu jpgmarcos@gmail.com",
940
+ "url_id": "239374373",
941
+ "retweets": "1",
942
+ "user_id": "291158989",
943
+ "last_referenced": "2009-11-03 00:35:04",
944
+ "created_at": "2009-11-03 00:35:04",
945
+ "user": {
946
+ "id": "291158989",
947
+ "tweeter": "jpgmarcos",
948
+ "url": "http:\/\/a3.twimg.com\/profile_images\/430827739\/profile_normal.jpg"
949
+ },
950
+ "story": {
951
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
952
+ "title": "Novo Orkut: primeiras impress\u00f5es",
953
+ "url_count": 311,
954
+ "comment_count": 26
955
+ },
956
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14456"
957
+ },
958
+ {
959
+ "id": "14455",
960
+ "text": "grr .. this is confusing ima go take a shower xp",
961
+ "url_id": "248690802",
962
+ "retweets": "1",
963
+ "user_id": "291158295",
964
+ "last_referenced": "2009-11-03 00:34:19",
965
+ "created_at": "2009-11-03 00:34:19",
966
+ "user": {
967
+ "id": "291158295",
968
+ "tweeter": "MCrapeU",
969
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_6_normal.png"
970
+ },
971
+ "story": {
972
+ "url": "http:\/\/twitgoo.com\/4nv5j",
973
+ "title": null,
974
+ "url_count": 1,
975
+ "comment_count": 2
976
+ },
977
+ "url": "http:\/\/tweetmeme.com\/comment\/248690802-14455"
978
+ },
979
+ {
980
+ "id": "14454",
981
+ "text": "WASHINGTONINDEPENDENT.COM - Reid Threatens Midnight Vote on Unemployment Insurance Benefit #{1}#",
982
+ "url_id": "236439479",
983
+ "retweets": "1",
984
+ "user_id": "290464615",
985
+ "last_referenced": "2009-11-03 00:33:22",
986
+ "created_at": "2009-11-03 00:33:22",
987
+ "media": [{
988
+ "id": "236439479",
989
+ "url": "http:\/\/washingtonindependent.com\/65488\/reid-threatens-midnight-vote-on-unemployment-insurance-benefit",
990
+ "alias": "http:\/\/bit.ly\/2Kv8jX",
991
+ "title": "Reid Threatens Midnight Vote on Unemployment Insurance Benefit",
992
+ "text": "Reid Threatens Midnight Vote on Unemployment Insurance Benefit http:\/\/bit.ly\/2Kv8jX",
993
+ "url_count": 10,
994
+ "comment_count": 1,
995
+ "media_type": "news",
996
+ "last_referenced": "2009-11-03 00:33:22",
997
+ "created_at": "2009-10-28 16:43:38",
998
+ "language": "en-us",
999
+ "media_thumb": 0,
1000
+ "user_id": "204829889",
1001
+ "score": "0",
1002
+ "nurl": "http:\/\/washingtonindependent.com\/65488\/reid-threatens-midnight-vote-on-unemployment-insurance-benefit",
1003
+ "status": true
1004
+ }],
1005
+ "user": {
1006
+ "id": "290464615",
1007
+ "tweeter": "jojobo1",
1008
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
1009
+ },
1010
+ "story": {
1011
+ "url": "http:\/\/washingtonindependent.com\/65488\/reid-threatens-midnight-vote-on-unemployment-insurance-benefit",
1012
+ "title": "Reid Threatens Midnight Vote on Unemployment Insurance Benefit",
1013
+ "url_count": 10,
1014
+ "comment_count": 1
1015
+ },
1016
+ "url": "http:\/\/tweetmeme.com\/comment\/236439479-14454"
1017
+ },
1018
+ {
1019
+ "id": "14453",
1020
+ "text": "In this world of voice Social Media is spreading virus tool. It cures as well as makes you sick. You should know how to balance it and use it in a better way!",
1021
+ "url_id": "248000265",
1022
+ "retweets": "1",
1023
+ "user_id": "290381863",
1024
+ "last_referenced": "2009-11-03 00:20:42",
1025
+ "created_at": "2009-11-03 00:20:42",
1026
+ "user": {
1027
+ "id": "290381863",
1028
+ "tweeter": "getinnepal",
1029
+ "url": "http:\/\/a1.twimg.com\/profile_images\/483056562\/getinnepal-logo_normal.jpg"
1030
+ },
1031
+ "story": {
1032
+ "url": "http:\/\/www.marketingpilgrim.com\/2009\/11\/smbs-behind-the-curve-or-right-on-time-with-social-media.html",
1033
+ "title": "SMB\u2019s \u2013 Behind the Curve or Right on Time with Social Media",
1034
+ "url_count": 38,
1035
+ "comment_count": 1
1036
+ },
1037
+ "url": "http:\/\/tweetmeme.com\/comment\/248000265-14453"
1038
+ },
1039
+ {
1040
+ "id": "14452",
1041
+ "text": "buenisimo de mi amiga maricarmen pinto",
1042
+ "url_id": "219003227",
1043
+ "retweets": "1",
1044
+ "user_id": "284173562",
1045
+ "last_referenced": "2009-11-03 00:18:42",
1046
+ "created_at": "2009-11-03 00:18:42",
1047
+ "user": {
1048
+ "id": "284173562",
1049
+ "tweeter": "franciscocampoy",
1050
+ "url": "http:\/\/a1.twimg.com\/profile_images\/353220298\/campoy_profile_pic3_normal.jpg"
1051
+ },
1052
+ "story": {
1053
+ "url": "http:\/\/maricarmenpinto.com\/secretos-redes-sociales\/facebook-marketing-como-arruinar-tu-perfil\/",
1054
+ "title": "Facebook Marketing - Como arruinar tu perfil | Mari Carmen Pinto",
1055
+ "url_count": "1",
1056
+ "comment_count": 1
1057
+ },
1058
+ "url": "http:\/\/tweetmeme.com\/comment\/219003227-14452"
1059
+ },
1060
+ {
1061
+ "id": "14451",
1062
+ "text": "RT @parker_genius Announcing the \"Essential\" Marketing Automation Handbook | B2B Marketing for Faster Sales Blog ",
1063
+ "url_id": "236820313",
1064
+ "retweets": "1",
1065
+ "user_id": "78918222",
1066
+ "last_referenced": "2009-11-03 00:18:36",
1067
+ "created_at": "2009-11-03 00:18:36",
1068
+ "user": {
1069
+ "id": "78918222",
1070
+ "tweeter": "Matt_Genius",
1071
+ "url": "http:\/\/a3.twimg.com\/profile_images\/148689679\/MattHeadshot_normal.gif"
1072
+ },
1073
+ "story": {
1074
+ "url": "http:\/\/www.genius.com\/marketinggeniusblog\/1157\/announcing-the-essential-marketing-automation-handbook.html",
1075
+ "title": "Announcing the \"Essential\" Marketing Automation Handbook | B2B Marketing for Faster Sales Blog",
1076
+ "url_count": 2,
1077
+ "comment_count": 1
1078
+ },
1079
+ "url": "http:\/\/tweetmeme.com\/comment\/236820313-14451"
1080
+ },
1081
+ {
1082
+ "id": "14450",
1083
+ "text": "my moms a selfish bitch D:",
1084
+ "url_id": "248690802",
1085
+ "retweets": "1",
1086
+ "user_id": "291158295",
1087
+ "last_referenced": "2009-11-03 00:18:04",
1088
+ "created_at": "2009-11-03 00:18:04",
1089
+ "user": {
1090
+ "id": "291158295",
1091
+ "tweeter": "MCrapeU",
1092
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_6_normal.png"
1093
+ },
1094
+ "story": {
1095
+ "url": "http:\/\/twitgoo.com\/4nv5j",
1096
+ "title": null,
1097
+ "url_count": 0,
1098
+ "comment_count": 1
1099
+ },
1100
+ "url": "http:\/\/tweetmeme.com\/comment\/248690802-14450"
1101
+ },
1102
+ {
1103
+ "id": "14449",
1104
+ "text": "eeeeeeeee",
1105
+ "url_id": "248676964",
1106
+ "retweets": "1",
1107
+ "user_id": "290850202",
1108
+ "last_referenced": "2009-11-03 00:10:56",
1109
+ "created_at": "2009-11-03 00:10:56",
1110
+ "user": {
1111
+ "id": "290850202",
1112
+ "tweeter": "webmasteryoo",
1113
+ "url": "http:\/\/s.twimg.com\/a\/1257205189\/images\/default_profile_6_normal.png"
1114
+ },
1115
+ "story": {
1116
+ "url": "http:\/\/lespoemesdamour.blogspot.com\/2009\/06\/la-timidite.html",
1117
+ "title": "Les po\u00e8mes d'amour et citations: Po\u00e8mes et timidit\u00e9",
1118
+ "url_count": 1,
1119
+ "comment_count": 1
1120
+ },
1121
+ "url": "http:\/\/tweetmeme.com\/comment\/248676964-14449"
1122
+ },
1123
+ {
1124
+ "id": "14448",
1125
+ "text": "The REVA NXR (NeXt Reva) is a new lithium-ion powered electric car from REVA Electric Car Company, which is scheduled to go into production early 2010.",
1126
+ "url_id": "246876728",
1127
+ "retweets": "1",
1128
+ "user_id": "135452316",
1129
+ "last_referenced": "2009-11-03 00:04:48",
1130
+ "created_at": "2009-11-03 00:04:48",
1131
+ "user": {
1132
+ "id": "135452316",
1133
+ "tweeter": "olino_renewable",
1134
+ "url": "http:\/\/a3.twimg.com\/profile_images\/234238875\/logo_circle_small_normal.jpg"
1135
+ },
1136
+ "story": {
1137
+ "url": "http:\/\/www.olino.org\/us\/articles\/2009\/11\/02\/electric-cars-reva-nxr-and-reva-nxg",
1138
+ "title": "Electric Cars Reva NXR and Reva NXG | OliNo",
1139
+ "url_count": 0,
1140
+ "comment_count": 1
1141
+ },
1142
+ "url": "http:\/\/tweetmeme.com\/comment\/246876728-14448"
1143
+ },
1144
+ {
1145
+ "id": "14447",
1146
+ "text": "euu tbm queroooo' me mandaa um conviiteeeeeeee marcela-marcia@hotmail.com",
1147
+ "url_id": "239374373",
1148
+ "retweets": "1",
1149
+ "user_id": "288914626",
1150
+ "last_referenced": "2009-11-02 23:46:58",
1151
+ "created_at": "2009-11-02 23:46:58",
1152
+ "user": {
1153
+ "id": "288914626",
1154
+ "tweeter": "LahriSantos",
1155
+ "url": "http:\/\/a3.twimg.com\/profile_images\/449662301\/DSC00031_normal.JPG"
1156
+ },
1157
+ "story": {
1158
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
1159
+ "title": "Novo Orkut: primeiras impress\u00f5es",
1160
+ "url_count": 310,
1161
+ "comment_count": 25
1162
+ },
1163
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14447"
1164
+ },
1165
+ {
1166
+ "id": "14446",
1167
+ "text": "me mandaaa um contiitee aew Nessa_amo_deus_2@hotmail.com",
1168
+ "url_id": "239374373",
1169
+ "retweets": "1",
1170
+ "user_id": "288914626",
1171
+ "last_referenced": "2009-11-02 23:42:16",
1172
+ "created_at": "2009-11-02 23:42:16",
1173
+ "user": {
1174
+ "id": "288914626",
1175
+ "tweeter": "LahriSantos",
1176
+ "url": "http:\/\/a3.twimg.com\/profile_images\/449662301\/DSC00031_normal.JPG"
1177
+ },
1178
+ "story": {
1179
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
1180
+ "title": "Novo Orkut: primeiras impress\u00f5es",
1181
+ "url_count": 310,
1182
+ "comment_count": 24
1183
+ },
1184
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14446"
1185
+ },
1186
+ {
1187
+ "id": "14445",
1188
+ "text": "A must read story about $10,500 in pocket change.... #{1}#<br \/>",
1189
+ "url_id": "248595736",
1190
+ "retweets": 2,
1191
+ "user_id": "210400235",
1192
+ "last_referenced": "2009-11-02 23:26:42",
1193
+ "created_at": "2009-11-02 23:23:07",
1194
+ "media": [{
1195
+ "title": "My Pocket Change Business",
1196
+ "lang": "en-us",
1197
+ "media_type": "news",
1198
+ "alias": "http:\/\/bit.ly\/4DKJes",
1199
+ "created_at": "2009-11-02T23:19:20+00:00",
1200
+ "url_count": 0,
1201
+ "comment_count": 2,
1202
+ "url": "http:\/\/www.shaunaharper.com\/my-pocket-change-business.html",
1203
+ "id": 248595736,
1204
+ "status": true,
1205
+ "last_referenced": "2009-11-02 23:23:07",
1206
+ "text": "I am so passionate about inspiration as my faithful readers know. Almost all my businesses fall within that realm. However, I do still have a few investments and business, like my real estate that\u00a0just purely\u00a0income generators. Well, 2 days ago, I just set up my new &#8220;pocket change business&#8221;. My passion and business I am [...]",
1207
+ "media_thumb": 0,
1208
+ "nurl": "http:\/\/shaunaharper.com\/my-pocket-change-business.html"
1209
+ }],
1210
+ "user": {
1211
+ "id": "210400235",
1212
+ "tweeter": "MoreThanStuff",
1213
+ "url": "http:\/\/a1.twimg.com\/profile_images\/317785614\/believe-web_normal.gif"
1214
+ },
1215
+ "story": {
1216
+ "url": "http:\/\/www.shaunaharper.com\/my-pocket-change-business.html",
1217
+ "title": "My Pocket Change Business",
1218
+ "url_count": 0,
1219
+ "comment_count": 2
1220
+ },
1221
+ "url": "http:\/\/tweetmeme.com\/comment\/248595736-14445"
1222
+ },
1223
+ {
1224
+ "id": "14444",
1225
+ "text": "I neeeeeeed it so ambitious",
1226
+ "url_id": "248597759",
1227
+ "retweets": "1",
1228
+ "user_id": "290802138",
1229
+ "last_referenced": "2009-11-02 23:21:50",
1230
+ "created_at": "2009-11-02 23:21:50",
1231
+ "user": {
1232
+ "id": "290802138",
1233
+ "tweeter": "RL1932",
1234
+ "url": "http:\/\/a3.twimg.com\/profile_images\/420908473\/loso_normal.jpg"
1235
+ },
1236
+ "story": {
1237
+ "url": "http:\/\/www.whats-popular.com\/?p=2283",
1238
+ "title": "BBC x Jay-Z x So Ambitious",
1239
+ "url_count": 0,
1240
+ "comment_count": 1
1241
+ },
1242
+ "url": "http:\/\/tweetmeme.com\/comment\/248597759-14444"
1243
+ },
1244
+ {
1245
+ "id": "14443",
1246
+ "text": "A story about $10,000 in Pocket Change!",
1247
+ "url_id": "248595736",
1248
+ "retweets": "1",
1249
+ "user_id": "210400235",
1250
+ "last_referenced": "2009-11-02 23:20:57",
1251
+ "created_at": "2009-11-02 23:20:57",
1252
+ "user": {
1253
+ "id": "210400235",
1254
+ "tweeter": "MoreThanStuff",
1255
+ "url": "http:\/\/a1.twimg.com\/profile_images\/317785614\/believe-web_normal.gif"
1256
+ },
1257
+ "story": {
1258
+ "url": "http:\/\/www.shaunaharper.com\/my-pocket-change-business.html",
1259
+ "title": "My Pocket Change Business",
1260
+ "url_count": 0,
1261
+ "comment_count": 1
1262
+ },
1263
+ "url": "http:\/\/tweetmeme.com\/comment\/248595736-14443"
1264
+ },
1265
+ {
1266
+ "id": "14442",
1267
+ "text": "apple.com\/iphone",
1268
+ "url_id": "248448199",
1269
+ "retweets": "1",
1270
+ "user_id": "291155025",
1271
+ "last_referenced": "2009-11-02 23:03:52",
1272
+ "created_at": "2009-11-02 23:03:52",
1273
+ "user": {
1274
+ "id": "291155025",
1275
+ "tweeter": "SanderdeWaal",
1276
+ "url": "http:\/\/a3.twimg.com\/profile_images\/504413207\/IMG_9941_s_copy_normal.jpg"
1277
+ },
1278
+ "story": {
1279
+ "url": "http:\/\/www.twitlonger.com\/show\/qo3d",
1280
+ "title": "Twitlonger: Kan iemand me helpen met zoeken? Ik ben op zoek naar een nieuwe mobiele telefoon.. Ik stel er echt n",
1281
+ "url_count": "1",
1282
+ "comment_count": 1
1283
+ },
1284
+ "url": "http:\/\/tweetmeme.com\/comment\/248448199-14442"
1285
+ },
1286
+ {
1287
+ "id": "14441",
1288
+ "text": "@varyel\u00bf La opci\u00f2n llamar a un amigo no te sirve? RTvaryel Voy a tener q averiguar a q hora tengo clases ma\u00f1ana, porque bote el horario y no me lo se! :s",
1289
+ "url_id": "248246735",
1290
+ "retweets": "1",
1291
+ "user_id": "288698204",
1292
+ "last_referenced": "2009-11-02 23:03:46",
1293
+ "created_at": "2009-11-02 23:03:46",
1294
+ "user": {
1295
+ "id": "288698204",
1296
+ "tweeter": "cnegrin13",
1297
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
1298
+ },
1299
+ "story": {
1300
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
1301
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
1302
+ "url_count": 0,
1303
+ "comment_count": 12
1304
+ },
1305
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14441"
1306
+ },
1307
+ {
1308
+ "id": "14440",
1309
+ "text": "Been feelin these jaunts for a minute.Startin to love em",
1310
+ "url_id": "245700980",
1311
+ "retweets": "1",
1312
+ "user_id": "242951384",
1313
+ "last_referenced": "2009-11-02 23:02:48",
1314
+ "created_at": "2009-11-02 23:02:48",
1315
+ "user": {
1316
+ "id": "242951384",
1317
+ "tweeter": "ChiSoleCulture",
1318
+ "url": "http:\/\/a3.twimg.com\/profile_images\/418404247\/n53206230_31439506_6464050_normal.jpg"
1319
+ },
1320
+ "story": {
1321
+ "url": "http:\/\/nicekicks.com\/2009\/11\/detailed-images-nike-air-max-lebron-vii-red-carpet\/",
1322
+ "title": "Nike Air Max LeBron VII \"Red Carpet\" Detailed Look | NiceKicks.com",
1323
+ "url_count": 8,
1324
+ "comment_count": 1
1325
+ },
1326
+ "url": "http:\/\/tweetmeme.com\/comment\/245700980-14440"
1327
+ },
1328
+ {
1329
+ "id": "14439",
1330
+ "text": "more than enough, but not as much as I would like. :) ",
1331
+ "url_id": "248553628",
1332
+ "retweets": "1",
1333
+ "user_id": "289276738",
1334
+ "last_referenced": "2009-11-02 23:02:09",
1335
+ "created_at": "2009-11-02 23:02:09",
1336
+ "user": {
1337
+ "id": "289276738",
1338
+ "tweeter": "CouncilmanTech",
1339
+ "url": "http:\/\/a1.twimg.com\/profile_images\/463790246\/ls_7787_headshot09_normal.jpg"
1340
+ },
1341
+ "story": {
1342
+ "url": "http:\/\/g.4uqi.com\/?p=240",
1343
+ "title": "",
1344
+ "url_count": 4,
1345
+ "comment_count": 1
1346
+ },
1347
+ "url": "http:\/\/tweetmeme.com\/comment\/248553628-14439"
1348
+ },
1349
+ {
1350
+ "id": "14438",
1351
+ "text": "See an updated press release...#{1}#<br \/>",
1352
+ "url_id": "200971955",
1353
+ "retweets": "1",
1354
+ "user_id": "70992611",
1355
+ "last_referenced": "2009-11-02 22:56:15",
1356
+ "created_at": "2009-11-02 22:56:15",
1357
+ "media": [{
1358
+ "id": "245877073",
1359
+ "url": "http:\/\/www.prlog.org\/10396468-november-1-2009-new-hope-pa-the-first-annual-autumn-arts-painting.html",
1360
+ "alias": "http:\/\/bit.ly\/4ZQ4t",
1361
+ "title": "November 1, 2009 - New Hope PA, The First Annual Autumn Arts Painting",
1362
+ "text": "The First Annual Autumn Arts Painting http:\/\/bit.ly\/4ZQ4t",
1363
+ "url_count": "4",
1364
+ "comment_count": "0",
1365
+ "media_type": "news",
1366
+ "last_referenced": "2009-11-01 19:50:25",
1367
+ "created_at": "2009-11-01 19:50:25",
1368
+ "language": "unknown",
1369
+ "media_thumb": "0",
1370
+ "user_id": "70992611",
1371
+ "score": "121",
1372
+ "nurl": "http:\/\/prlog.org\/10396468-november-1-2009-new-hope-pa-the-first-annual-autumn-arts-painting.html",
1373
+ "status": true
1374
+ }],
1375
+ "user": {
1376
+ "id": "70992611",
1377
+ "tweeter": "hcooperman1",
1378
+ "url": "http:\/\/a3.twimg.com\/profile_images\/110163383\/BucksCountyGalleryLogo72DPI_normal.jpg"
1379
+ },
1380
+ "story": {
1381
+ "url": "http:\/\/www.facebook.com\/group.php?gid=146871022611#\/group.php?gid=146871022611",
1382
+ "title": "The First Annual Autumn Arts Painting Challenge and Competition on Facebook | Facebook",
1383
+ "url_count": "35",
1384
+ "comment_count": 1
1385
+ },
1386
+ "url": "http:\/\/tweetmeme.com\/comment\/200971955-14438"
1387
+ },
1388
+ {
1389
+ "id": "14437",
1390
+ "text": "Obviously Drugs do have an effect cause the guy that wrote this article needs REHAB",
1391
+ "url_id": "247760397",
1392
+ "retweets": "1",
1393
+ "user_id": "290655506",
1394
+ "last_referenced": "2009-11-02 22:55:19",
1395
+ "created_at": "2009-11-02 22:55:19",
1396
+ "user": {
1397
+ "id": "290655506",
1398
+ "tweeter": "IsIt2012",
1399
+ "url": "http:\/\/a1.twimg.com\/profile_images\/483849828\/SelfPortrait_normal.jpg"
1400
+ },
1401
+ "story": {
1402
+ "url": "http:\/\/www.dailyfinance.com\/2009\/11\/01\/why-cit-groups-bankruptcy-doesnt-matter\/2",
1403
+ "title": "Why CIT Group's bankruptcy doesn't matter -- DailyFinance",
1404
+ "url_count": 0,
1405
+ "comment_count": 1
1406
+ },
1407
+ "url": "http:\/\/tweetmeme.com\/comment\/247760397-14437"
1408
+ },
1409
+ {
1410
+ "id": "14436",
1411
+ "text": "RT@chicaetiqueta Gonz\u00e1lez Gustavo, 41 a\u00f1os, C.I: V-8.680.697 (Secretario General de la Asamblea Legislativa de la bancada de nuevo tiempo del Estado Miranda)",
1412
+ "url_id": "248246735",
1413
+ "retweets": "1",
1414
+ "user_id": "288698204",
1415
+ "last_referenced": "2009-11-02 22:51:35",
1416
+ "created_at": "2009-11-02 22:51:35",
1417
+ "user": {
1418
+ "id": "288698204",
1419
+ "tweeter": "cnegrin13",
1420
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
1421
+ },
1422
+ "story": {
1423
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
1424
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
1425
+ "url_count": 0,
1426
+ "comment_count": 11
1427
+ },
1428
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14436"
1429
+ },
1430
+ {
1431
+ "id": "14435",
1432
+ "text": "\u4e00\u4ebaReTweet\u3002",
1433
+ "url_id": "248503388",
1434
+ "retweets": "1",
1435
+ "user_id": "289709362",
1436
+ "last_referenced": "2009-11-02 22:42:29",
1437
+ "created_at": "2009-11-02 22:42:29",
1438
+ "user": {
1439
+ "id": "289709362",
1440
+ "tweeter": "yskngc",
1441
+ "url": "http:\/\/a1.twimg.com\/profile_images\/50143712\/f_normal.gif"
1442
+ },
1443
+ "story": {
1444
+ "url": "http:\/\/2bda.com\/events\/1942.html",
1445
+ "title": "\u7d20\u76f4\u306a\u5fc3\u2015\u5b66\u3093\u3067\u3082\u8b19\u865a\u3067\u3042\u308c > \u30a4\u30d9\u30f3\u30c8, \u6c17\u4ed8\u304d | \u30ce\u30b0\u30c1\u30ad\u30ab\u30af",
1446
+ "url_count": 0,
1447
+ "comment_count": 1
1448
+ },
1449
+ "url": "http:\/\/tweetmeme.com\/comment\/248503388-14435"
1450
+ },
1451
+ {
1452
+ "id": "14434",
1453
+ "text": "here we go! ",
1454
+ "url_id": "248271966",
1455
+ "retweets": "1",
1456
+ "user_id": "100380878",
1457
+ "last_referenced": "2009-11-02 22:41:33",
1458
+ "created_at": "2009-11-02 22:41:33",
1459
+ "user": {
1460
+ "id": "100380878",
1461
+ "tweeter": "DudeCavanaugh",
1462
+ "url": "http:\/\/a1.twimg.com\/profile_images\/478203054\/twitterProfilePhoto_normal.jpg"
1463
+ },
1464
+ "story": {
1465
+ "url": "http:\/\/mashable.com\/2009\/11\/02\/twitter-money-scam\/",
1466
+ "title": "WARNING: Twitter Money Scams Spreading Through DMs",
1467
+ "url_count": 917,
1468
+ "comment_count": 1
1469
+ },
1470
+ "url": "http:\/\/tweetmeme.com\/comment\/248271966-14434"
1471
+ },
1472
+ {
1473
+ "id": "14433",
1474
+ "text": "Very, very fu",
1475
+ "url_id": "248182887",
1476
+ "retweets": "0",
1477
+ "user_id": "288907646",
1478
+ "last_referenced": "2009-11-02 22:27:49",
1479
+ "created_at": "2009-11-02 22:27:49",
1480
+ "user": {
1481
+ "id": "288907646",
1482
+ "tweeter": "moodyblues1952",
1483
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_5_normal.png"
1484
+ },
1485
+ "story": {
1486
+ "url": "http:\/\/cofcc.org\/2009\/11\/how-to-run-an-adl-style-scam\/",
1487
+ "title": "How to run an ADL style scam.",
1488
+ "url_count": 1,
1489
+ "comment_count": 2
1490
+ },
1491
+ "url": "http:\/\/tweetmeme.com\/comment\/248182887-14433"
1492
+ },
1493
+ {
1494
+ "id": "14432",
1495
+ "text": "Very, very funny.",
1496
+ "url_id": "248182887",
1497
+ "retweets": "1",
1498
+ "user_id": "288907646",
1499
+ "last_referenced": "2009-11-02 22:27:49",
1500
+ "created_at": "2009-11-02 22:27:49",
1501
+ "user": {
1502
+ "id": "288907646",
1503
+ "tweeter": "moodyblues1952",
1504
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_5_normal.png"
1505
+ },
1506
+ "story": {
1507
+ "url": "http:\/\/cofcc.org\/2009\/11\/how-to-run-an-adl-style-scam\/",
1508
+ "title": "How to run an ADL style scam.",
1509
+ "url_count": 1,
1510
+ "comment_count": 2
1511
+ },
1512
+ "url": "http:\/\/tweetmeme.com\/comment\/248182887-14432"
1513
+ },
1514
+ {
1515
+ "id": "14431",
1516
+ "text": "To always try and be a networking hero - it's about making connections for those you are connected to and so on and so on and so on!!",
1517
+ "url_id": "241729804",
1518
+ "retweets": "1",
1519
+ "user_id": "289173637",
1520
+ "last_referenced": "2009-11-02 22:22:07",
1521
+ "created_at": "2009-11-02 22:22:07",
1522
+ "user": {
1523
+ "id": "289173637",
1524
+ "tweeter": "eWNUprSacRegion",
1525
+ "url": "http:\/\/a3.twimg.com\/profile_images\/344355349\/eWN_Local_Logo_normal.jpg"
1526
+ },
1527
+ "story": {
1528
+ "url": "http:\/\/smallbusiness.intuit.com\/blog\/uncategorized\/2009\/10\/lessons-for-the-working-woman.html",
1529
+ "title": "Small Business United Blog",
1530
+ "url_count": 4,
1531
+ "comment_count": 1
1532
+ },
1533
+ "url": "http:\/\/tweetmeme.com\/comment\/241729804-14431"
1534
+ },
1535
+ {
1536
+ "id": "14430",
1537
+ "text": "Thank you for the RT",
1538
+ "url_id": "247589933",
1539
+ "retweets": "1",
1540
+ "user_id": "14739060",
1541
+ "last_referenced": "2009-11-02 22:15:19",
1542
+ "created_at": "2009-11-02 22:15:19",
1543
+ "user": {
1544
+ "id": "14739060",
1545
+ "tweeter": "jeffespo",
1546
+ "url": "http:\/\/a3.twimg.com\/profile_images\/457720803\/scubajeff_normal.jpg"
1547
+ },
1548
+ "story": {
1549
+ "url": "http:\/\/jeffesposito.com\/2009\/11\/02\/the-future-of-twitter\/",
1550
+ "title": "The future of Twitter",
1551
+ "url_count": 2,
1552
+ "comment_count": 1
1553
+ },
1554
+ "url": "http:\/\/tweetmeme.com\/comment\/247589933-14430"
1555
+ },
1556
+ {
1557
+ "id": "14429",
1558
+ "text": "RT @LeslieVeg Leslie Loves Veggies: Erno Laszlo Multi-pHase Blusher {Giveaway} ~ Beautiful At Every Age #{1}# JUST POSTED!<br \/>",
1559
+ "url_id": "248087312",
1560
+ "retweets": "1",
1561
+ "user_id": "49143852",
1562
+ "last_referenced": "2009-11-02 22:09:27",
1563
+ "created_at": "2009-11-02 22:09:27",
1564
+ "media": [{
1565
+ "media_type": "news",
1566
+ "title": "Leslie Loves Veggies: Erno Laszlo Multi-pHase Blusher {Giveaway} ~ Beautiful At Every Age",
1567
+ "lang": "unknown",
1568
+ "alias": "http:\/\/bit.ly\/1ZC5BK",
1569
+ "created_at": "2009-11-02T18:55:52+00:00",
1570
+ "url_count": 5,
1571
+ "comment_count": 1,
1572
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/11\/erno-laszlo-multi-phase-blusher.html",
1573
+ "id": 248087312,
1574
+ "status": true,
1575
+ "text": "RT @LeslieVeg Leslie Loves Veggies: Erno Laszlo Multi-pHase Blusher {Giveaway} ~ Beautiful At Every Age http:\/\/bit.ly\/1ZC5BK JUST POSTED!",
1576
+ "last_referenced": "2009-11-02 22:09:27",
1577
+ "user_id": 34715771,
1578
+ "spamscore": 42,
1579
+ "nurl": "http:\/\/leslielovesveggies.blogspot.com\/2009\/11\/erno-laszlo-multi-phase-blusher.html",
1580
+ "thumbnail": "http:\/\/tweetmeme.s3.amazonaws.com\/thumbs\/248087312.jpg"
1581
+ }],
1582
+ "user": {
1583
+ "id": "49143852",
1584
+ "tweeter": "Nankani",
1585
+ "url": "http:\/\/a1.twimg.com\/profile_images\/477427904\/reverse_cat_normal.jpg"
1586
+ },
1587
+ "story": {
1588
+ "url": "http:\/\/leslielovesveggies.blogspot.com\/2009\/11\/erno-laszlo-multi-phase-blusher.html",
1589
+ "title": "Leslie Loves Veggies: Erno Laszlo Multi-pHase Blusher {Giveaway} ~ Beautiful At Every Age",
1590
+ "url_count": 5,
1591
+ "comment_count": 1
1592
+ },
1593
+ "url": "http:\/\/tweetmeme.com\/comment\/248087312-14429"
1594
+ },
1595
+ {
1596
+ "id": "14428",
1597
+ "text": "La actriz sudafricana Charlize Theron (\"Monster\") est\u00e1 en tratos para un rol estelar en la pel\u00edcula \"Fury Road\".<br \/><br \/>El filme, escrito y dirigido por George Miller, ser\u00e1 la esperada cuarta parte en la saga de \"Mad Max\", la cinta australiana que protagoniz\u00f3 Mel Gibson acerca de un polic\u00eda que, en un futuro apocal\u00edptico, se enfrenta a pandillas y criminales que buscan abusar de los desvalidos.<br \/>",
1598
+ "url_id": "248447017",
1599
+ "retweets": "1",
1600
+ "user_id": "290917620",
1601
+ "last_referenced": "2009-11-02 22:03:50",
1602
+ "created_at": "2009-11-02 22:03:50",
1603
+ "user": {
1604
+ "id": "290917620",
1605
+ "tweeter": "shhaliz",
1606
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1607
+ },
1608
+ "story": {
1609
+ "url": "http:\/\/cinemex.com\/enterate\/noticia22.php?idnoticia=11230",
1610
+ "title": "Cinemex",
1611
+ "url_count": 0,
1612
+ "comment_count": 2
1613
+ },
1614
+ "url": "http:\/\/tweetmeme.com\/comment\/248447017-14428"
1615
+ },
1616
+ {
1617
+ "id": "14427",
1618
+ "text": "La actriz sudafricana Charlize Theron (\"Monster\") est\u00e1 en tratos para un rol estelar en la pel\u00edcula \"Fury Road\".<br \/><br \/>El filme, escrito y dirigido por George Miller, ser\u00e1 la esperada cuarta parte en la saga de \"Mad Max\", la cinta australiana que protagoniz\u00f3 Mel Gibson acerca de un polic\u00eda que, en un futuro apocal\u00edptico, se enfrenta a pandillas y criminales que buscan abusar de los desvalidos.<br \/>",
1619
+ "url_id": "248447017",
1620
+ "retweets": "1",
1621
+ "user_id": "290917620",
1622
+ "last_referenced": "2009-11-02 22:02:53",
1623
+ "created_at": "2009-11-02 22:02:53",
1624
+ "user": {
1625
+ "id": "290917620",
1626
+ "tweeter": "shhaliz",
1627
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1628
+ },
1629
+ "story": {
1630
+ "url": "http:\/\/cinemex.com\/enterate\/noticia22.php?idnoticia=11230",
1631
+ "title": "Cinemex",
1632
+ "url_count": 0,
1633
+ "comment_count": 1
1634
+ },
1635
+ "url": "http:\/\/tweetmeme.com\/comment\/248447017-14427"
1636
+ },
1637
+ {
1638
+ "id": "14426",
1639
+ "text": "How to notify in emergencies blog post",
1640
+ "url_id": "241764383",
1641
+ "retweets": "1",
1642
+ "user_id": "34365988",
1643
+ "last_referenced": "2009-11-02 21:56:55",
1644
+ "created_at": "2009-11-02 21:56:55",
1645
+ "user": {
1646
+ "id": "34365988",
1647
+ "tweeter": "brucecurley",
1648
+ "url": "http:\/\/a1.twimg.com\/profile_images\/374056128\/Bruce_Curley_HS_Black_Ankle_Vineyard_1_normal.png"
1649
+ },
1650
+ "story": {
1651
+ "url": "http:\/\/www.emergencymgmt.com\/emergency-blogs\/alerts\/The-Best-Notification-System.html",
1652
+ "title": "The Best Notification System",
1653
+ "url_count": 5,
1654
+ "comment_count": 1
1655
+ },
1656
+ "url": "http:\/\/tweetmeme.com\/comment\/241764383-14426"
1657
+ },
1658
+ {
1659
+ "id": "14425",
1660
+ "text": "Vi mando il mio logo per il blacksn0w\u2026se a Geohot piacera\u2019 sono disponibile a rilasciare i formati .png<br \/>Per lui questo e altro :)<br \/><br \/>#{1}# ",
1661
+ "url_id": "247843726",
1662
+ "retweets": "1",
1663
+ "user_id": "291151977",
1664
+ "last_referenced": "2009-11-02 21:55:49",
1665
+ "created_at": "2009-11-02 21:55:49",
1666
+ "media": [{
1667
+ "media_type": "image",
1668
+ "alias": "http:\/\/bit.ly\/3LZZjg",
1669
+ "created_at": "2009-11-02T21:55:49+00:00",
1670
+ "url_count": 0,
1671
+ "comment_count": 0,
1672
+ "url": "http:\/\/digilander.libero.it\/sigima1966\/blacksn0wlogocontest.jpg",
1673
+ "id": 248439067,
1674
+ "status": true,
1675
+ "nurl": "http:\/\/digilander.libero.it\/sigima1966\/blacksn0wlogocontest.jpg"
1676
+ }],
1677
+ "user": {
1678
+ "id": "291151977",
1679
+ "tweeter": "Acqua66",
1680
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1681
+ },
1682
+ "story": {
1683
+ "url": "http:\/\/www.ispazio.net\/68572\/mancano-due-giorni-al-rilascio-di-blacksn0w-e-geohot-e-in-cerca-di-un-logo",
1684
+ "title": "Mancano due giorni al rilascio di Blacksn0w e GeoHot \u00e8 in cerca di un logo.",
1685
+ "url_count": 4,
1686
+ "comment_count": 1
1687
+ },
1688
+ "url": "http:\/\/tweetmeme.com\/comment\/247843726-14425"
1689
+ },
1690
+ {
1691
+ "id": "14424",
1692
+ "text": "thank you mate...that\u00b4s absolutely true",
1693
+ "url_id": "248110624",
1694
+ "retweets": "1",
1695
+ "user_id": "18054329",
1696
+ "last_referenced": "2009-11-02 21:55:09",
1697
+ "created_at": "2009-11-02 21:55:09",
1698
+ "user": {
1699
+ "id": "18054329",
1700
+ "tweeter": "josang2a",
1701
+ "url": "http:\/\/a1.twimg.com\/profile_images\/256213342\/josan_foto_aniversario_blog_normal.jpg"
1702
+ },
1703
+ "story": {
1704
+ "url": "http:\/\/www.elblogdelafranquicia.com\/presupuestar-expansion-en-franquicia\/",
1705
+ "title": "Presupuestar Expansi\u00f3n en Franquicia",
1706
+ "url_count": 1,
1707
+ "comment_count": 1
1708
+ },
1709
+ "url": "http:\/\/tweetmeme.com\/comment\/248110624-14424"
1710
+ },
1711
+ {
1712
+ "id": "14423",
1713
+ "text": "I Ibrahim Farahjala Ramadhan,Holding Uganda Passport would like to share my heart with my Brothers and Sisters in the UNITED ARAB EMIRATES, to remember our Father the late Abouna Zayed. Our Father,ZAYED BIN SULTAN AL NAHYAN,The Foundain and The Founder Of the UNITED ARAB EMIRATES,Before I came to the United Arab Emirates,i use to see Big Sponser In Africa Being Sponsor by the Late OUR FATHER, SHEIKH ZAYED BIN SULTAN AL NAHYAN,CHARITABLE ORGANIZATION OF Abu Dhabi,May Allah Bless him in janna,and allah protect his Family,and my Brothers and sisters in The United Arab Emirates,May All Progress Emirates, Ame en.<br \/>ramadhanfara@yahoo.com\/mobile-050-1528514<br \/>",
1714
+ "url_id": "246743858",
1715
+ "retweets": "1",
1716
+ "user_id": "291151732",
1717
+ "last_referenced": "2009-11-02 21:54:38",
1718
+ "created_at": "2009-11-02 21:54:38",
1719
+ "user": {
1720
+ "id": "291151732",
1721
+ "tweeter": "LUKALIK",
1722
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1723
+ },
1724
+ "story": {
1725
+ "url": "http:\/\/twitpic.com\/nz6ef",
1726
+ "title": "Abouna Zayed .OurFather Zayedhttp:\\\\www.ourfatherzayed.ae on Twitpic",
1727
+ "url_count": "1",
1728
+ "comment_count": 2
1729
+ },
1730
+ "url": "http:\/\/tweetmeme.com\/comment\/246743858-14423"
1731
+ },
1732
+ {
1733
+ "id": "14422",
1734
+ "text": "I Ibrahim Farahjala Ramadhan,Holding Uganda Passport would like to share my heart with my Brothers and Sisters in the UNITED ARAB EMIRATES, to remember our Father the late Abouna Zayed. Our Father,ZAYED BIN SULTAN AL NAHYAN,The Foundain and The Founder Of the UNITED ARAB EMIRATES,Before I came to the United Arab Emirates,i use to see Big Sponser In Africa Being Sponsor by the Late OUR FATHER, SHEIKH ZAYED BIN SULTAN AL NAHYAN,CHARITABLE ORGANIZATION OF Abu Dhabi,May Allah Bless him in janna,and allah protect his Family,and my Brothers and sisters in The United Arab Emirates,May All Progress Emirates, Ame en.<br \/>ramadhanfara@yahoo.com\/mobile-050-1528514<br \/>",
1735
+ "url_id": "246743858",
1736
+ "retweets": "1",
1737
+ "user_id": "291151732",
1738
+ "last_referenced": "2009-11-02 21:49:55",
1739
+ "created_at": "2009-11-02 21:49:55",
1740
+ "user": {
1741
+ "id": "291151732",
1742
+ "tweeter": "LUKALIK",
1743
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1744
+ },
1745
+ "story": {
1746
+ "url": "http:\/\/twitpic.com\/nz6ef",
1747
+ "title": "Abouna Zayed .OurFather Zayedhttp:\\\\www.ourfatherzayed.ae on Twitpic",
1748
+ "url_count": "1",
1749
+ "comment_count": 1
1750
+ },
1751
+ "url": "http:\/\/tweetmeme.com\/comment\/246743858-14422"
1752
+ },
1753
+ {
1754
+ "id": "14421",
1755
+ "text": "RT@Mandolfi El Sabado se me puso la piel d gallina cuando vi foto en Ultimas Noticias dond salia una joven llorando sobre el cadaver del novio policia***Honestamente a mi tambi\u00e8n se me eriz\u00f2 la piel",
1756
+ "url_id": "248246735",
1757
+ "retweets": "1",
1758
+ "user_id": "288698204",
1759
+ "last_referenced": "2009-11-02 21:47:32",
1760
+ "created_at": "2009-11-02 21:47:32",
1761
+ "user": {
1762
+ "id": "288698204",
1763
+ "tweeter": "cnegrin13",
1764
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
1765
+ },
1766
+ "story": {
1767
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
1768
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
1769
+ "url_count": 0,
1770
+ "comment_count": 10
1771
+ },
1772
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14421"
1773
+ },
1774
+ {
1775
+ "id": "14420",
1776
+ "text": "boa noite!!!",
1777
+ "url_id": "248331023",
1778
+ "retweets": "1",
1779
+ "user_id": "291151446",
1780
+ "last_referenced": "2009-11-02 21:45:17",
1781
+ "created_at": "2009-11-02 21:45:17",
1782
+ "replies": [{
1783
+ "id": "291149554",
1784
+ "tweeter": "Marcelo_Areado",
1785
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png",
1786
+ "comment_id": "14414"
1787
+ }],
1788
+ "user": {
1789
+ "id": "291151446",
1790
+ "tweeter": "cristianeareado",
1791
+ "url": "http:\/\/a1.twimg.com\/profile_images\/426364396\/DSC04349_normal.JPG"
1792
+ },
1793
+ "story": {
1794
+ "url": "http:\/\/marcelosilkareado.blogspot.com\/",
1795
+ "title": "MARCELO SILK SCREEN",
1796
+ "url_count": 1,
1797
+ "comment_count": 5
1798
+ },
1799
+ "url": "http:\/\/tweetmeme.com\/comment\/248331023-14420"
1800
+ },
1801
+ {
1802
+ "id": "14419",
1803
+ "text": "Tamb\u00e9m quero o novo orkut. Me envie o convite matematico-@hotmail.com",
1804
+ "url_id": "239374373",
1805
+ "retweets": "1",
1806
+ "user_id": "291151087",
1807
+ "last_referenced": "2009-11-02 21:41:24",
1808
+ "created_at": "2009-11-02 21:41:24",
1809
+ "user": {
1810
+ "id": "291151087",
1811
+ "tweeter": "ayre_s",
1812
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
1813
+ },
1814
+ "story": {
1815
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
1816
+ "title": "Novo Orkut: primeiras impress\u00f5es",
1817
+ "url_count": 305,
1818
+ "comment_count": 23
1819
+ },
1820
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14419"
1821
+ },
1822
+ {
1823
+ "id": "14418",
1824
+ "text": "No comment :P But I do know some chatty men...",
1825
+ "url_id": "247399761",
1826
+ "retweets": "1",
1827
+ "user_id": "73303661",
1828
+ "last_referenced": "2009-11-02 21:41:23",
1829
+ "created_at": "2009-11-02 21:41:23",
1830
+ "user": {
1831
+ "id": "73303661",
1832
+ "tweeter": "Marmaba",
1833
+ "url": "http:\/\/a3.twimg.com\/profile_images\/376190053\/martieclose2__2__normal.JPG"
1834
+ },
1835
+ "story": {
1836
+ "url": "http:\/\/withoutwax.tv\/2009\/11\/02\/why-men-dont-listen\/",
1837
+ "title": "Why Men Don\u2019t Listen",
1838
+ "url_count": 22,
1839
+ "comment_count": 2
1840
+ },
1841
+ "url": "http:\/\/tweetmeme.com\/comment\/247399761-14418"
1842
+ },
1843
+ {
1844
+ "id": "14417",
1845
+ "text": "A pretty good idea -- politically doable, economically sound.",
1846
+ "url_id": "241406465",
1847
+ "retweets": "1",
1848
+ "user_id": "258503980",
1849
+ "last_referenced": "2009-11-02 21:38:24",
1850
+ "created_at": "2009-11-02 21:38:24",
1851
+ "user": {
1852
+ "id": "258503980",
1853
+ "tweeter": "KramerHealthCC",
1854
+ "url": "http:\/\/a3.twimg.com\/profile_images\/448827505\/Kramer_Health_Care_Consulting_Logo_normal.gif"
1855
+ },
1856
+ "story": {
1857
+ "url": "http:\/\/healthaffairs.org\/blog\/2009\/10\/30\/a-compromise-proposal-on-financing-health-reform\/",
1858
+ "title": "Health Affairs Blog",
1859
+ "url_count": "9",
1860
+ "comment_count": 1
1861
+ },
1862
+ "url": "http:\/\/tweetmeme.com\/comment\/241406465-14417"
1863
+ },
1864
+ {
1865
+ "id": "14416",
1866
+ "text": "nossa por um instante achei que hoje era domingo kkkk, ",
1867
+ "url_id": "248331023",
1868
+ "retweets": "1",
1869
+ "user_id": "291149554",
1870
+ "last_referenced": "2009-11-02 21:33:45",
1871
+ "created_at": "2009-11-02 21:33:45",
1872
+ "replies": [{
1873
+ "id": "291149554",
1874
+ "tweeter": "Marcelo_Areado",
1875
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png",
1876
+ "comment_id": "14414"
1877
+ }],
1878
+ "user": {
1879
+ "id": "291149554",
1880
+ "tweeter": "Marcelo_Areado",
1881
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png"
1882
+ },
1883
+ "story": {
1884
+ "url": "http:\/\/marcelosilkareado.blogspot.com\/",
1885
+ "title": "MARCELO SILK SCREEN",
1886
+ "url_count": 1,
1887
+ "comment_count": 4
1888
+ },
1889
+ "url": "http:\/\/tweetmeme.com\/comment\/248331023-14416"
1890
+ },
1891
+ {
1892
+ "id": "14415",
1893
+ "text": "RT @tweetmeme NESCAFE Taster\u2019s Choice: Review and Giveaway : Product Reviews by The Experimental Mommy",
1894
+ "url_id": "242567570",
1895
+ "retweets": "1",
1896
+ "user_id": "156014601",
1897
+ "last_referenced": "2009-11-02 21:31:56",
1898
+ "created_at": "2009-11-02 21:31:56",
1899
+ "user": {
1900
+ "id": "156014601",
1901
+ "tweeter": "tamlin8817",
1902
+ "url": "http:\/\/a1.twimg.com\/profile_images\/381182686\/34odhxc.jpg_normal.png"
1903
+ },
1904
+ "story": {
1905
+ "url": "http:\/\/www.thenotsoblog.com\/2009\/10\/nescafe\/",
1906
+ "title": "NESCAFE Taster\u2019s Choice: Review and Giveaway : Product Reviews by The Experimental Mommy",
1907
+ "url_count": 8,
1908
+ "comment_count": 1
1909
+ },
1910
+ "url": "http:\/\/tweetmeme.com\/comment\/242567570-14415"
1911
+ },
1912
+ {
1913
+ "id": "14414",
1914
+ "text": "boa noite!!!",
1915
+ "url_id": "248331023",
1916
+ "retweets": "1",
1917
+ "user_id": "291149554",
1918
+ "last_referenced": "2009-11-02 21:31:45",
1919
+ "created_at": "2009-11-02 21:31:45",
1920
+ "user": {
1921
+ "id": "291149554",
1922
+ "tweeter": "Marcelo_Areado",
1923
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png"
1924
+ },
1925
+ "story": {
1926
+ "url": "http:\/\/marcelosilkareado.blogspot.com\/",
1927
+ "title": "MARCELO SILK SCREEN",
1928
+ "url_count": 1,
1929
+ "comment_count": 3
1930
+ },
1931
+ "url": "http:\/\/tweetmeme.com\/comment\/248331023-14414"
1932
+ },
1933
+ {
1934
+ "id": "14413",
1935
+ "text": "Second time coming here! 2008\/2009. Prices went up this year, it was a muggy day and a muddy place! Customer Service has proven to be horrible. Bought over 8 pumpkins and they are turned rotten. The owner Matt Cooley on the CoolPatchPumpkins.com website said he would \" take care of us \" but never did. He ignored us until i sent a third email the day after halloween telling him that we wont be going back, his response \" THANK YOU !\" . Just goes to show you what type of man this is that runs this place. Prices were up and quality down and customer service non existant. Lost $30, and respect for a local business. oh by the way, filed complaints with the BBB and Dept. of consumer affairs in an attempt to recover my $30 and maybe an apology. BUYER BEWARE!!!!",
1936
+ "url_id": "213606864",
1937
+ "retweets": "0",
1938
+ "user_id": "289165744",
1939
+ "last_referenced": "2009-11-02 21:31:22",
1940
+ "created_at": "2009-11-02 21:31:22",
1941
+ "user": {
1942
+ "id": "289165744",
1943
+ "tweeter": "melesioperez",
1944
+ "url": "http:\/\/a1.twimg.com\/profile_images\/325175650\/logo_2_normal.jpeg"
1945
+ },
1946
+ "story": {
1947
+ "url": "http:\/\/www.yelp.com:80\/biz\/cool-patch-pumpkins-dixon#hrid:YcngyIy6FCiX26Oe-eTLXQ",
1948
+ "title": "Cool Patch Pumpkins - Dixon, CA",
1949
+ "url_count": "1",
1950
+ "comment_count": 1
1951
+ },
1952
+ "url": "http:\/\/tweetmeme.com\/comment\/213606864-14413"
1953
+ },
1954
+ {
1955
+ "id": "14412",
1956
+ "text": "ABOUT TIME ISN'T IT?",
1957
+ "url_id": "237130524",
1958
+ "retweets": "1",
1959
+ "user_id": "290464615",
1960
+ "last_referenced": "2009-11-02 21:27:39",
1961
+ "created_at": "2009-11-02 21:27:39",
1962
+ "user": {
1963
+ "id": "290464615",
1964
+ "tweeter": "jojobo1",
1965
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
1966
+ },
1967
+ "story": {
1968
+ "url": "http:\/\/www.bloggingstocks.com\/2009\/10\/28\/congress-moves-closer-to-extending-unemployment-benefits\/",
1969
+ "title": "Congress moves closer to extending unemployment benefits - BloggingStocks",
1970
+ "url_count": 8,
1971
+ "comment_count": 2
1972
+ },
1973
+ "url": "http:\/\/tweetmeme.com\/comment\/237130524-14412"
1974
+ },
1975
+ {
1976
+ "id": "14411",
1977
+ "text": "ESTAMPARIA MUITO LEGAL!!!!!! hehehe",
1978
+ "url_id": "248331023",
1979
+ "retweets": "1",
1980
+ "user_id": "291149554",
1981
+ "last_referenced": "2009-11-02 21:27:22",
1982
+ "created_at": "2009-11-02 21:27:22",
1983
+ "user": {
1984
+ "id": "291149554",
1985
+ "tweeter": "Marcelo_Areado",
1986
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png"
1987
+ },
1988
+ "story": {
1989
+ "url": "http:\/\/marcelosilkareado.blogspot.com\/",
1990
+ "title": "MARCELO SILK SCREEN",
1991
+ "url_count": 1,
1992
+ "comment_count": 2
1993
+ },
1994
+ "url": "http:\/\/tweetmeme.com\/comment\/248331023-14411"
1995
+ },
1996
+ {
1997
+ "id": "14410",
1998
+ "text": "BLOGGINGSTOCKS.COM - AOL #AOL: Congress moves closer to extending unemployment benefits... #{1}#<br \/><br \/>",
1999
+ "url_id": "237130524",
2000
+ "retweets": "1",
2001
+ "user_id": "290464615",
2002
+ "last_referenced": "2009-11-02 21:27:09",
2003
+ "created_at": "2009-11-02 21:27:09",
2004
+ "media": [{
2005
+ "title": "Congress moves closer to extending unemployment benefits - BloggingStocks",
2006
+ "lang": "unknown",
2007
+ "media_type": "news",
2008
+ "alias": "http:\/\/retwt.me\/1Evdj",
2009
+ "created_at": "2009-10-28T22:07:37+00:00",
2010
+ "url_count": 8,
2011
+ "comment_count": 1,
2012
+ "url": "http:\/\/www.bloggingstocks.com\/2009\/10\/28\/congress-moves-closer-to-extending-unemployment-benefits\/",
2013
+ "id": 237130524,
2014
+ "status": true,
2015
+ "media_thumb": 0,
2016
+ "last_referenced": "2009-11-02 21:27:09",
2017
+ "text": "AOL #AOL: Congress moves closer to extending unemployment benefits... http:\/\/bit.ly\/1PTXCZ",
2018
+ "user_id": 170226489,
2019
+ "spamscore": 2,
2020
+ "nurl": "http:\/\/bloggingstocks.com\/2009\/10\/28\/congress-moves-closer-to-extending-unemployment-benefits"
2021
+ }],
2022
+ "user": {
2023
+ "id": "290464615",
2024
+ "tweeter": "jojobo1",
2025
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_0_normal.png"
2026
+ },
2027
+ "story": {
2028
+ "url": "http:\/\/www.bloggingstocks.com\/2009\/10\/28\/congress-moves-closer-to-extending-unemployment-benefits\/",
2029
+ "title": "Congress moves closer to extending unemployment benefits - BloggingStocks",
2030
+ "url_count": 8,
2031
+ "comment_count": 1
2032
+ },
2033
+ "url": "http:\/\/tweetmeme.com\/comment\/237130524-14410"
2034
+ },
2035
+ {
2036
+ "id": "14409",
2037
+ "text": "marcelo silk screen - AREADO-MG-BRASIL",
2038
+ "url_id": "248331023",
2039
+ "retweets": "1",
2040
+ "user_id": "291149554",
2041
+ "last_referenced": "2009-11-02 21:25:10",
2042
+ "created_at": "2009-11-02 21:25:10",
2043
+ "user": {
2044
+ "id": "291149554",
2045
+ "tweeter": "Marcelo_Areado",
2046
+ "url": "http:\/\/a1.twimg.com\/profile_images\/424914042\/777_normal.png"
2047
+ },
2048
+ "story": {
2049
+ "url": "http:\/\/marcelosilkareado.blogspot.com\/",
2050
+ "title": "MARCELO SILK SCREEN",
2051
+ "url_count": 1,
2052
+ "comment_count": 1
2053
+ },
2054
+ "url": "http:\/\/tweetmeme.com\/comment\/248331023-14409"
2055
+ },
2056
+ {
2057
+ "id": "14408",
2058
+ "text": "Nice Read!",
2059
+ "url_id": "247802481",
2060
+ "retweets": "1",
2061
+ "user_id": "272196600",
2062
+ "last_referenced": "2009-11-02 21:23:51",
2063
+ "created_at": "2009-11-02 21:23:51",
2064
+ "user": {
2065
+ "id": "272196600",
2066
+ "tweeter": "BJinChicago",
2067
+ "url": "http:\/\/a3.twimg.com\/profile_images\/418439777\/510x__3__normal.jpg"
2068
+ },
2069
+ "story": {
2070
+ "url": "http:\/\/www.huffingtonpost.com\/steve-ross\/the-writer-in-chief_b_342242.html",
2071
+ "title": "Steve Ross: The Writer-in-Chief",
2072
+ "url_count": 17,
2073
+ "comment_count": 1
2074
+ },
2075
+ "url": "http:\/\/tweetmeme.com\/comment\/247802481-14408"
2076
+ },
2077
+ {
2078
+ "id": "14407",
2079
+ "text": "manda o convite a\u00e9 Dinho_rjsc@hotmail.com",
2080
+ "url_id": "239374373",
2081
+ "retweets": "1",
2082
+ "user_id": "291150494",
2083
+ "last_referenced": "2009-11-02 21:22:56",
2084
+ "created_at": "2009-11-02 21:22:56",
2085
+ "user": {
2086
+ "id": "291150494",
2087
+ "tweeter": "claudinhoBe",
2088
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_6_normal.png"
2089
+ },
2090
+ "story": {
2091
+ "url": "http:\/\/www.baixaki.com.br\/info\/3011-novo-orkut-primeiras-impressoes.htm",
2092
+ "title": "Novo Orkut: primeiras impress\u00f5es",
2093
+ "url_count": 303,
2094
+ "comment_count": 22
2095
+ },
2096
+ "url": "http:\/\/tweetmeme.com\/comment\/239374373-14407"
2097
+ },
2098
+ {
2099
+ "id": "14406",
2100
+ "text": "Oh geesh. As if I didn't already hate self-absorbed, condescending marketing \"geniuses\" enough already.",
2101
+ "url_id": "95143903",
2102
+ "retweets": "1",
2103
+ "user_id": "291150396",
2104
+ "last_referenced": "2009-11-02 21:21:04",
2105
+ "created_at": "2009-11-02 21:21:04",
2106
+ "user": {
2107
+ "id": "291150396",
2108
+ "tweeter": "davea0511",
2109
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
2110
+ },
2111
+ "story": {
2112
+ "url": "http:\/\/www.theawl.com\/2009\/06\/man-with-terrible-haircut-responsible-for-terrible-commercial",
2113
+ "title": "Man With Terrible Haircut Responsible For Terrible Commercial | The Awl",
2114
+ "url_count": "1",
2115
+ "comment_count": 2
2116
+ },
2117
+ "url": "http:\/\/tweetmeme.com\/comment\/95143903-14406"
2118
+ },
2119
+ {
2120
+ "id": "14405",
2121
+ "text": "Oh geesh. As if I didn't already hate self-absorbed, condescending marketing \"geniuses\" enough already.",
2122
+ "url_id": "95143903",
2123
+ "retweets": "1",
2124
+ "user_id": "291150396",
2125
+ "last_referenced": "2009-11-02 21:21:03",
2126
+ "created_at": "2009-11-02 21:21:03",
2127
+ "user": {
2128
+ "id": "291150396",
2129
+ "tweeter": "davea0511",
2130
+ "url": "http:\/\/s.twimg.com\/a\/1257191498\/images\/default_profile_0_normal.png"
2131
+ },
2132
+ "story": {
2133
+ "url": "http:\/\/www.theawl.com\/2009\/06\/man-with-terrible-haircut-responsible-for-terrible-commercial",
2134
+ "title": "Man With Terrible Haircut Responsible For Terrible Commercial | The Awl",
2135
+ "url_count": "1",
2136
+ "comment_count": 2
2137
+ },
2138
+ "url": "http:\/\/tweetmeme.com\/comment\/95143903-14405"
2139
+ },
2140
+ {
2141
+ "id": "14404",
2142
+ "text": "thanks for the Musings RT!",
2143
+ "url_id": "247388001",
2144
+ "retweets": "1",
2145
+ "user_id": "14772386",
2146
+ "last_referenced": "2009-11-02 21:19:16",
2147
+ "created_at": "2009-11-02 21:19:16",
2148
+ "user": {
2149
+ "id": "14772386",
2150
+ "tweeter": "constructionlaw",
2151
+ "url": "http:\/\/a3.twimg.com\/profile_images\/82701883\/hill-036_normal.jpg"
2152
+ },
2153
+ "story": {
2154
+ "url": "http:\/\/constructionlawva.com\/sometimes-fraud-and-construction-contracts-mix\/",
2155
+ "title": "Sometimes Fraud and Construction Contracts Mix",
2156
+ "url_count": 6,
2157
+ "comment_count": 2
2158
+ },
2159
+ "url": "http:\/\/tweetmeme.com\/comment\/247388001-14404"
2160
+ },
2161
+ {
2162
+ "id": "14403",
2163
+ "text": "Very cool story about an active volcano.",
2164
+ "url_id": "247660323",
2165
+ "retweets": "1",
2166
+ "user_id": "291150237",
2167
+ "last_referenced": "2009-11-02 21:17:40",
2168
+ "created_at": "2009-11-02 21:17:40",
2169
+ "user": {
2170
+ "id": "291150237",
2171
+ "tweeter": "App_Iphone",
2172
+ "url": "http:\/\/a1.twimg.com\/profile_images\/492062052\/0911091914_normal.jpg"
2173
+ },
2174
+ "story": {
2175
+ "url": "http:\/\/www.bukisa.com\/articles\/184928_pedros-active-volcano",
2176
+ "title": "Pedro's active volcano | Bukisa.com",
2177
+ "url_count": 0,
2178
+ "comment_count": 1
2179
+ },
2180
+ "url": "http:\/\/tweetmeme.com\/comment\/247660323-14403"
2181
+ },
2182
+ {
2183
+ "id": "14402",
2184
+ "text": "RT@EXPRESIONTOTAL No les interesa ning\u00fan desarme.. el caos y la desorientaci\u00f3n son la situaci\u00f3n perfecta para instaurar su comunismo.. y \u00e9l lo sabe.***El mejor comentario que he le\u00ecdo hoy por lo rigurosamente cierto",
2185
+ "url_id": "248246735",
2186
+ "retweets": "1",
2187
+ "user_id": "288698204",
2188
+ "last_referenced": "2009-11-02 21:11:21",
2189
+ "created_at": "2009-11-02 21:11:21",
2190
+ "user": {
2191
+ "id": "288698204",
2192
+ "tweeter": "cnegrin13",
2193
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
2194
+ },
2195
+ "story": {
2196
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
2197
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
2198
+ "url_count": 0,
2199
+ "comment_count": 9
2200
+ },
2201
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14402"
2202
+ },
2203
+ {
2204
+ "id": "14401",
2205
+ "text": "RT@teofilomoros ANTECEDENTES: Granada fragmentaria fue hallada en camioneta del secretario del Consejo Legislativo de Miranda Gustavo Gonz\u00e1lez (24.03.09)",
2206
+ "url_id": "248246735",
2207
+ "retweets": "1",
2208
+ "user_id": "288698204",
2209
+ "last_referenced": "2009-11-02 21:08:59",
2210
+ "created_at": "2009-11-02 21:08:59",
2211
+ "user": {
2212
+ "id": "288698204",
2213
+ "tweeter": "cnegrin13",
2214
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
2215
+ },
2216
+ "story": {
2217
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
2218
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
2219
+ "url_count": 0,
2220
+ "comment_count": 8
2221
+ },
2222
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14401"
2223
+ },
2224
+ {
2225
+ "id": "14400",
2226
+ "text": "RT@fhernandezl @cnegrin13 Est\u00e1n matando a la gente y el gobierno pendiente de otros paises.***Correcto...HCH y sus ac\u00f2litos pendientes de inyectarnos el \"Zoocialismo del siglo XXI\" en los tu\u00e8tanos...Que desgracia le cayo a Venezuela",
2227
+ "url_id": "248246735",
2228
+ "retweets": "1",
2229
+ "user_id": "288698204",
2230
+ "last_referenced": "2009-11-02 21:03:22",
2231
+ "created_at": "2009-11-02 21:03:22",
2232
+ "user": {
2233
+ "id": "288698204",
2234
+ "tweeter": "cnegrin13",
2235
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
2236
+ },
2237
+ "story": {
2238
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
2239
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
2240
+ "url_count": 0,
2241
+ "comment_count": 7
2242
+ },
2243
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14400"
2244
+ },
2245
+ {
2246
+ "id": "14399",
2247
+ "text": "RT@elcitizen @carlaangola la felicito por su entrevista con J Sanchez, muy humana***Que educado y respetuoso este Se\u00f1or...1 caballero en toda la extensi\u00f2n de la palabra...La entrevista con Yoanni Sanchez excelente...Ojal\u00e0 pudiera pasar alg\u00f9n audio de ella en Buenas Noches",
2248
+ "url_id": "248246735",
2249
+ "retweets": "1",
2250
+ "user_id": "288698204",
2251
+ "last_referenced": "2009-11-02 21:00:43",
2252
+ "created_at": "2009-11-02 21:00:43",
2253
+ "user": {
2254
+ "id": "288698204",
2255
+ "tweeter": "cnegrin13",
2256
+ "url": "http:\/\/a1.twimg.com\/profile_images\/504827098\/1570871415472ff5b1112d9hn4_normal.jpg"
2257
+ },
2258
+ "story": {
2259
+ "url": "http:\/\/www.twitlonger.com\/show\/56e2ff41d7d9eb0a17b7e1cf30db9860",
2260
+ "title": "Twitlonger: RT@kattracho http:\/\/twitpic.com\/ngnq0 - #Honduras #Venezuela #Nicaragua # Micheletti***En Vzla. a",
2261
+ "url_count": 0,
2262
+ "comment_count": 6
2263
+ },
2264
+ "url": "http:\/\/tweetmeme.com\/comment\/248246735-14399"
2265
+ },
2266
+ {
2267
+ "id": "14398",
2268
+ "text": "Samsung is really bad in service. 10 days with new TV waiting for them to install. No response despite 5 reminders. Never buy Samsung again.",
2269
+ "url_id": "176686641",
2270
+ "retweets": "1",
2271
+ "user_id": "291149446",
2272
+ "last_referenced": "2009-11-02 21:00:40",
2273
+ "created_at": "2009-11-02 21:00:40",
2274
+ "user": {
2275
+ "id": "291149446",
2276
+ "tweeter": "doshi_k",
2277
+ "url": "http:\/\/s.twimg.com\/a\/1256928834\/images\/default_profile_2_normal.png"
2278
+ },
2279
+ "story": {
2280
+ "url": "http:\/\/www.indiaconsumerforum.org\/?p=1041",
2281
+ "title": "Samsung Washing Machine - service complaint | India Consumer Forum",
2282
+ "url_count": "1",
2283
+ "comment_count": 1
2284
+ },
2285
+ "url": "http:\/\/tweetmeme.com\/comment\/176686641-14398"
2286
+ },
2287
+ {
2288
+ "id": "14397",
2289
+ "text": "From Lisa Bloom: Tomorrow's ballot measure tries to undo the Maine Supreme Court's historic protection of gay and lesbian rights there. I have always loved Maine's sense of independence. I hope the voters stand up for the rights of all their neighbors tomorrow to live and love freely and openly. NO ON 1!<br \/><br \/>",
2290
+ "url_id": "210798181",
2291
+ "retweets": "1",
2292
+ "user_id": "287662734",
2293
+ "last_referenced": "2009-11-02 20:56:22",
2294
+ "created_at": "2009-11-02 20:56:22",
2295
+ "user": {
2296
+ "id": "287662734",
2297
+ "tweeter": "reality_voyeur",
2298
+ "url": "http:\/\/a1.twimg.com\/profile_images\/489103104\/eye_fire_normal.jpg"
2299
+ },
2300
+ "story": {
2301
+ "url": "http:\/\/www.twitlonger.com\/show\/c1185cbde6dea8c6387b5d9d316c7f5f",
2302
+ "title": "Twitlonger: but tonight is super wow, STARGATE UNIVERSE SANCTUARY both on syfy, GHOST WHISPERER, MEDIUM AND NUMB",
2303
+ "url_count": "0",
2304
+ "comment_count": 3
2305
+ },
2306
+ "url": "http:\/\/tweetmeme.com\/comment\/210798181-14397"
2307
+ },
2308
+ {
2309
+ "id": "14396",
2310
+ "text": "From Lisa Bloom: Tomorrow's ballot measure tries to undo the Maine Supreme Court's historic protection of gay and lesbian rights there. I have always loved Maine's sense of independence. I hope the voters stand up for the rights of all their neighbors tomorrow to live and love freely and openly. NO ON 1!<br \/><br \/>",
2311
+ "url_id": "210798181",
2312
+ "retweets": "1",
2313
+ "user_id": "287662734",
2314
+ "last_referenced": "2009-11-02 20:55:25",
2315
+ "created_at": "2009-11-02 20:55:25",
2316
+ "user": {
2317
+ "id": "287662734",
2318
+ "tweeter": "reality_voyeur",
2319
+ "url": "http:\/\/a1.twimg.com\/profile_images\/489103104\/eye_fire_normal.jpg"
2320
+ },
2321
+ "story": {
2322
+ "url": "http:\/\/www.twitlonger.com\/show\/c1185cbde6dea8c6387b5d9d316c7f5f",
2323
+ "title": "Twitlonger: but tonight is super wow, STARGATE UNIVERSE SANCTUARY both on syfy, GHOST WHISPERER, MEDIUM AND NUMB",
2324
+ "url_count": "0",
2325
+ "comment_count": 2
2326
+ },
2327
+ "url": "http:\/\/tweetmeme.com\/comment\/210798181-14396"
2328
+ }]
2329
+ }