Skip to content

Instantly share code, notes, and snippets.

@cwarny
Last active December 22, 2015 07:58
Show Gist options
  • Save cwarny/6441347 to your computer and use it in GitHub Desktop.
Save cwarny/6441347 to your computer and use it in GitHub Desktop.
Sharing Patterns

This Processing sketch visualizes how a New York Times article gets shared and discussed about on Twitter. The x-axis is time, the y-axis is the depth of a Twitter thread. Tweeting about the article has a "depth" of 1. Then, if the tweet gets retweeted or replied to, we reach higher story depths. Original tweets are marked as blue dots, retweets as red squares and replies as green triangles. The origin of the chart is the moment the New York Times article was published.

<!DOCTYPE html>
<html>
<head>
<title>Cascade</title>
<script src="http://cloud.github.com/downloads/processing-js/processing-js/processing-1.4.1.min.js"></script>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
</head>
<body>
<script type="application/processing" data-processing-target="pjs">
ArrayList<Tweet> rootTweets = new ArrayList();
var minDate = Date.parse("27 August 2013 11:39");
var maxDate = Date.parse("1 January 1900");
int maxFollowersCount = MIN_INT;
int maxDepth = MIN_INT;
void setup() {
size(962,502);
fill(255);
for (var tweet in tweets) {
rootTweets.add(new Tweet(tweets[tweet], 0));
}
for (Tweet t : rootTweets) {
t.setPosition(0);
t.setTiming();
}
}
void draw() {
background(0);
for (Tweet t : rootTweets) {
t.update();
t.render();
stroke(230,230,230,100);
strokeWeight(0);
if (t.timing < frameCount) line(0,height,t.pos.x,t.pos.y);
}
drawTimeAxis();
drawTimeArrow();
}
void drawTimeAxis() {
long timeInterval = maxDate - minDate;
int days = ceil(timeInterval / 86400000); // There are 86,400,000 milliseconds in a day
for (int i=1; i<=days; i++) {
float x = map(i, 0, days, 0, width);
float y = height - 10;
stroke(255,200);
strokeWeight(1);
line(x, y, x, height);
fill(237,248,251);
textAlign(CENTER, BOTTOM);
text("+" + str(i) + " day(s)", x, y);
}
}
void drawTimeArrow() {
float x = map(frameCount, 0, 500, 0, width);
stroke(255,100);
strokeWeight(0);
line(x, 0, x, height);
}
class Tweet {
int storyDepth;
int id;
String user;
int followers_count;
var created_at;
float timing;
String text;
boolean isReply, isRetweet;
ArrayList<Tweet> children = new ArrayList();
PVector pos,tpos;
int s = 8; // Size of the rendered shape symbolizing the type of tweet
Tweet(var tweet, int depth) {
depth++;
storyDepth = depth;
id = tweet.id;
text = tweet.text;
user = tweet.user.screen_name;
followers_count = tweet.user.followers_count;
created_at = Date.parse(tweet.created_at);
isReply = tweet.in_reply_to_status_id ? true : false;
isRetweet = tweet.hasOwnProperty("retweeted_status");
if (tweet.children && tweet.children.length > 0) {
for (var i=0; i<tweet.children.length; i++) {
children.add(new Tweet(tweet.children[i], depth));
}
}
if (created_at > maxDate) {
maxDate = created_at;
}
if (storyDepth > maxDepth) {
maxDepth = storyDepth;
}
if (followers_count > maxFollowersCount) {
maxFollowersCount = followers_count;
}
}
void setPosition(float parentX) {
float posX = parentX;
float posY = map(storyDepth-1, 0, maxDepth, height, 0);
pos = new PVector(posX,posY);
float tposX = map(created_at, minDate, maxDate, 0, width);
float tposY = map(storyDepth, 0, maxDepth, height, 0);
tpos = new PVector(tposX,tposY);
for (Tweet child : children) {
child.setPosition(tposX);
}
}
void setTiming() {
timing = map(created_at, minDate, maxDate, 0, 500);
for (Tweet child : children) {
child.setTiming();
}
}
void update() {
if (timing < frameCount) {
pos.x = lerp(pos.x,tpos.x,0.1);
pos.y = lerp(pos.y,tpos.y,0.1);
for (Tweet child : children) {
child.update();
}
}
}
void render() {
if (timing < frameCount) {
pushMatrix();
translate(pos.x,pos.y);
noStroke();
rectMode(CENTER);
if (isRetweet) {
fill(189,0,38);
rect(0,0,s,s);
} else if (isReply) {
fill(49,163,84);
triangle(-s/2,s/(2*sqrt(3)),0,-s/sqrt(3),s/2,s/(2*sqrt(3)));
} else {
fill(44,127,184);
ellipse(0,0,s,s);
}
popMatrix();
for (Tweet child : children) {
stroke(230,230,230,220);
strokeWeight(0);
if (child.timing < frameCount) line(pos.x,pos.y,child.pos.x,child.pos.y);
}
}
for (Tweet child : children) {
child.render();
}
}
}
</script>
<canvas id="pjs"></canvas>
<script type="application/javascript">
var tweets;
$.ajax({
dataType: "json",
url: "tweets.min.json",
async: false,
success: function(response) {
tweets = response;
}
});
</script>
</body>
</html>
[{"contributors": null, "truncated": false, "text": "RT @EuroBanks: The Real Trouble With Economics http://t.co/YHh29OQ07T", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 373081964388958208, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "EuroBanks", "id": 1376671459, "name": "Euro-banks", "id_str": "1376671459"}], "hashtags": [], "urls": [{"url": "http://t.co/YHh29OQ07T", "indices": [47, 69], "expanded_url": "http://ow.ly/onm4A", "display_url": "ow.ly/onm4A"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "373081964388958208", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/YHh29OQ07T", "in_reply_to_status_id": null, "id": 373066270620790784, "favorite_count": 1, "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/YHh29OQ07T", "indices": [32, 54], "expanded_url": "http://ow.ly/onm4A", "display_url": "ow.ly/onm4A"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "373066270620790784", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 1376671459, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/ea0dEsbyWx", "indices": [0, 22], "expanded_url": "http://euro-banks.com/landing/", "display_url": "euro-banks.com/landing/"}]}, "description": {"urls": []}}, "followers_count": 1657, "protected": false, "location": "London", "default_profile_image": false, "id_str": "1376671459", "utc_offset": null, "statuses_count": 972, "description": "EZ, ECB, EUR and European banks. Tweet about mkts, econ data, other interesting stuff. RT=interesting. Views exclusively my own", "friends_count": 1258, "profile_link_color": "000000", "profile_image_url": "http://a0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1376671459/1375831482", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Euro-banks", "lang": "en", "profile_background_tile": false, "favourites_count": 49, "screen_name": "EuroBanks", "url": "http://t.co/ea0dEsbyWx", "created_at": "Wed Apr 24 10:04:08 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 41}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 12:55:04 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 847376136, "verified": false, "profile_text_color": "4F3F38", "profile_image_url_https": "https://si0.twimg.com/profile_images/2651627110/d8fa8f18c90426d8d9b62dadc5f5c8b9_normal.jpeg", "profile_sidebar_fill_color": "140E0A", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 1201, "protected": false, "location": "Buenos Aires, Argentina", "default_profile_image": false, "id_str": "847376136", "utc_offset": -10800, "statuses_count": 46804, "description": "Periodista, con gusto por las letras y las artes. Seducido por la Historia y la Filosof\u00eda.", "friends_count": 2001, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2651627110/d8fa8f18c90426d8d9b62dadc5f5c8b9_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/676685598/b68b5a2e133b5a61c169f7a44d3b4158.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/847376136/1375148390", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/676685598/b68b5a2e133b5a61c169f7a44d3b4158.jpeg", "name": "Rodolfo Jard\u00f3n", "lang": "es", "profile_background_tile": true, "favourites_count": 946, "screen_name": "_rjardon", "url": null, "created_at": "Wed Sep 26 13:13:15 +0000 2012", "contributors_enabled": false, "time_zone": "Buenos Aires", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 27}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 13:57:26 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Analysis of econ policy in real-time\nhttp://t.co/A9IvaaxcES", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 373067183439368192, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/A9IvaaxcES", "indices": [37, 59], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "373067183439368192", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1551046046, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 0, "protected": false, "location": "", "default_profile_image": true, "id_str": "1551046046", "utc_offset": null, "statuses_count": 2, "description": "", "friends_count": 0, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Lyle Scruggs", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "condorcetsd", "url": null, "created_at": "Thu Jun 27 16:51:47 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 12:58:42 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/YHh29OQ07T", "in_reply_to_status_id": null, "children": [{"contributors": null, "truncated": false, "text": "RT @EuroBanks: The Real Trouble With Economics http://t.co/YHh29OQ07T", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 373081964388958208, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "EuroBanks", "id": 1376671459, "name": "Euro-banks", "id_str": "1376671459"}], "hashtags": [], "urls": [{"url": "http://t.co/YHh29OQ07T", "indices": [47, 69], "expanded_url": "http://ow.ly/onm4A", "display_url": "ow.ly/onm4A"}]}, "in_reply_to_screen_name": null, "id_str": "373081964388958208", "retweet_count": 1, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/YHh29OQ07T", "in_reply_to_status_id": null, "id": 373066270620790784, "favorite_count": 1, "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/YHh29OQ07T", "indices": [32, 54], "expanded_url": "http://ow.ly/onm4A", "display_url": "ow.ly/onm4A"}]}, "in_reply_to_screen_name": null, "id_str": "373066270620790784", "retweet_count": 1, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 1376671459, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/ea0dEsbyWx", "indices": [0, 22], "expanded_url": "http://euro-banks.com/landing/", "display_url": "euro-banks.com/landing/"}]}, "description": {"urls": []}}, "followers_count": 1657, "protected": false, "location": "London", "default_profile_image": false, "id_str": "1376671459", "utc_offset": null, "statuses_count": 972, "description": "EZ, ECB, EUR and European banks. Tweet about mkts, econ data, other interesting stuff. RT=interesting. Views exclusively my own", "friends_count": 1258, "profile_link_color": "000000", "profile_image_url": "http://a0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1376671459/1375831482", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Euro-banks", "lang": "en", "profile_background_tile": false, "favourites_count": 49, "screen_name": "EuroBanks", "url": "http://t.co/ea0dEsbyWx", "created_at": "Wed Apr 24 10:04:08 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "000000", "default_profile": false, "following": null, "listed_count": 41}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 12:55:04 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 847376136, "verified": false, "profile_text_color": "4F3F38", "profile_image_url_https": "https://si0.twimg.com/profile_images/2651627110/d8fa8f18c90426d8d9b62dadc5f5c8b9_normal.jpeg", "profile_sidebar_fill_color": "140E0A", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 1201, "protected": false, "location": "Buenos Aires, Argentina", "default_profile_image": false, "id_str": "847376136", "utc_offset": -10800, "statuses_count": 46804, "description": "Periodista, con gusto por las letras y las artes. Seducido por la Historia y la Filosof\u00eda.", "friends_count": 2001, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2651627110/d8fa8f18c90426d8d9b62dadc5f5c8b9_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/676685598/b68b5a2e133b5a61c169f7a44d3b4158.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/847376136/1375148390", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/676685598/b68b5a2e133b5a61c169f7a44d3b4158.jpeg", "name": "Rodolfo Jard\u00f3n", "lang": "es", "profile_background_tile": true, "favourites_count": 946, "screen_name": "_rjardon", "url": null, "created_at": "Wed Sep 26 13:13:15 +0000 2012", "contributors_enabled": false, "time_zone": "Buenos Aires", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": null, "listed_count": 27}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 13:57:26 +0000 2013", "in_reply_to_status_id_str": null, "place": null}], "favorite_count": 1, "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", "retweeted": false, "coordinates": null, "id": 373066270620790784, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/YHh29OQ07T", "indices": [32, 54], "expanded_url": "http://ow.ly/onm4A", "display_url": "ow.ly/onm4A"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "373066270620790784", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 1376671459, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/ea0dEsbyWx", "indices": [0, 22], "expanded_url": "http://euro-banks.com/landing/", "display_url": "euro-banks.com/landing/"}]}, "description": {"urls": []}}, "followers_count": 1657, "protected": false, "location": "London", "default_profile_image": false, "id_str": "1376671459", "utc_offset": null, "statuses_count": 972, "description": "EZ, ECB, EUR and European banks. Tweet about mkts, econ data, other interesting stuff. RT=interesting. Views exclusively my own", "friends_count": 1258, "profile_link_color": "000000", "profile_image_url": "http://a0.twimg.com/profile_images/3689466701/b7d1952103a2138cd40408f0d31256e8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1376671459/1375831482", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Euro-banks", "lang": "en", "profile_background_tile": false, "favourites_count": 49, "screen_name": "EuroBanks", "url": "http://t.co/ea0dEsbyWx", "created_at": "Wed Apr 24 10:04:08 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 41}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 12:55:04 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Je hoort tegenwoordig vaak dat economie geen wetenschap is. Onzin, de beoefenaren zijn geen wetenschappers: http://t.co/qPQQFxNWzJ", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", "retweeted": false, "coordinates": null, "id": 373041113931599872, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/qPQQFxNWzJ", "indices": [108, 130], "expanded_url": "http://nyti.ms/1dSCXOD", "display_url": "nyti.ms/1dSCXOD"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "373041113931599872", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 20316997, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/542441487/Koekebakker2_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/wYwXvS1uYj", "indices": [0, 22], "expanded_url": "http://vgmwwzdd.blogspot.com", "display_url": "vgmwwzdd.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 642, "protected": false, "location": "Wageningen, Netherlands", "default_profile_image": false, "id_str": "20316997", "utc_offset": 7200, "statuses_count": 14148, "description": "Systeembeheerder, maar twitter en blog over politiek. Volg altijd terug, geen bedrijven; links \u00e8n rechts welkom. Schrijf voor Sargasso", "friends_count": 876, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/542441487/Koekebakker2_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/55882386/531565579ROqnij_fs.jpg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/55882386/531565579ROqnij_fs.jpg", "name": "Michel Verbeek", "lang": "en", "profile_background_tile": false, "favourites_count": 13, "screen_name": "koekebakker", "url": "http://t.co/wYwXvS1uYj", "created_at": "Sat Feb 07 16:13:35 +0000 2009", "contributors_enabled": false, "time_zone": "Amsterdam", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 28}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "nl", "created_at": "Thu Aug 29 11:15:06 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 373030329520373761, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "373030329520373761", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 54993671, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1749755327/jose_maria_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 106, "protected": false, "location": "", "default_profile_image": false, "id_str": "54993671", "utc_offset": 7200, "statuses_count": 625, "description": "", "friends_count": 182, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1749755327/jose_maria_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/578177816/tj41szt8zrxdfwdumwib.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/54993671/1365095244", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/578177816/tj41szt8zrxdfwdumwib.jpeg", "name": "Jos\u00e9 Mar\u00eda", "lang": "es", "profile_background_tile": true, "favourites_count": 90, "screen_name": "Jose_maria92", "url": null, "created_at": "Wed Jul 08 19:06:29 +0000 2009", "contributors_enabled": false, "time_zone": "Madrid", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 10:32:15 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372954167100194816, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372954167100194816", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 16195264, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000203184091/53e264cce9595f9d0c1e67424a042547_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 1534, "protected": false, "location": "Yoga Astrophysics", "default_profile_image": false, "id_str": "16195264", "utc_offset": -18000, "statuses_count": 4434, "description": "BAPTISTE / Linked Unity / Word / Sound / Power", "friends_count": 858, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000203184091/53e264cce9595f9d0c1e67424a042547_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000035775383/4a38c97d4181d12ba736a678a9f182be.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/16195264/1369537117", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000035775383/4a38c97d4181d12ba736a678a9f182be.jpeg", "name": "SwamiMaharajah", "lang": "en", "profile_background_tile": true, "favourites_count": 703, "screen_name": "SwamiMaharajah", "url": null, "created_at": "Tue Sep 09 01:01:53 +0000 2008", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 34}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 05:29:37 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman: The Real Trouble With Economics http://t.co/wcIGQLtfvx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372889215194779649, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/wcIGQLtfvx", "indices": [41, 63], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372889215194779649", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 351014677, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3034018293/a745f2c77f6445bc37926917e49be120_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/QwpuDXfj4o", "indices": [0, 22], "expanded_url": "http://www.andersonlyall.com", "display_url": "andersonlyall.com"}]}, "description": {"urls": []}}, "followers_count": 80, "protected": false, "location": "Toronto, Canada", "default_profile_image": false, "id_str": "351014677", "utc_offset": -18000, "statuses_count": 3008, "description": "Partner at Anderson Lyall Consulting Group. Linking economics, markets, and processes to create a competitive advantage for clients.", "friends_count": 165, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3034018293/a745f2c77f6445bc37926917e49be120_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Stewart Anderson", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "AndersonStewart", "url": "http://t.co/QwpuDXfj4o", "created_at": "Mon Aug 08 17:21:40 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Thu Aug 29 01:11:31 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics\n\nIt's the economists, stupid. http://t.co/1QGnNFKfly", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", "retweeted": false, "coordinates": null, "id": 372829364993261569, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/1QGnNFKfly", "indices": [62, 84], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372829364993261569", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 16474992, "verified": false, "profile_text_color": "0C3E53", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166468159/6280bf26-6f7f-4689-82ad-6d538d0db77e_normal.jpg", "profile_sidebar_fill_color": "CCFFF9", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 4435, "protected": false, "location": "NYC, U$A", "default_profile_image": false, "id_str": "16474992", "utc_offset": -14400, "statuses_count": 156000, "description": "Tai chi, Yoga, Cooking, Long walks", "friends_count": 4874, "profile_link_color": "FF0000", "profile_image_url": "http://a0.twimg.com/profile_images/1166468159/6280bf26-6f7f-4689-82ad-6d538d0db77e_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", "profile_background_color": "BADFCD", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme4/bg.gif", "name": "Winter_Thur", "lang": "en", "profile_background_tile": false, "favourites_count": 87, "screen_name": "winterthur", "url": null, "created_at": "Fri Sep 26 21:13:57 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "F2E195", "default_profile": false, "following": false, "listed_count": 290}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 21:13:42 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "There is a pattern with failed economic theories. Once they are disproved by a reality test, they mutate and... http://t.co/JP7gCqyrl4", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>", "retweeted": false, "coordinates": null, "id": 372768291661807616, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/JP7gCqyrl4", "indices": [112, 134], "expanded_url": "http://fb.me/1ncMhGOM2", "display_url": "fb.me/1ncMhGOM2"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372768291661807616", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 49007447, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2551854658/8zva3jknsf6xtsrbnukt_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 26, "protected": false, "location": "Israel", "default_profile_image": false, "id_str": "49007447", "utc_offset": 10800, "statuses_count": 1465, "description": "", "friends_count": 128, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2551854658/8zva3jknsf6xtsrbnukt_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Alexander Barabash", "lang": "en", "profile_background_tile": false, "favourites_count": 2, "screen_name": "barabash", "url": null, "created_at": "Sat Jun 20 13:36:03 +0000 2009", "contributors_enabled": false, "time_zone": "Jerusalem", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 17:11:01 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman: The real trouble with economics http://t.co/oAy9ANFJjr", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Safari on iOS</a>", "retweeted": false, "coordinates": null, "id": 372767879407886336, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/oAy9ANFJjr", "indices": [41, 63], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372767879407886336", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 596011347, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2900956581/b269de88fe07544c8847f78087403608_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 270, "protected": false, "location": "", "default_profile_image": false, "id_str": "596011347", "utc_offset": null, "statuses_count": 7990, "description": "Blue dot in a sea of southern red. Views expressed are mine.", "friends_count": 310, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2900956581/b269de88fe07544c8847f78087403608_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Bob Reynolds", "lang": "en", "profile_background_tile": false, "favourites_count": 261, "screen_name": "sbreynolds314", "url": null, "created_at": "Thu May 31 23:40:31 +0000 2012", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 17:09:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372758882567086080, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372758882567086080", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 593280118, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3777438889/a92edc5af09caf8a8cb5c6183f9faabe_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 8, "protected": false, "location": "Pearl of Africa", "default_profile_image": false, "id_str": "593280118", "utc_offset": 10800, "statuses_count": 126, "description": "", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3777438889/a92edc5af09caf8a8cb5c6183f9faabe_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/593280118/1358257223", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "EDWARD TENYWA SAGE", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "ED_SAGE", "url": null, "created_at": "Tue May 29 02:34:50 +0000 2012", "contributors_enabled": false, "time_zone": "Nairobi", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 16:33:37 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372754643832418305, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372754643832418305", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 233985400, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3060132306/8f7b86a1088b3c584e59967ccfb7a06f_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/08c3950XWV", "indices": [0, 22], "expanded_url": "http://antizendictionary.blogspot.com", "display_url": "antizendictionary.blogspot.com"}]}, "description": {"urls": [{"url": "http://t.co/zgwr2gG8", "indices": [61, 81], "expanded_url": "http://www.nndb.com/people/974/000084722/", "display_url": "nndb.com/people/974/000\u2026"}]}}, "followers_count": 924, "protected": false, "location": "Handbasket, Hell", "default_profile_image": false, "id_str": "233985400", "utc_offset": -18000, "statuses_count": 37986, "description": "There is NO leadership. Paraphrasing Joseph Stiglitz - NNDB: http://t.co/zgwr2gG8 ) BookTV program on The Price of Inequality.", "friends_count": 1544, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3060132306/8f7b86a1088b3c584e59967ccfb7a06f_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/287802858/2570572193_d9fe3ec51e_o_1__colorullsion1.JPG", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/287802858/2570572193_d9fe3ec51e_o_1__colorullsion1.JPG", "name": "Not On Tw-tt-r", "lang": "en", "profile_background_tile": false, "favourites_count": 10045, "screen_name": "NotOnTwtr", "url": "http://t.co/08c3950XWV", "created_at": "Tue Jan 04 15:47:35 +0000 2011", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 27}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 16:16:47 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372749345147584512, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372749345147584512", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 36396454, "verified": false, "profile_text_color": "A14D81", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431657530/202990_1068662672_2538347_n_normal.jpg", "profile_sidebar_fill_color": "F6D3B3", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/0k5HqttKTR", "indices": [0, 22], "expanded_url": "http://dotsie01.blogspot.com", "display_url": "dotsie01.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 316, "protected": false, "location": "Baton Rouge, LA, USA", "default_profile_image": false, "id_str": "36396454", "utc_offset": -14400, "statuses_count": 3042, "description": "Freelance journalist, gumbo chef extraordinaire, liberal activist, Fall Fellow Obama For America 2012, Publicity Chairwoman for Baton Rouge Democratic Women", "friends_count": 2001, "profile_link_color": "FF4D4C", "profile_image_url": "http://a0.twimg.com/profile_images/1431657530/202990_1068662672_2538347_n_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/332317103/x5aaa9d333c2edc82f4df06cab6b4991.png", "profile_background_color": "624D74", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/332317103/x5aaa9d333c2edc82f4df06cab6b4991.png", "name": "Dorothy Collins", "lang": "en", "profile_background_tile": true, "favourites_count": 87, "screen_name": "dotsie01", "url": "http://t.co/0k5HqttKTR", "created_at": "Wed Apr 29 16:15:53 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "CBBBBC", "default_profile": false, "following": false, "listed_count": 6}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 15:55:43 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.tweetcaster.com\" rel=\"nofollow\">TweetCaster for Android</a>", "retweeted": false, "coordinates": null, "id": 372739631038861313, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372739631038861313", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 216859012, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363921047/Me_normal.jpg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 33, "protected": false, "location": "", "default_profile_image": false, "id_str": "216859012", "utc_offset": -14400, "statuses_count": 475, "description": "Bizarre, (possibly insane) romantic, fun-loving, ecclectic and proudly irrational Gamer, Cognitive Scientist/Cognitive Economist and modeller.", "friends_count": 109, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/1363921047/Me_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", "profile_background_color": "1A1B1F", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme9/bg.gif", "name": "Neal Leblanc", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "NealLeblanc", "url": null, "created_at": "Wed Nov 17 22:31:45 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 15:17:07 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\"The Real Trouble with Economics\", Paul Krugman http://t.co/Zm1mcVpqxg", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372736942128902144, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/Zm1mcVpqxg", "indices": [48, 70], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372736942128902144", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 144655326, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643821233/DSC00498_normal.JPG", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/LOE4wJo5Ey", "indices": [0, 22], "expanded_url": "http://innovandoenpoliticapublica.blogspot.com", "display_url": "\u2026novandoenpoliticapublica.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 91, "protected": false, "location": "M\u00e9xico", "default_profile_image": false, "id_str": "144655326", "utc_offset": -14400, "statuses_count": 548, "description": "Estudi\u00e9 Pol\u00edticas P\u00fablicas (Carnegie Mellon) y Econom\u00eda (CIDE). Amo M\u00e9xico. Inter\u00e9s x lo p\u00fablico, innovaci\u00f3n, tecnolog\u00eda, MiPyMEs. Asesor, Secretaria de Turismo", "friends_count": 353, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1643821233/DSC00498_normal.JPG", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Pedro Lichtle", "lang": "es", "profile_background_tile": false, "favourites_count": 0, "screen_name": "pedrolichtle", "url": "http://t.co/LOE4wJo5Ey", "created_at": "Sun May 16 23:34:07 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 4}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 15:06:26 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\u201c@NYTimeskrugman: The Real Trouble With Economics http://t.co/6BjuCfTwgm\u201d", "in_reply_to_status_id": 372383914251550720, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372732783501639680, "entities": {"symbols": [], "user_mentions": [{"indices": [1, 16], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/6BjuCfTwgm", "indices": [50, 72], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": "NYTimeskrugman", "in_reply_to_user_id": 17006157, "retweet_count": 0, "id_str": "372732783501639680", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 195998422, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135174357/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 9200, "protected": false, "location": "Mexico, D.F.", "default_profile_image": false, "id_str": "195998422", "utc_offset": -18000, "statuses_count": 167381, "description": "", "friends_count": 8643, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1135174357/image_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Benigno Pi\u00f1era", "lang": "es", "profile_background_tile": false, "favourites_count": 5994, "screen_name": "benignopf", "url": null, "created_at": "Tue Sep 28 02:16:52 +0000 2010", "contributors_enabled": false, "time_zone": "Mexico City", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 226}, "geo": null, "in_reply_to_user_id_str": "17006157", "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 14:49:55 +0000 2013", "in_reply_to_status_id_str": "372383914251550720", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/32tUJPnAms Paul Krugman Economics as a Non Science !!", "in_reply_to_status_id": null, "children": [], "favorite_count": 1, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372723659552456704, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/32tUJPnAms", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372723659552456704", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1230054576, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3330490093/388f1808436231868073c4cc8e7582da_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/7tGwqkoge5", "indices": [0, 22], "expanded_url": "http://www.axiaventures.com", "display_url": "axiaventures.com"}]}, "description": {"urls": []}}, "followers_count": 16, "protected": false, "location": "Latin America", "default_profile_image": false, "id_str": "1230054576", "utc_offset": null, "statuses_count": 39, "description": "Investing in High-Potential Latin American Entrepreneurs", "friends_count": 76, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3330490093/388f1808436231868073c4cc8e7582da_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Axia Ventures", "lang": "es", "profile_background_tile": false, "favourites_count": 4, "screen_name": "axiaventures", "url": "http://t.co/7tGwqkoge5", "created_at": "Fri Mar 01 15:12:12 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 14:13:39 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/reyFUsIEfu", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372722385260011520, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/reyFUsIEfu", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372722385260011520", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 258945761, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1880745939/281494_172793422787440_172793202787462_400101_4447281_n_normal.jpg", "profile_sidebar_fill_color": "A0C5C7", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/jkF5GFtinA", "indices": [0, 22], "expanded_url": "http://www.linkedin.com/pub/ben-atkinson/1b/517/280", "display_url": "linkedin.com/pub/ben-atkins\u2026"}]}, "description": {"urls": []}}, "followers_count": 368, "protected": false, "location": "Calgary, Alberta", "default_profile_image": false, "id_str": "258945761", "utc_offset": -21600, "statuses_count": 7481, "description": "Assistant Professor of Economics and Policy Studies, Mount Royal University #MRU", "friends_count": 2001, "profile_link_color": "FF3300", "profile_image_url": "http://a0.twimg.com/profile_images/1880745939/281494_172793422787440_172793202787462_400101_4447281_n_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme6/bg.gif", "profile_background_color": "709397", "profile_banner_url": "https://pbs.twimg.com/profile_banners/258945761/1365740422", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme6/bg.gif", "name": "Ben Atkinson", "lang": "en", "profile_background_tile": false, "favourites_count": 527, "screen_name": "BenAtkinsonPhD", "url": "http://t.co/jkF5GFtinA", "created_at": "Mon Feb 28 21:05:32 +0000 2011", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "profile_sidebar_border_color": "86A4A6", "default_profile": false, "following": false, "listed_count": 10}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 14:08:36 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics, via @nytimes http://t.co/rY9ZVYNdWj", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>", "retweeted": false, "coordinates": null, "id": 372718588073086976, "entities": {"symbols": [], "user_mentions": [{"indices": [37, 45], "screen_name": "nytimes", "id": 807095, "name": "The New York Times", "id_str": "807095"}], "hashtags": [], "urls": [{"url": "http://t.co/rY9ZVYNdWj", "indices": [46, 68], "expanded_url": "http://nyti.ms/145VnnO", "display_url": "nyti.ms/145VnnO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372718588073086976", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 366868848, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525780237/LogoQ_normal.png", "profile_sidebar_fill_color": "DDE8F0", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/MRG1EJRJd9", "indices": [0, 22], "expanded_url": "http://www.quicksand.es", "display_url": "quicksand.es"}]}, "description": {"urls": []}}, "followers_count": 103, "protected": false, "location": "Valencia", "default_profile_image": false, "id_str": "366868848", "utc_offset": -7200, "statuses_count": 810, "description": "Somos una empresa joven cuyo objetivo es ayudar a las PYMEs y a las nuevas empresas (o proyectos) a desarrollarse de forma profesional y eficaz", "friends_count": 232, "profile_link_color": "D6132D", "profile_image_url": "http://a0.twimg.com/profile_images/1525780237/LogoQ_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/324082302/QS1negativo.jpg", "profile_background_color": "690A0A", "profile_banner_url": "https://pbs.twimg.com/profile_banners/366868848/1357598546", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/324082302/QS1negativo.jpg", "name": "Quicksand", "lang": "es", "profile_background_tile": false, "favourites_count": 0, "screen_name": "QuicksandC", "url": "http://t.co/MRG1EJRJd9", "created_at": "Fri Sep 02 23:56:52 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:53:30 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @petbugs13: Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic\" rel=\"nofollow\">Silver Bird</a>", "retweeted": false, "coordinates": null, "id": 372710864732057602, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "petbugs13", "id": 391591212, "name": "pb", "id_str": "391591212"}], "hashtags": [{"indices": [30, 41], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [81, 103], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372710864732057602", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "id": 372705731666931712, "favorite_count": 3, "source": "<a href=\"https://itunes.apple.com/us/app/chrome/id535886823?mt=8&uo=4\" rel=\"nofollow\">Chrome on iOS</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 26], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372705731666931712", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 391591212, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/NntXcfPfld", "indices": [0, 22], "expanded_url": "http://canucksarmy.com/authors/petbugs", "display_url": "canucksarmy.com/authors/petbugs"}]}, "description": {"urls": []}}, "followers_count": 376, "protected": false, "location": "1968", "default_profile_image": false, "id_str": "391591212", "utc_offset": -25200, "statuses_count": 12161, "description": "One part sarcasm, one part satire and the occasional #GraphicComment. Nothing gets serious until 3rd round.", "friends_count": 403, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/391591212/1374694364", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "name": "pb", "lang": "en", "profile_background_tile": false, "favourites_count": 57, "screen_name": "petbugs13", "url": "http://t.co/NntXcfPfld", "created_at": "Sat Oct 15 20:22:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:02:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14736892, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547654389/twitterAva_normal.jpg", "profile_sidebar_fill_color": "DEEDFC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/zNfHiFnrJF", "indices": [0, 22], "expanded_url": "http://search.espn.go.com/neil-greenberg/", "display_url": "search.espn.go.com/neil-greenberg/"}]}, "description": {"urls": []}}, "followers_count": 6021, "protected": false, "location": "", "default_profile_image": false, "id_str": "14736892", "utc_offset": -14400, "statuses_count": 60609, "description": "Contributing NHL writer to Washington Post and ESPN. Member of the PHWA. I am also Jason Chimera's favorite blogger. #fancystats", "friends_count": 94, "profile_link_color": "3E598B", "profile_image_url": "http://a0.twimg.com/profile_images/1547654389/twitterAva_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/347639432/ice-hockey-twitter-background.jpg", "profile_background_color": "E4EFF3", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14736892/1374887165", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/347639432/ice-hockey-twitter-background.jpg", "name": "Neil Greenberg", "lang": "en", "profile_background_tile": false, "favourites_count": 39, "screen_name": "ngreenberg", "url": "http://t.co/zNfHiFnrJF", "created_at": "Sun May 11 21:01:09 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "8EB6DE", "default_profile": false, "following": false, "listed_count": 394}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:22:49 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @petbugs13: Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>", "retweeted": false, "coordinates": null, "id": 372706691407945729, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "petbugs13", "id": 391591212, "name": "pb", "id_str": "391591212"}], "hashtags": [{"indices": [30, 41], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [81, 103], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372706691407945729", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "id": 372705731666931712, "favorite_count": 3, "source": "<a href=\"https://itunes.apple.com/us/app/chrome/id535886823?mt=8&uo=4\" rel=\"nofollow\">Chrome on iOS</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 26], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372705731666931712", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 391591212, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/NntXcfPfld", "indices": [0, 22], "expanded_url": "http://canucksarmy.com/authors/petbugs", "display_url": "canucksarmy.com/authors/petbugs"}]}, "description": {"urls": []}}, "followers_count": 376, "protected": false, "location": "1968", "default_profile_image": false, "id_str": "391591212", "utc_offset": -25200, "statuses_count": 12161, "description": "One part sarcasm, one part satire and the occasional #GraphicComment. Nothing gets serious until 3rd round.", "friends_count": 403, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/391591212/1374694364", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "name": "pb", "lang": "en", "profile_background_tile": false, "favourites_count": 57, "screen_name": "petbugs13", "url": "http://t.co/NntXcfPfld", "created_at": "Sat Oct 15 20:22:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:02:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 40298801, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518883141/Borschevsky_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 2920, "protected": false, "location": "Toronto", "default_profile_image": false, "id_str": "40298801", "utc_offset": -36000, "statuses_count": 55523, "description": "I understand the future is uncertain. You don't have to remind me every time I make a negative prediction about the Leafs.", "friends_count": 159, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1518883141/Borschevsky_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "67Sound", "lang": "en", "profile_background_tile": false, "favourites_count": 965, "screen_name": "67sound", "url": null, "created_at": "Fri May 15 18:20:54 +0000 2009", "contributors_enabled": false, "time_zone": "Hawaii", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 118}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:06:14 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "children": [{"contributors": null, "truncated": false, "text": "RT @petbugs13: Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic\" rel=\"nofollow\">Silver Bird</a>", "retweeted": false, "coordinates": null, "id": 372710864732057602, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "petbugs13", "id": 391591212, "name": "pb", "id_str": "391591212"}], "hashtags": [{"indices": [30, 41], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [81, 103], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372710864732057602", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "id": 372705731666931712, "favorite_count": 3, "source": "<a href=\"https://itunes.apple.com/us/app/chrome/id535886823?mt=8&uo=4\" rel=\"nofollow\">Chrome on iOS</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 26], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372705731666931712", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 391591212, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/NntXcfPfld", "indices": [0, 22], "expanded_url": "http://canucksarmy.com/authors/petbugs", "display_url": "canucksarmy.com/authors/petbugs"}]}, "description": {"urls": []}}, "followers_count": 376, "protected": false, "location": "1968", "default_profile_image": false, "id_str": "391591212", "utc_offset": -25200, "statuses_count": 12161, "description": "One part sarcasm, one part satire and the occasional #GraphicComment. Nothing gets serious until 3rd round.", "friends_count": 403, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/391591212/1374694364", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "name": "pb", "lang": "en", "profile_background_tile": false, "favourites_count": 57, "screen_name": "petbugs13", "url": "http://t.co/NntXcfPfld", "created_at": "Sat Oct 15 20:22:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": null, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:02:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14736892, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547654389/twitterAva_normal.jpg", "profile_sidebar_fill_color": "DEEDFC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/zNfHiFnrJF", "indices": [0, 22], "expanded_url": "http://search.espn.go.com/neil-greenberg/", "display_url": "search.espn.go.com/neil-greenberg/"}]}, "description": {"urls": []}}, "followers_count": 6021, "protected": false, "location": "", "default_profile_image": false, "id_str": "14736892", "utc_offset": -14400, "statuses_count": 60610, "description": "Contributing NHL writer to Washington Post and ESPN. Member of the PHWA. I am also Jason Chimera's favorite blogger. #fancystats", "friends_count": 94, "profile_link_color": "3E598B", "profile_image_url": "http://a0.twimg.com/profile_images/1547654389/twitterAva_normal.jpg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/347639432/ice-hockey-twitter-background.jpg", "profile_background_color": "E4EFF3", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14736892/1374887165", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/347639432/ice-hockey-twitter-background.jpg", "name": "Neil Greenberg", "lang": "en", "profile_background_tile": false, "favourites_count": 39, "screen_name": "ngreenberg", "url": "http://t.co/zNfHiFnrJF", "created_at": "Sun May 11 21:01:09 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "8EB6DE", "default_profile": false, "following": null, "listed_count": 394}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:22:49 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, {"contributors": null, "truncated": false, "text": "RT @petbugs13: Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>", "retweeted": false, "coordinates": null, "id": 372706691407945729, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "petbugs13", "id": 391591212, "name": "pb", "id_str": "391591212"}], "hashtags": [{"indices": [30, 41], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [81, 103], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372706691407945729", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Looks like the #fancystats battle is being fought on many fronts: http://t.co/Pf50eFnzAY", "in_reply_to_status_id": null, "id": 372705731666931712, "favorite_count": 3, "source": "<a href=\"https://itunes.apple.com/us/app/chrome/id535886823?mt=8&uo=4\" rel=\"nofollow\">Chrome on iOS</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 26], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372705731666931712", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 391591212, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/NntXcfPfld", "indices": [0, 22], "expanded_url": "http://canucksarmy.com/authors/petbugs", "display_url": "canucksarmy.com/authors/petbugs"}]}, "description": {"urls": []}}, "followers_count": 376, "protected": false, "location": "1968", "default_profile_image": false, "id_str": "391591212", "utc_offset": -25200, "statuses_count": 12161, "description": "One part sarcasm, one part satire and the occasional #GraphicComment. Nothing gets serious until 3rd round.", "friends_count": 403, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/391591212/1374694364", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "name": "pb", "lang": "en", "profile_background_tile": false, "favourites_count": 57, "screen_name": "petbugs13", "url": "http://t.co/NntXcfPfld", "created_at": "Sat Oct 15 20:22:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": null, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:02:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 40298801, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518883141/Borschevsky_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 2921, "protected": false, "location": "Toronto", "default_profile_image": false, "id_str": "40298801", "utc_offset": -36000, "statuses_count": 55523, "description": "I understand the future is uncertain. You don't have to remind me every time I make a negative prediction about the Leafs.", "friends_count": 159, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1518883141/Borschevsky_normal.jpg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "67Sound", "lang": "en", "profile_background_tile": false, "favourites_count": 965, "screen_name": "67sound", "url": null, "created_at": "Fri May 15 18:20:54 +0000 2009", "contributors_enabled": false, "time_zone": "Hawaii", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": null, "listed_count": 118}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:06:14 +0000 2013", "in_reply_to_status_id_str": null, "place": null}], "favorite_count": 3, "source": "<a href=\"https://itunes.apple.com/us/app/chrome/id535886823?mt=8&uo=4\" rel=\"nofollow\">Chrome on iOS</a>", "retweeted": false, "coordinates": null, "id": 372705731666931712, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [15, 26], "text": "fancystats"}], "urls": [{"url": "http://t.co/Pf50eFnzAY", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372705731666931712", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 391591212, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/NntXcfPfld", "indices": [0, 22], "expanded_url": "http://canucksarmy.com/authors/petbugs", "display_url": "canucksarmy.com/authors/petbugs"}]}, "description": {"urls": []}}, "followers_count": 376, "protected": false, "location": "1968", "default_profile_image": false, "id_str": "391591212", "utc_offset": -25200, "statuses_count": 12161, "description": "One part sarcasm, one part satire and the occasional #GraphicComment. Nothing gets serious until 3rd round.", "friends_count": 403, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000182992355/927a175d7f485235a34d4b858edebc75_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/391591212/1374694364", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/874273642/534cdc0ca54888e7692548765a1abafa.jpeg", "name": "pb", "lang": "en", "profile_background_tile": false, "favourites_count": 57, "screen_name": "petbugs13", "url": "http://t.co/NntXcfPfld", "created_at": "Sat Oct 15 20:22:43 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 13:02:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", "retweeted": false, "coordinates": null, "id": 372703359188619264, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372703359188619264", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 30545745, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633799652/Picture_of_me_1_normal.png", "profile_sidebar_fill_color": "EFEFEF", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/onhdvBoLJk", "indices": [0, 22], "expanded_url": "http://www.mainstreamintegration.com", "display_url": "mainstreamintegration.com"}]}, "description": {"urls": [{"url": "http://t.co/tenFBVl2C1", "indices": [77, 99], "expanded_url": "http://ow.ly/lNM80", "display_url": "ow.ly/lNM80"}]}}, "followers_count": 86, "protected": false, "location": "Springfield, PA", "default_profile_image": false, "id_str": "30545745", "utc_offset": -18000, "statuses_count": 482, "description": "Founder of @SwingStats. CTO of @mxintegration. Java/Scala/Play! Developer (http://t.co/tenFBVl2C1). Avid golfer. Elf-friend.", "friends_count": 254, "profile_link_color": "009999", "profile_image_url": "http://a0.twimg.com/profile_images/1633799652/Picture_of_me_1_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/674800336/aca44493af89f01bd3ee7b3161c9f6e0.jpeg", "profile_background_color": "131516", "profile_banner_url": "https://pbs.twimg.com/profile_banners/30545745/1356709222", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/674800336/aca44493af89f01bd3ee7b3161c9f6e0.jpeg", "name": "Joseph Conley", "lang": "en", "profile_background_tile": true, "favourites_count": 3, "screen_name": "josephconley", "url": "http://t.co/onhdvBoLJk", "created_at": "Sat Apr 11 22:58:50 +0000 2009", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 12:52:59 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman: The Real Trouble With Economics\nhttp://t.co/kccuHkMpzK", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372687080117108736, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/kccuHkMpzK", "indices": [41, 63], "expanded_url": "http://nyti.ms/145VnnO", "display_url": "nyti.ms/145VnnO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372687080117108736", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 230049663, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3170460311/4126ce92a3794b50f21a7816de8723a9_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/6GZyO7CExK", "indices": [0, 22], "expanded_url": "http://www.marcfbellemare.com", "display_url": "marcfbellemare.com"}]}, "description": {"urls": []}}, "followers_count": 1794, "protected": false, "location": "MSP", "default_profile_image": false, "id_str": "230049663", "utc_offset": -18000, "statuses_count": 8199, "description": "University of Minnesota Applied Economics. My research focuses on agriculture, development, and food policy. Strong opinions weakly held. RTs \u2260 endorsement.", "friends_count": 908, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3170460311/4126ce92a3794b50f21a7816de8723a9_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/230898493/Twitter.jpg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/230049663/1373327305", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/230898493/Twitter.jpg", "name": "Marc F. Bellemare", "lang": "en", "profile_background_tile": true, "favourites_count": 21, "screen_name": "mfbellemare", "url": "http://t.co/6GZyO7CExK", "created_at": "Fri Dec 24 03:33:55 +0000 2010", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 135}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 11:48:18 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372673709179666432, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372673709179666432", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1432585429, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000078758431/02361825abaf74129e24c47eb20bc49f_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 37, "protected": false, "location": "", "default_profile_image": false, "id_str": "1432585429", "utc_offset": 25200, "statuses_count": 640, "description": "", "friends_count": 342, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000078758431/02361825abaf74129e24c47eb20bc49f_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Bali Man", "lang": "en", "profile_background_tile": false, "favourites_count": 5, "screen_name": "wayangondrong", "url": null, "created_at": "Thu May 16 09:11:04 +0000 2013", "contributors_enabled": false, "time_zone": "Bangkok", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": true, "lang": "en", "created_at": "Wed Aug 28 10:55:10 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/fXtLSYONth", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372659204768530432, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/fXtLSYONth", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372659204768530432", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 850657518, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2657848715/8ae2a6ef9052499a56d7baa4724d211b_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": [{"url": "http://t.co/F0LvhCX8", "indices": [103, 123], "expanded_url": "http://www.utredarna.nu/rogermortvik", "display_url": "utredarna.nu/rogermortvik"}]}}, "followers_count": 1234, "protected": false, "location": "", "default_profile_image": false, "id_str": "850657518", "utc_offset": null, "statuses_count": 2062, "description": "Samh\u00e4llspolitisk chef p\u00e5 TCO, \r\ntweetsen \u00e4r en blandning av jobb och privata funderingar. \r\nBloggar p\u00e5 http://t.co/F0LvhCX8", "friends_count": 546, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2657848715/8ae2a6ef9052499a56d7baa4724d211b_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Roger Mortvik", "lang": "sv", "profile_background_tile": false, "favourites_count": 214, "screen_name": "RMortvik", "url": null, "created_at": "Fri Sep 28 07:54:35 +0000 2012", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 9}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 09:57:32 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372650832669327360, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372650832669327360", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 244170420, "verified": false, "profile_text_color": "D00018", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000022219866/ef28b620688053e547ad0d302c1e4145_normal.jpeg", "profile_sidebar_fill_color": "FDF1E1", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 118, "protected": false, "location": "l'Ecosse ", "default_profile_image": false, "id_str": "244170420", "utc_offset": 10800, "statuses_count": 5239, "description": "My destination is always to the north! \u0648\u064e\u0628\u064e\u0634\u0650\u0651\u0631\u0650 \u0627\u0644\u0635\u064e\u0651\u0627\u0628\u0650\u0631\u0650\u064a\u0646\u064e * \u0627\u0644\u064e\u0651\u0630\u0650\u064a\u0646\u064e \u0625\u0650\u0630\u064e\u0627 \u0623\u064e\u0635\u064e\u0627\u0628\u064e\u062a\u0652\u0647\u064f\u0645 \u0645\u064f\u0651\u0635\u0650\u064a\u0628\u064e\u0629\u064c \u0642\u064e\u0627\u0644\u064f\u0648\u0627\u0652 \u0625\u0650\u0646\u064e\u0651\u0627 \u0644\u0650\u0644\u0651\u0647\u0650 \u0648\u064e\u0625\u0650\u0646\u064e\u0651\u0627 \u0625\u0650\u0644\u064e\u064a\u0652\u0647\u0650 \u0631\u064e\u0627\u062c\u0650\u0639\u0648\u0646\u064e", "friends_count": 75, "profile_link_color": "D00018", "profile_image_url": "http://a0.twimg.com/profile_images/378800000022219866/ef28b620688053e547ad0d302c1e4145_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/732256182/0ef254d5ac539a08a63f320b93f4e008.png", "profile_background_color": "FDF1E1", "profile_banner_url": "https://pbs.twimg.com/profile_banners/244170420/1348819052", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/732256182/0ef254d5ac539a08a63f320b93f4e008.png", "name": "Omar .w. G", "lang": "en", "profile_background_tile": true, "favourites_count": 245, "screen_name": "Yellowris", "url": null, "created_at": "Fri Jan 28 17:35:41 +0000 2011", "contributors_enabled": false, "time_zone": "Istanbul", "profile_sidebar_border_color": "FDF1E1", "default_profile": false, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 09:24:16 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372648520118849537, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372648520118849537", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 69673957, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2841720884/ebc11c3c6b3060657e097adb4f63b367_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 361, "protected": false, "location": "Brussels", "default_profile_image": false, "id_str": "69673957", "utc_offset": -7200, "statuses_count": 714, "description": "PhD -- Economist --\r\nRT does not mean endorsement -- Unus subveniet alteri tamquam fratri suo.", "friends_count": 1955, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2841720884/ebc11c3c6b3060657e097adb4f63b367_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/69673957/1374655730", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Ludwig VAN DEN HAUWE", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "Lvandenhauwe", "url": null, "created_at": "Fri Aug 28 19:36:42 +0000 2009", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 09:15:05 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman:\n\nmacroeconomics doesn't reward good predictions but preconceptions and hard math\n\nhttp://t.co/yVb4zA1P25", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372646424317399040, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/yVb4zA1P25", "indices": [91, 113], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto&_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372646424317399040", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1111691492, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3187685560/d10cc1f8f58d565d837b3445778ba9ce_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/qcrU3VMT3d", "indices": [0, 22], "expanded_url": "http://ideas.repec.org/e/pro188.html", "display_url": "ideas.repec.org/e/pro188.html"}]}, "description": {"urls": []}}, "followers_count": 33, "protected": false, "location": "", "default_profile_image": false, "id_str": "1111691492", "utc_offset": 7200, "statuses_count": 133, "description": "Assistant professor of economics, University of Verona", "friends_count": 46, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3187685560/d10cc1f8f58d565d837b3445778ba9ce_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Andrea Roventini", "lang": "it", "profile_background_tile": false, "favourites_count": 1, "screen_name": "andrearoventini", "url": "http://t.co/qcrU3VMT3d", "created_at": "Tue Jan 22 14:28:23 +0000 2013", "contributors_enabled": false, "time_zone": "Amsterdam", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 09:06:45 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/YeeJGRWmT0", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.facebook.com/twitter\" rel=\"nofollow\">Facebook</a>", "retweeted": false, "coordinates": null, "id": 372633096656814080, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/YeeJGRWmT0", "indices": [32, 54], "expanded_url": "http://fb.me/1EIYRp4I6", "display_url": "fb.me/1EIYRp4I6"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372633096656814080", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 54926495, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325421758/jm_normal.PNG", "profile_sidebar_fill_color": "C0DFEC", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/yhdvqXrphg", "indices": [0, 22], "expanded_url": "http://www.estudiomartinabogados.com", "display_url": "estudiomartinabogados.com"}]}, "description": {"urls": []}}, "followers_count": 25, "protected": false, "location": "Lima, Per\u00fa", "default_profile_image": false, "id_str": "54926495", "utc_offset": -18000, "statuses_count": 832, "description": "Economist - Lawyer. Just a passionate Researcher in Law & Economics head of a Law Firm (EMabogados) and a Consulting Firm (Emecep Consultoria)", "friends_count": 152, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1325421758/jm_normal.PNG", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme15/bg.png", "profile_background_color": "022330", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme15/bg.png", "name": "Jos\u00e9-Manuel Martin C", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "jmmartinc", "url": "http://t.co/yhdvqXrphg", "created_at": "Wed Jul 08 15:23:21 +0000 2009", "contributors_enabled": false, "time_zone": "Lima", "profile_sidebar_border_color": "A8C7F7", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 08:13:48 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@kverstegen @koenfucius Krugman also nails it http://t.co/tVyjqTn0hX", "in_reply_to_status_id": 372630038488698880, "children": [{"contributors": null, "truncated": false, "text": "@andreasprovo @kverstegen What percentage of economists is pro-stimulus even right now? Science should not depend on who the scientist is.", "in_reply_to_status_id": 372632382546784256, "children": [{"contributors": null, "truncated": false, "text": "@koenfucius @andreasprovo True... but I guess you'll always get camps when the data is not conclusive.", "in_reply_to_status_id": 372704297743831040, "children": [{"contributors": null, "truncated": false, "text": "@kverstegen @andreasprovo ..which is precisely the problem. The nearest in hard science is climate change\u2014because experimentation is v hard.", "in_reply_to_status_id": 372715641511227392, "children": [{"contributors": null, "truncated": false, "text": "@koenfucius Good point! @andreasprovo", "in_reply_to_status_id": 372717182637309952, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372717428565753856, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}, {"indices": [24, 37], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "koenfucius", "in_reply_to_user_id": 22464371, "retweet_count": 0, "id_str": "372717428565753856", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "22464371", "lang": "en", "created_at": "Wed Aug 28 13:48:54 +0000 2013", "in_reply_to_status_id_str": "372717182637309952", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://tweetli.st/\" rel=\"nofollow\">TweetList!</a>", "retweeted": false, "coordinates": null, "id": 372717182637309952, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372717182637309952", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 22464371, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "", "default_profile_image": false, "id_str": "22464371", "utc_offset": 3600, "statuses_count": 4026, "description": "Wisdom or koenfusion? Maybe the difference is not that big.", "friends_count": 348, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Koenfucius", "lang": "en", "profile_background_tile": false, "favourites_count": 5343, "screen_name": "koenfucius", "url": null, "created_at": "Mon Mar 02 07:56:34 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "414828027", "lang": "en", "created_at": "Wed Aug 28 13:47:55 +0000 2013", "in_reply_to_status_id_str": "372715641511227392", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372715641511227392, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "koenfucius", "in_reply_to_user_id": 22464371, "retweet_count": 0, "id_str": "372715641511227392", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "22464371", "lang": "en", "created_at": "Wed Aug 28 13:41:48 +0000 2013", "in_reply_to_status_id_str": "372704297743831040", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://tweetli.st/\" rel=\"nofollow\">TweetList!</a>", "retweeted": false, "coordinates": null, "id": 372704297743831040, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}, {"indices": [14, 25], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372704297743831040", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 22464371, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "", "default_profile_image": false, "id_str": "22464371", "utc_offset": 3600, "statuses_count": 4026, "description": "Wisdom or koenfusion? Maybe the difference is not that big.", "friends_count": 348, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Koenfucius", "lang": "en", "profile_background_tile": false, "favourites_count": 5343, "screen_name": "koenfucius", "url": null, "created_at": "Mon Mar 02 07:56:34 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "309530794", "lang": "en", "created_at": "Wed Aug 28 12:56:43 +0000 2013", "in_reply_to_status_id_str": "372632382546784256", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@andreasprovo Fama had nog geantwoord op die blogpost, \u00e9\u00e9n dag later. En Fama lijkt mij gelijk te hebben. http://t.co/UERjKOJopx @koenfucius", "in_reply_to_status_id": 372632382546784256, "children": [{"contributors": null, "truncated": false, "text": "@kverstegen @koenfucius heb je ook de originele 2009 Krugman gelezen?", "in_reply_to_status_id": 372639835502026753, "children": [{"contributors": null, "truncated": false, "text": "@andreasprovo @koenfucius Yes indeed. En ook Brad Delong en Cochrane over hetzelfde... No easy topic, it is.", "in_reply_to_status_id": 372642134341324800, "children": [{"contributors": null, "truncated": false, "text": "@kverstegen Nee, maar wel nogal basis. Ook in RicEq-model heeft stijging G op KT stimuluseffect. Maar te lastige uitleg voor Twitter.", "in_reply_to_status_id": 372648104232615936, "children": [{"contributors": null, "truncated": false, "text": "@andreasprovo @kverstegen Hasn't stopped Kurt so far! My timeline explodes every so often. :-)", "in_reply_to_status_id": 372654191136624640, "children": [{"contributors": null, "truncated": false, "text": "@koenfucius @andreasprovo Yeah that's why I suggested we should go out for beer :-)", "in_reply_to_status_id": 372705224605323264, "children": [{"contributors": null, "truncated": false, "text": "@kverstegen @andreasprovo If you're ever in the Midlands (or even London), for sure!", "in_reply_to_status_id": 372715728010362880, "children": [{"contributors": null, "truncated": false, "text": "@koenfucius @andreasprovo Als we Engels bier moeten drinken, dan laat het al maar zijn! ;-)", "in_reply_to_status_id": 372717385536774144, "children": [{"contributors": null, "truncated": false, "text": "@kverstegen @andreasprovo Weet je hoeveel Real Ales er zijn in GB?", "in_reply_to_status_id": 372717637286912000, "children": [{"contributors": null, "truncated": false, "text": "@koenfucius Geen idee, maar ik weet wel dat Rochefort uit Belgi\u00eb komt ;-) @andreasprovo", "in_reply_to_status_id": 372718586873544704, "id": 372718925319917568, "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}, {"indices": [74, 87], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "koenfucius", "in_reply_to_user_id": 22464371, "retweet_count": 0, "id_str": "372718925319917568", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "22464371", "lang": "nl", "created_at": "Wed Aug 28 13:54:51 +0000 2013", "in_reply_to_status_id_str": "372718586873544704", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://tweetli.st/\" rel=\"nofollow\">TweetList!</a>", "retweeted": false, "coordinates": null, "id": 372718586873544704, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372718586873544704", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 22464371, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "", "default_profile_image": false, "id_str": "22464371", "utc_offset": 3600, "statuses_count": 4026, "description": "Wisdom or koenfusion? Maybe the difference is not that big.", "friends_count": 348, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Koenfucius", "lang": "en", "profile_background_tile": false, "favourites_count": 5343, "screen_name": "koenfucius", "url": null, "created_at": "Mon Mar 02 07:56:34 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "414828027", "lang": "nl", "created_at": "Wed Aug 28 13:53:30 +0000 2013", "in_reply_to_status_id_str": "372717637286912000", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372717637286912000, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "koenfucius", "in_reply_to_user_id": 22464371, "retweet_count": 0, "id_str": "372717637286912000", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "22464371", "lang": "nl", "created_at": "Wed Aug 28 13:49:44 +0000 2013", "in_reply_to_status_id_str": "372717385536774144", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 1, "source": "<a href=\"http://tweetli.st/\" rel=\"nofollow\">TweetList!</a>", "retweeted": false, "coordinates": null, "id": 372717385536774144, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372717385536774144", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 22464371, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "", "default_profile_image": false, "id_str": "22464371", "utc_offset": 3600, "statuses_count": 4026, "description": "Wisdom or koenfusion? Maybe the difference is not that big.", "friends_count": 348, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Koenfucius", "lang": "en", "profile_background_tile": false, "favourites_count": 5343, "screen_name": "koenfucius", "url": null, "created_at": "Mon Mar 02 07:56:34 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "414828027", "lang": "en", "created_at": "Wed Aug 28 13:48:44 +0000 2013", "in_reply_to_status_id_str": "372715728010362880", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372715728010362880, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}, {"indices": [12, 25], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "koenfucius", "in_reply_to_user_id": 22464371, "retweet_count": 0, "id_str": "372715728010362880", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "22464371", "lang": "en", "created_at": "Wed Aug 28 13:42:08 +0000 2013", "in_reply_to_status_id_str": "372705224605323264", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 2, "source": "<a href=\"http://tweetli.st/\" rel=\"nofollow\">TweetList!</a>", "retweeted": false, "coordinates": null, "id": 372705224605323264, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}, {"indices": [14, 25], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372705224605323264", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 22464371, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "", "default_profile_image": false, "id_str": "22464371", "utc_offset": 3600, "statuses_count": 4026, "description": "Wisdom or koenfusion? Maybe the difference is not that big.", "friends_count": 348, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/85650282/Koen_0707_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Koenfucius", "lang": "en", "profile_background_tile": false, "favourites_count": 5343, "screen_name": "koenfucius", "url": null, "created_at": "Mon Mar 02 07:56:34 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "309530794", "lang": "en", "created_at": "Wed Aug 28 13:00:24 +0000 2013", "in_reply_to_status_id_str": "372654191136624640", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@andreasprovo Inderdaad. Ik heb mij voorgenomen geen 10 tweet lange posts meer te maken. Maja, het is een voornemen he. We zullen zien ;-)", "in_reply_to_status_id": 372654191136624640, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372654606506934272, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372654606506934272", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "309530794", "lang": "nl", "created_at": "Wed Aug 28 09:39:16 +0000 2013", "in_reply_to_status_id_str": "372654191136624640", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372654191136624640, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372654191136624640", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 309530794, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 104, "protected": false, "location": "Ghent - Brussels", "default_profile_image": false, "id_str": "309530794", "utc_offset": -7200, "statuses_count": 966, "description": "Econ banter. Technology optimist, euro pessimist. Former film buff. Tweets occasionally in Dutch or Italian.", "friends_count": 526, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309530794/1359972664", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Andreas Provo", "lang": "en", "profile_background_tile": false, "favourites_count": 425, "screen_name": "andreasprovo", "url": null, "created_at": "Thu Jun 02 07:29:33 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": "414828027", "lang": "nl", "created_at": "Wed Aug 28 09:37:37 +0000 2013", "in_reply_to_status_id_str": "372648104232615936", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372648104232615936, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}, {"indices": [14, 25], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372648104232615936", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "309530794", "lang": "nl", "created_at": "Wed Aug 28 09:13:26 +0000 2013", "in_reply_to_status_id_str": "372642134341324800", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372642134341324800, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}, {"indices": [12, 23], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372642134341324800", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 309530794, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 104, "protected": false, "location": "Ghent - Brussels", "default_profile_image": false, "id_str": "309530794", "utc_offset": -7200, "statuses_count": 966, "description": "Econ banter. Technology optimist, euro pessimist. Former film buff. Tweets occasionally in Dutch or Italian.", "friends_count": 526, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309530794/1359972664", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Andreas Provo", "lang": "en", "profile_background_tile": false, "favourites_count": 425, "screen_name": "andreasprovo", "url": null, "created_at": "Thu Jun 02 07:29:33 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": "414828027", "lang": "nl", "created_at": "Wed Aug 28 08:49:42 +0000 2013", "in_reply_to_status_id_str": "372639835502026753", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372639835502026753, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}, {"indices": [129, 140], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}], "hashtags": [], "urls": [{"url": "http://t.co/UERjKOJopx", "indices": [106, 128], "expanded_url": "http://www.dimensional.com/famafrench/2009/01/bailouts-and-stimulus-plans---addendum-12809.html", "display_url": "dimensional.com/famafrench/200\u2026"}]}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372639835502026753", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "309530794", "possibly_sensitive": false, "lang": "nl", "created_at": "Wed Aug 28 08:40:34 +0000 2013", "in_reply_to_status_id_str": "372632382546784256", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@andreasprovo Ben wel niet eens met die \"they made it clear in discussion that they didn\u2019t understand points...\" @koenfucius", "in_reply_to_status_id": 372632382546784256, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372639607856173057, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "andreasprovo", "id": 309530794, "name": "Andreas Provo", "id_str": "309530794"}, {"indices": [113, 124], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "andreasprovo", "in_reply_to_user_id": 309530794, "retweet_count": 0, "id_str": "372639607856173057", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 414828027, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RDXNutXlvJ", "indices": [0, 22], "expanded_url": "http://kurtverstegen.wordpress.com/", "display_url": "kurtverstegen.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 212, "protected": false, "location": "Leuven", "default_profile_image": false, "id_str": "414828027", "utc_offset": 7200, "statuses_count": 3805, "description": "Ph.D. researcher Financial Risk Management @ University of Antwerp", "friends_count": 363, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000108780294/659079743a885baf1457e81236cfc4b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/414828027/1377684431", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Kurt Verstegen", "lang": "nl", "profile_background_tile": false, "favourites_count": 1031, "screen_name": "kverstegen", "url": "http://t.co/RDXNutXlvJ", "created_at": "Thu Nov 17 14:55:02 +0000 2011", "contributors_enabled": false, "time_zone": "Brussels", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "309530794", "lang": "en", "created_at": "Wed Aug 28 08:39:40 +0000 2013", "in_reply_to_status_id_str": "372632382546784256", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}], "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "id": 372632382546784256, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "kverstegen", "id": 414828027, "name": "Kurt Verstegen", "id_str": "414828027"}, {"indices": [12, 23], "screen_name": "koenfucius", "id": 22464371, "name": "Koenfucius", "id_str": "22464371"}], "hashtags": [], "urls": [{"url": "http://t.co/tVyjqTn0hX", "indices": [46, 68], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": "kverstegen", "in_reply_to_user_id": 414828027, "retweet_count": 0, "id_str": "372632382546784256", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 309530794, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 104, "protected": false, "location": "Ghent - Brussels", "default_profile_image": false, "id_str": "309530794", "utc_offset": -7200, "statuses_count": 966, "description": "Econ banter. Technology optimist, euro pessimist. Former film buff. Tweets occasionally in Dutch or Italian.", "friends_count": 526, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/378800000047947065/f7c8eab7615184313e285a60f1d09508_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309530794/1359972664", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Andreas Provo", "lang": "en", "profile_background_tile": false, "favourites_count": 425, "screen_name": "andreasprovo", "url": null, "created_at": "Thu Jun 02 07:29:33 +0000 2011", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": "414828027", "possibly_sensitive": false, "lang": "nl", "created_at": "Wed Aug 28 08:10:57 +0000 2013", "in_reply_to_status_id_str": "372630038488698880", "place": null, "metadata": {"iso_language_code": "nl", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "#Krugman The Real Trouble With Economics http://t.co/cnDG3n4mBI", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372628511682334720, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [0, 8], "text": "Krugman"}], "urls": [{"url": "http://t.co/cnDG3n4mBI", "indices": [41, 63], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372628511682334720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 47398478, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3169318615/14371d93ff6bf608c501adcea4866c24_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 84, "protected": false, "location": "", "default_profile_image": false, "id_str": "47398478", "utc_offset": 7200, "statuses_count": 1941, "description": "", "friends_count": 239, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3169318615/14371d93ff6bf608c501adcea4866c24_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Paolo Conforto", "lang": "en", "profile_background_tile": false, "favourites_count": 20, "screen_name": "tablerider", "url": null, "created_at": "Mon Jun 15 18:04:21 +0000 2009", "contributors_enabled": false, "time_zone": "Rome", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 07:55:34 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372614353855328256, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372614353855328256", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 100948536, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2868815486/f69660ea6f4c9f2299fddbe360fb5e60_normal.jpeg", "profile_sidebar_fill_color": "EADEAA", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/Y0x1eRczB5", "indices": [0, 22], "expanded_url": "http://innoscopio.blogspot.com/", "display_url": "innoscopio.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 129, "protected": false, "location": "Paris", "default_profile_image": false, "id_str": "100948536", "utc_offset": 7200, "statuses_count": 2815, "description": "PhD candidate. Working on the economics of innovation and entrepreneurship. Colombian.", "friends_count": 88, "profile_link_color": "DE120B", "profile_image_url": "http://a0.twimg.com/profile_images/2868815486/f69660ea6f4c9f2299fddbe360fb5e60_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/376352225/orsay-old2-med.jpg", "profile_background_color": "8B542B", "profile_banner_url": "https://pbs.twimg.com/profile_banners/100948536/1353328499", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/376352225/orsay-old2-med.jpg", "name": "Andr\u00e9s Barreneche", "lang": "en", "profile_background_tile": false, "favourites_count": 75, "screen_name": "innoscopio", "url": "http://t.co/Y0x1eRczB5", "created_at": "Fri Jan 01 10:08:10 +0000 2010", "contributors_enabled": false, "time_zone": "Paris", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 6}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 06:59:19 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/bwlNkIYHv1", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372612067255005185, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/bwlNkIYHv1", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372612067255005185", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 27660515, "verified": false, "profile_text_color": "605C5C", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270784520/IMG_9825_normal.JPG", "profile_sidebar_fill_color": "F2F3DD", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/UksqMBLb9U", "indices": [0, 22], "expanded_url": "http://proc.bandcamp.com", "display_url": "proc.bandcamp.com"}]}, "description": {"urls": []}}, "followers_count": 187, "protected": false, "location": "Denver, CO", "default_profile_image": false, "id_str": "27660515", "utc_offset": -21600, "statuses_count": 2606, "description": "I drank a lot of green tea.", "friends_count": 393, "profile_link_color": "FF0000", "profile_image_url": "http://a0.twimg.com/profile_images/1270784520/IMG_9825_normal.JPG", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/216922803/Picture21.jpg", "profile_background_color": "FFFFFF", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/216922803/Picture21.jpg", "name": "Proc", "lang": "en", "profile_background_tile": true, "favourites_count": 74, "screen_name": "GrandProc", "url": "http://t.co/UksqMBLb9U", "created_at": "Mon Mar 30 15:35:43 +0000 2009", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "profile_sidebar_border_color": "65B0DA", "default_profile": false, "following": false, "listed_count": 6}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 06:50:14 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman: The Real Trouble With Economics, via @nytimes http://t.co/7UzE3mKvNN", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>", "retweeted": false, "coordinates": null, "id": 372595857390325760, "entities": {"symbols": [], "user_mentions": [{"indices": [46, 54], "screen_name": "nytimes", "id": 807095, "name": "The New York Times", "id_str": "807095"}], "hashtags": [], "urls": [{"url": "http://t.co/7UzE3mKvNN", "indices": [55, 77], "expanded_url": "http://nyti.ms/145VnnO", "display_url": "nyti.ms/145VnnO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372595857390325760", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 131289500, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3687890807/8bde89ec9c82286107d9ac57e9b8956c_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/venqvGQvAz", "indices": [0, 22], "expanded_url": "http://www.linkedin.com/profile/view?id=57095881", "display_url": "linkedin.com/profile/view?i\u2026"}]}, "description": {"urls": []}}, "followers_count": 64, "protected": false, "location": "Aventura, Florida", "default_profile_image": false, "id_str": "131289500", "utc_offset": null, "statuses_count": 129, "description": "Expert in Development Finance, Sustainable Development, Grants, Strategies and Policies, Research, Energy, Climate Finance, Writing, Editing, and Translating", "friends_count": 557, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3687890807/8bde89ec9c82286107d9ac57e9b8956c_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/131289500/1370312082", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Luis Fierro", "lang": "en", "profile_background_tile": false, "favourites_count": 9, "screen_name": "LatinoEconomist", "url": "http://t.co/venqvGQvAz", "created_at": "Fri Apr 09 21:07:44 +0000 2010", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 05:45:49 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Exactly: The Real Trouble With #Economics @NYTimeskrugman http://t.co/e0xDdjlLG2 #FederalReserve #monetarypolicy #Bernanke #Keynes #Krugman", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372572066265845760, "entities": {"symbols": [], "user_mentions": [{"indices": [42, 57], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [{"indices": [31, 41], "text": "Economics"}, {"indices": [81, 96], "text": "FederalReserve"}, {"indices": [97, 112], "text": "monetarypolicy"}, {"indices": [113, 122], "text": "Bernanke"}, {"indices": [123, 130], "text": "Keynes"}, {"indices": [131, 139], "text": "Krugman"}], "urls": [{"url": "http://t.co/e0xDdjlLG2", "indices": [58, 80], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372572066265845760", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14750091, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/183036752/WhitePeonyChoice2_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 127, "protected": false, "location": "Santa Fe, New Mexico", "default_profile_image": false, "id_str": "14750091", "utc_offset": -21600, "statuses_count": 1082, "description": "Economist, management consultant, policy wonk, entrepreneur, cyclist, photographer and damn good cook in Santa Fe, NM", "friends_count": 258, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/183036752/WhitePeonyChoice2_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/90052413/Eldorado-Preserve-background.jpg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/90052413/Eldorado-Preserve-background.jpg", "name": "Boncratious", "lang": "en", "profile_background_tile": false, "favourites_count": 1, "screen_name": "Boncratious", "url": null, "created_at": "Mon May 12 21:22:28 +0000 2008", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 5}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 04:11:17 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "En 2008 modelos macro funcionaron ... seguir la intuici\u00f3n habr\u00eda agravado el problema\nThe Real Trouble With Economics http://t.co/9NxKXJAgpy", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372569455584227328, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/9NxKXJAgpy", "indices": [118, 140], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372569455584227328", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 285328482, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2522835381/v13ccfbvugpvjbulblu3_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 42, "protected": false, "location": "", "default_profile_image": false, "id_str": "285328482", "utc_offset": null, "statuses_count": 56, "description": "", "friends_count": 17, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2522835381/v13ccfbvugpvjbulblu3_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Carlos Eduardo Velez", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "carlosedovelez", "url": null, "created_at": "Wed Apr 20 23:35:39 +0000 2011", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Wed Aug 28 04:00:54 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372565893038891009, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372565893038891009", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 729327566, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/2454086903/83yvj0fagdu9xduv5zil_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 54, "protected": false, "location": "Everywhere", "default_profile_image": false, "id_str": "729327566", "utc_offset": -14400, "statuses_count": 980, "description": "", "friends_count": 106, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/2454086903/83yvj0fagdu9xduv5zil_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Japc", "lang": "es", "profile_background_tile": false, "favourites_count": 45, "screen_name": "Japaz_", "url": null, "created_at": "Tue Jul 31 21:53:16 +0000 2012", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 03:46:45 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Love it! RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/PAM9LMCE3V", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.tweetdeck.com\" rel=\"nofollow\">TweetDeck</a>", "retweeted": false, "coordinates": null, "id": 372564275941761024, "entities": {"symbols": [], "user_mentions": [{"indices": [12, 27], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/PAM9LMCE3V", "indices": [61, 83], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372564275941761024", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1605000253, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000154608351/2578623ecc0d0278c00f8ca87882b4a0_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/TfidOlxHOL", "indices": [0, 22], "expanded_url": "http://bit.ly/13tT8sY", "display_url": "bit.ly/13tT8sY"}]}, "description": {"urls": []}}, "followers_count": 8, "protected": false, "location": "Kuala Lumpur \u5409\u9686\u5761", "default_profile_image": false, "id_str": "1605000253", "utc_offset": 28800, "statuses_count": 181, "description": "An analyst of self, economics and country.", "friends_count": 17, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000154608351/2578623ecc0d0278c00f8ca87882b4a0_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Firdaos \u83f2\u5c14\u9053\u65af", "lang": "en-gb", "profile_background_tile": false, "favourites_count": 2, "screen_name": "firdaos", "url": "http://t.co/TfidOlxHOL", "created_at": "Fri Jul 19 03:37:08 +0000 2013", "contributors_enabled": false, "time_zone": "Beijing", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 03:40:19 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @Claudia_Sahm: if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman htt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372542976745947138, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 16], "screen_name": "Claudia_Sahm", "id": 359346263, "name": "Claudia Sahm", "id_str": "359346263"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372542976745947138", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman http://t.co/3VYS9ybSza", "in_reply_to_status_id": null, "id": 372453555065479168, "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/3VYS9ybSza", "indices": [118, 140], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372453555065479168", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 359346263, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "", "default_profile_image": false, "id_str": "359346263", "utc_offset": -14400, "statuses_count": 2330, "description": "economist. tweets are my personal views. re-tweets signal interest, not agreement", "friends_count": 167, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/359346263/1376310193", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "name": "Claudia Sahm", "lang": "en", "profile_background_tile": false, "favourites_count": 878, "screen_name": "Claudia_Sahm", "url": null, "created_at": "Sun Aug 21 12:33:21 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 21}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:20:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14542850, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/JtdmbedsxZ", "indices": [0, 22], "expanded_url": "http://englishcomplit.unc.edu/people/curtaint", "display_url": "englishcomplit.unc.edu/people/curtaint"}]}, "description": {"urls": []}}, "followers_count": 220, "protected": false, "location": "iPhone: 33.807388,-84.393372", "default_profile_image": false, "id_str": "14542850", "utc_offset": -14400, "statuses_count": 1395, "description": "Interests include philosophy of biology, philosophical and evolutionary theories of language, theoretical computer science and linguistics. SciFi & Fantasy", "friends_count": 390, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14542850/1369922173", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Tyler Curtain", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "tylercurtain", "url": "http://t.co/JtdmbedsxZ", "created_at": "Sat Apr 26 11:59:37 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 10}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Wed Aug 28 02:15:41 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372537212396519424, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372537212396519424", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 10156952, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/628859992/PJS02_011210_44x100_normal.jpg", "profile_sidebar_fill_color": "EFEFEF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/yZIWOM2S8X", "indices": [0, 22], "expanded_url": "http://www.siegerarchphoto.com", "display_url": "siegerarchphoto.com"}]}, "description": {"urls": []}}, "followers_count": 67, "protected": false, "location": "Minneapolis, MN USA", "default_profile_image": false, "id_str": "10156952", "utc_offset": -18000, "statuses_count": 784, "description": "Architectural Photographer -- photo documenting and interpreting design, architecture and the built environment", "friends_count": 56, "profile_link_color": "009999", "profile_image_url": "http://a0.twimg.com/profile_images/628859992/PJS02_011210_44x100_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/415206274/Arab_World_Institute-1.jpg", "profile_background_color": "131516", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/415206274/Arab_World_Institute-1.jpg", "name": "petesieger", "lang": "en", "profile_background_tile": true, "favourites_count": 162, "screen_name": "petesieger", "url": "http://t.co/yZIWOM2S8X", "created_at": "Sun Nov 11 17:26:16 +0000 2007", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "EEEEEE", "default_profile": false, "following": false, "listed_count": 3}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 01:52:47 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://tweetadder.com\" rel=\"nofollow\">TweetAdder v4</a>", "retweeted": false, "coordinates": null, "id": 372537097208356866, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372537097208356866", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 88762410, "verified": false, "profile_text_color": "111111", "profile_image_url_https": "https://si0.twimg.com/profile_images/518281183/Angry-PC-User-resized-128_normal.gif", "profile_sidebar_fill_color": "A9B2B7", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/H5kckFyiZs", "indices": [0, 22], "expanded_url": "http://www.portal4biz.com/election08", "display_url": "portal4biz.com/election08"}]}, "description": {"urls": []}}, "followers_count": 17060, "protected": false, "location": "Massachusetts", "default_profile_image": false, "id_str": "88762410", "utc_offset": -18000, "statuses_count": 24993, "description": "I'm a writer that enjoys blogging, politics, hard news, technology, and writing for other folks. I like to blog and consider myself a liberal Democrat.", "friends_count": 17608, "profile_link_color": "3E647A", "profile_image_url": "http://a0.twimg.com/profile_images/518281183/Angry-PC-User-resized-128_normal.gif", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/52593012/mqgravedigging.br.jpg", "profile_background_color": "000000", "profile_banner_url": "https://pbs.twimg.com/profile_banners/88762410/1373032014", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/52593012/mqgravedigging.br.jpg", "name": "Oliver Revilo", "lang": "en", "profile_background_tile": false, "favourites_count": 13, "screen_name": "writer2go", "url": "http://t.co/H5kckFyiZs", "created_at": "Mon Nov 09 21:13:14 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "3E647A", "default_profile": false, "following": false, "listed_count": 513}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 01:52:20 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @justinwolfers: DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhtt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.twitter.com\" rel=\"nofollow\">Twitter for Windows Phone</a>", "retweeted": false, "coordinates": null, "id": 372535498243575808, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 17], "screen_name": "justinwolfers", "id": 327577091, "name": "Justin Wolfers", "id_str": "327577091"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372535498243575808", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhttp://t.co/H0q5jC1hoh", "in_reply_to_status_id": null, "id": 372386691496947714, "favorite_count": 8, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/H0q5jC1hoh", "indices": [125, 147], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372386691496947714", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 327577091, "verified": false, "profile_text_color": "D64768", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "profile_sidebar_fill_color": "ED6F7A", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/oQVBBnZzq0", "indices": [0, 22], "expanded_url": "http://www.nber.org/~jwolfers", "display_url": "nber.org/~jwolfers"}]}, "description": {"urls": []}}, "followers_count": 40096, "protected": false, "location": "Washington, DC", "default_profile_image": false, "id_str": "327577091", "utc_offset": -18000, "statuses_count": 12329, "description": "---Economist by day. Dad by night. Runner when I get the time.---\nSenior Fellow @BrookingsEcon | Professor @UMichEcon & @FordSchool | Columnist @BloombergView", "friends_count": 499, "profile_link_color": "7D2B46", "profile_image_url": "http://a0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "profile_background_color": "2D2433", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327577091/1353358061", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "name": "Justin Wolfers", "lang": "en", "profile_background_tile": false, "favourites_count": 2833, "screen_name": "justinwolfers", "url": "http://t.co/oQVBBnZzq0", "created_at": "Fri Jul 01 20:01:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 1665}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:54:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 34934288, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000116811249/aa21fbad06e9d72394e05efb673fce4a_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 36, "protected": false, "location": "Brooklyn, NY", "default_profile_image": false, "id_str": "34934288", "utc_offset": -14400, "statuses_count": 47, "description": "", "friends_count": 71, "profile_link_color": "3224E5", "profile_image_url": "http://a0.twimg.com/profile_images/378800000116811249/aa21fbad06e9d72394e05efb673fce4a_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/10005537/untitled.jpg", "profile_background_color": "FFFFFF", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/10005537/untitled.jpg", "name": "John Schmitz", "lang": "en", "profile_background_tile": true, "favourites_count": 2, "screen_name": "JohnSchmitz", "url": null, "created_at": "Fri Apr 24 14:12:52 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "180607", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Wed Aug 28 01:45:58 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @justinwolfers: DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhtt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372534163246546944, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 17], "screen_name": "justinwolfers", "id": 327577091, "name": "Justin Wolfers", "id_str": "327577091"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372534163246546944", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhttp://t.co/H0q5jC1hoh", "in_reply_to_status_id": null, "id": 372386691496947714, "favorite_count": 8, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/H0q5jC1hoh", "indices": [125, 147], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372386691496947714", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 327577091, "verified": false, "profile_text_color": "D64768", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "profile_sidebar_fill_color": "ED6F7A", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/oQVBBnZzq0", "indices": [0, 22], "expanded_url": "http://www.nber.org/~jwolfers", "display_url": "nber.org/~jwolfers"}]}, "description": {"urls": []}}, "followers_count": 40096, "protected": false, "location": "Washington, DC", "default_profile_image": false, "id_str": "327577091", "utc_offset": -18000, "statuses_count": 12329, "description": "---Economist by day. Dad by night. Runner when I get the time.---\nSenior Fellow @BrookingsEcon | Professor @UMichEcon & @FordSchool | Columnist @BloombergView", "friends_count": 499, "profile_link_color": "7D2B46", "profile_image_url": "http://a0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "profile_background_color": "2D2433", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327577091/1353358061", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "name": "Justin Wolfers", "lang": "en", "profile_background_tile": false, "favourites_count": 2833, "screen_name": "justinwolfers", "url": "http://t.co/oQVBBnZzq0", "created_at": "Fri Jul 01 20:01:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 1665}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:54:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 166376529, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000268228536/b4ff098745b35bc13c783c88884e4d85_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/qOgM8QXLl7", "indices": [0, 22], "expanded_url": "http://priorprobability.com", "display_url": "priorprobability.com"}]}, "description": {"urls": []}}, "followers_count": 118, "protected": false, "location": "", "default_profile_image": false, "id_str": "166376529", "utc_offset": -14400, "statuses_count": 738, "description": "Hey, where did you get your priors? I don't care, but you can update them at the prior probability blog.", "friends_count": 44, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000268228536/b4ff098745b35bc13c783c88884e4d85_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Enrique Guerra-Pujol", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "lawscholar", "url": "http://t.co/qOgM8QXLl7", "created_at": "Wed Jul 14 00:39:11 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Wed Aug 28 01:40:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics, via @nytimes. Y esta es la respuesta de Krugman. Muy relevante http://t.co/UzKJWrKvFq", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>", "retweeted": false, "coordinates": null, "id": 372521581635190784, "entities": {"symbols": [], "user_mentions": [{"indices": [37, 45], "screen_name": "nytimes", "id": 807095, "name": "The New York Times", "id_str": "807095"}], "hashtags": [], "urls": [{"url": "http://t.co/UzKJWrKvFq", "indices": [96, 118], "expanded_url": "http://nyti.ms/145VnnO", "display_url": "nyti.ms/145VnnO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372521581635190784", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 80353633, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303715880/Francisco_Azuero_Blog_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/spExKrgdWl", "indices": [0, 22], "expanded_url": "http://franciscoazuero.blogspot.com", "display_url": "franciscoazuero.blogspot.com"}]}, "description": {"urls": []}}, "followers_count": 134, "protected": false, "location": "Bogot\u00e1, Colombia", "default_profile_image": false, "id_str": "80353633", "utc_offset": -18000, "statuses_count": 181, "description": "Profesor Universidad de los Andes. Economista preocupado por los temas p\u00fablicos", "friends_count": 47, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1303715880/Francisco_Azuero_Blog_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Francisco Azuero ", "lang": "es", "profile_background_tile": false, "favourites_count": 18, "screen_name": "pachoazuero", "url": "http://t.co/spExKrgdWl", "created_at": "Tue Oct 06 17:21:21 +0000 2009", "contributors_enabled": false, "time_zone": "Bogota", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "es", "created_at": "Wed Aug 28 00:50:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics -| http://t.co/3StIUeofnh - Paul Krugman http://t.co/5AE3lHjEyu #finance #economy", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.hootsuite.com\" rel=\"nofollow\">HootSuite</a>", "retweeted": false, "coordinates": null, "id": 372521556851064832, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [97, 105], "text": "finance"}, {"indices": [106, 114], "text": "economy"}], "urls": [{"url": "http://t.co/3StIUeofnh", "indices": [35, 57], "expanded_url": "http://NYTimes.com", "display_url": "NYTimes.com"}, {"url": "http://t.co/5AE3lHjEyu", "indices": [74, 96], "expanded_url": "http://ow.ly/ojMHJ", "display_url": "ow.ly/ojMHJ"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372521556851064832", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1216936417, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3304308206/8e3e01a46b121cd7185f2cdfd5a4c637_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/tQeAaDhu6g", "indices": [0, 22], "expanded_url": "http://caprocessing.com/", "display_url": "caprocessing.com"}]}, "description": {"urls": []}}, "followers_count": 177, "protected": false, "location": "Carlsbad, CA", "default_profile_image": false, "id_str": "1216936417", "utc_offset": null, "statuses_count": 447, "description": "Consolidate unsecured consumer debt into one monthly payment before you go bankrupt. San Diego's leading bonded debt consolidation co. Free debt comparison tool", "friends_count": 447, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3304308206/8e3e01a46b121cd7185f2cdfd5a4c637_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/799629976/c9a218744ffa96904627b353e7d5d3db.jpeg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/799629976/c9a218744ffa96904627b353e7d5d3db.jpeg", "name": "CaProcessing", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "caprocessing", "url": "http://t.co/tQeAaDhu6g", "created_at": "Mon Feb 25 00:59:59 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 10}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 00:50:34 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372515711022682113, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372515711022682113", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 363683222, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 18, "protected": false, "location": "", "default_profile_image": true, "id_str": "363683222", "utc_offset": 32400, "statuses_count": 1686, "description": "", "friends_count": 49, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "newssubscriber", "lang": "ko", "profile_background_tile": false, "favourites_count": 7995, "screen_name": "newsubscriber", "url": null, "created_at": "Sun Aug 28 14:28:21 +0000 2011", "contributors_enabled": false, "time_zone": "Irkutsk", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Wed Aug 28 00:27:21 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\"The real problem with economics\" @NYTimeskrugman http://t.co/ocDAynPAuq", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372495943360204800, "entities": {"symbols": [], "user_mentions": [{"indices": [35, 50], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/ocDAynPAuq", "indices": [51, 73], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372495943360204800", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 218129627, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3500987560/8a2885df2b858e3bb42f0e5f1270c3dd_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 166, "protected": false, "location": "Bogot\u00e1, Colombia", "default_profile_image": false, "id_str": "218129627", "utc_offset": null, "statuses_count": 5213, "description": "Hombre Caribe! Junior tu pap\u00e1 #correrporplacer", "friends_count": 453, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3500987560/8a2885df2b858e3bb42f0e5f1270c3dd_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/218129627/1365568872", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Jos\u00e9 Mar\u00eda Rold\u00e1n", "lang": "es", "profile_background_tile": false, "favourites_count": 25, "screen_name": "cheperoldan", "url": null, "created_at": "Sun Nov 21 14:14:36 +0000 2010", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 23:08:48 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krug: these past 5 years have been a triumph for and vindication of economic modeling!The Real Trouble With Economics http://t.co/U1qgovcaJD", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372490980408049664, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/U1qgovcaJD", "indices": [118, 140], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372490980408049664", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 44548929, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190819265/Alan_moran_005_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/07o9WRnY4m", "indices": [0, 22], "expanded_url": "http://www.ipa.org.au/people/alan-moran", "display_url": "ipa.org.au/people/alan-mo\u2026"}]}, "description": {"urls": []}}, "followers_count": 202, "protected": false, "location": "melbourne", "default_profile_image": false, "id_str": "44548929", "utc_offset": 36000, "statuses_count": 1683, "description": "Economist, deregulator, privatiser, favours low taxes, and small government. Concerns: green radicals, protectionists, government planners, political operators", "friends_count": 56, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1190819265/Alan_moran_005_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "alan moran", "lang": "en", "profile_background_tile": false, "favourites_count": 5, "screen_name": "alan_john_moran", "url": "http://t.co/07o9WRnY4m", "created_at": "Thu Jun 04 04:52:06 +0000 2009", "contributors_enabled": false, "time_zone": "Melbourne", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 5}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:49:04 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman on the problematic sociology of the economics profession: http://t.co/7tTohS7VAj", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372489240023949312, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/7tTohS7VAj", "indices": [66, 88], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372489240023949312", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 18522298, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3727759759/76af3c580457ed337033b5c8036ec2c3_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 488, "protected": false, "location": "Washington, DC", "default_profile_image": false, "id_str": "18522298", "utc_offset": -14400, "statuses_count": 9785, "description": "MSPPM candidate @CarnegieMellon @HeinzCollege. Tweeting abt economic policy, other random interests. Left-of-center but open-minded. Usual disclaimers.", "friends_count": 1028, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3727759759/76af3c580457ed337033b5c8036ec2c3_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Mickey Jackson", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "screen_name": "97mjackson", "url": null, "created_at": "Thu Jan 01 03:13:01 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 29}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:42:09 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Worth reading... @NYTimeskrugman: The Real Trouble With Economics http://t.co/BpUZEIPnFc", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372480222114750464, "entities": {"symbols": [], "user_mentions": [{"indices": [17, 32], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/BpUZEIPnFc", "indices": [66, 88], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372480222114750464", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1564499760, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000243015975/2a015879b9f8d0c434171dd7cbea5dda_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/bUzdHqlObD", "indices": [0, 22], "expanded_url": "http://www.tamaulipas.gob.mx", "display_url": "tamaulipas.gob.mx"}]}, "description": {"urls": []}}, "followers_count": 152, "protected": false, "location": "Ciudad Victoria, MX", "default_profile_image": false, "id_str": "1564499760", "utc_offset": null, "statuses_count": 2565, "description": "31 a\u00f1os de edad.Apasionado e intenso por todo lo q ofrece la vida.Administrador P\u00fablico, con 20 a\u00f1os de probada militancia pri\u00edsta y12 a\u00f1os de servicio p\u00fablico.", "friends_count": 392, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000243015975/2a015879b9f8d0c434171dd7cbea5dda_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564499760/1374471652", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Mario X. Villarreal", "lang": "es", "profile_background_tile": false, "favourites_count": 674, "screen_name": "MarioXVillarrea", "url": "http://t.co/bUzdHqlObD", "created_at": "Wed Jul 03 01:27:09 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:06:19 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "In defence of economics. Somewhat. RT: The Real Trouble With Economics http://t.co/1Xw6t4M6x8", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372480015599800320, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/1Xw6t4M6x8", "indices": [71, 93], "expanded_url": "http://nyti.ms/145VnnO", "display_url": "nyti.ms/145VnnO"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372480015599800320", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 470802436, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3533275683/0f104f70e454eeaf58243cd373baa890_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 38, "protected": false, "location": "Canada", "default_profile_image": false, "id_str": "470802436", "utc_offset": null, "statuses_count": 76, "description": "Aspiring sommelier, secretly disguised as an irritable energy trader and visionary behind the next fashion craze, \u201cPatagonia Chic\u201d.", "friends_count": 94, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3533275683/0f104f70e454eeaf58243cd373baa890_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/470802436/1366168373", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Blake Shaffer", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "BlakeShaffer1", "url": null, "created_at": "Sun Jan 22 05:09:20 +0000 2012", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:05:30 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372479855977590784, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372479855977590784", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 258873196, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693992741/oqe3Ei1D_normal", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/TSmi6yIwkQ", "indices": [0, 22], "expanded_url": "http://facebook.com/davidallenbatchelor/", "display_url": "facebook.com/davidallenbatc\u2026"}]}, "description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "Beltsville, Maryland, USA", "default_profile_image": false, "id_str": "258873196", "utc_offset": -14400, "statuses_count": 8319, "description": "Author of The Metalmark Contract, Astrophysicist", "friends_count": 469, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1693992741/oqe3Ei1D_normal", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "David Batchelor", "lang": "en", "profile_background_tile": false, "favourites_count": 7, "screen_name": "davidabatchelor", "url": "http://t.co/TSmi6yIwkQ", "created_at": "Mon Feb 28 17:54:12 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 18}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:04:52 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372479839975927810, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372479839975927810", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1374736632, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3765193919/ee688b426f01ae550eee1de6828064bc_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/LXns1arUOh", "indices": [0, 22], "expanded_url": "http://www.danshort.com/crusade/", "display_url": "danshort.com/crusade/"}]}, "description": {"urls": []}}, "followers_count": 197, "protected": false, "location": "", "default_profile_image": false, "id_str": "1374736632", "utc_offset": -25200, "statuses_count": 1789, "description": "Veritas Contra Mundum ................................ \nY Gwir yn Erbyn y Byd", "friends_count": 794, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3765193919/ee688b426f01ae550eee1de6828064bc_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/869613286/cb085aa000cb1b2fbc0561cd8a264af3.jpeg", "profile_background_color": "131414", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1374736632/1368683268", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/869613286/cb085aa000cb1b2fbc0561cd8a264af3.jpeg", "name": "Truth vs. World", "lang": "en", "profile_background_tile": true, "favourites_count": 21, "screen_name": "TruthVsWorld", "url": "http://t.co/LXns1arUOh", "created_at": "Tue Apr 23 14:57:53 +0000 2013", "contributors_enabled": false, "time_zone": "Arizona", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 3}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:04:48 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372479061609951232, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372479061609951232", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 47760825, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3532351521/3461bc37b43077b89bd571f997df2de1_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 364, "protected": false, "location": "Philadelphia", "default_profile_image": false, "id_str": "47760825", "utc_offset": -18000, "statuses_count": 10596, "description": "A Running Economist, community college professor & freelance writer and host of #econchat as @Econ_Chat #tweetnomics These are my independent thoughts.", "friends_count": 642, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3532351521/3461bc37b43077b89bd571f997df2de1_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/47760825/1353419593", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Jill Pescatore", "lang": "en", "profile_background_tile": false, "favourites_count": 1991, "screen_name": "Econ_Bricabrac", "url": null, "created_at": "Tue Jun 16 22:43:03 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 17}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:01:43 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372478628602195969, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372478628602195969", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1564499760, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000243015975/2a015879b9f8d0c434171dd7cbea5dda_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/bUzdHqlObD", "indices": [0, 22], "expanded_url": "http://www.tamaulipas.gob.mx", "display_url": "tamaulipas.gob.mx"}]}, "description": {"urls": []}}, "followers_count": 152, "protected": false, "location": "Ciudad Victoria, MX", "default_profile_image": false, "id_str": "1564499760", "utc_offset": null, "statuses_count": 2565, "description": "31 a\u00f1os de edad.Apasionado e intenso por todo lo q ofrece la vida.Administrador P\u00fablico, con 20 a\u00f1os de probada militancia pri\u00edsta y12 a\u00f1os de servicio p\u00fablico.", "friends_count": 392, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000243015975/2a015879b9f8d0c434171dd7cbea5dda_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564499760/1374471652", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Mario X. Villarreal", "lang": "es", "profile_background_tile": false, "favourites_count": 674, "screen_name": "MarioXVillarrea", "url": "http://t.co/bUzdHqlObD", "created_at": "Wed Jul 03 01:27:09 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 22:00:00 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://blackberry.com/twitter\" rel=\"nofollow\">Twitter for BlackBerry\u00ae</a>", "retweeted": false, "coordinates": null, "id": 372475790656409600, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372475790656409600", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 389024573, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/2312821813/0so4dejilb31lp4uacsl_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RPOZtasecd", "indices": [0, 22], "expanded_url": "http://anthropologyreport.com/", "display_url": "anthropologyreport.com"}]}, "description": {"urls": [{"url": "http://t.co/3PqXyyNI00", "indices": [58, 80], "expanded_url": "http://www.livinganthropologically.com/", "display_url": "livinganthropologically.com"}, {"url": "http://t.co/gYu1seLMeQ", "indices": [108, 130], "expanded_url": "http://localispossible.com/", "display_url": "localispossible.com"}]}}, "followers_count": 5544, "protected": false, "location": "Oneonta, NY", "default_profile_image": false, "id_str": "389024573", "utc_offset": -14400, "statuses_count": 2864, "description": "Anthropology Report and blogs at Living Anthropologically http://t.co/3PqXyyNI00 and the Local is Possible, http://t.co/gYu1seLMeQ", "friends_count": 6098, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/2312821813/0so4dejilb31lp4uacsl_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", "profile_background_color": "1A1B1F", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme9/bg.gif", "name": "Jason Antrosio", "lang": "en", "profile_background_tile": false, "favourites_count": 1003, "screen_name": "JasonAntrosio", "url": "http://t.co/RPOZtasecd", "created_at": "Tue Oct 11 18:40:24 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 200}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 21:48:43 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\"...has ceased rewarding research that produces successful predictions and rewards research that fits preconceptions\" http://t.co/RX8gMIuDfg", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372462943897919488, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/RX8gMIuDfg", "indices": [118, 140], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372462943897919488", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 903987325, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3154940782/ff36f9dd9089d7e5e1687f9766d5dc9c_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 58, "protected": false, "location": "London", "default_profile_image": false, "id_str": "903987325", "utc_offset": 3600, "statuses_count": 1854, "description": "I am an economist, focusing on economics of development, economic policy and social equality.", "friends_count": 96, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3154940782/ff36f9dd9089d7e5e1687f9766d5dc9c_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/903987325/1358994959", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Nick Litsardopoulos", "lang": "en", "profile_background_tile": false, "favourites_count": 121, "screen_name": "Nlitsardopoulos", "url": null, "created_at": "Thu Oct 25 14:10:29 +0000 2012", "contributors_enabled": false, "time_zone": "Casablanca", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:57:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372460242522882048, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372460242522882048", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1620302124, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000203326321/633749d2553bb4fbc38a28e82f5cc531_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 19, "protected": false, "location": "\u00d6rebro", "default_profile_image": false, "id_str": "1620302124", "utc_offset": null, "statuses_count": 221, "description": "Ekonom", "friends_count": 94, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000203326321/633749d2553bb4fbc38a28e82f5cc531_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1620302124/1375031473", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Daniel Lennartsson", "lang": "sv", "profile_background_tile": false, "favourites_count": 73, "screen_name": "DanielElg", "url": null, "created_at": "Thu Jul 25 13:08:42 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:46:56 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @Cornelioid: Interesting &amp; thorough disagreement over #economics as a #science. http://t.co/eGVxFdln5e http://t.co/LBMq1fnois #Philosoph\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372458533859516416, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 14], "screen_name": "Cornelioid", "id": 554782855, "name": "Cory", "id_str": "554782855"}], "hashtags": [{"indices": [61, 71], "text": "economics"}, {"indices": [77, 85], "text": "science"}, {"indices": [133, 143], "text": "Philosoph"}], "urls": [{"url": "http://t.co/eGVxFdln5e", "indices": [87, 109], "expanded_url": "http://opinionator.blogs.nytimes.com/2013/08/24/what-is-economics-good-for/", "display_url": "opinionator.blogs.nytimes.com/2013/08/24/wha\u2026"}, {"url": "http://t.co/LBMq1fnois", "indices": [110, 132], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372458533859516416", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "Interesting &amp; thorough disagreement over #economics as a #science. http://t.co/eGVxFdln5e http://t.co/LBMq1fnois #PhilosophyOfScience", "in_reply_to_status_id": null, "id": 372387928594329600, "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [{"indices": [45, 55], "text": "economics"}, {"indices": [61, 69], "text": "science"}, {"indices": [117, 137], "text": "PhilosophyOfScience"}], "urls": [{"url": "http://t.co/eGVxFdln5e", "indices": [71, 93], "expanded_url": "http://opinionator.blogs.nytimes.com/2013/08/24/what-is-economics-good-for/", "display_url": "opinionator.blogs.nytimes.com/2013/08/24/wha\u2026"}, {"url": "http://t.co/LBMq1fnois", "indices": [94, 116], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372387928594329600", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 554782855, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3333629626/0df0b3062441068e2ce21a9ca866d39f_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vOvKLi2wej", "indices": [0, 22], "expanded_url": "http://cornelioid.wordpress.com/", "display_url": "cornelioid.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 27, "protected": false, "location": "Blacksburg, VA", "default_profile_image": false, "id_str": "554782855", "utc_offset": null, "statuses_count": 445, "description": "Aspiring mathematician, skeptic, radical, polyamorist, cyclist, and ethical lifestylist. Curious, contrarian, flexible, short-tempered. Welcomes corrections.", "friends_count": 33, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3333629626/0df0b3062441068e2ce21a9ca866d39f_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/554782855/1374295640", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Cory", "lang": "en", "profile_background_tile": false, "favourites_count": 12, "screen_name": "Cornelioid", "url": "http://t.co/vOvKLi2wej", "created_at": "Mon Apr 16 01:46:20 +0000 2012", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:59:35 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1551255859, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000056000738/b0432978ba3e17b1bfd8a6aee92e9330_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/l3wGpfCPri", "indices": [0, 22], "expanded_url": "http://www.philosophy-science-practice.org/", "display_url": "philosophy-science-practice.org"}]}, "description": {"urls": []}}, "followers_count": 120, "protected": false, "location": "SPSP 2013 Toronto ", "default_profile_image": false, "id_str": "1551255859", "utc_offset": null, "statuses_count": 695, "description": "Society for Philosophy of Science in Practice", "friends_count": 208, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000056000738/b0432978ba3e17b1bfd8a6aee92e9330_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000009678143/32f00a67dcf4a79bc5a64aeb709009fe.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1551255859/1372380244", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000009678143/32f00a67dcf4a79bc5a64aeb709009fe.jpeg", "name": "SocPhilSciPract", "lang": "en", "profile_background_tile": true, "favourites_count": 438, "screen_name": "SocPhilSciPract", "url": "http://t.co/l3wGpfCPri", "created_at": "Thu Jun 27 18:29:32 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 8}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:40:09 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372458315944427520, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372458315944427520", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14542850, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/JtdmbedsxZ", "indices": [0, 22], "expanded_url": "http://englishcomplit.unc.edu/people/curtaint", "display_url": "englishcomplit.unc.edu/people/curtaint"}]}, "description": {"urls": []}}, "followers_count": 220, "protected": false, "location": "iPhone: 33.807388,-84.393372", "default_profile_image": false, "id_str": "14542850", "utc_offset": -14400, "statuses_count": 1395, "description": "Interests include philosophy of biology, philosophical and evolutionary theories of language, theoretical computer science and linguistics. SciFi & Fantasy", "friends_count": 390, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14542850/1369922173", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Tyler Curtain", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "tylercurtain", "url": "http://t.co/JtdmbedsxZ", "created_at": "Sat Apr 26 11:59:37 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 10}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:39:17 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @Claudia_Sahm: if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman htt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372457905955418112, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 16], "screen_name": "Claudia_Sahm", "id": 359346263, "name": "Claudia Sahm", "id_str": "359346263"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372457905955418112", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman http://t.co/3VYS9ybSza", "in_reply_to_status_id": null, "id": 372453555065479168, "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/3VYS9ybSza", "indices": [118, 140], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372453555065479168", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 359346263, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "", "default_profile_image": false, "id_str": "359346263", "utc_offset": -14400, "statuses_count": 2330, "description": "economist. tweets are my personal views. re-tweets signal interest, not agreement", "friends_count": 167, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/359346263/1376310193", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "name": "Claudia Sahm", "lang": "en", "profile_background_tile": false, "favourites_count": 878, "screen_name": "Claudia_Sahm", "url": null, "created_at": "Sun Aug 21 12:33:21 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 21}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:20:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 462}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Tue Aug 27 20:37:39 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372455982661918720, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372455982661918720", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 429732802, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3404339080/35afa1f64cdd63f7f2c9a3a5982e6050_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 225, "protected": false, "location": "Oxford", "default_profile_image": false, "id_str": "429732802", "utc_offset": null, "statuses_count": 1300, "description": "an Australian studying at Oxford with haphazard interests in literature, economics, chess and Tim Tebow.", "friends_count": 583, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3404339080/35afa1f64cdd63f7f2c9a3a5982e6050_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Hugo Batten", "lang": "en", "profile_background_tile": false, "favourites_count": 568, "screen_name": "hcwbatten", "url": null, "created_at": "Tue Dec 06 09:43:06 +0000 2011", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:30:00 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman http://t.co/3VYS9ybSza", "in_reply_to_status_id": null, "children": [{"contributors": null, "truncated": false, "text": "RT @Claudia_Sahm: if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman htt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372542976745947138, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 16], "screen_name": "Claudia_Sahm", "id": 359346263, "name": "Claudia Sahm", "id_str": "359346263"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "id_str": "372542976745947138", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman http://t.co/3VYS9ybSza", "in_reply_to_status_id": null, "id": 372453555065479168, "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/3VYS9ybSza", "indices": [118, 140], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372453555065479168", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 359346263, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "", "default_profile_image": false, "id_str": "359346263", "utc_offset": -14400, "statuses_count": 2330, "description": "economist. tweets are my personal views. re-tweets signal interest, not agreement", "friends_count": 167, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/359346263/1376310193", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "name": "Claudia Sahm", "lang": "en", "profile_background_tile": false, "favourites_count": 879, "screen_name": "Claudia_Sahm", "url": null, "created_at": "Sun Aug 21 12:33:21 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": null, "listed_count": 21}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:20:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 14542850, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/JtdmbedsxZ", "indices": [0, 22], "expanded_url": "http://englishcomplit.unc.edu/people/curtaint", "display_url": "englishcomplit.unc.edu/people/curtaint"}]}, "description": {"urls": []}}, "followers_count": 221, "protected": false, "location": "iPhone: 33.807388,-84.393372", "default_profile_image": false, "id_str": "14542850", "utc_offset": -14400, "statuses_count": 1395, "description": "Interests include philosophy of biology, philosophical and evolutionary theories of language, theoretical computer science and linguistics. SciFi & Fantasy", "friends_count": 390, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3732027369/38baa67f6ac78a5cbf4d3d1a3b73b0c9_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14542850/1369922173", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Tyler Curtain", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "tylercurtain", "url": "http://t.co/JtdmbedsxZ", "created_at": "Sat Apr 26 11:59:37 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": null, "listed_count": 10}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Wed Aug 28 02:15:41 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, {"contributors": null, "truncated": false, "text": "RT @Claudia_Sahm: if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman htt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372457905955418112, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 16], "screen_name": "Claudia_Sahm", "id": 359346263, "name": "Claudia Sahm", "id_str": "359346263"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "id_str": "372457905955418112", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "if \"Rosenberg and Curtain completely misunderstand what\u2019s been going on at the Fed\" ...then so do others like Krugman http://t.co/3VYS9ybSza", "in_reply_to_status_id": null, "id": 372453555065479168, "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/3VYS9ybSza", "indices": [118, 140], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "id_str": "372453555065479168", "retweet_count": 2, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 359346263, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "", "default_profile_image": false, "id_str": "359346263", "utc_offset": -14400, "statuses_count": 2330, "description": "economist. tweets are my personal views. re-tweets signal interest, not agreement", "friends_count": 167, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/359346263/1376310193", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "name": "Claudia Sahm", "lang": "en", "profile_background_tile": false, "favourites_count": 879, "screen_name": "Claudia_Sahm", "url": null, "created_at": "Sun Aug 21 12:33:21 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": null, "listed_count": 21}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:20:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": null, "listed_count": 463}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Tue Aug 27 20:37:39 +0000 2013", "in_reply_to_status_id_str": null, "place": null}], "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "id": 372453555065479168, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/3VYS9ybSza", "indices": [118, 140], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372453555065479168", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 359346263, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 337, "protected": false, "location": "", "default_profile_image": false, "id_str": "359346263", "utc_offset": -14400, "statuses_count": 2330, "description": "economist. tweets are my personal views. re-tweets signal interest, not agreement", "friends_count": 167, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000279445160/7da4fe3f0a3b2f98193e4bc3f12b1873_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/359346263/1376310193", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000004815586/ca437cd4fe5f87974b99d2ddba2f414e.jpeg", "name": "Claudia Sahm", "lang": "en", "profile_background_tile": false, "favourites_count": 878, "screen_name": "Claudia_Sahm", "url": null, "created_at": "Sun Aug 21 12:33:21 +0000 2011", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 21}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:20:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372449299034288128, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372449299034288128", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 253069585, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2214502069/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 73, "protected": false, "location": "", "default_profile_image": false, "id_str": "253069585", "utc_offset": null, "statuses_count": 542, "description": "", "friends_count": 128, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2214502069/image_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Susie Gilbert", "lang": "en", "profile_background_tile": false, "favourites_count": 17, "screen_name": "susiegilb", "url": null, "created_at": "Wed Feb 16 14:00:09 +0000 2011", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 20:03:27 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.flipboard.com\" rel=\"nofollow\">Flipboard</a>", "retweeted": false, "coordinates": null, "id": 372447904050708480, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372447904050708480", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 459070428, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1743418128/Jess_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 159, "protected": false, "location": "Johannesburg", "default_profile_image": false, "id_str": "459070428", "utc_offset": 7200, "statuses_count": 2731, "description": "Still learning!", "friends_count": 261, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1743418128/Jess_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Gareth Roberts", "lang": "en", "profile_background_tile": false, "favourites_count": 18, "screen_name": "garethrobertsza", "url": null, "created_at": "Mon Jan 09 07:48:08 +0000 2012", "contributors_enabled": false, "time_zone": "Pretoria", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 7}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:57:54 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372447707878535170, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372447707878535170", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 707769918, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2554312552/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 5, "protected": false, "location": "", "default_profile_image": false, "id_str": "707769918", "utc_offset": 36000, "statuses_count": 32, "description": "", "friends_count": 36, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2554312552/image_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "john mullen", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "screen_name": "mullo49", "url": null, "created_at": "Fri Jul 20 20:42:23 +0000 2012", "contributors_enabled": false, "time_zone": "Sydney", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:57:07 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372444245459628032, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372444245459628032", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 412213891, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638521788/att6773578_1282833598_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/RCEPwWJW4Z", "indices": [0, 22], "expanded_url": "http://lemonde-emploi.blog.lemonde.fr", "display_url": "lemonde-emploi.blog.lemonde.fr"}]}, "description": {"urls": []}}, "followers_count": 8127, "protected": false, "location": "", "default_profile_image": false, "id_str": "412213891", "utc_offset": -36000, "statuses_count": 57499, "description": "Le Monde EcoEnt est le second cahier quotidien du Monde. Retrouvez \u00e9galement des informations in\u00e9dites sur notre blog.", "friends_count": 5585, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1638521788/att6773578_1282833598_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "LeMondeEcoEnt", "lang": "fr", "profile_background_tile": false, "favourites_count": 2, "screen_name": "LeMondeEcoEnt", "url": "http://t.co/RCEPwWJW4Z", "created_at": "Mon Nov 14 12:01:43 +0000 2011", "contributors_enabled": false, "time_zone": "Hawaii", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 315}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:43:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\u201c@cabrowns: Grande, Krugman | The Real Trouble With Economics http://t.co/efOgSbM9o6\u201d Ccp @javierjileta (nam\u00e1s por no dejar...)", "in_reply_to_status_id": 372434512992403457, "children": [{"contributors": null, "truncated": false, "text": "@Netank @cabrowns Nunca falta quienes apoyan aventarle dinero a los problemas, yo no.", "in_reply_to_status_id": 372443721012232192, "children": [{"contributors": null, "truncated": false, "text": "@javierjileta me gusta cuando me hablas golpeado. Claro q entre la debacle de Rogoff y la malaise europea, es dif\u00edcil estar de tu lado.", "in_reply_to_status_id": 372583581509382144, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372592049671139330, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "javierjileta", "id": 63641770, "name": "Javier Jileta", "id_str": "63641770"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "javierjileta", "in_reply_to_user_id": 63641770, "retweet_count": 0, "id_str": "372592049671139330", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35419, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "63641770", "lang": "es", "created_at": "Wed Aug 28 05:30:41 +0000 2013", "in_reply_to_status_id_str": "372583581509382144", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "retweeted": false, "coordinates": null, "id": 372583581509382144, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372583581509382144", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:57:02 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank @cabrowns por cierto, tan buenas sus \u201csugerencias\u201d que todo lo que se inyecta a grecia, pinta para perderse...", "in_reply_to_status_id": 372443721012232192, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "retweeted": false, "coordinates": null, "id": 372583532947726336, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372583532947726336", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:56:51 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank @cabrowns no se cansan de leer a su self praising continuo... Nom\u00e1s por nom\u00e1s? Nada de evidencia puro chisme dice.", "in_reply_to_status_id": 372443721012232192, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>", "retweeted": false, "coordinates": null, "id": 372582919237144576, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372582919237144576", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:54:24 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank JAJAJAJA amo que hagas eso.", "in_reply_to_status_id": 372443721012232192, "children": [{"contributors": null, "truncated": false, "text": "@cabrowns me encanta hacerlo. Jijijijii", "in_reply_to_status_id": 372443838536638464, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372448119176192000, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 9], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "cabrowns", "in_reply_to_user_id": 15685115, "retweet_count": 0, "id_str": "372448119176192000", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35419, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "15685115", "lang": "es", "created_at": "Tue Aug 27 19:58:46 +0000 2013", "in_reply_to_status_id_str": "372443838536638464", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://itunes.apple.com/us/app/twitter/id409789998?mt=12\" rel=\"nofollow\">Twitter for Mac</a>", "retweeted": false, "coordinates": null, "id": 372443838536638464, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372443838536638464", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 15685115, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 1246, "protected": false, "location": "Ciudad de M\u00e9xico / Canc\u00fan", "default_profile_image": false, "id_str": "15685115", "utc_offset": -18000, "statuses_count": 78415, "description": "Internacionalista (An\u00e1huac) + economista (Colmex) | A la izquierda del centro | Mi banda favorita tiene una canci\u00f3n con mi nombre | JCLA", "friends_count": 607, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685115/1353115667", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "name": "Brown", "lang": "en", "profile_background_tile": false, "favourites_count": 5173, "screen_name": "cabrowns", "url": null, "created_at": "Fri Aug 01 03:42:05 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 45}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Tue Aug 27 19:41:45 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372443721012232192, "entities": {"symbols": [], "user_mentions": [{"indices": [1, 10], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}, {"indices": [90, 103], "screen_name": "javierjileta", "id": 63641770, "name": "Javier Jileta", "id_str": "63641770"}], "hashtags": [], "urls": [{"url": "http://t.co/efOgSbM9o6", "indices": [62, 84], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": "cabrowns", "in_reply_to_user_id": 15685115, "retweet_count": 0, "id_str": "372443721012232192", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35417, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "15685115", "possibly_sensitive": false, "lang": "es", "created_at": "Tue Aug 27 19:41:17 +0000 2013", "in_reply_to_status_id_str": "372434512992403457", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @aotcb: The Real Trouble With Economics http://t.co/OUw069uquV a good response to What Is Economics Good For?", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372441520118308864, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 9], "screen_name": "aotcb", "id": 54526260, "name": "Ataman Ozyildirim", "id_str": "54526260"}], "hashtags": [], "urls": [{"url": "http://t.co/OUw069uquV", "indices": [43, 65], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372441520118308864", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/OUw069uquV a good response to What Is Economics Good For?", "in_reply_to_status_id": null, "id": 372435854246961152, "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/OUw069uquV", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372435854246961152", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 54526260, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/EmkrS3mjA6", "indices": [0, 22], "expanded_url": "http://www.conference-board.org/economics", "display_url": "conference-board.org/economics"}]}, "description": {"urls": []}}, "followers_count": 23, "protected": false, "location": "New York", "default_profile_image": false, "id_str": "54526260", "utc_offset": -14400, "statuses_count": 49, "description": "", "friends_count": 77, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Ataman Ozyildirim", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "aotcb", "url": "http://t.co/EmkrS3mjA6", "created_at": "Tue Jul 07 12:08:31 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:10:01 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 462}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:32:32 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @petercoffee: \"It\u2019s hard to find economists who changed their minds when their predictions [were] wrong.\" http://t.co/Tcvf1N2lxP", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372441385548263424, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 15], "screen_name": "petercoffee", "id": 107267818, "name": "Peter Coffee", "id_str": "107267818"}], "hashtags": [], "urls": [{"url": "http://t.co/Tcvf1N2lxP", "indices": [109, 131], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372441385548263424", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "\"It\u2019s hard to find economists who changed their minds when their predictions [were] wrong.\" http://t.co/Tcvf1N2lxP", "in_reply_to_status_id": null, "id": 372396576397742080, "favorite_count": 0, "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">Safari on iOS</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/Tcvf1N2lxP", "indices": [92, 114], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372396576397742080", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 107267818, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000157178957/ad7e21a69d4155d148953dd1eaadc888_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 5667, "protected": false, "location": "", "default_profile_image": false, "id_str": "107267818", "utc_offset": -25200, "statuses_count": 4063, "description": "I work with app developers and CIOs to build a global community around cloud-based platforms as a service", "friends_count": 282, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000157178957/ad7e21a69d4155d148953dd1eaadc888_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/716309120/963066eb82fa596bd172b90fe47739dc.jpeg", "profile_background_color": "151D47", "profile_banner_url": "https://pbs.twimg.com/profile_banners/107267818/1353368926", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/716309120/963066eb82fa596bd172b90fe47739dc.jpeg", "name": "Peter Coffee", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "screen_name": "petercoffee", "url": null, "created_at": "Fri Jan 22 01:23:31 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 266}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 16:33:57 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 462}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:32:00 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @pierrebri: The Real Trouble With Economics - Krugman: http://t.co/eeTZOYjz5V", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372441326693789696, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 13], "screen_name": "pierrebri", "id": 17614849, "name": "Pierre Brian\u00e7on", "id_str": "17614849"}], "hashtags": [], "urls": [{"url": "http://t.co/eeTZOYjz5V", "indices": [58, 80], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372441326693789696", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics - Krugman: http://t.co/eeTZOYjz5V", "in_reply_to_status_id": null, "id": 372386925887246336, "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/eeTZOYjz5V", "indices": [43, 65], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 2, "id_str": "372386925887246336", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17614849, "verified": false, "profile_text_color": "1A7E74", "profile_image_url_https": "https://si0.twimg.com/profile_images/3002866203/208b6a22b8a4a0b16a7f3426ef26544b_normal.jpeg", "profile_sidebar_fill_color": "307286", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7s5taUdI8N", "indices": [0, 22], "expanded_url": "http://www.breakingviews.com", "display_url": "breakingviews.com"}]}, "description": {"urls": []}}, "followers_count": 2692, "protected": false, "location": "London", "default_profile_image": false, "id_str": "17614849", "utc_offset": 3600, "statuses_count": 17171, "description": "Reuters Breakingviews European editor. Opinions my own. Retweeting no endorsing. Unless it is.", "friends_count": 613, "profile_link_color": "238FAD", "profile_image_url": "http://a0.twimg.com/profile_images/3002866203/208b6a22b8a4a0b16a7f3426ef26544b_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/741488902/e629c1a555662d419aeb946da31bafc6.png", "profile_background_color": "C0C6CF", "profile_banner_url": "https://pbs.twimg.com/profile_banners/17614849/1355831266", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/741488902/e629c1a555662d419aeb946da31bafc6.png", "name": "Pierre Brian\u00e7on", "lang": "en", "profile_background_tile": true, "favourites_count": 12, "screen_name": "pierrebri", "url": "http://t.co/7s5taUdI8N", "created_at": "Tue Nov 25 07:25:17 +0000 2008", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 148}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:55:36 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 462}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:31:46 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/OUw069uquV a good response to What Is Economics Good For?", "in_reply_to_status_id": null, "children": [{"contributors": null, "truncated": false, "text": "RT @aotcb: The Real Trouble With Economics http://t.co/OUw069uquV a good response to What Is Economics Good For?", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372441520118308864, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 9], "screen_name": "aotcb", "id": 54526260, "name": "Ataman Ozyildirim", "id_str": "54526260"}], "hashtags": [], "urls": [{"url": "http://t.co/OUw069uquV", "indices": [43, 65], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "id_str": "372441520118308864", "retweet_count": 1, "in_reply_to_user_id": null, "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/OUw069uquV a good response to What Is Economics Good For?", "in_reply_to_status_id": null, "id": 372435854246961152, "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/OUw069uquV", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "id_str": "372435854246961152", "retweet_count": 1, "in_reply_to_user_id": null, "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 54526260, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/EmkrS3mjA6", "indices": [0, 22], "expanded_url": "http://www.conference-board.org/economics", "display_url": "conference-board.org/economics"}]}, "description": {"urls": []}}, "followers_count": 23, "protected": false, "location": "New York", "default_profile_image": false, "id_str": "54526260", "utc_offset": -14400, "statuses_count": 49, "description": "", "friends_count": 77, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Ataman Ozyildirim", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "aotcb", "url": "http://t.co/EmkrS3mjA6", "created_at": "Tue Jul 07 12:08:31 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": null, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:10:01 +0000 2013", "in_reply_to_status_id_str": null, "place": null}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19458818, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/idK1CAjT5V", "indices": [0, 22], "expanded_url": "http://takinghayekseriously.wordpress.com", "display_url": "takinghayekseriously.wordpress.com"}]}, "description": {"urls": []}}, "followers_count": 9376, "protected": false, "location": "", "default_profile_image": false, "id_str": "19458818", "utc_offset": -25200, "statuses_count": 37268, "description": "Twitter's best feed on economics, philosophy, human science, politics, culture & liberty, a virtual Vienna Circle, Alpbach, Liberal Club & Mont Pelerin Society.", "friends_count": 4098, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3024712410/8dccea6049003ef62a9cff41178de1b8_normal.jpeg", "notifications": null, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19458818/1363028021", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/237963854/18413_1280x1024-wallpaper-cb1278015757.jpg", "name": "TakingHayekSeriously", "lang": "en", "profile_background_tile": false, "favourites_count": 186, "screen_name": "FriedrichHayek", "url": "http://t.co/idK1CAjT5V", "created_at": "Sat Jan 24 19:14:40 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": null, "listed_count": 463}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:32:32 +0000 2013", "in_reply_to_status_id_str": null, "place": null}], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372435854246961152, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/OUw069uquV", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372435854246961152", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 54526260, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/EmkrS3mjA6", "indices": [0, 22], "expanded_url": "http://www.conference-board.org/economics", "display_url": "conference-board.org/economics"}]}, "description": {"urls": []}}, "followers_count": 23, "protected": false, "location": "New York", "default_profile_image": false, "id_str": "54526260", "utc_offset": -14400, "statuses_count": 49, "description": "", "friends_count": 77, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1829684507/P9290143_B_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Ataman Ozyildirim", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "aotcb", "url": "http://t.co/EmkrS3mjA6", "created_at": "Tue Jul 07 12:08:31 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:10:01 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Grande, Krugman | The Real Trouble With Economics http://t.co/SbgNFhoRiy", "in_reply_to_status_id": null, "children": [{"contributors": null, "truncated": false, "text": "\u201c@cabrowns: Grande, Krugman | The Real Trouble With Economics http://t.co/efOgSbM9o6\u201d Ccp @javierjileta (nam\u00e1s por no dejar...)", "in_reply_to_status_id": 372434512992403457, "children": [{"contributors": null, "truncated": false, "text": "@Netank @cabrowns Nunca falta quienes apoyan aventarle dinero a los problemas, yo no.", "in_reply_to_status_id": 372443721012232192, "children": [{"contributors": null, "truncated": false, "text": "@javierjileta me gusta cuando me hablas golpeado. Claro q entre la debacle de Rogoff y la malaise europea, es dif\u00edcil estar de tu lado.", "in_reply_to_status_id": 372583581509382144, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372592049671139330, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 13], "screen_name": "javierjileta", "id": 63641770, "name": "Javier Jileta", "id_str": "63641770"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "javierjileta", "in_reply_to_user_id": 63641770, "retweet_count": 0, "id_str": "372592049671139330", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35419, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "63641770", "lang": "es", "created_at": "Wed Aug 28 05:30:41 +0000 2013", "in_reply_to_status_id_str": "372583581509382144", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "retweeted": false, "coordinates": null, "id": 372583581509382144, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372583581509382144", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:57:02 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank @cabrowns por cierto, tan buenas sus \u201csugerencias\u201d que todo lo que se inyecta a grecia, pinta para perderse...", "in_reply_to_status_id": 372443721012232192, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "retweeted": false, "coordinates": null, "id": 372583532947726336, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372583532947726336", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:56:51 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank @cabrowns no se cansan de leer a su self praising continuo... Nom\u00e1s por nom\u00e1s? Nada de evidencia puro chisme dice.", "in_reply_to_status_id": 372443721012232192, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/tweetbot\" rel=\"nofollow\">Tweetbot for iOS</a>", "retweeted": false, "coordinates": null, "id": 372582919237144576, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}, {"indices": [8, 17], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372582919237144576", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 63641770, "verified": false, "profile_text_color": "000000", "profile_image_url_https": "https://si0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "profile_sidebar_fill_color": "FFFFFF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/7tur0SqTFn", "indices": [0, 22], "expanded_url": "http://javierjileta.mx", "display_url": "javierjileta.mx"}]}, "description": {"urls": []}}, "followers_count": 2286, "protected": false, "location": "", "default_profile_image": false, "id_str": "63641770", "utc_offset": -18000, "statuses_count": 44713, "description": "Think, Create, Excecute.", "friends_count": 768, "profile_link_color": "230FFF", "profile_image_url": "http://a0.twimg.com/profile_images/3473858367/1f851aa254a2940579f02540570afb66_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "profile_background_color": "121212", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/278541631/temp_kuvva_restore_production_4017_1.jpeg", "name": "Javier Jileta", "lang": "en", "profile_background_tile": false, "favourites_count": 28, "screen_name": "javierjileta", "url": "http://t.co/7tur0SqTFn", "created_at": "Fri Aug 07 04:49:24 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 82}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Wed Aug 28 04:54:24 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": {"full_name": "Cuauht\u00e9moc, Distrito Federal", "url": "https://api.twitter.com/1.1/geo/id/bfc35dcc7e63252a.json", "country": "Mexico", "place_type": "city", "bounding_box": {"type": "Polygon", "coordinates": [[[-99.1843501, 19.3998346], [-99.122382, 19.3998346], [-99.122382, 19.4652582], [-99.1843501, 19.4652582]]]}, "country_code": "MX", "attributes": {}, "id": "bfc35dcc7e63252a", "name": "Cuauht\u00e9moc"}, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@Netank JAJAJAJA amo que hagas eso.", "in_reply_to_status_id": 372443721012232192, "children": [{"contributors": null, "truncated": false, "text": "@cabrowns me encanta hacerlo. Jijijijii", "in_reply_to_status_id": 372443838536638464, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372448119176192000, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 9], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "cabrowns", "in_reply_to_user_id": 15685115, "retweet_count": 0, "id_str": "372448119176192000", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35420, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "15685115", "lang": "es", "created_at": "Tue Aug 27 19:58:46 +0000 2013", "in_reply_to_status_id_str": "372443838536638464", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://itunes.apple.com/us/app/twitter/id409789998?mt=12\" rel=\"nofollow\">Twitter for Mac</a>", "retweeted": false, "coordinates": null, "id": 372443838536638464, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 7], "screen_name": "Netank", "id": 19252402, "name": "Neto Brandon", "id_str": "19252402"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": "Netank", "in_reply_to_user_id": 19252402, "retweet_count": 0, "id_str": "372443838536638464", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 15685115, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 1246, "protected": false, "location": "Ciudad de M\u00e9xico / Canc\u00fan", "default_profile_image": false, "id_str": "15685115", "utc_offset": -18000, "statuses_count": 78415, "description": "Internacionalista (An\u00e1huac) + economista (Colmex) | A la izquierda del centro | Mi banda favorita tiene una canci\u00f3n con mi nombre | JCLA", "friends_count": 607, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685115/1353115667", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "name": "Brown", "lang": "en", "profile_background_tile": false, "favourites_count": 5173, "screen_name": "cabrowns", "url": null, "created_at": "Fri Aug 01 03:42:05 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 45}, "geo": null, "in_reply_to_user_id_str": "19252402", "lang": "es", "created_at": "Tue Aug 27 19:41:45 +0000 2013", "in_reply_to_status_id_str": "372443721012232192", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372443721012232192, "entities": {"symbols": [], "user_mentions": [{"indices": [1, 10], "screen_name": "cabrowns", "id": 15685115, "name": "Brown", "id_str": "15685115"}, {"indices": [90, 103], "screen_name": "javierjileta", "id": 63641770, "name": "Javier Jileta", "id_str": "63641770"}], "hashtags": [], "urls": [{"url": "http://t.co/efOgSbM9o6", "indices": [62, 84], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": "cabrowns", "in_reply_to_user_id": 15685115, "retweet_count": 0, "id_str": "372443721012232192", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 19252402, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 711, "protected": false, "location": "MexCity", "default_profile_image": false, "id_str": "19252402", "utc_offset": -18000, "statuses_count": 35419, "description": "I live on good soup, not on fine words. - Moliere. Diagnosed with Kinky Stendhal Syndrome. Plan to set up a foundation for it.", "friends_count": 1025, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000293326676/3bf0f1606f8f28a0994e2da74b0a1fa8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19252402/1348880836", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/225129315/DSC02472.JPG", "name": "Neto Brandon", "lang": "en", "profile_background_tile": true, "favourites_count": 2882, "screen_name": "Netank", "url": null, "created_at": "Tue Jan 20 19:28:01 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 15}, "geo": null, "in_reply_to_user_id_str": "15685115", "possibly_sensitive": false, "lang": "es", "created_at": "Tue Aug 27 19:41:17 +0000 2013", "in_reply_to_status_id_str": "372434512992403457", "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372434512992403457, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/SbgNFhoRiy", "indices": [50, 72], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372434512992403457", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 15685115, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 1246, "protected": false, "location": "Ciudad de M\u00e9xico / Canc\u00fan", "default_profile_image": false, "id_str": "15685115", "utc_offset": -18000, "statuses_count": 78415, "description": "Internacionalista (An\u00e1huac) + economista (Colmex) | A la izquierda del centro | Mi banda favorita tiene una canci\u00f3n con mi nombre | JCLA", "friends_count": 607, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000316945466/14c3738484ac761de61444be18f62578_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "profile_background_color": "1A1B1F", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15685115/1353115667", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/668061001/f2e8ffb646b7bedacd03193aa7662a89.jpeg", "name": "Brown", "lang": "en", "profile_background_tile": false, "favourites_count": 5173, "screen_name": "cabrowns", "url": null, "created_at": "Fri Aug 01 03:42:05 +0000 2008", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 45}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 19:04:42 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372432750319370240, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372432750319370240", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": false, "id": 48766152, "verified": false, "profile_text_color": "3C3940", "profile_image_url_https": "https://si0.twimg.com/profile_images/271712384/Holly_1__normal.jpg", "profile_sidebar_fill_color": "95E8EC", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 35, "protected": false, "location": "now marooned in Marshall, MO", "default_profile_image": false, "id_str": "48766152", "utc_offset": -18000, "statuses_count": 1529, "description": "Former 60s fashion model NYC. Then, in LA, reporter, editor, entertainment writer;then back to NYC to Village Voice. Single. Awaiting rescue from the midwest.", "friends_count": 59, "profile_link_color": "0099B9", "profile_image_url": "http://a0.twimg.com/profile_images/271712384/Holly_1__normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme4/bg.gif", "profile_background_color": "0099B9", "profile_banner_url": "https://pbs.twimg.com/profile_banners/48766152/1374784333", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme4/bg.gif", "name": "Holly Forsman", "lang": "en", "profile_background_tile": false, "favourites_count": 37, "screen_name": "Holly500", "url": null, "created_at": "Fri Jun 19 17:20:13 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:57:41 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/GNCD08DQsD", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372432746645176320, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/GNCD08DQsD", "indices": [32, 54], "expanded_url": "http://nyti.ms/17jGIYq", "display_url": "nyti.ms/17jGIYq"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372432746645176320", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1232635999, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 14, "protected": false, "location": "", "default_profile_image": true, "id_str": "1232635999", "utc_offset": null, "statuses_count": 82, "description": "cultural_confusion_mythbusting@honcc \u524d\u5411\u304d\u306b\u3044\u304d\u307e\u3057\u3087\u3046", "friends_count": 40, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Feline Tailspin", "lang": "en", "profile_background_tile": false, "favourites_count": 1, "screen_name": "felinTSPN", "url": null, "created_at": "Sat Mar 02 03:01:28 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:57:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "id": 372432707957301249, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372432707957301249", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 27202445, "verified": false, "profile_text_color": "634047", "profile_image_url_https": "https://si0.twimg.com/profile_images/2269241487/x92adq0o2iqn5l6y6zhu_normal.png", "profile_sidebar_fill_color": "E3E2DE", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 66, "protected": false, "location": "Finland near Helsinki", "default_profile_image": false, "id_str": "27202445", "utc_offset": -7200, "statuses_count": 322, "description": "Data scientist, ex-researcher with both math/tech and psych background. Less professionally: environment, climate, photography, mindfulness meditation.", "friends_count": 65, "profile_link_color": "088253", "profile_image_url": "http://a0.twimg.com/profile_images/2269241487/x92adq0o2iqn5l6y6zhu_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme3/bg.gif", "profile_background_color": "EDECE9", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme3/bg.gif", "name": "Janne Sinkkonen", "lang": "en", "profile_background_tile": false, "favourites_count": 36, "screen_name": "euxoa", "url": null, "created_at": "Sat Mar 28 09:07:16 +0000 2009", "contributors_enabled": false, "time_zone": "Greenland", "profile_sidebar_border_color": "D3D2CF", "default_profile": false, "following": false, "listed_count": 8}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:57:31 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372430429389090816, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372430429389090816", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1704965982, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000370266684/19fab02a121d04167e20d31741f5301f_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 6, "protected": false, "location": "", "default_profile_image": false, "id_str": "1704965982", "utc_offset": null, "statuses_count": 4, "description": "Estudiante. Interesado en econom\u00eda, pol\u00edtica e historia.", "friends_count": 50, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000370266684/19fab02a121d04167e20d31741f5301f_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Alex Pont ", "lang": "es", "profile_background_tile": false, "favourites_count": 3, "screen_name": "alexpontgrau", "url": null, "created_at": "Tue Aug 27 15:47:01 +0000 2013", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:48:28 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Mobile Web (M5)</a>", "retweeted": false, "coordinates": null, "id": 372429460165107713, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372429460165107713", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1238897528, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3392255490/3fbf0efc1344a0c17b3f95a6fc56a5b3_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 249, "protected": false, "location": "", "default_profile_image": false, "id_str": "1238897528", "utc_offset": 7200, "statuses_count": 4467, "description": "Carrego nos B\u00caS qdo m distraio. Sou d Bi\u00c1na DO Castelo ou l\u00e1 perto.Falo franc\u00eas e outras l\u00ednguas toco no piano ao passar. 1bom traste resumindo.. .", "friends_count": 1045, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3392255490/3fbf0efc1344a0c17b3f95a6fc56a5b3_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1238897528/1363533622", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Ceu", "lang": "pt", "profile_background_tile": false, "favourites_count": 58, "screen_name": "Ceu37viana", "url": null, "created_at": "Sun Mar 03 13:25:34 +0000 2013", "contributors_enabled": false, "time_zone": "Amsterdam", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:44:37 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372429354489229312, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372429354489229312", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 607323613, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000125386055/3aaa1cf877e780e408d7646392c3c90b_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/Ap651nbWqe", "indices": [0, 22], "expanded_url": "http://www.blog-illusio.com/", "display_url": "blog-illusio.com"}]}, "description": {"urls": []}}, "followers_count": 179, "protected": false, "location": "Seine-Saint-Denis", "default_profile_image": false, "id_str": "607323613", "utc_offset": 7200, "statuses_count": 6658, "description": "econ blogger, professeur de sciences \u00e9conomiques et sociales", "friends_count": 145, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000125386055/3aaa1cf877e780e408d7646392c3c90b_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000031601609/a0ef335c0bb39c29651a7af7f66e6861.jpeg", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/607323613/1373825539", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000031601609/a0ef335c0bb39c29651a7af7f66e6861.jpeg", "name": "Martin Anota", "lang": "fr", "profile_background_tile": false, "favourites_count": 1066, "screen_name": "martin_anota", "url": "http://t.co/Ap651nbWqe", "created_at": "Wed Jun 13 15:49:41 +0000 2012", "contributors_enabled": false, "time_zone": "Paris", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 3}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:44:12 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @justinwolfers: DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhtt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "retweeted": false, "coordinates": null, "id": 372429106329448448, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 17], "screen_name": "justinwolfers", "id": 327577091, "name": "Justin Wolfers", "id_str": "327577091"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372429106329448448", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhttp://t.co/H0q5jC1hoh", "in_reply_to_status_id": null, "id": 372386691496947714, "favorite_count": 8, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/H0q5jC1hoh", "indices": [125, 147], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372386691496947714", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 327577091, "verified": false, "profile_text_color": "D64768", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "profile_sidebar_fill_color": "ED6F7A", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/oQVBBnZzq0", "indices": [0, 22], "expanded_url": "http://www.nber.org/~jwolfers", "display_url": "nber.org/~jwolfers"}]}, "description": {"urls": []}}, "followers_count": 40096, "protected": false, "location": "Washington, DC", "default_profile_image": false, "id_str": "327577091", "utc_offset": -18000, "statuses_count": 12329, "description": "---Economist by day. Dad by night. Runner when I get the time.---\nSenior Fellow @BrookingsEcon | Professor @UMichEcon & @FordSchool | Columnist @BloombergView", "friends_count": 499, "profile_link_color": "7D2B46", "profile_image_url": "http://a0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "profile_background_color": "2D2433", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327577091/1353358061", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "name": "Justin Wolfers", "lang": "en", "profile_background_tile": false, "favourites_count": 2833, "screen_name": "justinwolfers", "url": "http://t.co/oQVBBnZzq0", "created_at": "Fri Jul 01 20:01:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 1665}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:54:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 132730268, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/851198370/twitter_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 66, "protected": false, "location": "Cambridge, MA", "default_profile_image": false, "id_str": "132730268", "utc_offset": -14400, "statuses_count": 2504, "description": "Student of Whigs, current affairs junkie, lover of hippopotamuses. Finishing a Harvard history PhD. Helping out with @thebafflermag", "friends_count": 101, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/851198370/twitter_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Noah McCormack", "lang": "en", "profile_background_tile": false, "favourites_count": 20, "screen_name": "noahmccormack", "url": null, "created_at": "Wed Apr 14 01:27:06 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 4}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Tue Aug 27 18:43:13 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372422756765167616, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372422756765167616", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 581021490, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/3453497438/86f6a89e04741739532cdb85c71c7515_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/dkSZccMI8w", "indices": [0, 22], "expanded_url": "http://ayoungperspec.blogspot.co.uk/", "display_url": "ayoungperspec.blogspot.co.uk"}]}, "description": {"urls": []}}, "followers_count": 39, "protected": false, "location": "London", "default_profile_image": false, "id_str": "581021490", "utc_offset": 3600, "statuses_count": 668, "description": "economist, student, blogger and continually uses the word 'abattoir' in the wrong context.", "friends_count": 208, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/3453497438/86f6a89e04741739532cdb85c71c7515_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", "profile_background_color": "1A1B1F", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme9/bg.gif", "name": "Thomas Viegas", "lang": "en", "profile_background_tile": false, "favourites_count": 138, "screen_name": "TMRViegas", "url": "http://t.co/dkSZccMI8w", "created_at": "Tue May 15 14:30:23 +0000 2012", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "000000", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:17:59 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @justinwolfers: DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhtt\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372422364505841664, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 17], "screen_name": "justinwolfers", "id": 327577091, "name": "Justin Wolfers", "id_str": "327577091"}], "hashtags": [], "urls": []}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372422364505841664", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "DON'T \"listen to impressive-looking guys with good tailors who stroke their chins &amp; sound wise, &amp; ignore the nerds.\"\nhttp://t.co/H0q5jC1hoh", "in_reply_to_status_id": null, "id": 372386691496947714, "favorite_count": 8, "source": "web", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/H0q5jC1hoh", "indices": [125, 147], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?smid=tw-NytimesKrugman&seid=auto", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 9, "id_str": "372386691496947714", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 327577091, "verified": false, "profile_text_color": "D64768", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "profile_sidebar_fill_color": "ED6F7A", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/oQVBBnZzq0", "indices": [0, 22], "expanded_url": "http://www.nber.org/~jwolfers", "display_url": "nber.org/~jwolfers"}]}, "description": {"urls": []}}, "followers_count": 40096, "protected": false, "location": "Washington, DC", "default_profile_image": false, "id_str": "327577091", "utc_offset": -18000, "statuses_count": 12329, "description": "---Economist by day. Dad by night. Runner when I get the time.---\nSenior Fellow @BrookingsEcon | Professor @UMichEcon & @FordSchool | Columnist @BloombergView", "friends_count": 499, "profile_link_color": "7D2B46", "profile_image_url": "http://a0.twimg.com/profile_images/1427549764/105629_MB3_1893_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "profile_background_color": "2D2433", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327577091/1353358061", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/716721533/b6d595f01d65413aecde8474db791b84.jpeg", "name": "Justin Wolfers", "lang": "en", "profile_background_tile": false, "favourites_count": 2833, "screen_name": "justinwolfers", "url": "http://t.co/oQVBBnZzq0", "created_at": "Fri Jul 01 20:01:28 +0000 2011", "contributors_enabled": false, "time_zone": "Quito", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 1665}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:54:40 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 27865161, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000039441025/0271976c302eff47ce4b0affee35e23b_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 819, "protected": false, "location": "Leeds", "default_profile_image": false, "id_str": "27865161", "utc_offset": 3600, "statuses_count": 9249, "description": "Live in Leeds, tired Dad of young baby, interested in food, politics, snarky (Sorry, I'm tired) tweets about newsnight, question time etc", "friends_count": 1118, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000039441025/0271976c302eff47ce4b0affee35e23b_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Andy Charlwood", "lang": "en", "profile_background_tile": false, "favourites_count": 230, "screen_name": "AndyCharlwood", "url": null, "created_at": "Tue Mar 31 13:07:58 +0000 2009", "contributors_enabled": false, "time_zone": "London", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 17}, "geo": null, "in_reply_to_user_id_str": null, "lang": "en", "created_at": "Tue Aug 27 18:16:25 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372422164877934592, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372422164877934592", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 306789048, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512475055/Jacques_zwwit_TA_5_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/DBJ9pCC78A", "indices": [0, 22], "expanded_url": "http://www.turner.nl", "display_url": "turner.nl"}]}, "description": {"urls": []}}, "followers_count": 744, "protected": false, "location": "Turner", "default_profile_image": false, "id_str": "306789048", "utc_offset": 7200, "statuses_count": 1681, "description": "Organisatieadviseur bij Turner, Specialist in strategie-implementatie. All things Strategy Execution.", "friends_count": 2000, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1512475055/Jacques_zwwit_TA_5_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/444144697/Twitterachtergrond_Jacques-Pijl.jpg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/444144697/Twitterachtergrond_Jacques-Pijl.jpg", "name": "Jacques Pijl", "lang": "en", "profile_background_tile": false, "favourites_count": 100, "screen_name": "JPijlTurner", "url": "http://t.co/DBJ9pCC78A", "created_at": "Sat May 28 13:06:31 +0000 2011", "contributors_enabled": false, "time_zone": "Amsterdam", "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 8}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:15:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372421655655489537, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372421655655489537", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 111687038, "verified": false, "profile_text_color": "1E4D15", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158910214/gravadar_normal.jpg", "profile_sidebar_fill_color": "FBFF0F", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/F0Kg6aN3Hv", "indices": [0, 22], "expanded_url": "http://www.woodka.com", "display_url": "woodka.com"}]}, "description": {"urls": []}}, "followers_count": 118, "protected": false, "location": "", "default_profile_image": false, "id_str": "111687038", "utc_offset": -25200, "statuses_count": 13486, "description": "I'm a pet therapy golden retriever. My person loves craft beer and is a political and economics junkie who reads too much science fiction.", "friends_count": 157, "profile_link_color": "277334", "profile_image_url": "http://a0.twimg.com/profile_images/1158910214/gravadar_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme13/bg.gif", "profile_background_color": "92D459", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme13/bg.gif", "name": "Darwin Woodka", "lang": "en", "profile_background_tile": false, "favourites_count": 1, "screen_name": "darwinwoodka", "url": "http://t.co/F0Kg6aN3Hv", "created_at": "Fri Feb 05 20:31:14 +0000 2010", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "FF7B0F", "default_profile": false, "following": false, "listed_count": 3}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:13:36 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Pithy prose from Krugman- The Real Trouble With Economics http://t.co/9RC6wbJtfY", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://tweetadder.com\" rel=\"nofollow\">TweetAdder v4</a>", "retweeted": false, "coordinates": null, "id": 372421353732706304, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/9RC6wbJtfY", "indices": [59, 81], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372421353732706304", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 20290411, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2532494703/an9soybclnlur5lccogg_normal.png", "profile_sidebar_fill_color": "EFEFEF", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/CXMlwLmKQK", "indices": [0, 22], "expanded_url": "http://www.pioniq.com", "display_url": "pioniq.com"}]}, "description": {"urls": [{"url": "http://t.co/CXMlwLmKQK", "indices": [131, 153], "expanded_url": "http://www.pioniq.com", "display_url": "pioniq.com"}]}}, "followers_count": 1908, "protected": false, "location": "Indianapolis", "default_profile_image": false, "id_str": "20290411", "utc_offset": -14400, "statuses_count": 4670, "description": "Follow pioniq for a unique, thoughtful Christian perspective on politics, science, living, the Bible and more. Visit the web site: http://t.co/CXMlwLmKQK.", "friends_count": 550, "profile_link_color": "009999", "profile_image_url": "http://a0.twimg.com/profile_images/2532494703/an9soybclnlur5lccogg_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/638116019/kqdl8t2klrkdgf90ccli.jpeg", "profile_background_color": "131516", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/638116019/kqdl8t2klrkdgf90ccli.jpeg", "name": "Peter Fuller", "lang": "en", "profile_background_tile": true, "favourites_count": 9, "screen_name": "pioniq", "url": "http://t.co/CXMlwLmKQK", "created_at": "Sat Feb 07 02:41:08 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "EEEEEE", "default_profile": false, "following": false, "listed_count": 31}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 18:12:24 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372415473565982720, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372415473565982720", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 90590607, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 25, "protected": false, "location": "", "default_profile_image": true, "id_str": "90590607", "utc_offset": -14400, "statuses_count": 5405, "description": "", "friends_count": 121, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Chirstopher R. Hall", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "screen_name": "Gairvasi", "url": null, "created_at": "Tue Nov 17 08:39:11 +0000 2009", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:49:02 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "@gdurandiaz Krugman ha debido de leer tu tuit ;-) RT @NYTimeskrugman \"The Real Trouble With Economics http://t.co/tkPrEwIiXm\"", "in_reply_to_status_id": null, "children": [], "favorite_count": 1, "source": "web", "retweeted": false, "coordinates": null, "id": 372415112797114369, "entities": {"symbols": [], "user_mentions": [{"indices": [0, 11], "screen_name": "gdurandiaz", "id": 141558243, "name": "gonzalo dur\u00e1n d\u00edaz", "id_str": "141558243"}, {"indices": [53, 68], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/tkPrEwIiXm", "indices": [102, 124], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": "gdurandiaz", "in_reply_to_user_id": 141558243, "retweet_count": 0, "id_str": "372415112797114369", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 433564475, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685486177/166a_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/7S3jprv01o", "indices": [0, 22], "expanded_url": "http://6000km.org", "display_url": "6000km.org"}]}, "description": {"urls": []}}, "followers_count": 73, "protected": false, "location": "", "default_profile_image": false, "id_str": "433564475", "utc_offset": null, "statuses_count": 1459, "description": "la revoluci\u00f3n no ser\u00e1 tuiteada", "friends_count": 87, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1685486177/166a_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/650856445/mdm07rggl860lznndopr.jpeg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/650856445/mdm07rggl860lznndopr.jpeg", "name": "mikiroi", "lang": "es", "profile_background_tile": true, "favourites_count": 12, "screen_name": "mikiroi", "url": "http://t.co/7S3jprv01o", "created_at": "Sat Dec 10 18:36:26 +0000 2011", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": "141558243", "possibly_sensitive": false, "lang": "es", "created_at": "Tue Aug 27 17:47:36 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "es", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372412552971821056, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372412552971821056", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1051379064, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000326585355/7138f4501fbcd1129229b5c76db4df8d_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 116, "protected": false, "location": "The Bronx, NY", "default_profile_image": false, "id_str": "1051379064", "utc_offset": -10800, "statuses_count": 3490, "description": "City University of New York (CUNY) Graduate Center PhD in Economics Student/2006-07 Fulbright Scholar/Morehouse Man/NYG,NYY, & NYK fan! RT/Follow\u2260Endorsement", "friends_count": 349, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000326585355/7138f4501fbcd1129229b5c76db4df8d_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/378800000018124063/8ebb0c1e3a3825b558b90f169c151e1d.jpeg", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/378800000018124063/8ebb0c1e3a3825b558b90f169c151e1d.jpeg", "name": "Morgan C Williams Jr", "lang": "en", "profile_background_tile": true, "favourites_count": 701, "screen_name": "MWillJr", "url": null, "created_at": "Mon Dec 31 23:18:00 +0000 2012", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:37:26 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372412185001340928, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372412185001340928", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 258251149, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000029757261/b924a8d15a1a7a61a7a1c2d6c245ace4_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"description": {"urls": []}}, "followers_count": 42, "protected": false, "location": "Anytown, USA", "default_profile_image": false, "id_str": "258251149", "utc_offset": -25200, "statuses_count": 321, "description": "", "friends_count": 183, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000029757261/b924a8d15a1a7a61a7a1c2d6c245ace4_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "ConstantineKousoulis", "lang": "en", "profile_background_tile": false, "favourites_count": 287, "screen_name": "ckousoulis", "url": null, "created_at": "Sun Feb 27 08:35:11 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:35:58 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "web", "retweeted": false, "coordinates": null, "id": 372409903790301184, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372409903790301184", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 41053762, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2162339447/Photo_on_2012-04-24_at_09.07_normal.jpg", "profile_sidebar_fill_color": "F6F6F6", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/TjZgWjSVs1", "indices": [0, 22], "expanded_url": "http://cicese.edu.mx", "display_url": "cicese.edu.mx"}]}, "description": {"urls": []}}, "followers_count": 26, "protected": false, "location": "Ensenada, BC, Mexico", "default_profile_image": false, "id_str": "41053762", "utc_offset": null, "statuses_count": 769, "description": "PhD Stony Brook University, NY, USA\r\nM Sc. CICESE, Mexico\r\nB Sc . UMSNH, Mexico", "friends_count": 39, "profile_link_color": "038543", "profile_image_url": "http://a0.twimg.com/profile_images/2162339447/Photo_on_2012-04-24_at_09.07_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme18/bg.gif", "profile_background_color": "ACDED6", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme18/bg.gif", "name": "Jose Gomez", "lang": "en", "profile_background_tile": false, "favourites_count": 4, "screen_name": "JoseGomezValdes", "url": "http://t.co/TjZgWjSVs1", "created_at": "Tue May 19 04:22:50 +0000 2009", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "EEEEEE", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:26:54 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "\u201c@NYTimeskrugman:The Real Trouble With Economics http://t.co/8pvOlQObDv\u201d\u2705Seek intense engagement with your\ud83d\udcb0, be a Capitalist!@iamdiddy @Nas", "in_reply_to_status_id": 372383914251550720, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372409064493703168, "entities": {"symbols": [], "user_mentions": [{"indices": [1, 16], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}, {"indices": [135, 139], "screen_name": "Nas", "id": 96829836, "name": "Nasir Jones", "id_str": "96829836"}], "hashtags": [], "urls": [{"url": "http://t.co/8pvOlQObDv", "indices": [49, 71], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": "NYTimeskrugman", "in_reply_to_user_id": 17006157, "retweet_count": 0, "id_str": "372409064493703168", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 1603903236, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000157683829/b615a1830a90e2a8a52eef5f33178205_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 13, "protected": false, "location": "New York", "default_profile_image": false, "id_str": "1603903236", "utc_offset": -10800, "statuses_count": 556, "description": "", "friends_count": 166, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/378800000157683829/b615a1830a90e2a8a52eef5f33178205_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": " Jah-son", "lang": "en", "profile_background_tile": false, "favourites_count": 3, "screen_name": "Devas777Johnson", "url": null, "created_at": "Thu Jul 18 17:25:51 +0000 2013", "contributors_enabled": false, "time_zone": "Atlantic Time (Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": "17006157", "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:23:34 +0000 2013", "in_reply_to_status_id_str": "372383914251550720", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "Krugman on Economics as (non) science. http://t.co/ic6lecYPhc Economics isn't a science today, but it should be. The profession is broken.", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://ifttt.com\" rel=\"nofollow\">IFTTT</a>", "retweeted": false, "coordinates": null, "id": 372408669922938880, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/ic6lecYPhc", "indices": [39, 61], "expanded_url": "http://nyti.ms/16OhnH8", "display_url": "nyti.ms/16OhnH8"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 0, "id_str": "372408669922938880", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 189335576, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121308121/Kateva_medium_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/Ei2IOPhkLc", "indices": [0, 22], "expanded_url": "http://notes.kateva.org", "display_url": "notes.kateva.org"}]}, "description": {"urls": [{"url": "https://t.co/FuEDHXeD", "indices": [5, 26], "expanded_url": "https://alpha.app.net/johngordon", "display_url": "alpha.app.net/johngordon"}]}}, "followers_count": 154, "protected": false, "location": "MSP", "default_profile_image": false, "id_str": "189335576", "utc_offset": -14400, "statuses_count": 18626, "description": "ADN: https://t.co/FuEDHXeD", "friends_count": 59, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1121308121/Kateva_medium_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "John Gordon", "lang": "en", "profile_background_tile": false, "favourites_count": 31, "screen_name": "jgordonshare", "url": "http://t.co/Ei2IOPhkLc", "created_at": "Sat Sep 11 00:24:06 +0000 2010", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 2}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:22:00 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://www.flipboard.com\" rel=\"nofollow\">Flipboard</a>", "retweeted": false, "coordinates": null, "id": 372408560439001090, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372408560439001090", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 47743935, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/731259291/wetsuit_normal.jpg", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/RZBFPIOn19", "indices": [0, 22], "expanded_url": "http://www.rebelmouse.com/avildsen", "display_url": "rebelmouse.com/avildsen"}]}, "description": {"urls": []}}, "followers_count": 67, "protected": false, "location": "sausalito, ca", "default_profile_image": false, "id_str": "47743935", "utc_offset": -25200, "statuses_count": 3796, "description": "", "friends_count": 347, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/731259291/wetsuit_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/18403539/camera_061509_053.JPG", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/18403539/camera_061509_053.JPG", "name": "Peter Avildsen", "lang": "en", "profile_background_tile": false, "favourites_count": 593, "screen_name": "avildsen", "url": "http://t.co/RZBFPIOn19", "created_at": "Tue Jun 16 20:51:59 +0000 2009", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:21:34 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "retweeted": false, "coordinates": null, "id": 372407997458157568, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372407997458157568", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 45829027, "verified": false, "profile_text_color": "663B12", "profile_image_url_https": "https://si0.twimg.com/profile_images/3291762028/31e3d0f5a991fcabeb7be8a88b9d1285_normal.jpeg", "profile_sidebar_fill_color": "DAECF4", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/5bDKtj9qlv", "indices": [0, 22], "expanded_url": "http://www.lsanderson.net", "display_url": "lsanderson.net"}]}, "description": {"urls": []}}, "followers_count": 178, "protected": false, "location": "N 44\u00b058' 0'' / W 93\u00b08' 0''", "default_profile_image": false, "id_str": "45829027", "utc_offset": -18000, "statuses_count": 11619, "description": "Food, Wine, Cocktails, Beer, Science Fiction, Film, and Politics. Write little, shamelessly steal much.", "friends_count": 475, "profile_link_color": "1F98C7", "profile_image_url": "http://a0.twimg.com/profile_images/3291762028/31e3d0f5a991fcabeb7be8a88b9d1285_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme2/bg.gif", "profile_background_color": "C6E2EE", "profile_banner_url": "https://pbs.twimg.com/profile_banners/45829027/1360504599", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme2/bg.gif", "name": "Larry Sanderson", "lang": "en", "profile_background_tile": false, "favourites_count": 34, "screen_name": "ls2000", "url": "http://t.co/5bDKtj9qlv", "created_at": "Tue Jun 09 12:49:56 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "C6E2EE", "default_profile": false, "following": false, "listed_count": 1}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:19:20 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @alexhimelfarb: MT\u201c@softgrasswalker: The Stone: What Is Economics Good For? http://t.co/RxLq1l4BGH\u201d vs Krugman http://t.co/mNUEcDPXLV gr\u2026", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/tweetbutton\" rel=\"nofollow\">Tweet Button</a>", "retweeted": false, "coordinates": null, "id": 372407756499599360, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 17], "screen_name": "alexhimelfarb", "id": 60303428, "name": "alex himelfarb", "id_str": "60303428"}, {"indices": [22, 38], "screen_name": "softgrasswalker", "id": 422773751, "name": "V. Jobson", "id_str": "422773751"}], "hashtags": [], "urls": [{"url": "http://t.co/RxLq1l4BGH", "indices": [79, 101], "expanded_url": "http://nyti.ms/13ZmNvy", "display_url": "nyti.ms/13ZmNvy"}, {"url": "http://t.co/mNUEcDPXLV", "indices": [114, 136], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 1, "id_str": "372407756499599360", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "MT\u201c@softgrasswalker: The Stone: What Is Economics Good For? http://t.co/RxLq1l4BGH\u201d vs Krugman http://t.co/mNUEcDPXLV great reads", "in_reply_to_status_id": 372395086148927488, "id": 372397301568110592, "favorite_count": 0, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 19], "screen_name": "softgrasswalker", "id": 422773751, "name": "V. Jobson", "id_str": "422773751"}], "hashtags": [], "urls": [{"url": "http://t.co/RxLq1l4BGH", "indices": [60, 82], "expanded_url": "http://nyti.ms/13ZmNvy", "display_url": "nyti.ms/13ZmNvy"}, {"url": "http://t.co/mNUEcDPXLV", "indices": [95, 117], "expanded_url": "http://krugman.blogs.nytimes.com/2013/08/27/the-real-trouble-with-economics/?_r=0", "display_url": "krugman.blogs.nytimes.com/2013/08/27/the\u2026"}]}, "in_reply_to_screen_name": "softgrasswalker", "in_reply_to_user_id": 422773751, "retweet_count": 1, "id_str": "372397301568110592", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 60303428, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/1739313186/image_normal.jpg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": true, "entities": {"url": {"urls": [{"url": "http://t.co/DiAiaxOSk7", "indices": [0, 22], "expanded_url": "http://alexsblog.ca", "display_url": "alexsblog.ca"}]}, "description": {"urls": []}}, "followers_count": 2634, "protected": false, "location": "", "default_profile_image": false, "id_str": "60303428", "utc_offset": -18000, "statuses_count": 5101, "description": "", "friends_count": 1522, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/1739313186/image_normal.jpg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "alex himelfarb", "lang": "en", "profile_background_tile": false, "favourites_count": 1470, "screen_name": "alexhimelfarb", "url": "http://t.co/DiAiaxOSk7", "created_at": "Sun Jul 26 13:23:21 +0000 2009", "contributors_enabled": false, "time_zone": "Central Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 85}, "geo": null, "in_reply_to_user_id_str": "422773751", "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 16:36:50 +0000 2013", "in_reply_to_status_id_str": "372395086148927488", "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 422773751, "verified": false, "profile_text_color": "3E4415", "profile_image_url_https": "https://si0.twimg.com/profile_images/2967200336/72c307047fd51677afeaa0363db837c7_normal.jpeg", "profile_sidebar_fill_color": "E4F7BE", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 1023, "protected": false, "location": "", "default_profile_image": false, "id_str": "422773751", "utc_offset": -21600, "statuses_count": 77347, "description": "An Albertan who values the environment more than the tar sands.", "friends_count": 894, "profile_link_color": "14737A", "profile_image_url": "http://a0.twimg.com/profile_images/2967200336/72c307047fd51677afeaa0363db837c7_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/736371769/8b862be7c20cdb4020d759c404f4204b.jpeg", "profile_background_color": "429413", "profile_banner_url": "https://pbs.twimg.com/profile_banners/422773751/1355343456", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/736371769/8b862be7c20cdb4020d759c404f4204b.jpeg", "name": "V. Jobson", "lang": "en", "profile_background_tile": true, "favourites_count": 466, "screen_name": "softgrasswalker", "url": null, "created_at": "Sun Nov 27 17:33:37 +0000 2011", "contributors_enabled": false, "time_zone": "Mountain Time (US & Canada)", "profile_sidebar_border_color": "FFFFFF", "default_profile": false, "following": false, "listed_count": 35}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:18:22 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372407544037519360, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372407544037519360", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 348803673, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3421496221/863e7adffd4869ad42b93836e5d1c8c8_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 98, "protected": false, "location": "", "default_profile_image": false, "id_str": "348803673", "utc_offset": -25200, "statuses_count": 62, "description": "", "friends_count": 175, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3421496221/863e7adffd4869ad42b93836e5d1c8c8_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_banner_url": "https://pbs.twimg.com/profile_banners/348803673/1376279229", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Phonkrit", "lang": "en", "profile_background_tile": false, "favourites_count": 39, "screen_name": "phonkrits", "url": null, "created_at": "Fri Aug 05 01:15:50 +0000 2011", "contributors_enabled": false, "time_zone": "Pacific Time (US & Canada)", "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:17:32 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372406988468400128, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372406988468400128", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 607443534, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3576724407/50cdc859165803fa8407b008a89086a5_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 48, "protected": false, "location": "", "default_profile_image": false, "id_str": "607443534", "utc_offset": null, "statuses_count": 94, "description": "", "friends_count": 208, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3576724407/50cdc859165803fa8407b008a89086a5_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "David Navratil", "lang": "en", "profile_background_tile": false, "favourites_count": 97, "screen_name": "DavidDnavratil", "url": null, "created_at": "Wed Jun 13 16:48:02 +0000 2012", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:15:19 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372406521017028608, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372406521017028608", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 403037901, "verified": false, "profile_text_color": "666666", "profile_image_url_https": "https://si0.twimg.com/profile_images/378800000017284240/fddbb933d68e9c29db69617059b5bfb5_normal.jpeg", "profile_sidebar_fill_color": "252429", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 31, "protected": false, "location": "Minneapolis, Minnesota", "default_profile_image": false, "id_str": "403037901", "utc_offset": null, "statuses_count": 70, "description": "Econ grad student at the U of MN. Macroecon, Garden, History (of Econ), Tennis, Global Politics.", "friends_count": 49, "profile_link_color": "2FC2EF", "profile_image_url": "http://a0.twimg.com/profile_images/378800000017284240/fddbb933d68e9c29db69617059b5bfb5_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme9/bg.gif", "profile_background_color": "1A1B1F", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme9/bg.gif", "name": "Kaleb Sturm", "lang": "en", "profile_background_tile": false, "favourites_count": 13, "screen_name": "Kaleb_Sturm", "url": null, "created_at": "Tue Nov 01 22:54:12 +0000 2011", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "181A1E", "default_profile": false, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:13:28 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, {"contributors": null, "truncated": false, "text": "RT @NYTimeskrugman: The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "children": [], "favorite_count": 0, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "id": 372403666600206336, "entities": {"symbols": [], "user_mentions": [{"indices": [3, 18], "screen_name": "NYTimeskrugman", "id": 17006157, "name": "Paul Krugman", "id_str": "17006157"}], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [52, 74], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372403666600206336", "favorited": false, "retweeted_status": {"contributors": null, "truncated": false, "text": "The Real Trouble With Economics http://t.co/E9Oug8onUx", "in_reply_to_status_id": null, "id": 372383914251550720, "favorite_count": 105, "source": "<a href=\"http://www.nytimes.com/twitter\" rel=\"nofollow\">The New York Times</a>", "retweeted": false, "coordinates": null, "entities": {"symbols": [], "user_mentions": [], "hashtags": [], "urls": [{"url": "http://t.co/E9Oug8onUx", "indices": [32, 54], "expanded_url": "http://nyti.ms/1dk7UN0", "display_url": "nyti.ms/1dk7UN0"}]}, "in_reply_to_screen_name": null, "in_reply_to_user_id": null, "retweet_count": 133, "id_str": "372383914251550720", "favorited": false, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 17006157, "verified": true, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "profile_sidebar_fill_color": "DDFFCC", "is_translator": false, "geo_enabled": false, "entities": {"url": {"urls": [{"url": "http://t.co/vl6CX9xUSi", "indices": [0, 22], "expanded_url": "http://krugman.blogs.nytimes.com/", "display_url": "krugman.blogs.nytimes.com"}]}, "description": {"urls": []}}, "followers_count": 1064900, "protected": false, "location": "New York, NY", "default_profile_image": false, "id_str": "17006157", "utc_offset": -14400, "statuses_count": 4867, "description": "New York Times Op-Ed columnist and blogger.", "friends_count": 111, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/2044852218/NYT_Twitter_Krugman_normal.png", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/4431039/twitter_post.png", "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/profile_background_images/4431039/twitter_post.png", "name": "Paul Krugman", "lang": "en", "profile_background_tile": true, "favourites_count": 0, "screen_name": "NYTimeskrugman", "url": "http://t.co/vl6CX9xUSi", "created_at": "Mon Oct 27 20:17:02 +0000 2008", "contributors_enabled": false, "time_zone": "Eastern Time (US & Canada)", "profile_sidebar_border_color": "BDDCAD", "default_profile": false, "following": true, "listed_count": 25878}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 15:43:38 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}, "user": {"follow_request_sent": false, "profile_use_background_image": true, "id": 34639969, "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://si0.twimg.com/profile_images/3489038981/f281e0a6ba5a9d924fd4f90af6cee08a_normal.jpeg", "profile_sidebar_fill_color": "DDEEF6", "is_translator": false, "geo_enabled": false, "entities": {"description": {"urls": []}}, "followers_count": 5, "protected": false, "location": "", "default_profile_image": false, "id_str": "34639969", "utc_offset": null, "statuses_count": 44, "description": "", "friends_count": 26, "profile_link_color": "0084B4", "profile_image_url": "http://a0.twimg.com/profile_images/3489038981/f281e0a6ba5a9d924fd4f90af6cee08a_normal.jpeg", "notifications": false, "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png", "profile_background_color": "C0DEED", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png", "name": "Rob Martin", "lang": "en", "profile_background_tile": false, "favourites_count": 0, "screen_name": "nitrambor", "url": null, "created_at": "Thu Apr 23 15:25:25 +0000 2009", "contributors_enabled": false, "time_zone": null, "profile_sidebar_border_color": "C0DEED", "default_profile": true, "following": false, "listed_count": 0}, "geo": null, "in_reply_to_user_id_str": null, "possibly_sensitive": false, "lang": "en", "created_at": "Tue Aug 27 17:02:07 +0000 2013", "in_reply_to_status_id_str": null, "place": null, "metadata": {"iso_language_code": "en", "result_type": "recent"}}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment