Skip to content

Instantly share code, notes, and snippets.

@threestory
Created October 31, 2015 00:59
Show Gist options
  • Save threestory/77b3e17c79585672f067 to your computer and use it in GitHub Desktop.
Save threestory/77b3e17c79585672f067 to your computer and use it in GitHub Desktop.
Twitterfluence Scatterplot
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitterfluence</title>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="http://use.typekit.com/brf5jpj.js"></script>
<script src="//use.typekit.net/drk2sev.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<style type="text/css">
body {
margin: 0;
background-color: #48494B;
font-family: "proxima-nova", "Source Sans Pro", sans-serif;
}
#container {
width: 850px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
padding: 30px;
background-color: white;
box-shadow: 3px 3px 7px #222;
}
h1 {
font-size: 24px;
margin: 0;
}
p {
font-size: 16px;
margin: 15px 0 10px 0;
}
a {
color: #799DCB;
text-decoration: none;
transition: color .3s, background .3s, border .3s;
}
a:hover {
color: #48494b;
background: #e7e8e9;
}
svg {
background-color: white;
padding-left: 20px;
}
.dot {
opacity: 0.4;
stroke: #787878;
stroke-width: 1;
}
.dot:hover {
opacity: 1.0;
cursor:pointer;
}
.axis path,
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.axis text {
font-family: sans-serif;
font-size: 11px;
}
</style>
</head>
<body>
<div id="container">
<h1>Twitterfluence</h1>
<p>Enjoy this exploration of Twitter users who follow <a href="http://twitter.com/threestory" title="Threestory Twitter page" target="new">@threestory</a>. You can see the correlation (or lack thereof) between the number of people a user follows and the number of followers they have themselves. The size of each circle is relative to the number of tweets that user has tweeted. The circle color matches the background color of that user's Twitter profile (just for fun). Clicking on a circle will take you to that person's Twitter page.</p>
</div>
<script type="text/javascript">
//Dimensions and padding
var w = 700;
var h = 500;
var padding = [ 20, 20, 40, 20 ]; //Top, right, bottom, left
var dataset;
// Various accessors that specify the four dimensions of data to visualize
function x(d) { return d.followers_count; }
function y(d) { return d.friends_count; }
function radius(d) { return d.statuses_count; }
// Various range scales
var maxRadius = 50;
var xScale = d3.scale.linear().range([0, w - maxRadius]),
yScale = d3.scale.linear().range([h , 0 + maxRadius]),
radiusScale = d3.scale.sqrt().range([0, maxRadius]);
//Create the empty SVG image
var svg = d3.select("#container")
.append("svg")
.attr("width", w + padding[3] + padding[1])
.attr("height", h + padding[0] + padding[2])
.append("g")
.attr("transform", "translate(35,10)");
//Load data
d3.json("twitter.json", function(error, data) {
if (error) return console.warn(error);
dataset = data;
console.log(dataset);
//sort smallest circles last to make sure they are accessible to mouse events
data.sort(function(a, b) {
return d3.descending(+a.statuses_count, +b.statuses_count);
});
// set domains to data maxes
xScale.domain([ 0, d3.max(data, function(d) {
return +d.followers_count;
}) ]);
yScale.domain([ 0, d3.max(data, function(d) {
return +d.friends_count;
}) ]);
radiusScale.domain([ 0, d3.max(data, function(d) {
return +d.statuses_count;
}) ]);
// The axes
var xAxis = d3.svg.axis().orient("bottom").scale(xScale).tickFormat(d3.format(",.0f")),
yAxis = d3.svg.axis().scale(yScale).orient("left").tickFormat(d3.format(",.0f"));
// Add the x-axis.
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + h + ")")
.call(xAxis);
// Add the y-axis.
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
// Add an x-axis label.
svg.append("text")
.attr("class", "x label")
.attr("text-anchor", "end")
.attr("x", w)
.attr("y", h - 6)
.attr("transform", "translate(-" + maxRadius + ",0)")
.text("Number of Followers");
// Add a y-axis label.
svg.append("text")
.attr("class", "y label")
.attr("text-anchor", "end")
.attr("y", 6)
.attr("dy", ".75em")
.attr("transform", "translate(5," + maxRadius + ")rotate(-90)")
.text("Number Following");
//Add a dot for each follower
var dot = svg.append("g")
.attr("class", "dots")
.selectAll(".dot")
.data(data)
.enter()
.append("a")
.attr("xlink:href", function(d) {
return "http://twitter.com/" + d.screen_name;
})
.on("click", function(){
d3.select(this)
.attr("url")
})
.append("circle")
.attr("class", "dot")
.style("fill", function(d) {
return "#" + d.profile_background_color;
})
.call(position);
// .sort(order);
//Add titles
dot.append("title")
.text(function(d) { return d.screen_name; });
//Position dots based on data
function position(dot) {
dot .attr("cx", function(d) { return xScale(d.followers_count); })
.attr("cy", function(d) { return yScale(d.friends_count); })
.attr("r", 0 );
}
dot.transition()
.delay(function(d, i) {
return i * 20;
})
.duration(1000)
.attr("r", function(d) {
return radiusScale(d.statuses_count);
});
//Defines sort order so smallest dots are drawn on top
function order(a, b) {
return radius(b) - radius(a);
}
});
</script>
</body>
</html>
[{"id":2616259696,"id_str":"2616259696","name":"Cindy Phillipd","screen_name":"a006853","location":"","url":null,"description":"","protected":false,"followers_count":3,"friends_count":45,"listed_count":2,"created_at":"Tue Jun 17 04:50:42 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3843058879,"id_str":"3843058879","name":"Tang Wei","screen_name":"tw_in_nepal","location":"","url":null,"description":"","protected":false,"followers_count":16,"friends_count":265,"listed_count":0,"created_at":"Sat Oct 10 03:01:03 +0000 2015","favourites_count":48,"utc_offset":20700,"time_zone":"Kathmandu","geo_enabled":false,"verified":false,"statuses_count":2,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2837931591,"id_str":"2837931591","name":"UCD Network","screen_name":"UCDNet","location":"Paris, France","url":null,"description":"We are a European network-firm of multidisciplinary #experts using #designthinking process.","protected":false,"followers_count":31,"friends_count":157,"listed_count":11,"created_at":"Mon Oct 20 09:08:27 +0000 2014","favourites_count":0,"utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"verified":false,"statuses_count":160,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576440365827264512\/PfXPlFfQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576440365827264512\/PfXPlFfQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2837931591\/1413992641","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":554378917,"id_str":"554378917","name":"DataScienceJohn","screen_name":"DataSciJ","location":"Scotland","url":"http:\/\/uk.linkedin.com\/in\/johncowman","description":"A giant Irish data scientist. I like numbers. I dislike sleep.","protected":false,"followers_count":6563,"friends_count":3956,"listed_count":248,"created_at":"Sun Apr 15 14:18:43 +0000 2012","favourites_count":16497,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":3459,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2127308160\/photo12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2127308160\/photo12_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/554378917\/1413634599","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":40808103,"id_str":"40808103","name":"Katie Daly","screen_name":"katiemdaly","location":"Austin, TX","url":"http:\/\/www.katiedaly.net","description":"UI\/UX Designer @spredfast \/\/ Painter \/\/ Interactive Artist \/\/ Futurist \/\/ Social Entrepreneur \/\/ Concert Addict","protected":false,"followers_count":632,"friends_count":1993,"listed_count":72,"created_at":"Mon May 18 03:52:20 +0000 2009","favourites_count":343,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1403,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1681047992\/KatieDalyTwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1681047992\/KatieDalyTwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40808103\/1348001706","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2708659861,"id_str":"2708659861","name":"KellyTran","screen_name":"KellyTranKP","location":"","url":null,"description":"","protected":false,"followers_count":3,"friends_count":14,"listed_count":4,"created_at":"Tue Aug 05 07:26:21 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":47,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":960121218,"id_str":"960121218","name":"Ernesto Olivares","screen_name":"VisualErnesto","location":"Spain","url":"http:\/\/ernestoolivares.com","description":"We transform complex data and information into clear and simple infographics","protected":false,"followers_count":1760,"friends_count":1501,"listed_count":93,"created_at":"Tue Nov 20 09:33:56 +0000 2012","favourites_count":209,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3583,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/717124715\/2d6128a2f9787c4a8642c1909939259e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/717124715\/2d6128a2f9787c4a8642c1909939259e.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459412099152637952\/hpHnbUqn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459412099152637952\/hpHnbUqn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960121218\/1398367337","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":9659842,"id_str":"9659842","name":"Bill Shander","screen_name":"billshander","location":"Boston-ish","url":"http:\/\/moreofbill.com","description":"Passionate about data visualization and information design. Really, all good visual communications.","protected":false,"followers_count":2845,"friends_count":1331,"listed_count":162,"created_at":"Wed Oct 24 17:10:12 +0000 2007","favourites_count":241,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":12758,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104847262\/182cfb23e910f40ff57df86622a03b66.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104847262\/182cfb23e910f40ff57df86622a03b66.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2456063033\/4iv1lsmqhrav3n4voli0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2456063033\/4iv1lsmqhrav3n4voli0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9659842\/1391033338","profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2F2F2","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14305066,"id_str":"14305066","name":"Mahir Yavuz","screen_name":"mahir_nyc","location":"New York, NY","url":"http:\/\/mahir.nyc","description":"Constantly thinking about data. Creative Director of Data Science and Visualization @RGA","protected":false,"followers_count":1803,"friends_count":658,"listed_count":143,"created_at":"Fri Apr 04 18:30:50 +0000 2008","favourites_count":2467,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/419926308\/Screen-Shot-2012-01-24-at-4.29.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/419926308\/Screen-Shot-2012-01-24-at-4.29.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568550416577601536\/zUV3XJUX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568550416577601536\/zUV3XJUX_normal.jpeg","profile_link_color":"080808","profile_sidebar_border_color":"E1E2DF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"999999","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":21444864,"id_str":"21444864","name":"pattishank","screen_name":"pattishank","location":"Denver, CO, USA","url":"http:\/\/www.pattishank.com","description":"Attitude creates altitude. Intense #geeky girl all about #learning, knowing, measuring, creating. Author, writer, facilitator. http:\/\/about.me\/pattishank","protected":false,"followers_count":6856,"friends_count":4057,"listed_count":439,"created_at":"Fri Feb 20 23:10:52 +0000 2009","favourites_count":278,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":18281,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000008734631\/d5b892af209e212de112792342b7137c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000008734631\/d5b892af209e212de112792342b7137c.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603682261775482880\/V_ljDWLU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603682261775482880\/V_ljDWLU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21444864\/1398259786","profile_link_color":"33380A","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":11708822,"id_str":"11708822","name":"Ming","screen_name":"limpub","location":"Palo Alto, CA","url":"http:\/\/moochat.com","description":"Founder of @getmoochat. Ex-Googler","protected":false,"followers_count":40,"friends_count":104,"listed_count":2,"created_at":"Tue Jan 01 07:50:36 +0000 2008","favourites_count":23,"utc_offset":-28800,"time_zone":"Alaska","geo_enabled":false,"verified":false,"statuses_count":25,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581275394638131200\/XMrBAZA2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581275394638131200\/XMrBAZA2_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":8813592,"id_str":"8813592","name":"paoladm","screen_name":"paoladm","location":"moving target","url":"http:\/\/about.me\/PaolaDiMaio","description":"Spacetime traveller, Princess of the Universe, Starseed, Citizen of the Free State of Ati http:\/\/t.co\/Yr9Lj0qqdy (not always agree with tweets and retweets)","protected":false,"followers_count":608,"friends_count":1321,"listed_count":27,"created_at":"Tue Sep 11 16:25:14 +0000 2007","favourites_count":169,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":23260,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485039937805230083\/MjnAeJQt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485039937805230083\/MjnAeJQt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8813592\/1404477451","profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14343560,"id_str":"14343560","name":"Javier Fadul","screen_name":"inspired12","location":"Houston, TX","url":"http:\/\/culturepilot.com","description":"Around the sun 31 times, love the pursuit of knowledge, optimism. open minds. @culturepilot, @TEDxHouston @Visualized","protected":false,"followers_count":1563,"friends_count":1188,"listed_count":114,"created_at":"Wed Apr 09 17:28:46 +0000 2008","favourites_count":1101,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":5251,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/165198507\/biglo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/165198507\/biglo.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1875946441\/AVATAR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1875946441\/AVATAR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14343560\/1426359365","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":15045918,"id_str":"15045918","name":"Keith Ng","screen_name":"keith_ng","location":"Not-so-distant-future","url":"http:\/\/publicaddress.net\/onpoint","description":"Chews your data (http:\/\/t.co\/w6W8abWocH), rages against your machine (http:\/\/t.co\/LAHVGcaIu3). Fingerprint: B6BB 1706 A8AE 5E03 889C CF2F 5522 BB88 1468 8DF5","protected":false,"followers_count":6355,"friends_count":1180,"listed_count":190,"created_at":"Sun Jun 08 10:49:58 +0000 2008","favourites_count":9913,"utc_offset":46800,"time_zone":"Wellington","geo_enabled":false,"verified":false,"statuses_count":33979,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645823880158822400\/4ho0XGUr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645823880158822400\/4ho0XGUr_normal.jpg","profile_link_color":"0F3807","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":90472270,"id_str":"90472270","name":"Janis Bargsten","screen_name":"jbrsm","location":"Hamburg, Deutschland","url":null,"description":"","protected":false,"followers_count":11,"friends_count":76,"listed_count":0,"created_at":"Mon Nov 16 20:08:08 +0000 2009","favourites_count":4,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":52,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634106557513527296\/nCEeck-f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634106557513527296\/nCEeck-f.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572856064169623552\/xzuSE5Ke_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572856064169623552\/xzuSE5Ke_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90472270\/1440017813","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":66066403,"id_str":"66066403","name":"Luis V\u00e9liz","screen_name":"luisvelizmatus","location":"Chile","url":null,"description":"Young human from planet Earth.\r\nComputer Engineer at @inria_chile.","protected":false,"followers_count":216,"friends_count":474,"listed_count":2,"created_at":"Sun Aug 16 06:14:15 +0000 2009","favourites_count":12,"utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"verified":false,"statuses_count":624,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/69135035\/Fight.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/69135035\/Fight.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567115889296683009\/Pp5QMTOI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567115889296683009\/Pp5QMTOI_normal.jpeg","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3239026551,"id_str":"3239026551","name":"Advocacy Assembly","screen_name":"Advocassembly","location":"","url":"http:\/\/advocacyassembly.org","description":"#AdvocacyAssembly is an online multilingual training platform for journalists and activists. Learn #design, #media, #dataviz and #humanrights reporting for free","protected":false,"followers_count":115,"friends_count":443,"listed_count":18,"created_at":"Wed May 06 16:18:34 +0000 2015","favourites_count":118,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":358,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603137928760397824\/CcG4chrJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603137928760397824\/CcG4chrJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239026551\/1439915111","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1712272116,"id_str":"1712272116","name":"random data guy","screen_name":"tim_schaaf","location":"SF, CA & GR, MI","url":null,"description":"Data & Analytics, Business Intelligence, Chief of Charts & Graphs, Father, Hacker and Startup Helper, ex @BlackRock, ex @DallasFed, Python Enthusiast","protected":false,"followers_count":239,"friends_count":602,"listed_count":21,"created_at":"Fri Aug 30 09:52:29 +0000 2013","favourites_count":235,"utc_offset":-10800,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"verified":false,"statuses_count":849,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654665684933218305\/3s35K5jy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654665684933218305\/3s35K5jy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1712272116\/1417011859","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3267821846,"id_str":"3267821846","name":"Mike Ingrid Heroux","screen_name":"Michael_Ingrid1","location":"Vancouver, British Columbia","url":"http:\/\/michaelandingridheroux.blogspot.ca\/","description":"Michael Heroux and Ingrid Van Eyk were targeted by CSIS for assassination by the Canadian government in 2003 (read Danny Palmer CSIS agent) and again in 2013.","protected":false,"followers_count":28,"friends_count":2125,"listed_count":0,"created_at":"Sat Jul 04 06:18:01 +0000 2015","favourites_count":42,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3309,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649810114145222656\/o9o5CzCe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649810114145222656\/o9o5CzCe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267821846\/1436657066","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":15731598,"id_str":"15731598","name":"Heather Jones","screen_name":"msjonesnyc","location":"Brooklyn, NY","url":null,"description":"Illustrator, wanderluster, appetizer chef, mapmaker & infographics designer at Time Magazine and http:\/\/time.com","protected":false,"followers_count":663,"friends_count":1067,"listed_count":39,"created_at":"Tue Aug 05 03:10:51 +0000 2008","favourites_count":335,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":284,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470885453\/hj.09.09.headshot.72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470885453\/hj.09.09.headshot.72_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15731598\/1403797828","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":28221930,"id_str":"28221930","name":"Henrique Geremia","screen_name":"henriquegeremia","location":"Porto Alegre","url":"http:\/\/br.linkedin.com\/in\/henriquegeremia","description":"Info\/DataViz enthusiast","protected":false,"followers_count":308,"friends_count":1184,"listed_count":20,"created_at":"Wed Apr 01 23:10:11 +0000 2009","favourites_count":150,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":163,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626786457814999040\/8P4x57OY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626786457814999040\/8P4x57OY_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":23074651,"id_str":"23074651","name":"Pete Ansell","screen_name":"PeteAnsell","location":"Warwickshire","url":"http:\/\/www.kicktag-cosmos.com","description":"#DataViz, #GovernedDataDiscovery, #SelfServeBI, #MRX, #SportsAnalytics, #PopularScience and Tech. Based in UK - Founder\/CEO of @KicktagDV","protected":false,"followers_count":861,"friends_count":1958,"listed_count":50,"created_at":"Fri Mar 06 15:13:50 +0000 2009","favourites_count":303,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":568,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000812723412\/68886188ddc329f38ad6d6a4c3f117a7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000812723412\/68886188ddc329f38ad6d6a4c3f117a7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23074651\/1430234729","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":15399031,"id_str":"15399031","name":"Noah Iliinsky","screen_name":"noahi","location":"Seattle, WA","url":"http:\/\/ComplexDiagrams.com","description":"Visualization & interaction designer. Feminist. Practical cyclist. Author of vis books: http:\/\/www.oreillynet.com\/pub\/au\/4419\r\nMy tweets: my opinions.","protected":false,"followers_count":6098,"friends_count":834,"listed_count":648,"created_at":"Sat Jul 12 01:14:33 +0000 2008","favourites_count":789,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":14605,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/4553362\/book_50.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/4553362\/book_50.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649815815210987520\/dEQjBcv1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649815815210987520\/dEQjBcv1_normal.jpg","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":125385639,"id_str":"125385639","name":"Jennifer Lee","screen_name":"jealee_","location":"San Francisco, CA","url":null,"description":"Going from the chemistry lab to the news lab. @Stanford ChemE, and formerly @Counsyl","protected":false,"followers_count":120,"friends_count":532,"listed_count":13,"created_at":"Mon Mar 22 16:53:11 +0000 2010","favourites_count":404,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":241,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588533785592893441\/h4iGZiRi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588533785592893441\/h4iGZiRi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125385639\/1418428167","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":203968177,"id_str":"203968177","name":"Timoth\u00e9e Jamin","screen_name":"TimotheeJamin","location":"Paris","url":null,"description":"Doctorant physicien. Pass\u00e9 par le journalisme (@cfjparis, @decodeurs, @LibeDesintox, @maglarecherche)","protected":false,"followers_count":21,"friends_count":240,"listed_count":1,"created_at":"Sun Oct 17 16:26:50 +0000 2010","favourites_count":0,"utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":37,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1662186382\/MireCouleur16-9_recadree_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1662186382\/MireCouleur16-9_recadree_normal.jpg","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":233705096,"id_str":"233705096","name":"Southern Virginia U.","screen_name":"SVUedu","location":"Buena Vista, VA.","url":"http:\/\/svu.edu","description":"Southern Virginia University is the only private liberal arts college for Latter-day Saints and those who share our values. Tweet #svuedu and #svuknights.","protected":false,"followers_count":1075,"friends_count":436,"listed_count":18,"created_at":"Mon Jan 03 22:36:27 +0000 2011","favourites_count":152,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2172,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475263768\/SVU_Thursday_216-E4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475263768\/SVU_Thursday_216-E4.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1978565784\/svu-horizontal-green-screen-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1978565784\/svu-horizontal-green-screen-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233705096\/1445459373","profile_link_color":"007A3B","profile_sidebar_border_color":"E3E3E3","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2459697654,"id_str":"2459697654","name":"Data Streamers","screen_name":"domesticstream","location":"Barcelona","url":"http:\/\/domesticstreamers.com\/","description":"Turning Excel forms into erotic lyrics.","protected":false,"followers_count":923,"friends_count":1359,"listed_count":33,"created_at":"Wed Apr 23 13:00:15 +0000 2014","favourites_count":276,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":249,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659775262410850304\/ssrC5Ej4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659775262410850304\/ssrC5Ej4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459697654\/1398258933","profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":370638564,"id_str":"370638564","name":"Jen Christiansen","screen_name":"ChristiansenJen","location":"","url":"http:\/\/jenchristiansen.com","description":"senior graphics editor at Scientific American (views expressed in tweets are my own) \/\/ scientific illustrator","protected":false,"followers_count":2762,"friends_count":632,"listed_count":232,"created_at":"Fri Sep 09 11:20:27 +0000 2011","favourites_count":992,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3011,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594903630903418880\/FcfvQwRr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594903630903418880\/FcfvQwRr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370638564\/1430670612","profile_link_color":"33CCCC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":222706151,"id_str":"222706151","name":"Alan Wilson","screen_name":"alangwilson","location":"Cedar Hills, UT","url":"http:\/\/blog.alangwilson.com","description":"I'm a designer. I design.\r\nI also... hike, game, ski, frisbee, read, sleep, teach, learn, and eat.","protected":false,"followers_count":150,"friends_count":385,"listed_count":11,"created_at":"Sat Dec 04 05:43:42 +0000 2010","favourites_count":29,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":308,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1207713129\/aw-twitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1207713129\/aw-twitter_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222706151\/1401461858","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3354190605,"id_str":"3354190605","name":"marian science","screen_name":"MMontaineer","location":"","url":null,"description":"","protected":true,"followers_count":26,"friends_count":456,"listed_count":0,"created_at":"Thu Jul 02 01:20:46 +0000 2015","favourites_count":3264,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":13,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627217858481770496\/h9eWhUQs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627217858481770496\/h9eWhUQs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354190605\/1437243193","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2314547370,"id_str":"2314547370","name":"Danya Brisson","screen_name":"DanyaBrisson","location":"Estrie, Qc, Canada","url":null,"description":"Passionn\u00e9e d'horticulture, d'agroenvironnement, de R&D et d'entrepreneuriat! FR \/ ENG","protected":false,"followers_count":76,"friends_count":468,"listed_count":2,"created_at":"Tue Jan 28 00:16:27 +0000 2014","favourites_count":59,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":25,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652156351351783424\/fhCzS5WB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652156351351783424\/fhCzS5WB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2314547370\/1444321165","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":329714473,"id_str":"329714473","name":"Kantar IIB Awards ","screen_name":"infobeautyaward","location":"London","url":"http:\/\/informationisbeautifulawards.com\/","description":"Open, non-profit awards celebrating excellence in data visualization and information design.","protected":false,"followers_count":3251,"friends_count":1372,"listed_count":282,"created_at":"Tue Jul 05 14:24:26 +0000 2011","favourites_count":207,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":1004,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000224204137\/41d761900c1d321f142c0e6a2b361489_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000224204137\/41d761900c1d321f142c0e6a2b361489_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329714473\/1414077622","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3517112173,"id_str":"3517112173","name":"gregnelson","screen_name":"GregDNelson","location":"Stansbury Park, UT","url":null,"description":"","protected":false,"followers_count":20,"friends_count":68,"listed_count":0,"created_at":"Thu Sep 10 16:04:01 +0000 2015","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644948906049040384\/SO4KOy3W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644948906049040384\/SO4KOy3W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3517112173\/1444425511","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":733145306,"id_str":"733145306","name":"Lindsay Chaney","screen_name":"l2chaney","location":"Pleasant Grove, Utah","url":"http:\/\/www.lindsaychaney.com","description":"I'm an evolutionary ecologist interested in plant genetics. I'm a volleyball player and like to bike and run. I'm a wife and mother of two. I'm a mormon.","protected":false,"followers_count":108,"friends_count":778,"listed_count":6,"created_at":"Thu Aug 02 16:38:39 +0000 2012","favourites_count":287,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":206,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2460201756\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2460201756\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/733145306\/1425512067","profile_link_color":"CCCCFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":182905856,"id_str":"182905856","name":"Caroline Queiroz","screen_name":"CarolQueiroz__","location":"Porto Alegre - RS","url":null,"description":"Mineira e feliz! Uma eterna aprendiz.","protected":false,"followers_count":352,"friends_count":383,"listed_count":13,"created_at":"Wed Aug 25 17:50:40 +0000 2010","favourites_count":196,"utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"verified":false,"statuses_count":6536,"lang":"pt","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595749875838427136\/0AV6pAit.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595749875838427136\/0AV6pAit.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595748562203516929\/T3V9mLT9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595748562203516929\/T3V9mLT9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182905856\/1430872416","profile_link_color":"4A913C","profile_sidebar_border_color":"F5EBF5","profile_sidebar_fill_color":"DBC5DB","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17276138,"id_str":"17276138","name":"Rodrigo Medeiros","screen_name":"medeiros_rod","location":"recife, pe, brazil","url":"http:\/\/www.rodrigomedeiros.com.br","description":"Interaction Designer and Professor. PhD Candidate at @cinUFPE, Curator of design and data visualization at @campuspartyBRA and Founder @bruixd","protected":false,"followers_count":478,"friends_count":620,"listed_count":57,"created_at":"Sun Nov 09 23:49:32 +0000 2008","favourites_count":686,"utc_offset":0,"time_zone":"Lisbon","geo_enabled":true,"verified":false,"statuses_count":4979,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3331877\/ppt_fundo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3331877\/ppt_fundo.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651462444343234560\/ddIPiWYc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651462444343234560\/ddIPiWYc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17276138\/1444578692","profile_link_color":"E67B09","profile_sidebar_border_color":"D5EBD6","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":57828655,"id_str":"57828655","name":"Travis Isaacson","screen_name":"travisaacson","location":"near greatest snow on earth","url":"http:\/\/www.linkedin.com\/in\/travisisaacson","description":"Husband, father, Mormon, skier, mountain biker, 2X BYU grad, reader of audiobooks, consumer of dark chocolates","protected":false,"followers_count":686,"friends_count":715,"listed_count":50,"created_at":"Sat Jul 18 02:25:35 +0000 2009","favourites_count":1179,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":6525,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000194921466\/04a32c686500227b9543e8b235be997d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000194921466\/04a32c686500227b9543e8b235be997d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57828655\/1443633439","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":397665261,"id_str":"397665261","name":"Tiafau Purcell","screen_name":"tiafaupurcell","location":"Provo, UT","url":"http:\/\/www.tiafaupurcell.me","description":"husband. father. mormon. design engineer. @_verdadtech @_sweeptheearth","protected":false,"followers_count":119,"friends_count":425,"listed_count":2,"created_at":"Tue Oct 25 00:33:04 +0000 2011","favourites_count":198,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":62,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586200078743801856\/l8x5cfvI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586200078743801856\/l8x5cfvI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397665261\/1441321664","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3281811438,"id_str":"3281811438","name":"Verdad Technologies","screen_name":"_verdadtech","location":"Provo, UT","url":"http:\/\/verdadtech.com\/","description":"We build software that creates impact. We surround these products with people who can multiply our impact and create long-term growth. #verdadtech","protected":false,"followers_count":57,"friends_count":182,"listed_count":2,"created_at":"Thu Jul 16 20:58:07 +0000 2015","favourites_count":46,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":58,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621786286328688640\/69hsAcmK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621786286328688640\/69hsAcmK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281811438\/1441321717","profile_link_color":"00A2FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":28714184,"id_str":"28714184","name":"Dustin Cathcart","screen_name":"dustincathcart","location":"Hanover, NH","url":null,"description":"","protected":false,"followers_count":138,"friends_count":393,"listed_count":2,"created_at":"Sat Apr 04 02:00:55 +0000 2009","favourites_count":1,"utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"verified":false,"statuses_count":4,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501889620809105408\/Iv_JGWq6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501889620809105408\/Iv_JGWq6_normal.jpeg","profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":19027322,"id_str":"19027322","name":"Dana Goldberg","screen_name":"MarketConnect","location":"Connecticut, USA","url":null,"description":"Health Care Marketing Consultant Constantly Amazed","protected":false,"followers_count":147,"friends_count":392,"listed_count":4,"created_at":"Thu Jan 15 16:24:30 +0000 2009","favourites_count":3,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":204,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/73798989\/Dana_normal_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/73798989\/Dana_normal_normal.jpg","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3420223814,"id_str":"3420223814","name":"Spencer Miner","screen_name":"SpencenatorM","location":"","url":null,"description":"","protected":false,"followers_count":16,"friends_count":61,"listed_count":0,"created_at":"Wed Sep 02 00:28:50 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":0,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638903895205371904\/kHGE3gkZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638903895205371904\/kHGE3gkZ_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14746623,"id_str":"14746623","name":"Andrej Lapajne","screen_name":"lapajne","location":"Ljubljana, Slovenia","url":"http:\/\/zebra.bi","description":"Founder @ZebraBI | Addicted to Data Visualization, Management Reporting, BI Dashboards","protected":false,"followers_count":137,"friends_count":305,"listed_count":17,"created_at":"Mon May 12 17:13:44 +0000 2008","favourites_count":42,"utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"verified":false,"statuses_count":256,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"003399","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/849127877\/dda9b6c8165e951e0e3f32633e6dc7e3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/849127877\/dda9b6c8165e951e0e3f32633e6dc7e3.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1425135281\/AL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1425135281\/AL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14746623\/1425590631","profile_link_color":"66757F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDED","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2649924378,"id_str":"2649924378","name":"Tom Shanley","screen_name":"tomshanleynz","location":"Wellington, New Zealand","url":null,"description":"busines analysis with data visualisation: http:\/\/t.co\/eHnZN28qgu https:\/\/t.co\/b63i3bpXaf http:\/\/t.co\/ftyIkYRPPQ","protected":false,"followers_count":60,"friends_count":92,"listed_count":18,"created_at":"Wed Jul 16 04:06:00 +0000 2014","favourites_count":100,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":191,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515969110727864320\/aIlEZPTd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515969110727864320\/aIlEZPTd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2649924378\/1411852532","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2387292859,"id_str":"2387292859","name":"De Perfecte Grafiek","screen_name":"PerfecteGrafiek","location":"","url":"http:\/\/www.deperfectegrafiek.nl","description":"","protected":false,"followers_count":73,"friends_count":224,"listed_count":10,"created_at":"Thu Mar 13 15:46:45 +0000 2014","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":148,"lang":"nl","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599847465865584640\/MJ5GkxRb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599847465865584640\/MJ5GkxRb_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":167982035,"id_str":"167982035","name":"Shine Pulikathara","screen_name":"vizshine","location":"Chicago, IL","url":null,"description":"Finance MBA, tech consultant, visual artist - exploring the connections between #business, #technology and #artdesign. @tableau Iron Viz Champion 2015.","protected":false,"followers_count":1604,"friends_count":1268,"listed_count":72,"created_at":"Sun Jul 18 02:14:38 +0000 2010","favourites_count":889,"utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"verified":false,"statuses_count":2063,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/206601401\/shine_bw_logos_text.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/206601401\/shine_bw_logos_text.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242288877\/shine_bw_logos_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242288877\/shine_bw_logos_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167982035\/1427742339","profile_link_color":"003366","profile_sidebar_border_color":"63BF2E","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":87021748,"id_str":"87021748","name":"Robert Rouse","screen_name":"bibleviz","location":"Rowlett, TX","url":"http:\/\/metavbible.com","description":"Geeking out on data and the Bible. Tableau Zen Master 2015\/16, Analytics Consultant @InterWorks","protected":false,"followers_count":957,"friends_count":428,"listed_count":52,"created_at":"Mon Nov 02 20:35:35 +0000 2009","favourites_count":1112,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1826,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649928358562697217\/7tRcF8B1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649928358562697217\/7tRcF8B1.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657435709834309636\/DTvkzMjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657435709834309636\/DTvkzMjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87021748\/1443702673","profile_link_color":"860A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":468960732,"id_str":"468960732","name":"Jeffrey Shaffer","screen_name":"HighVizAbility","location":"Cincinnati","url":"http:\/\/www.dataplusscience.com","description":"Data Visualization Professor, Data Mining Geek, Recovering Musician","protected":false,"followers_count":1677,"friends_count":1007,"listed_count":157,"created_at":"Fri Jan 20 02:51:14 +0000 2012","favourites_count":2332,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1980,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447904439190319104\/K5h54qm5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447904439190319104\/K5h54qm5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468960732\/1395365656","profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3131657356,"id_str":"3131657356","name":"Daniel Narey","screen_name":"DanielNarey","location":"Pittsburgh, PA","url":"http:\/\/danielnarey.com","description":"Educator & Creative Entrepreneur. Data Visualization Enthusiast. Interested in creative uses of tech\/media for educational outreach and community empowerment.","protected":false,"followers_count":30,"friends_count":120,"listed_count":25,"created_at":"Fri Apr 03 15:16:05 +0000 2015","favourites_count":212,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":402,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589143730352955395\/i4zIkSZi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589143730352955395\/i4zIkSZi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3131657356\/1429298250","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1154776688,"id_str":"1154776688","name":"50 Fitty","screen_name":"50Fitty","location":"","url":"http:\/\/50fitty.com","description":"At 50 years old I lost 50 pounds in 50 weeks. I've kept it off the past two and half years.","protected":false,"followers_count":201,"friends_count":391,"listed_count":4,"created_at":"Wed Feb 06 18:42:58 +0000 2013","favourites_count":1676,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3023,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000006798934\/524f6ef499912807e2bf5107bbb4ff39.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000006798934\/524f6ef499912807e2bf5107bbb4ff39.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3299468176\/c4a8e4241107724fd69445a9ae23cdc4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3299468176\/c4a8e4241107724fd69445a9ae23cdc4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154776688\/1368988011","profile_link_color":"356894","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2646463652,"id_str":"2646463652","name":"Visart","screen_name":"visartio","location":"Cambridge, MA","url":"http:\/\/www.visart.io","description":"Visart turns data into visualizations without code. Providing you with interactive business & research dashboards. Tweets about #smb, #data, #BI & #analysis.","protected":false,"followers_count":375,"friends_count":344,"listed_count":57,"created_at":"Mon Jul 14 22:43:57 +0000 2014","favourites_count":41,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":737,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567813106932252672\/srcgNf_F.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567813106932252672\/srcgNf_F.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488817280633937920\/8ZF8dQ8J_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488817280633937920\/8ZF8dQ8J_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2646463652\/1424232192","profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1356834716,"id_str":"1356834716","name":"Shuhsi Lin","screen_name":"ShuhsiLin","location":"","url":null,"description":"Data Engineer","protected":false,"followers_count":8,"friends_count":77,"listed_count":1,"created_at":"Tue Apr 16 13:04:37 +0000 2013","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613339473594597377\/fE3Ps_tz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613339473594597377\/fE3Ps_tz_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":23347647,"id_str":"23347647","name":"Simon","screen_name":"SimonFr","location":"Cambridge, UK","url":null,"description":"","protected":false,"followers_count":210,"friends_count":637,"listed_count":11,"created_at":"Sun Mar 08 20:07:01 +0000 2009","favourites_count":32,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":2527,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568729748944084992\/oqVS8Hk6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568729748944084992\/oqVS8Hk6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23347647\/1401447141","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":93924195,"id_str":"93924195","name":"Fr\u00e9d\u00e9ric Langlade","screen_name":"fredericlb","location":"Lyon, France","url":"http:\/\/www.parapluie.org","description":"\/(node)?js|web[cg]l|(no)?sql\/","protected":false,"followers_count":88,"friends_count":174,"listed_count":8,"created_at":"Tue Dec 01 19:21:46 +0000 2009","favourites_count":200,"utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"verified":false,"statuses_count":198,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621669352908169216\/bCjNpyoM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621669352908169216\/bCjNpyoM_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":490765769,"id_str":"490765769","name":"Josh Hagedorn","screen_name":"JoshuaHagedorn","location":"","url":null,"description":"","protected":false,"followers_count":56,"friends_count":122,"listed_count":15,"created_at":"Sun Feb 12 22:00:00 +0000 2012","favourites_count":118,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":910,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000655664582\/23336a4ed098942624f0f3b9342cd72d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000655664582\/23336a4ed098942624f0f3b9342cd72d_normal.jpeg","profile_link_color":"0F587A","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2936130798,"id_str":"2936130798","name":"Amine Bourenane","screen_name":"mamine_b","location":"","url":null,"description":"","protected":false,"followers_count":77,"friends_count":401,"listed_count":1,"created_at":"Fri Dec 19 14:50:06 +0000 2014","favourites_count":13,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":27,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545955278856798208\/awf616it_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545955278856798208\/awf616it_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":87092774,"id_str":"87092774","name":"Jafar Haider","screen_name":"j_haider","location":"Missouri, USA","url":null,"description":"Information Systems graduate student at Washington University in St. Louis. Interested in analytics, sports, politics, and new ideas.","protected":false,"followers_count":25,"friends_count":238,"listed_count":0,"created_at":"Tue Nov 03 02:48:49 +0000 2009","favourites_count":8,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":69,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2431357110,"id_str":"2431357110","name":"Avinash Balakrishnan","screen_name":"data_padawan","location":"","url":null,"description":"","protected":false,"followers_count":33,"friends_count":156,"listed_count":3,"created_at":"Mon Apr 07 03:04:12 +0000 2014","favourites_count":34,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":19,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453006253912911873\/mp186Dr5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453006253912911873\/mp186Dr5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2431357110\/1396840086","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3035365717,"id_str":"3035365717","name":"Hayden Rabel","screen_name":"h_rabel","location":"New Zealand","url":null,"description":"Interested in how maths and stats can help us make positive changes to the way we treat our environment. Don't follow me, I just use this for a news feed.","protected":false,"followers_count":3,"friends_count":47,"listed_count":0,"created_at":"Sun Feb 22 01:00:56 +0000 2015","favourites_count":25,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":0,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569301295220011008\/doVmFrCH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569301295220011008\/doVmFrCH_normal.jpeg","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":282130842,"id_str":"282130842","name":"Mike Freeman","screen_name":"mf_viz","location":"Seattle","url":"http:\/\/mfviz.com","description":"Turning data into information","protected":false,"followers_count":590,"friends_count":232,"listed_count":90,"created_at":"Thu Apr 14 16:14:37 +0000 2011","favourites_count":532,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":912,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507235241430228992\/QInVM6F__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507235241430228992\/QInVM6F__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282130842\/1398307091","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2991721947,"id_str":"2991721947","name":"dulcea","screen_name":"dulceapujol438","location":"","url":null,"description":"Doryour legs hurt from running through my dreams all night?","protected":false,"followers_count":63,"friends_count":1288,"listed_count":0,"created_at":"Thu Jan 22 09:46:34 +0000 2015","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":548,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616964297814622208\/hS2vdsM2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616964297814622208\/hS2vdsM2.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616964278302679040\/b7U4ECm0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616964278302679040\/b7U4ECm0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991721947\/1435930728","profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2616090896,"id_str":"2616090896","name":"Ian Mason","screen_name":"IanMasonHF","location":"Toronto","url":"http:\/\/hassardfay.com","description":"Managing director at thought leadership firm Hassard Fay @hassardfay, editor of SCOPE Magazine @scopenotes","protected":false,"followers_count":575,"friends_count":2000,"listed_count":22,"created_at":"Thu Jul 10 20:21:25 +0000 2014","favourites_count":53,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":247,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487337495768469504\/DHTYlTBn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487337495768469504\/DHTYlTBn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2616090896\/1405985915","profile_link_color":"BF8219","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1880399430,"id_str":"1880399430","name":"Andrew Barraclough","screen_name":"AndrewBarraclo1","location":"","url":null,"description":"Head of Analysis, Better for you, Nottingham University Hospitals, all views my own.","protected":false,"followers_count":361,"friends_count":1621,"listed_count":32,"created_at":"Wed Sep 18 18:28:19 +0000 2013","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":386,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616669693387100162\/x7JC545g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616669693387100162\/x7JC545g_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2837231294,"id_str":"2837231294","name":"VancouverInstituteVA","screen_name":"Van_InstituteVA","location":"SFU\/UBC\/BCIT","url":"http:\/\/www.viva-viva.ca","description":"Vancouver Institute for Visual Analytics: Build your visual analytics skills. Connect with the VA community. Empower data. Advance innovation in visualizations.","protected":false,"followers_count":106,"friends_count":227,"listed_count":61,"created_at":"Wed Oct 01 22:21:26 +0000 2014","favourites_count":80,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":590,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518927764477313024\/h227lcAc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518927764477313024\/h227lcAc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2837231294\/1424304024","profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3246304177,"id_str":"3246304177","name":"Brandon Jacoben","screen_name":"BrandonJacoben","location":"Palo Alto, CA","url":null,"description":"","protected":false,"followers_count":3,"friends_count":32,"listed_count":0,"created_at":"Mon Jun 15 18:46:12 +0000 2015","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610643602906066944\/UbLudcpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610643602906066944\/UbLudcpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246304177\/1434423825","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1539343122,"id_str":"1539343122","name":"Emerging Media at BU","screen_name":"DEMSatBU","location":"Boston","url":"http:\/\/bu.edu\/com\/academics\/emerging-media\/","description":"The Division of Emerging Media Studies in the College of Communication at Boston University focuses on new media and emerging media technologies.","protected":false,"followers_count":641,"friends_count":1976,"listed_count":26,"created_at":"Sat Jun 22 19:36:45 +0000 2013","favourites_count":340,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1523,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653952107771355136\/vv_jAcLQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653952107771355136\/vv_jAcLQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1539343122\/1444748641","profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":9768252,"id_str":"9768252","name":"Dane Lyons","screen_name":"duilen","location":"San Francisco","url":"http:\/\/knowtify.io","description":"Cofounder\/CTO of @knowtifyio, aspiring inventor, villager of @techstars and substantial other of @evylyons!","protected":false,"followers_count":6935,"friends_count":3364,"listed_count":110,"created_at":"Mon Oct 29 05:29:02 +0000 2007","favourites_count":339,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":3021,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565205165762813952\/-_bsj4Ev.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565205165762813952\/-_bsj4Ev.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565200883554607106\/G3mIQhpU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565200883554607106\/G3mIQhpU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9768252\/1423590858","profile_link_color":"3B94D9","profile_sidebar_border_color":"A6A4A0","profile_sidebar_fill_color":"A5DCEE","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2434164000,"id_str":"2434164000","name":"Miranda Singler","screen_name":"mir_sing","location":"California","url":"http:\/\/mirmade.net","description":"Why do you go away? So that you can come back. So that you can see the place you came from with new eyes and extra colors. \u2013 Terry Pratchett","protected":false,"followers_count":98,"friends_count":535,"listed_count":5,"created_at":"Tue Apr 08 20:06:38 +0000 2014","favourites_count":680,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":351,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650885728352649216\/JbXDzuCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650885728352649216\/JbXDzuCw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2434164000\/1404105898","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3165836880,"id_str":"3165836880","name":"Allison Saville","screen_name":"allisonasaville","location":"","url":null,"description":"Learning some things. My opinions are mine all mine.","protected":false,"followers_count":43,"friends_count":246,"listed_count":0,"created_at":"Mon Apr 20 19:37:53 +0000 2015","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":15,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/591134159554285568\/ed3hTd2F.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/591134159554285568\/ed3hTd2F.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591120085760147456\/Ulm9iwH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591120085760147456\/Ulm9iwH3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165836880\/1429773078","profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3073997080,"id_str":"3073997080","name":" Mark Belan ","screen_name":"markabelan","location":"Hamilton, Ontario, Canada","url":"http:\/\/www.markbelan.com","description":"Geochemistry\/astrobiology graduate. Also have a penchant for digital illustration, and merging art & science! I do art stuffs: Check it @markbelanart","protected":false,"followers_count":56,"friends_count":173,"listed_count":6,"created_at":"Fri Mar 06 01:55:29 +0000 2015","favourites_count":73,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":104,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573663767331889152\/L_1Y3wPv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573663767331889152\/L_1Y3wPv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3073997080\/1426553306","profile_link_color":"6039FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17711699,"id_str":"17711699","name":"kallirroi","screen_name":"kallirroi","location":"Cambridge, MA","url":"http:\/\/kallirroiretzepi.com","description":"Amateur photographer studying neuroscience.","protected":true,"followers_count":16,"friends_count":108,"listed_count":0,"created_at":"Fri Nov 28 16:25:56 +0000 2008","favourites_count":13,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"5B2A46","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254351169\/1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254351169\/1.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549607040033640448\/jez2WHj5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549607040033640448\/jez2WHj5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17711699\/1426598798","profile_link_color":"6D79BB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2565129803,"id_str":"2565129803","name":"Oli Darley","screen_name":"CatchingPebbles","location":"London","url":null,"description":"Folk Musician and Maps lover","protected":false,"followers_count":56,"friends_count":132,"listed_count":8,"created_at":"Mon May 26 11:27:02 +0000 2014","favourites_count":3,"utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"verified":false,"statuses_count":19,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471202282412183552\/SWjpeJgG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471202282412183552\/SWjpeJgG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2565129803\/1422862918","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":93552719,"id_str":"93552719","name":"Robert (RJ) Weise","screen_name":"rjweise","location":"Calgary","url":"https:\/\/drawingthedata.wordpress.com\/","description":"Data analysis and visualization, information design, GIS and parenting","protected":false,"followers_count":226,"friends_count":562,"listed_count":53,"created_at":"Mon Nov 30 03:38:58 +0000 2009","favourites_count":395,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2276,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577658495282991104\/_y_k-ch2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577658495282991104\/_y_k-ch2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93552719\/1416081280","profile_link_color":"FA743E","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17461965,"id_str":"17461965","name":"Michael Porath","screen_name":"poezn","location":"San Francisco","url":"http:\/\/michaelporath.com","description":"Product Manager for Data Visualization @splunk. Bay Area based Swiss Information Scientist","protected":false,"followers_count":1040,"friends_count":886,"listed_count":102,"created_at":"Tue Nov 18 10:25:50 +0000 2008","favourites_count":678,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2612,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"AA3300","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/207209506\/bg-nogradient.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/207209506\/bg-nogradient.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502849363048017920\/d-8afRvZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502849363048017920\/d-8afRvZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17461965\/1357877790","profile_link_color":"86AAA6","profile_sidebar_border_color":"5D2209","profile_sidebar_fill_color":"AA3300","profile_text_color":"D1E6E4","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":927899760,"id_str":"927899760","name":"Analyze\\\/iz","screen_name":"AnalyzeViz","location":"New York, New York","url":"http:\/\/analyzeviz.tumblr.com","description":"Curating, Analyzing, and Creating data visualizations of this digital information age. Brought to you by the folks at @Galan_etal","protected":false,"followers_count":41,"friends_count":323,"listed_count":19,"created_at":"Mon Nov 05 16:15:11 +0000 2012","favourites_count":923,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":555,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/705249385\/af3e171154077b0a97d33c1131328ac3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/705249385\/af3e171154077b0a97d33c1131328ac3.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652600870220267520\/pWV_bY9C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652600870220267520\/pWV_bY9C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/927899760\/1431637666","profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":243817534,"id_str":"243817534","name":"Hina S","screen_name":"Mizzhena","location":"BOS-LHR-BAH","url":null,"description":"Citoyenne du monde type. Ex BBC, CNNi & Guardian. SOAS & Emerson alum. Work in digital media but still have audio cassettes. Tweets & RTs don't rep my employer.","protected":false,"followers_count":227,"friends_count":1138,"listed_count":12,"created_at":"Thu Jan 27 21:49:37 +0000 2011","favourites_count":17,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":682,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/233645033\/P3040781.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/233645033\/P3040781.JPG","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000786122845\/1a2c57bb97a748b697fd833b1bc636d6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000786122845\/1a2c57bb97a748b697fd833b1bc636d6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243817534\/1405251677","profile_link_color":"117A0F","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":735633,"id_str":"735633","name":"Mister Speaker","screen_name":"mrspeaker","location":"New York","url":"http:\/\/www.mrspeaker.net\/","description":"Javascript fl\u00e2neur, internet flibbertygibbert. Author of the Oprah's Book Club classic, 'jQuery: Novice to Ninja'.","protected":false,"followers_count":3656,"friends_count":3120,"listed_count":214,"created_at":"Wed Jan 31 03:00:04 +0000 2007","favourites_count":1463,"utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":4771,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623496103\/dm97083sojfyipw8yz6d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623496103\/dm97083sojfyipw8yz6d.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423384530\/Picture_2_bigger_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423384530\/Picture_2_bigger_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735633\/1398977547","profile_link_color":"D1D1D1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5D0C8","profile_text_color":"322F00","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":15496407,"id_str":"15496407","name":"Jason H. Moore, Ph.D","screen_name":"moorejh","location":"Philadelphia, PA, USA","url":"http:\/\/www.epistasis.org","description":"Director and Professor, Institute for Biomedical Informatics, Perelman School of Medicine, University of Pennsylvania","protected":false,"followers_count":10797,"friends_count":7997,"listed_count":911,"created_at":"Sat Jul 19 23:10:24 +0000 2008","favourites_count":528,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":26898,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550024402142625793\/5aw9u9E8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550024402142625793\/5aw9u9E8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15496407\/1419971045","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":15814517,"id_str":"15814517","name":"Damir Hurtic","screen_name":"hurtic","location":"Stockholm, Sweden","url":"http:\/\/www.vanitail.com","description":"Vanitail CEO. Design Entrepreneur.","protected":false,"followers_count":216,"friends_count":662,"listed_count":16,"created_at":"Mon Aug 11 22:00:55 +0000 2008","favourites_count":102,"utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"verified":false,"statuses_count":707,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/67497060\/Twitter-bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/67497060\/Twitter-bg.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2871117334\/cf1c144f8417c3d2149f6ede21e19e61_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2871117334\/cf1c144f8417c3d2149f6ede21e19e61_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15814517\/1399020399","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"101010","profile_text_color":"666666","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":18816030,"id_str":"18816030","name":"Tim Varga","screen_name":"tvargs","location":"Oakland","url":"http:\/\/climatepolicyinitiative.org","description":"earth system science, remote sensing, data visualization, communicating science, local sports.","protected":false,"followers_count":331,"friends_count":740,"listed_count":24,"created_at":"Fri Jan 09 21:23:48 +0000 2009","favourites_count":865,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1658,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/5202543\/manutebol_mugsy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/5202543\/manutebol_mugsy.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579050450395090944\/IG9T5SqU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579050450395090944\/IG9T5SqU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18816030\/1399408682","profile_link_color":"FA743E","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3108294289,"id_str":"3108294289","name":"Readily Apparent","screen_name":"readilyapparent","location":"","url":"http:\/\/readilyapparent.com","description":"","protected":false,"followers_count":5,"friends_count":243,"listed_count":0,"created_at":"Thu Mar 26 12:22:03 +0000 2015","favourites_count":0,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":6,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597726172852588544\/DTDzCmHg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597726172852588544\/DTDzCmHg_normal.png","profile_link_color":"6588A6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":291656846,"id_str":"291656846","name":"Guillermo S.-Herrero","screen_name":"SguilleH","location":"","url":"http:\/\/page.is\/guillermo-s--herrero","description":"Cuenta personal de un tipo que en sus ratos libres trabaja en un peri\u00f3dico","protected":false,"followers_count":665,"friends_count":592,"listed_count":52,"created_at":"Mon May 02 12:02:07 +0000 2011","favourites_count":2412,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"verified":false,"statuses_count":27231,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1352372798\/aveinte_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1352372798\/aveinte_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":708048008,"id_str":"708048008","name":"Matthew Rottman","screen_name":"MatthewMrteach1","location":"Illinois","url":null,"description":"BI \/ Data Warehousing technologist who is passionate about Innovation, Contemporary design, Impressionist art and great Data Visualization. Simple is Beautiful.","protected":false,"followers_count":666,"friends_count":1981,"listed_count":172,"created_at":"Sat Jul 21 00:21:04 +0000 2012","favourites_count":298,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1590,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2417015085\/oyhtyt4dot25mgttbqwm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2417015085\/oyhtyt4dot25mgttbqwm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/708048008\/1431179437","profile_link_color":"0083B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":33502262,"id_str":"33502262","name":"David Pires","screen_name":"davidmpires","location":"London - Sevenoaks","url":"https:\/\/public.tableau.com\/profile\/david.pires#!\/","description":"Portuguese in London | Language Learner | @Tableau Jedi Wannabe & DataViz Enthusiast at CACI UK | Tweets in EN | PT | ES | JP","protected":false,"followers_count":344,"friends_count":776,"listed_count":56,"created_at":"Mon Apr 20 12:56:10 +0000 2009","favourites_count":32,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6029,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630331725009301504\/uTp3q8i__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630331725009301504\/uTp3q8i__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33502262\/1441912677","profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":411065397,"id_str":"411065397","name":"shahrzad masoumnia","screen_name":"shahrzadmn67","location":"Toronto, Ontario","url":null,"description":"","protected":false,"followers_count":185,"friends_count":1842,"listed_count":1,"created_at":"Sat Nov 12 23:18:02 +0000 2011","favourites_count":0,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575471730061221888\/_VtzR3m9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575471730061221888\/_VtzR3m9_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":19667012,"id_str":"19667012","name":"Oscar Loureiro","screen_name":"loureiroo","location":"Eugene, Oregon (USA)","url":null,"description":"At the intersection of Data, Education, Equality as a goal, and family","protected":false,"followers_count":149,"friends_count":1994,"listed_count":2,"created_at":"Wed Jan 28 18:33:39 +0000 2009","favourites_count":45,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":53,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3257533441\/6034e59e6c5a72be50049fc57755657a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3257533441\/6034e59e6c5a72be50049fc57755657a_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":3045373096,"id_str":"3045373096","name":"Addie Roark","screen_name":"Addie_Roark","location":"Virginia Beach, Virginia","url":"http:\/\/addieroark.com","description":"Multi-talented with tremendous untapped potential.","protected":false,"followers_count":32,"friends_count":166,"listed_count":4,"created_at":"Fri Feb 20 00:29:38 +0000 2015","favourites_count":35,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":76,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569192020481024000\/0xo02Zbv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569192020481024000\/0xo02Zbv.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568568402340356097\/Z_wPCM08_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568568402340356097\/Z_wPCM08_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3045373096\/1439308131","profile_link_color":"E4B837","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":260582890,"id_str":"260582890","name":"Wen Dombrowski MD","screen_name":"HealthcareWen","location":"NYC \u25b6 San Diego #xMed","url":"http:\/\/Linkd.in\/Dombrowski","description":"Physician\u2026 #Innovation #Tech #Data #UX #HealthIT #ICT4D #SocialMedia #Policy #Aging #HomeCare #HPM #Disability #SDoH \u2020 \u266b\n(Views\/RT =food for thought, \u2260endorse)","protected":false,"followers_count":26646,"friends_count":25039,"listed_count":1498,"created_at":"Fri Mar 04 04:40:06 +0000 2011","favourites_count":26988,"utc_offset":-14400,"time_zone":"America\/New_York","geo_enabled":true,"verified":false,"statuses_count":36686,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"99B3CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/845110073\/4c4853facc95e086bbce51000668ce06.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/845110073\/4c4853facc95e086bbce51000668ce06.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515201747363430400\/ncHkRwCH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515201747363430400\/ncHkRwCH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260582890\/1402376957","profile_link_color":"109296","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1371790790,"id_str":"1371790790","name":"accurat","screen_name":"accuratstudio","location":"Milan \/ New York","url":"http:\/\/www.accurat.it","description":"Accurat is an information design agency.\r\nWe research and analyze data and contexts, and design visual tools and narratives.","protected":false,"followers_count":3628,"friends_count":1092,"listed_count":242,"created_at":"Mon Apr 22 10:19:29 +0000 2013","favourites_count":476,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":759,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F7F7F3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/851181923\/a4f8049d68aaeeae060106b38d50dc8c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/851181923\/a4f8049d68aaeeae060106b38d50dc8c.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433322110237163520\/6RqjSiSL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433322110237163520\/6RqjSiSL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1371790790\/1392663808","profile_link_color":"5B5B5B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2973653943,"id_str":"2973653943","name":"Cathleen CJ Jewell","screen_name":"CPJ_Jewell","location":"","url":"http:\/\/about.me\/cpjewell","description":"PhD Candidate, aspiring data scientist, data visualization aficionado, (data) science is art, evolutionary biologist, genetics of reproductive behavior","protected":false,"followers_count":68,"friends_count":152,"listed_count":15,"created_at":"Sun Jan 11 21:34:38 +0000 2015","favourites_count":39,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":81,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628643945199767552\/MkQPT4wO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628643945199767552\/MkQPT4wO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973653943\/1424231384","profile_link_color":"3B7C46","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1870628359,"id_str":"1870628359","name":"Trommer Dreamrender","screen_name":"luisvray","location":"Espa\u00f1a","url":"https:\/\/www.youtube.com\/channel\/UCx3kOT1N9NxkxtyTDTStGBg","description":"Dedicado a la animaci\u00f3n 3D y Youtubero\ncortos animados. etc","protected":false,"followers_count":1098,"friends_count":1197,"listed_count":7,"created_at":"Mon Sep 16 07:23:11 +0000 2013","favourites_count":34,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":19180,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517780376408690688\/1tbD73T0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517780376408690688\/1tbD73T0.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657492626770366464\/eO5kL6Hi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657492626770366464\/eO5kL6Hi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1870628359\/1445235479","profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":true,"blocking":false,"blocked_by":false},{"id":8623492,"id_str":"8623492","name":"Sean Rehder","screen_name":"seanrehder","location":"California","url":"http:\/\/www.linkedin.com\/in\/seanrehder","description":"Putting email marketing management into corporate recruiting programs. Turn your ATS into your marketing database.","protected":false,"followers_count":1289,"friends_count":1078,"listed_count":47,"created_at":"Mon Sep 03 13:19:30 +0000 2007","favourites_count":13,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1397,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439842858502078464\/rr57Sww_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439842858502078464\/rr57Sww_.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/54489561\/new-pic-03_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/54489561\/new-pic-03_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8623492\/1444775920","profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":25220849,"id_str":"25220849","name":"Dan Gardner","screen_name":"dangvisual","location":" WI","url":"http:\/\/www.djgardner.com","description":"ERP visualization enthusiast, #dataviz #d3js #perl #iot #smartthings","protected":false,"followers_count":177,"friends_count":940,"listed_count":18,"created_at":"Thu Mar 19 02:44:52 +0000 2009","favourites_count":6,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":200,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1884090963\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1884090963\/image_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":137712607,"id_str":"137712607","name":"Andy Kirk","screen_name":"visualisingdata","location":"Leeds, Yorkshire","url":"http:\/\/www.visualisingdata.com","description":"Data visualisation specialist: Freelance design consultant, trainer, blog editor, researcher & author. Visiting lecturer at MICA (US) and Imperial College (UK).","protected":false,"followers_count":21727,"friends_count":456,"listed_count":1901,"created_at":"Tue Apr 27 14:35:43 +0000 2010","favourites_count":59,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":18049,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/103322062\/FacebookIdent.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/103322062\/FacebookIdent.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486439636881793024\/1WIwOE_4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486439636881793024\/1WIwOE_4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137712607\/1405523546","profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":626545681,"id_str":"626545681","name":"Dmitry Perkin","screen_name":"DmitryPerkin","location":"San Jose","url":"http:\/\/www.quantifind.com","description":"Interested in Technology and Recruiting. Not interested in saving the galaxy. (Hobbies: Helping to Create the DeathStar)","protected":false,"followers_count":87,"friends_count":806,"listed_count":1,"created_at":"Wed Jul 04 15:24:37 +0000 2012","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":157,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434388669156171776\/D33Y0lKt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434388669156171776\/D33Y0lKt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626545681\/1416084900","profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":25165065,"id_str":"25165065","name":"Michelle Killebrew","screen_name":"shellkillebrew","location":"San Francisco, CA","url":"http:\/\/www.michellekillebrew.com","description":"Sr Marketing Executive, TEDx, Digital Technologist, Marketing Maven (B2B & B2C), Web Analytics User, eCommerce Junkie, Tech Geek & Dog Lover. Opinions are mine.","protected":false,"followers_count":42395,"friends_count":40239,"listed_count":2360,"created_at":"Wed Mar 18 21:55:29 +0000 2009","favourites_count":10707,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":26407,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"2A2623","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573714583728209921\/dk0B19ux.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573714583728209921\/dk0B19ux.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536377291450761216\/5zrzvdN1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536377291450761216\/5zrzvdN1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25165065\/1427923343","profile_link_color":"AF7687","profile_sidebar_border_color":"4A66C1","profile_sidebar_fill_color":"B9B8B6","profile_text_color":"6596A4","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":96238541,"id_str":"96238541","name":"JT","screen_name":"JTyll","location":"Baltimore, MD","url":null,"description":"","protected":false,"followers_count":37,"friends_count":434,"listed_count":28,"created_at":"Sat Dec 12 00:22:34 +0000 2009","favourites_count":18,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":939,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000276252835\/93a9d0b5439d43c4e909a95f41dea41b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000276252835\/93a9d0b5439d43c4e909a95f41dea41b_normal.jpeg","profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":84043985,"id_str":"84043985","name":"Micah Stubbs","screen_name":"micahstubbs","location":"Mountain View, CA","url":"http:\/\/bl.ocks.org\/micahstubbs","description":"data visualization + digital currency + machine learning, mostly","protected":false,"followers_count":1315,"friends_count":1961,"listed_count":168,"created_at":"Wed Oct 21 09:53:27 +0000 2009","favourites_count":4402,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":12257,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1985303958\/Micah_Stubbs_Profile_square_cropped_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1985303958\/Micah_Stubbs_Profile_square_cropped_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84043985\/1414102095","profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14628878,"id_str":"14628878","name":"Ellie Fields","screen_name":"eleanorpd","location":"Mercer Island, WA","url":null,"description":"Technologist, data geek, closet economist, fervent reader, and blogger. Working @Tableau Software in Seattle. Also running #Tapestryconf.","protected":false,"followers_count":2531,"friends_count":1646,"listed_count":211,"created_at":"Fri May 02 17:56:25 +0000 2008","favourites_count":71,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2980,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"47453D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/319878906\/x85ba875e9bbbba51fe074dd6388acd6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/319878906\/x85ba875e9bbbba51fe074dd6388acd6.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346747955\/Ellie-fields-4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346747955\/Ellie-fields-4_normal.png","profile_link_color":"BF5021","profile_sidebar_border_color":"B4D997","profile_sidebar_fill_color":"B39925","profile_text_color":"F2DE85","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":245217900,"id_str":"245217900","name":"klr","screen_name":"timelyportfolio","location":"Birmingham, Alabama, USA","url":"http:\/\/timelyportfolio.blogspot.com","description":"absolute return portfolio manager who enjoys data visualization but cannot follow anyone new because Twitter's ratio block","protected":false,"followers_count":1616,"friends_count":2003,"listed_count":231,"created_at":"Mon Jan 31 04:42:26 +0000 2011","favourites_count":6383,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":13693,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2198946077\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2198946077\/image_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":22543179,"id_str":"22543179","name":"Erik Jacobsen","screen_name":"noyfbdk","location":"Europe","url":"http:\/\/noyfb.dk\/","description":"Old guy from somewhere in Europe. I've been on top of the World Trade Center in 1984.","protected":false,"followers_count":6,"friends_count":70,"listed_count":0,"created_at":"Mon Mar 02 22:11:38 +0000 2009","favourites_count":0,"utc_offset":3600,"time_zone":"Copenhagen","geo_enabled":false,"verified":false,"statuses_count":28,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/86253691\/noyfb1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/86253691\/noyfb1_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2196119090,"id_str":"2196119090","name":"ChartBlocks","screen_name":"ChartBlocks","location":"London","url":"http:\/\/www.chartblocks.com","description":"Build and share charts online with the web's easiest chart builder. #dataviz #analytics","protected":false,"followers_count":522,"friends_count":1164,"listed_count":58,"created_at":"Fri Nov 15 14:54:57 +0000 2013","favourites_count":82,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":308,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"212D3B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450580420136943616\/1-67NZhV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450580420136943616\/1-67NZhV.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461507829572984832\/vGJ9zjri_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461507829572984832\/vGJ9zjri_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2196119090\/1441375304","profile_link_color":"89C44F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2595745178,"id_str":"2595745178","name":"Enviropoles","screen_name":"enviropoles","location":"","url":"http:\/\/www.enviropoles.com\/","description":"Enviropoles fights to take cigarette butt litter off the streets with a sense of modern day style.","protected":false,"followers_count":137,"friends_count":996,"listed_count":7,"created_at":"Mon Jun 30 03:51:51 +0000 2014","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":16,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483795227417657344\/VMPDNQFy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483795227417657344\/VMPDNQFy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2595745178\/1404187911","profile_link_color":"4FBD88","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":13072682,"id_str":"13072682","name":"Yoeran Luteijn","screen_name":"yoeran","location":"Den Haag","url":"http:\/\/yoeran.nl\/","description":"Freelance Creative Developer || CTO Splaire","protected":false,"followers_count":742,"friends_count":782,"listed_count":48,"created_at":"Tue Feb 05 00:08:15 +0000 2008","favourites_count":5,"utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"verified":false,"statuses_count":8923,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562161000\/twitter.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562161000\/twitter.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1521203222\/yoeran-luteijn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1521203222\/yoeran-luteijn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13072682\/1437123782","profile_link_color":"FF9900","profile_sidebar_border_color":"DDDDDD","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"222222","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":500229607,"id_str":"500229607","name":"Madjelan","screen_name":"Madjelan","location":"Paris","url":null,"description":"","protected":false,"followers_count":71,"friends_count":1426,"listed_count":2,"created_at":"Wed Feb 22 22:53:44 +0000 2012","favourites_count":7,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":44,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"31343D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180573661\/m1K46kvx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180573661\/m1K46kvx.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1846727146\/Koi_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1846727146\/Koi_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/500229607\/1404467288","profile_link_color":"323E4C","profile_sidebar_border_color":"212535","profile_sidebar_fill_color":"000C29","profile_text_color":"784726","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1119571848,"id_str":"1119571848","name":"Juliana Rocha Franco","screen_name":"jrochafranco","location":"Brazil","url":null,"description":"PhD in Communication & Semiotics","protected":false,"followers_count":40,"friends_count":118,"listed_count":0,"created_at":"Fri Jan 25 15:26:58 +0000 2013","favourites_count":9,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":50,"lang":"pt","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3161447472\/52feb0723771577b6f82bc0250871e2e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3161447472\/52feb0723771577b6f82bc0250871e2e_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1493508254,"id_str":"1493508254","name":"M\u0338\u0336M\u0338\u0336 ","screen_name":"667m","location":"","url":"http:\/\/667m.tumblr.com\/archive","description":"reverse diagonal","protected":false,"followers_count":291,"friends_count":1213,"listed_count":5,"created_at":"Sat Jun 08 17:45:50 +0000 2013","favourites_count":1716,"utc_offset":-10800,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":2871,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"010200","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497836987630354432\/ejFql2tm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497836987630354432\/ejFql2tm.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570797163265806336\/aHAVoqh8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570797163265806336\/aHAVoqh8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1493508254\/1419871254","profile_link_color":"7000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":27629985,"id_str":"27629985","name":"Amanda Boote","screen_name":"AmandaJayneB","location":"London, UK","url":null,"description":"Passionate about Byfleet Village and making a difference!","protected":true,"followers_count":198,"friends_count":677,"listed_count":1,"created_at":"Mon Mar 30 12:51:11 +0000 2009","favourites_count":33,"utc_offset":0,"time_zone":"London","geo_enabled":true,"verified":false,"statuses_count":103,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590529754731679745\/Ldecqh2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590529754731679745\/Ldecqh2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27629985\/1430472458","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":145506082,"id_str":"145506082","name":"Experto en Excel","screen_name":"macrosenexcel","location":"Ciudad de M\u00e9xico","url":"http:\/\/www.youtube.com\/macrosenexcel","description":"Experto en desarrollos en Excel utilizando macros y Visual Basic. Scorecards, Dashboards, Tableros de control y Reportes a la Medida","protected":false,"followers_count":778,"friends_count":1721,"listed_count":119,"created_at":"Wed May 19 04:06:50 +0000 2010","favourites_count":2220,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3764,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DDE6EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/357484717\/final.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/357484717\/final.JPG","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1620035283\/Excel21-150x150_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1620035283\/Excel21-150x150_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145506082\/1400040766","profile_link_color":"073E52","profile_sidebar_border_color":"606B70","profile_sidebar_fill_color":"CCE8F5","profile_text_color":"0F0E0F","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":299266665,"id_str":"299266665","name":"NumberPicture","screen_name":"numberpicture","location":"Sofia, Bulgaria","url":"http:\/\/numberpicture.com","description":"Next-level charts","protected":false,"followers_count":38,"friends_count":208,"listed_count":2,"created_at":"Sun May 15 19:44:51 +0000 2011","favourites_count":1,"utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"verified":false,"statuses_count":49,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/253911027\/background.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/253911027\/background.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439388366497271808\/aL4m_5Y-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439388366497271808\/aL4m_5Y-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299266665\/1393593436","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":135693489,"id_str":"135693489","name":"Donna Shelley","screen_name":"dshelley0","location":"New Freedom PA USA","url":null,"description":"present the right information to the right people at the right time in the right format","protected":false,"followers_count":215,"friends_count":484,"listed_count":55,"created_at":"Thu Apr 22 01:17:26 +0000 2010","favourites_count":221,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1186,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2112290856\/PctBox_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2112290856\/PctBox_normal.gif","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1274765442,"id_str":"1274765442","name":"Peter Cook","screen_name":"animateddata","location":"Brighton, UK","url":"http:\/\/animateddata.co.uk","description":"Freelance web development + data visualisation. D3 + JavaScript. @datavisbrighton organiser.","protected":false,"followers_count":920,"friends_count":274,"listed_count":94,"created_at":"Sun Mar 17 11:49:57 +0000 2013","favourites_count":265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":389,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124117601\/76c632e5834c3db361fbbda596720dd1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124117601\/76c632e5834c3db361fbbda596720dd1.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000793498348\/54f3fdbbebde1ca7ee015c531d811999_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000793498348\/54f3fdbbebde1ca7ee015c531d811999_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1274765442\/1385480071","profile_link_color":"050F8A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2263478022,"id_str":"2263478022","name":"Dataviz Catalogue","screen_name":"dataviz_catalog","location":"","url":"http:\/\/www.datavizcatalogue.com","description":"The Data Visualisation Catalogue: A library of different information visualisation methods.","protected":false,"followers_count":1570,"friends_count":408,"listed_count":158,"created_at":"Thu Dec 26 23:45:43 +0000 2013","favourites_count":235,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":518,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000157872444\/G5dVRqyX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000157872444\/G5dVRqyX.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/479883431329796096\/1CXfFoim_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/479883431329796096\/1CXfFoim_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2263478022\/1418385268","profile_link_color":"03A662","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1062801,"id_str":"1062801","name":"Andrew DeLancey","screen_name":"andrewdelancey","location":"Houston, Texas","url":null,"description":"","protected":true,"followers_count":0,"friends_count":89,"listed_count":0,"created_at":"Tue Mar 13 02:21:18 +0000 2007","favourites_count":759,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":0,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504282448\/042920081395_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504282448\/042920081395_normal.jpg","profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1080891648,"id_str":"1080891648","name":"Amanda Hobbs","screen_name":"AmandaHobbs427","location":"Helsingborg, Sweden","url":"http:\/\/www.athcreative.com","description":"Independent writer, researcher, and art\/graphics\/data viz content editor. Former Nat Geo Art Research Editor. American expat: livin' the dream.","protected":false,"followers_count":410,"friends_count":387,"listed_count":40,"created_at":"Fri Jan 11 20:50:16 +0000 2013","favourites_count":889,"utc_offset":-10800,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":734,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3388762075\/d7a8ae0368dc7513e4d7b74236bc03f1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3388762075\/d7a8ae0368dc7513e4d7b74236bc03f1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080891648\/1440513271","profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":404895983,"id_str":"404895983","name":"Cole Nussbaumer","screen_name":"storywithdata","location":"San Francisco, CA","url":"http:\/\/www.storytellingwithdata.com\/","description":"Helping rid the world of ineffective graphs, one exploding, 3D pie chart at a time!","protected":false,"followers_count":5338,"friends_count":440,"listed_count":458,"created_at":"Fri Nov 04 15:22:04 +0000 2011","favourites_count":383,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1232,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595043219508834304\/KwlJt1Fr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595043219508834304\/KwlJt1Fr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404895983\/1430875046","profile_link_color":"336699","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":80857507,"id_str":"80857507","name":"Rangaraju ","screen_name":"ranga_in","location":"Chennai","url":"http:\/\/about.me\/rangaraju.raju","description":"","protected":false,"followers_count":107,"friends_count":1972,"listed_count":5,"created_at":"Thu Oct 08 14:13:45 +0000 2009","favourites_count":626,"utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"verified":false,"statuses_count":241,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095106869\/e46ed180785f72feb778c3e5d883b673.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095106869\/e46ed180785f72feb778c3e5d883b673.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":21615371,"id_str":"21615371","name":"Ans","screen_name":"anselmbradford","location":"4 hours from an ocean usually","url":"https:\/\/github.com\/anselmbradford\/","description":"Front-end dev @ http:\/\/CFPB.gov \u2022 2013 http:\/\/CodeforAmerica.org alum \u2022 Digital Media @ http:\/\/AUT.ac.nz faculty alum","protected":false,"followers_count":560,"friends_count":679,"listed_count":57,"created_at":"Mon Feb 23 00:29:36 +0000 2009","favourites_count":797,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2150,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1768042687\/374344_2250373739040_1239137489_31885291_1119209426_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1768042687\/374344_2250373739040_1239137489_31885291_1119209426_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21615371\/1424737025","profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":2285362615,"id_str":"2285362615","name":"KicktagDV","screen_name":"KicktagDV","location":"Warwickshire, UK","url":"http:\/\/www.kicktag-cosmos.com","description":"Connecting businesses and sports clubs to multiple data sources through simple online dashboards and data discovery tools. #DataViz #Analytics #SelfServeBI #MRX","protected":false,"followers_count":100,"friends_count":803,"listed_count":4,"created_at":"Fri Jan 10 16:38:54 +0000 2014","favourites_count":7,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":70,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593318873589489664\/M7XeW0Uw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593318873589489664\/M7XeW0Uw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285362615\/1430293169","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":482327486,"id_str":"482327486","name":"Kevin Taylor","screen_name":"KevinTaylorNC","location":"Raleigh, NC","url":"http:\/\/vizualinsight.blogspot.com\/","description":"DataViz SME @NetApp & #DataViz junkie... Daddy of 2 beautiful twin grils(5-9-15)*all tweets are my own, not NetApp's*","protected":false,"followers_count":420,"friends_count":570,"listed_count":45,"created_at":"Fri Feb 03 19:44:33 +0000 2012","favourites_count":239,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1068,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496311509908070400\/lHNDdNRi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496311509908070400\/lHNDdNRi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482327486\/1394200781","profile_link_color":"C06F00","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":339026135,"id_str":"339026135","name":"cre8tivesol","screen_name":"cre8tivesol","location":"","url":null,"description":"Better is ALWAYS more","protected":false,"followers_count":63,"friends_count":101,"listed_count":9,"created_at":"Wed Jul 20 13:37:25 +0000 2011","favourites_count":37,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":164,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504817301170827264\/C7ajdl0M_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504817301170827264\/C7ajdl0M_normal.jpeg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14936296,"id_str":"14936296","name":"Brian Hauch","screen_name":"BrianHauch","location":"Michigan","url":"http:\/\/thedesignmatrix.tumblr.com","description":"Investigative nature of design + Practical demands of business #designthinking #ux #branding #designresearch #marketing #design","protected":false,"followers_count":215,"friends_count":532,"listed_count":10,"created_at":"Wed May 28 18:23:53 +0000 2008","favourites_count":33,"utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"verified":false,"statuses_count":1062,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163241402\/cDqrg-8R.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163241402\/cDqrg-8R.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417725790596247552\/Y0g1Jlhk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417725790596247552\/Y0g1Jlhk_normal.jpeg","profile_link_color":"3090B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"70153A","profile_text_color":"993636","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":42301990,"id_str":"42301990","name":"John Verostek","screen_name":"johnverostek","location":"Cambridge, MA","url":"http:\/\/johnverostek.com","description":"marketing for high-tech sectors, researching innovation ecosystems, teaching data analytics, and organizing Boston Predictive Analytics Meetup group.","protected":false,"followers_count":273,"friends_count":938,"listed_count":25,"created_at":"Sun May 24 23:18:30 +0000 2009","favourites_count":374,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1104,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/16503918\/WP_Surfing_01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/16503918\/WP_Surfing_01.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462833099730993153\/sZuRUH6D_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462833099730993153\/sZuRUH6D_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42301990\/1405399532","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":38254620,"id_str":"38254620","name":"giorgia lupi","screen_name":"giorgialupi","location":"Brooklyn","url":"http:\/\/www.giorgialupi.com","description":"Information designer. Co-founder and design director at Accurat http:\/\/www.accurat.it @accuratstudio. Drawing weekly data as 1\/2 of @_deardata from New York","protected":false,"followers_count":6800,"friends_count":2169,"listed_count":482,"created_at":"Wed May 06 19:23:03 +0000 2009","favourites_count":4832,"utc_offset":-18000,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":4890,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/223402686\/compounding.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/223402686\/compounding.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532197529765441536\/gMpjZpkN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532197529765441536\/gMpjZpkN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38254620\/1426787689","profile_link_color":"7A4717","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":55255954,"id_str":"55255954","name":"Alain Roan","screen_name":"AlainRoan","location":"Toulouse (France)","url":"http:\/\/perceptible.fr","description":"Les indicateurs visuels qui \u00e9clairent l'atteinte de vos objectifs.\n\npercevoir, comprendre, agir.","protected":false,"followers_count":37,"friends_count":175,"listed_count":0,"created_at":"Thu Jul 09 14:49:57 +0000 2009","favourites_count":59,"utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":80,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1409484957\/HistoBlanc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1409484957\/HistoBlanc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55255954\/1356426855","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":608837583,"id_str":"608837583","name":"Kyle James Kirwan","screen_name":"KyleJamesKirwan","location":"San Francisco","url":null,"description":"When I'm not dancing I improve experiments and research at Uber.","protected":false,"followers_count":93,"friends_count":261,"listed_count":3,"created_at":"Fri Jun 15 04:06:46 +0000 2012","favourites_count":4,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":316,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579413181\/t0j8b80i78umssnx1ftj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579413181\/t0j8b80i78umssnx1ftj.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498893335495331840\/vh9meIUl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498893335495331840\/vh9meIUl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608837583\/1407780500","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":18844256,"id_str":"18844256","name":"Mark Sawula","screen_name":"p5k12","location":"Hightstown NJ","url":null,"description":"Teacher at Peddie School. Trying to use code to teach stats with a dataviz slant to hs kids. Processing. Python. Once worked in product development at hp.","protected":false,"followers_count":83,"friends_count":326,"listed_count":12,"created_at":"Sat Jan 10 19:52:19 +0000 2009","favourites_count":829,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":897,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3855684\/IMG00079.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3855684\/IMG00079.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512450916818354176\/ES3nFRk__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512450916818354176\/ES3nFRk__normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":16112517,"id_str":"16112517","name":"Robert Kosara","screen_name":"eagereyes","location":"Seattle, WA","url":"http:\/\/eagereyes.org\/","description":"Data visualization and visual storytelling. Research scientist at Tableau Software. Recovering academic. Runner. Blog feed at @eagereyes_feed.","protected":false,"followers_count":9598,"friends_count":814,"listed_count":1057,"created_at":"Wed Sep 03 13:19:04 +0000 2008","favourites_count":2313,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":16435,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C5D0D4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631861838536245248\/I0XN1UZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631861838536245248\/I0XN1UZM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16112517\/1439441124","profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"has_extended_profile":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17242884,"id_str":"17242884","name":"Maarten Lambrechts","screen_name":"maartenzam","location":"","url":"http:\/\/www.maartenlambrechts.be","description":"Data & multimedia editor @tijd @lecho Datavisualisation - Mapping - Digital storytelling","protected":false,"followers_count":1389,"friends_count":600,"listed_count":155,"created_at":"Sat Nov 08 01:35:05 +0000 2008","favourites_count":758,"utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"verified":false,"statuses_count":5595,"lang":"nl","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"05181F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/359009281\/x8bc73a69f0122eb5ef1ed95c1eff6a7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/359009281\/x8bc73a69f0122eb5ef1ed95c1eff6a7.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455074178354257920\/SUaJEBgy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455074178354257920\/SUaJEBgy_normal.jpeg","profile_link_color":"09242D","profile_sidebar_border_color":"16373C","profile_sidebar_fill_color":"1C494F","profile_text_color":"0E2B33","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":6146692,"id_str":"6146692","name":"Lynn Cherny","screen_name":"arnicas","location":"Framingham, MA","url":"http:\/\/www.ghostweather.com\/bio.html","description":"Data Consultant (Data Analysis\/Graphical Data); Datavis, Python, R, Javascript\/D3, NLP, Gender, Science Fiction, TV, ex-researcher with Stanford PhD.","protected":false,"followers_count":6051,"friends_count":2317,"listed_count":578,"created_at":"Fri May 18 20:32:44 +0000 2007","favourites_count":10134,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":35087,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53142956\/Saw-whet_Owl_10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53142956\/Saw-whet_Owl_10_normal.jpg","profile_link_color":"FA743E","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1385704826,"id_str":"1385704826","name":"Voil\u00e0 Info Design","screen_name":"chezVoila","location":"Montr\u00e9al","url":"http:\/\/chezvoila.com","description":"Information design and data visualization. By @francisgagnon. One of @vismtl organizers.","protected":false,"followers_count":537,"friends_count":363,"listed_count":70,"created_at":"Sat Apr 27 23:44:08 +0000 2013","favourites_count":332,"utc_offset":-10800,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":1089,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438330313752588288\/lh8S-8J9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438330313752588288\/lh8S-8J9.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000736463547\/39e228763d75ffc96d08656e3c34345e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000736463547\/39e228763d75ffc96d08656e3c34345e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1385704826\/1392323577","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17268874,"id_str":"17268874","name":"Ben Shneiderman","screen_name":"benbendc","location":"College Park, Maryland","url":"http:\/\/www.cs.umd.edu\/~ben","description":"Univ of MD, HCI, InfoVis & Social Media Prof in CS Dept, Member HCIL & NAE, skier, photographer","protected":false,"followers_count":5844,"friends_count":512,"listed_count":479,"created_at":"Sun Nov 09 14:31:20 +0000 2008","favourites_count":27,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":1199,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/63973398\/ZC4U9863cr2_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/63973398\/ZC4U9863cr2_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17268874\/1364847821","profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":89562376,"id_str":"89562376","name":"Alison Park","screen_name":"parkali","location":"Harringay, north London.","url":"http:\/\/www.closer.ac.uk","description":"Director @CLOSER_UK, UCL Institute of Education. Lover of research and data (esp longitudinal), visualisation, cycling, community, Harringay. All views my own.","protected":false,"followers_count":1486,"friends_count":1789,"listed_count":64,"created_at":"Thu Nov 12 22:49:27 +0000 2009","favourites_count":1745,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":2327,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576417733648080896\/18G8IXw7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576417733648080896\/18G8IXw7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89562376\/1431201952","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":231123237,"id_str":"231123237","name":"Marc Reguera","screen_name":"marcreguera","location":"","url":"http:\/\/page.is\/marc-reguera","description":"nearly 20 years in Finance at Microsoft. Passionate about Data Visualization. Check DataViz Videos at http:\/\/t.co\/4yyW50pd3Q","protected":false,"followers_count":556,"friends_count":283,"listed_count":70,"created_at":"Mon Dec 27 17:21:14 +0000 2010","favourites_count":8,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1872,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535305995061194752\/X8VLrNeo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535305995061194752\/X8VLrNeo.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3404964392\/a1d4af7a91e4e923cd5c5852644a0b98_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3404964392\/a1d4af7a91e4e923cd5c5852644a0b98_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231123237\/1416462010","profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1136676865,"id_str":"1136676865","name":"Minghan Li","screen_name":"HankLi125","location":"D\u00fcsseldorf, Deutschland","url":null,"description":"","protected":false,"followers_count":7,"friends_count":136,"listed_count":0,"created_at":"Thu Jan 31 10:54:20 +0000 2013","favourites_count":0,"utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"verified":false,"statuses_count":70,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511241777827684353\/oZSj3w7u_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511241777827684353\/oZSj3w7u_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1136676865\/1410724354","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":29663979,"id_str":"29663979","name":"Martin Coulthurst","screen_name":"mcoulthurst","location":"Shrewsbury, UK","url":"http:\/\/visualised.io","description":"Data visualisation \u00b7 Javascript development","protected":false,"followers_count":123,"friends_count":561,"listed_count":12,"created_at":"Wed Apr 08 07:40:39 +0000 2009","favourites_count":34,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":331,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000566054016\/cec04d170a97ae571db5ba09a5ec1ae9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000566054016\/cec04d170a97ae571db5ba09a5ec1ae9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29663979\/1428658242","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":17286878,"id_str":"17286878","name":"Alex Brock","screen_name":"alexbrock","location":"London","url":null,"description":"Digital dilettante, mediocre bass player, assistant dog walker. Also Head of Insight at InVentiv Health Europe","protected":false,"followers_count":334,"friends_count":625,"listed_count":17,"created_at":"Mon Nov 10 13:58:46 +0000 2008","favourites_count":156,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":773,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628242765235662848\/fK00LErt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628242765235662848\/fK00LErt_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":12483772,"id_str":"12483772","name":"Jason Lankow","screen_name":"jasonlankow","location":"Orange County, CA","url":"http:\/\/www.visage.co","description":"CEO\/Cofounder of @visageco. Cofounder @columnfive. Co-author of Infographics http:\/\/amzn.to\/LjQEp3. Visualization of Information Adjunct Prof @Columbia Univ.","protected":false,"followers_count":7227,"friends_count":7472,"listed_count":435,"created_at":"Mon Jan 21 06:18:35 +0000 2008","favourites_count":1318,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":8645,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"80CCEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/57880599\/twittercity.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/57880599\/twittercity.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2969437612\/55e7a05c217d62937fd8898c05ac2f03_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2969437612\/55e7a05c217d62937fd8898c05ac2f03_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12483772\/1355384592","profile_link_color":"85795F","profile_sidebar_border_color":"E2DEBF","profile_sidebar_fill_color":"CFC3A7","profile_text_color":"3F341D","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":48796317,"id_str":"48796317","name":"Michael Harding","screen_name":"mg_harding","location":"American Fork, Utah","url":"http:\/\/www.domo.com","description":"Sr. Business Consultant at Domo. I love all things design and tasty food. My tweets are my own.","protected":false,"followers_count":585,"friends_count":817,"listed_count":43,"created_at":"Fri Jun 19 19:08:24 +0000 2009","favourites_count":476,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1826,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000049779033\/f717ee6abdb71d77ccbabd16414d32b1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000049779033\/f717ee6abdb71d77ccbabd16414d32b1_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":55546212,"id_str":"55546212","name":"Visual Information","screen_name":"visualinfo","location":"Boston, Paris","url":"http:\/\/visualinformation.wordpress.com\/","description":"Infographics, Real Time Data Visualization for BI and CI, Social graph and analysis","protected":false,"followers_count":4280,"friends_count":266,"listed_count":551,"created_at":"Fri Jul 10 12:23:07 +0000 2009","favourites_count":23,"utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"verified":false,"statuses_count":389,"lang":"fr","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/307209502\/visualinfo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/307209502\/visualinfo_normal.jpg","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":62615261,"id_str":"62615261","name":"Todd Miner","screen_name":"toddminer","location":"Palo Alto, CA","url":null,"description":"VP of Corporate Infrastructure at Yelp!","protected":false,"followers_count":30,"friends_count":50,"listed_count":1,"created_at":"Mon Aug 03 20:36:54 +0000 2009","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":37,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000064955337\/8844cc423f0d0bc986f6b8c0c79f263c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000064955337\/8844cc423f0d0bc986f6b8c0c79f263c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62615261\/1415315927","profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":113307663,"id_str":"113307663","name":"Gordon Hatusupy","screen_name":"gordonhatusupy","location":"Netherlands, Maastricht","url":null,"description":"Designer. UI, UX, Dataviz.","protected":false,"followers_count":521,"friends_count":371,"listed_count":44,"created_at":"Thu Feb 11 10:15:28 +0000 2010","favourites_count":1186,"utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"verified":false,"statuses_count":4059,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"DAEBE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571662369157459968\/AxF1ymvh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571662369157459968\/AxF1ymvh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113307663\/1423805910","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":405730264,"id_str":"405730264","name":"Ignacio Caro Sol\u00eds","screen_name":"NachoCaroSolis","location":"","url":null,"description":"Economista UBA","protected":false,"followers_count":205,"friends_count":722,"listed_count":1,"created_at":"Sat Nov 05 18:23:37 +0000 2011","favourites_count":1341,"utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"verified":false,"statuses_count":647,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1702551825\/Foto_Facebook_2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1702551825\/Foto_Facebook_2b_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14816237,"id_str":"14816237","name":"~spooky~ J\u29bfe F\u2620x","screen_name":"joemfox","location":"Fairbanks, Alaska","url":"http:\/\/joemfox.com","description":"@newsminer. Feminist. Not a vegan. I like bots, butts and baseball. @burritopatents|@SombreroWatch|@andromedabot|@colorschemez","protected":false,"followers_count":923,"friends_count":1924,"listed_count":65,"created_at":"Sun May 18 00:40:52 +0000 2008","favourites_count":4120,"utc_offset":-28800,"time_zone":"Alaska","geo_enabled":true,"verified":false,"statuses_count":15403,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":true,"profile_background_color":"FFFDF7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658259865\/u8tr7egiegp7b5xjmg2e.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651222836980224001\/W6gaQrkt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14816237\/1412222318","profile_link_color":"FF0055","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":5942452,"id_str":"5942452","name":"Alvaro Vali\u00f1o","screen_name":"alvarovalino","location":"Washington DC","url":"http:\/\/www.alvarovalino.com","description":"Grrrrrrrafista \/ Grrrrrrraphic activist\nFrom A Coru\u00f1a lives in Washington DC","protected":false,"followers_count":1215,"friends_count":477,"listed_count":114,"created_at":"Thu May 10 22:41:11 +0000 2007","favourites_count":5521,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":3294,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"D6D2D6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/63184848\/fondo_twit_.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/63184848\/fondo_twit_.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563451108429815809\/NnkikOlP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563451108429815809\/NnkikOlP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5942452\/1398953416","profile_link_color":"EB0303","profile_sidebar_border_color":"F0F0F0","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":23417712,"id_str":"23417712","name":"Yann Guilain","screen_name":"YannGuilain","location":"Grenoble, France","url":"http:\/\/infodesignblog.com","description":"Associate Director at Digimind, Online Reputation & Market Intelligence Software. Author of the Infodesign book. #dataviz #socialmedia #SMM #bigdata.","protected":false,"followers_count":239,"friends_count":432,"listed_count":26,"created_at":"Mon Mar 09 09:18:45 +0000 2009","favourites_count":14,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":536,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1630394999\/Portrait_YG_Small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1630394999\/Portrait_YG_Small_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":7901462,"id_str":"7901462","name":"Marko Plahuta","screen_name":"Virostatiq","location":"Ljubljana","url":"http:\/\/www.virostatiq.com","description":"data visualization & machine learning","protected":false,"followers_count":604,"friends_count":1982,"listed_count":38,"created_at":"Thu Aug 02 07:01:51 +0000 2007","favourites_count":45,"utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"verified":false,"statuses_count":277,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3471217963\/7a4f2e97f70984cdf29d261c70ba09ed_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3471217963\/7a4f2e97f70984cdf29d261c70ba09ed_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7901462\/1365074303","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1191326936,"id_str":"1191326936","name":"Adrian Mendoza","screen_name":"Photobernalist","location":"Santa Rosa, CA","url":"http:\/\/www.photobernalist.com\/","description":"Veteran #Photojournalist specializing in #water, #infrastructure and #aerial #photography for #landscape #architecture #SanFrancisco #BayArea","protected":false,"followers_count":398,"friends_count":1979,"listed_count":20,"created_at":"Sun Feb 17 22:19:19 +0000 2013","favourites_count":3,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":281,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083065084\/c000837ed9b5ca3df0ee2cde403f2296.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083065084\/c000837ed9b5ca3df0ee2cde403f2296.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459380621261824000\/7wmSyHUM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459380621261824000\/7wmSyHUM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191326936\/1398359940","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14113734,"id_str":"14113734","name":"Alark Joshi","screen_name":"alark","location":"San Francisco, California","url":"http:\/\/cs.usfca.edu\/~apjoshi","description":"Data Visualization Researcher, CS Professor at the University of San Francisco. Passionate about CS education for all. Huge fan of Processing and p5.","protected":false,"followers_count":944,"friends_count":224,"listed_count":94,"created_at":"Mon Mar 10 13:53:05 +0000 2008","favourites_count":1661,"utc_offset":-21600,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":1796,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/51559765\/katrina2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/51559765\/katrina2.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522650907633135616\/NjFuJqN9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522650907633135616\/NjFuJqN9_normal.png","profile_link_color":"1A0FBA","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"BDE2FF","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":210405752,"id_str":"210405752","name":"Nadia Fankhauser","screen_name":"nadiafank","location":"Madrid","url":"http:\/\/tintedigital.com","description":"Dise\u00f1o editorial & Dataviz. Me encanta perderme en librer\u00edas y cocinas del mundo.","protected":false,"followers_count":435,"friends_count":748,"listed_count":53,"created_at":"Sun Oct 31 10:55:57 +0000 2010","favourites_count":732,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"verified":false,"statuses_count":1026,"lang":"es","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C46F00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115451905\/a50882a9840468632725506a9fecc8c7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115451905\/a50882a9840468632725506a9fecc8c7.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3756849747\/109b8b64553b04f823bde9f04bb23d44_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3756849747\/109b8b64553b04f823bde9f04bb23d44_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210405752\/1370889679","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":261363584,"id_str":"261363584","name":"The Why Axis","screen_name":"thewhyaxis","location":"","url":"http:\/\/thewhyaxis.info","description":"Documenting the rise of data visualization in the digital age. Edited by @bryanconnor","protected":false,"followers_count":2831,"friends_count":354,"listed_count":312,"created_at":"Sat Mar 05 20:16:32 +0000 2011","favourites_count":391,"utc_offset":-10800,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"verified":false,"statuses_count":1324,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFE880","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2419580959\/iccptt6eyebyhchjiv3h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2419580959\/iccptt6eyebyhchjiv3h_normal.png","profile_link_color":"949494","profile_sidebar_border_color":"EBEBEB","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"333333","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":1280338848,"id_str":"1280338848","name":"culturadigital","screen_name":"cultdigit","location":"Sevilla","url":"http:\/\/culturadigital.cc","description":"Technology for real life","protected":false,"followers_count":231,"friends_count":1073,"listed_count":17,"created_at":"Tue Mar 19 12:56:55 +0000 2013","favourites_count":30,"utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"verified":false,"statuses_count":750,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3713621131\/d34e9cf491e2a90aa59c9cc534bfb272_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3713621131\/d34e9cf491e2a90aa59c9cc534bfb272_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280338848\/1363725167","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":26709384,"id_str":"26709384","name":"stephen davies","screen_name":"daviesst","location":"","url":null,"description":"","protected":false,"followers_count":25,"friends_count":368,"listed_count":0,"created_at":"Thu Mar 26 07:58:37 +0000 2009","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2217181408\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2217181408\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26709384\/1350960458","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":21695487,"id_str":"21695487","name":"Periscopic","screen_name":"Periscopic","location":"Portland, OR","url":"http:\/\/periscopic.com","description":"A socially-conscious data visualization firm helping companies & organizations promote information transparency and awareness: do good with data.","protected":false,"followers_count":7742,"friends_count":2446,"listed_count":751,"created_at":"Mon Feb 23 21:23:26 +0000 2009","favourites_count":360,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2400,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554716552\/twitter_bg02.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554716552\/twitter_bg02.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532302164530458625\/ZY-32PzG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532302164530458625\/ZY-32PzG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21695487\/1416260156","profile_link_color":"7E8182","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"4C4C4C","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":271384633,"id_str":"271384633","name":"\ubb34\uc9c0\uac1c\uc804\uc0ac","screen_name":"rwarrior9","location":"\uc11c\uc6b8","url":null,"description":"","protected":false,"followers_count":217,"friends_count":1919,"listed_count":3,"created_at":"Thu Mar 24 11:57:50 +0000 2011","favourites_count":1103,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":29,"lang":"ko","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":true,"default_profile_image":true,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14207040,"id_str":"14207040","name":"Jeff Clark","screen_name":"JeffClark","location":"Toronto","url":"http:\/\/neoformix.com","description":"Developer with special expertise in data visualization and text analysis. Creator of http:\/\/neoformix.com","protected":false,"followers_count":4080,"friends_count":702,"listed_count":503,"created_at":"Mon Mar 24 12:36:49 +0000 2008","favourites_count":486,"utc_offset":-14400,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":2212,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"293B48","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2771443\/nontile3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2771443\/nontile3.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/67925198\/Jeff9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/67925198\/Jeff9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14207040\/1362616979","profile_link_color":"5878AA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DCEEFF","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":14420872,"id_str":"14420872","name":"Simon Rogers","screen_name":"smfrogers","location":"San Francisco","url":"http:\/\/about.me\/simonrogers","description":"Datajournalist, and Data Editor @Google. Formerly @Twitter and editor of Guardian Datablog. Author, Facts are Sacred http:\/\/amzn.to\/ZfGpIA. All views my own","protected":false,"followers_count":18841,"friends_count":1842,"listed_count":1794,"created_at":"Thu Apr 17 14:04:09 +0000 2008","favourites_count":1847,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"verified":false,"statuses_count":16486,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/777680166\/02a6c5d1db2c3b2fa6d9d3267e0ca28e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/777680166\/02a6c5d1db2c3b2fa6d9d3267e0ca28e.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491337524711682048\/9-myQn40_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491337524711682048\/9-myQn40_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14420872\/1383678382","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":34255829,"id_str":"34255829","name":"Alberto Cairo","screen_name":"albertocairo","location":"USA, Brazil, Spain","url":"http:\/\/www.thefunctionalart.com","description":"Knight Chair at the University of Miami. Author of 'The Truthful Art' (to be published in March 2016), and 'The Functional Art' (2012) http:\/\/t.co\/WViz9fOl7J","protected":false,"followers_count":23602,"friends_count":2474,"listed_count":2199,"created_at":"Wed Apr 22 12:25:20 +0000 2009","favourites_count":1051,"utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"verified":false,"statuses_count":40139,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634532979533086720\/zMuvlOgo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634532979533086720\/zMuvlOgo.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458793804904947712\/kK2hkAOC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458793804904947712\/kK2hkAOC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34255829\/1398219732","profile_link_color":"2FAFEB","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"5C5C5C","profile_text_color":"000000","profile_use_background_image":true,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false},{"id":7639702,"id_str":"7639702","name":"Jim Vallandingham","screen_name":"vlandham","location":"Seattle","url":"http:\/\/vallandingham.me","description":"Experimenting in the worlds of data visualization, data analysis, and software development. With @bocoup","protected":false,"followers_count":3658,"friends_count":641,"listed_count":348,"created_at":"Sun Jul 22 13:34:03 +0000 2007","favourites_count":10137,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":2473,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F3F3F3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442331500067819521\/_PkeRNwq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442331500067819521\/_PkeRNwq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7639702\/1398878355","profile_link_color":"D53D0C","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":false,"has_extended_profile":false,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false,"muting":false,"blocking":false,"blocked_by":false}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment