Skip to content

Instantly share code, notes, and snippets.

@unarist
Forked from ento/README.md
Created December 31, 2015 02:43
Show Gist options
  • Save unarist/5606a673e07769ab95f2 to your computer and use it in GitHub Desktop.
Save unarist/5606a673e07769ab95f2 to your computer and use it in GitHub Desktop.
Treemap of Stack Exchange Sites

Stack Exchangeのサイトをさまざまな指標にもとづいたツリーマップで表示します。色分けはサイト一覧上のカテゴリによります。

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: auto;
position: relative;
width: 960px;
}
svg {
height: 100%;
width: 100%;
}
form {
position: absolute;
right: 10px;
top: 10px;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: #333;
}
#loading {
fill: #ccc;
}
.metadata {
color: #666;
font-size: 80%;
text-align: right;
}
.node {
border: solid 1px white;
font: 10px sans-serif;
line-height: 12px;
overflow: hidden;
position: absolute;
text-indent: 2px;
}
</style>
<form>
<label><input type="checkbox" name="trilogy"> 御三家を含める</label>
<label><input type="radio" name="mode" value="questions" checked> 総質問数</label>
<label><input type="radio" name="mode" value="answers"> 総回答数</label>
<label><input type="radio" name="mode" value="posts"> 総投稿数</label>
<label><input type="radio" name="mode" value="percent_answered"> 回答率</label>
<label><input type="radio" name="mode" value="users"> ユーザー数</label>
<label><input type="radio" name="mode" value="questions_per_day"> 質問数/日</label>
<label><input type="radio" name="mode" value="visits_per_day"> 訪問数/日</label>
<label><input type="radio" name="mode" value="age"> 運営日数</label>
<div class="metadata">
<span class="mode"></span> -
<span class="date">&nbsp;</span>
</div>
</form>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js"></script>
<script>
var margin = {top: 60, right: 10, bottom: 10, left: 10},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var sizeKey = "questions",
includeTrilogy = false;
function getSize(d) {
if (trilogy[d.name] && !includeTrilogy) {
return 0;
}
return d[sizeKey];
}
var treemap = d3.layout.treemap()
.size([width, height])
.sticky(true)
.value(getSize);
var div = d3.select("body").append("div")
.style("position", "relative")
.style("width", (width + margin.left + margin.right) + "px")
.style("height", (height + margin.top + margin.bottom) + "px")
.style("left", margin.left + "px")
.style("top", margin.top + "px");
var trilogy = {
"Stack Overflow": true,
"Server Fault": true,
"Super User": true
};
var pinned = "ja-stackoverflow";
var red = d3.rgb(255, 96, 96);
div.append("svg")
.selectAll("#loading")
.data([1])
.enter()
.append("circle")
.attr("cx", "50%")
.attr("cy", "50%")
.attr("id", "loading");
animateGrowingCircle("#loading", 10, 20)();
d3.json("sesites.json", function(error, sesites) {
div.select("svg").remove();
d3.select(".date").text(new Date(sesites.creation_date));
d3.select(".mode").text(sizeKey);
var categories = {};
var now = (new Date().getTime()) / 1000,
day = 60 * 60 * 24;
sesites.items.forEach(function(each) {
each.posts = each.questions + each.answers;
each.age = Math.ceil((now - each.creation_date) / day);
categories[each.category] = categories[each.category] || [];
categories[each.category].push(each);
});
var root = {name: "sesites", children: []};
for (var category in categories) {
root.children.push({name: category, children: categories[category]});
}
var color = d3.scale.ordinal().domain(Object.keys(categories)).range(colorbrewer.Pastel2[Object.keys(categories).length]);
var node = div.datum(root).selectAll(".node")
.data(treemap.nodes)
.enter().append("div")
.attr("class", "node")
.call(position)
.style("background", function(d) {
if (pinned === d.slug) {
return red;
}
return d.children ? color(d.name) : null; });
node
.append("a")
.attr("href", function(d) { return d.url; });
node
.each(setTitle);
function redraw() {
d3.select(".mode").text(sizeKey);
node
.data(treemap.value(getSize).nodes)
.transition()
.duration(1500)
.call(position)
.each("end", setTitle);
}
d3.selectAll("input[name=mode]").on("change", function change() {
sizeKey = this.value;
redraw();
});
d3.selectAll("input[name=trilogy]").on("change", function change() {
includeTrilogy = this.checked;
redraw();
});
});
function setTitle(d) {
var title = d.children ? null : d.name + ': ' + round(d[sizeKey]);
d3.select(this)
.attr("title", title)
.select("a")
.text(title)
}
function round(value) {
if (isInt(value)) {
return value;
}
return value.toFixed(2);
}
function isInt(n) {
return n % 1 === 0;
}
function position() {
this.style("left", function(d) { return d.x + "px"; })
.style("top", function(d) { return d.y + "px"; })
.style("width", function(d) { return Math.max(0, d.dx - 1) + "px"; })
.style("height", function(d) { return Math.max(0, d.dy - 1) + "px"; });
}
// http://snips.net/blog/posts/2014/01-10-fast-interactive_prototyping_with_d3_js.html
function animateGrowingCircle(selector, fromRadius, toRadius) {
var animateFunction = function () {
var target = d3.select(selector);
if (!target.empty()) {
target
.attr('r', fromRadius)
.transition()
.duration(1000)
.attr('r', toRadius)
.transition()
.duration(1000)
.attr('r', fromRadius)
.each('end', animateFunction);
}
};
return animateFunction;
}
</script>
function getClassSuffix(item, prefix) {
for (var i = 0; i < item.classList.length; i++) {
if (item.classList[i].indexOf(prefix) == 0) {
return item.classList[i].substring(prefix.length);
}
}
}
function getCategory(item) {
return getClassSuffix(item, 'category-');
}
function getSlug(item) {
return getClassSuffix(item, 'site-');
}
var sesites = $('.lv-item').map(function() {
var $this = $(this);
return {
category: getCategory(this),
slug: getSlug(this),
url: $this.find('.lv-info h2 a').attr('href'),
description: $this.find('.lv-info .lv-description').text(),
name: $this.find('[name=name]').val(),
creation_date: parseInt($this.find('[name=creation-date]').val()),
questions: parseInt($this.find('[name=questions]').val()),
answers: parseInt($this.find('[name=answers]').val()),
percent_answered: parseFloat($this.find('[name=percent-answered]').val()),
users: parseInt($this.find('[name=users]').val()),
visits_per_day: parseFloat($this.find('[name=visits-per-day]').val()),
questions_per_day: parseFloat($this.find('[name=questions-per-day]').val()),
}
}).toArray();
console.log(JSON.stringify({
items: sesites,
creation_date: new Date().getTime()
}));
{"items":[{"category":"technology","slug":"stackoverflow","url":"http://stackoverflow.com","description":"Q&A for professional and enthusiast programmers","name":"Stack Overflow","creation_date":1217462400,"questions":10783890,"answers":17635127,"percent_answered":73.2388590758993,"users":5008924,"visits_per_day":5670660,"questions_per_day":6340.71428571429},{"category":"technology","slug":"serverfault","url":"http://serverfault.com","description":"Q&A for system and network administrators","name":"Server Fault","creation_date":1241049600,"questions":212065,"answers":369306,"percent_answered":80.8648291797326,"users":242707,"visits_per_day":251790.5,"questions_per_day":82.4285714285714},{"category":"technology","slug":"superuser","url":"http://superuser.com","description":"Q&A for computer enthusiasts and power users","name":"Super User","creation_date":1247529600,"questions":295812,"answers":450637,"percent_answered":69.2520925452652,"users":393411,"visits_per_day":656706,"questions_per_day":172.285714285714},{"category":"technology","slug":"meta","url":"http://meta.stackexchange.com","description":"Q&A for meta-discussion of the Stack Exchange family of Q&A websites","name":"Meta Stack Exchange","creation_date":1246147200,"questions":76188,"answers":116775,"percent_answered":87.954796030871,"users":140256,"visits_per_day":7429.5,"questions_per_day":25.5714285714286},{"category":"technology","slug":"webapps","url":"http://webapps.stackexchange.com","description":"Q&A for power users of web applications","name":"Web Applications","creation_date":1277856000,"questions":18830,"answers":27656,"percent_answered":84.3759957514604,"users":64604,"visits_per_day":36012,"questions_per_day":10.9285714285714},{"category":"culturerecreation","slug":"gaming","url":"http://gaming.stackexchange.com","description":"Q&A for passionate videogamers on all platforms","name":"Arqade","creation_date":1278460800,"questions":62456,"answers":105055,"percent_answered":91.6293070321506,"users":77883,"visits_per_day":347568.5,"questions_per_day":47.7142857142857},{"category":"technology","slug":"webmasters","url":"http://webmasters.stackexchange.com","description":"Q&A for pro webmasters","name":"Webmasters","creation_date":1278547200,"questions":22531,"answers":37026,"percent_answered":93.8484754338467,"users":42768,"visits_per_day":9418.5,"questions_per_day":10.6428571428571},{"category":"lifearts","slug":"cooking","url":"http://cooking.stackexchange.com","description":"Q&A for professional and amateur chefs","name":"Seasoned Advice","creation_date":1278633600,"questions":13798,"answers":35031,"percent_answered":97.666328453399,"users":27022,"visits_per_day":109677,"questions_per_day":9.07142857142857},{"category":"technology","slug":"gamedev","url":"http://gamedev.stackexchange.com","description":"Q&A for professional and independent game developers","name":"Game Development","creation_date":1279065600,"questions":29905,"answers":49903,"percent_answered":88.6574151479686,"users":57536,"visits_per_day":18710,"questions_per_day":23.2857142857143},{"category":"lifearts","slug":"photo","url":"http://photo.stackexchange.com","description":"Q&A for professional, enthusiast and amateur photographers","name":"Photography","creation_date":1279152000,"questions":15076,"answers":38419,"percent_answered":96.8161315998939,"users":29514,"visits_per_day":24916.5,"questions_per_day":9.42857142857143},{"category":"science","slug":"stats","url":"http://stats.stackexchange.com","description":"Q&A for people interested in statistics, machine learning, data analysis, data mining, and data visualization","name":"Cross Validated","creation_date":1279497600,"questions":70670,"answers":71036,"percent_answered":61.5579453799349,"users":71991,"visits_per_day":34311,"questions_per_day":63.7142857142857},{"category":"science","slug":"math","url":"http://math.stackexchange.com","description":"Q&A for people studying math at any level and professionals in related fields","name":"Mathematics","creation_date":1279584000,"questions":543001,"answers":781621,"percent_answered":78.7654166382751,"users":228000,"visits_per_day":74167.5,"questions_per_day":428.142857142857},{"category":"lifearts","slug":"diy","url":"http://diy.stackexchange.com","description":"Q&A for contractors and serious DIYers","name":"Home Improvement","creation_date":1279670400,"questions":20651,"answers":36483,"percent_answered":86.1943731538424,"users":28533,"visits_per_day":74280,"questions_per_day":17.0714285714286},{"category":"technology","slug":"gis","url":"http://gis.stackexchange.com","description":"Q&A for cartographers, geographers and GIS professionals","name":"Geographic Information Systems","creation_date":1279756800,"questions":61082,"answers":74415,"percent_answered":72.9183720244917,"users":45759,"visits_per_day":26739.5,"questions_per_day":36.6428571428571},{"category":"technology","slug":"tex","url":"http://tex.stackexchange.com","description":"Q&A for users of TeX, LaTeX, ConTeXt, and related typesetting systems","name":"TeX - LaTeX","creation_date":1280102400,"questions":102882,"answers":137316,"percent_answered":92.6138683151572,"users":74090,"visits_per_day":47157,"questions_per_day":55.7142857142857},{"category":"technology","slug":"askubuntu","url":"http://askubuntu.com","description":"Q&A for Ubuntu users and developers","name":"Ask Ubuntu","creation_date":1280275200,"questions":210425,"answers":278150,"percent_answered":66.612332184864,"users":309403,"visits_per_day":407213.5,"questions_per_day":161.928571428571},{"category":"lifearts","slug":"money","url":"http://money.stackexchange.com","description":"Q&A for people who want to be financially literate","name":"Personal Finance & Money","creation_date":1280880000,"questions":12697,"answers":25296,"percent_answered":94.951563361424,"users":23270,"visits_per_day":17488.5,"questions_per_day":9.07142857142857},{"category":"culturerecreation","slug":"english","url":"http://english.stackexchange.com","description":"Q&A for linguists, etymologists, and serious English language enthusiasts","name":"English Language & Usage","creation_date":1280966400,"questions":64306,"answers":163023,"percent_answered":96.3222716387273,"users":104591,"visits_per_day":221372,"questions_per_day":52.4285714285714},{"category":"technology","slug":"stackapps","url":"http://stackapps.com","description":"Q&A for apps, scripts, and development with the Stack Exchange API","name":"Stack Apps","creation_date":1269993600,"questions":2105,"answers":2186,"percent_answered":63.7529691211401,"users":22801,"visits_per_day":526.5,"questions_per_day":1.21428571428571},{"category":"technology","slug":"ux","url":"http://ux.stackexchange.com","description":"Q&A for user experience researchers and experts","name":"User Experience","creation_date":1281312000,"questions":18509,"answers":51980,"percent_answered":97.1851531687287,"users":56924,"visits_per_day":10577.5,"questions_per_day":10.6428571428571},{"category":"technology","slug":"unix","url":"http://unix.stackexchange.com","description":"Q&A for users of Linux, FreeBSD and other Un*x-like operating systems","name":"Unix & Linux","creation_date":1281398400,"questions":81049,"answers":124993,"percent_answered":77.2322915767005,"users":126062,"visits_per_day":168300,"questions_per_day":76.3571428571429},{"category":"technology","slug":"wordpress","url":"http://wordpress.stackexchange.com","description":"Q&A for WordPress developers and administrators","name":"WordPress Development","creation_date":1281484800,"questions":64247,"answers":79552,"percent_answered":71.3729823960652,"users":60013,"visits_per_day":30015,"questions_per_day":39.1428571428571},{"category":"science","slug":"cstheory","url":"http://cstheory.stackexchange.com","description":"Q&A for theoretical computer scientists and researchers in related fields","name":"Theoretical Computer Science","creation_date":1281916800,"questions":7575,"answers":11871,"percent_answered":77.1881188118812,"users":23441,"visits_per_day":1290,"questions_per_day":2.28571428571429},{"category":"technology","slug":"apple","url":"http://apple.stackexchange.com","description":"Q&A for power users of Apple hardware and software","name":"Ask Different","creation_date":1282003200,"questions":66643,"answers":98981,"percent_answered":68.0866707681227,"users":115069,"visits_per_day":253615,"questions_per_day":49.1428571428571},{"category":"culturerecreation","slug":"rpg","url":"http://rpg.stackexchange.com","description":"Q&A for gamemasters and players of tabletop, paper-and-pencil role-playing games","name":"Role-playing Games","creation_date":1282176000,"questions":14782,"answers":38611,"percent_answered":99.6279258557705,"users":16286,"visits_per_day":14036,"questions_per_day":8.57142857142857},{"category":"culturerecreation","slug":"bicycles","url":"http://bicycles.stackexchange.com","description":"Q&A for people who build and repair bicycles, people who train cycling, or commute on bicycles","name":"Bicycles","creation_date":1282694400,"questions":7248,"answers":19590,"percent_answered":97.6959161147903,"users":15497,"visits_per_day":11566,"questions_per_day":3},{"category":"technology","slug":"programmers","url":"http://programmers.stackexchange.com","description":"Q&A for professional programmers interested in conceptual questions about software development","name":"Programmers","creation_date":1283299200,"questions":37616,"answers":126501,"percent_answered":96.0203105061676,"users":168451,"visits_per_day":51577,"questions_per_day":18.4285714285714},{"category":"technology","slug":"electronics","url":"http://electronics.stackexchange.com","description":"Q&A for electronics and electrical engineering professionals, students, and enthusiasts","name":"Electrical Engineering","creation_date":1285718400,"questions":54349,"answers":100110,"percent_answered":93.9207713113397,"users":61714,"visits_per_day":58871,"questions_per_day":55},{"category":"technology","slug":"android","url":"http://android.stackexchange.com","description":"Q&A for enthusiasts and power users of the Android operating system","name":"Android Enthusiasts","creation_date":1284336000,"questions":36014,"answers":42565,"percent_answered":59.6601321708225,"users":93574,"visits_per_day":149102,"questions_per_day":38.5},{"category":"culturerecreation","slug":"boardgames","url":"http://boardgames.stackexchange.com","description":"Q&A for people who like playing board games, designing board games or modifying the rules of existing board games","name":"Board & Card Games","creation_date":1287446400,"questions":6208,"answers":12488,"percent_answered":97.7609536082474,"users":10478,"visits_per_day":12172,"questions_per_day":5},{"category":"science","slug":"physics","url":"http://physics.stackexchange.com","description":"Q&A for active researchers, academics and students of physics","name":"Physics","creation_date":1288656000,"questions":66895,"answers":101201,"percent_answered":81.7250915614022,"users":66428,"visits_per_day":37277,"questions_per_day":67.8571428571429},{"category":"culturerecreation","slug":"homebrew","url":"http://homebrew.stackexchange.com","description":"Q&A for dedicated home brewers and serious enthusiasts","name":"Homebrewing","creation_date":1289174400,"questions":4084,"answers":9628,"percent_answered":99.0940254652302,"users":5853,"visits_per_day":4311.5,"questions_per_day":1.07142857142857},{"category":"technology","slug":"security","url":"http://security.stackexchange.com","description":"Q&A for information security professionals","name":"Information Security","creation_date":1289433600,"questions":26472,"answers":53530,"percent_answered":94.4696282864914,"users":72968,"visits_per_day":42919.5,"questions_per_day":26.5},{"category":"lifearts","slug":"writers","url":"http://writers.stackexchange.com","description":"Q&A for authors, editors, reviewers, professional writers, and aspiring writers","name":"Writers","creation_date":1290038400,"questions":3721,"answers":10976,"percent_answered":98.5219027143241,"users":11280,"visits_per_day":3760.5,"questions_per_day":1.85714285714286},{"category":"lifearts","slug":"video","url":"http://video.stackexchange.com","description":"Q&A for engineers, producers, editors, and enthusiasts spanning the fields of video, and media creation","name":"Video Production","creation_date":1291680000,"questions":3217,"answers":4479,"percent_answered":85.2346907056264,"users":8179,"visits_per_day":3081.5,"questions_per_day":3.57142857142857},{"category":"lifearts","slug":"graphicdesign","url":"http://graphicdesign.stackexchange.com","description":"Q&A for Graphic Design professionals, students, and enthusiasts","name":"Graphic Design","creation_date":1294099200,"questions":14962,"answers":27692,"percent_answered":90.876888116562,"users":39647,"visits_per_day":40341.5,"questions_per_day":12.2857142857143},{"category":"technology","slug":"dba","url":"http://dba.stackexchange.com","description":"Q&A for database professionals who wish to improve their database skills and learn from others in the community","name":"Database Administrators","creation_date":1294012800,"questions":40714,"answers":53840,"percent_answered":79.8226654222135,"users":66177,"visits_per_day":69380.5,"questions_per_day":31.2857142857143},{"category":"lifearts","slug":"scifi","url":"http://scifi.stackexchange.com","description":"Q&A for science fiction and fantasy enthusiasts","name":"Science Fiction & Fantasy","creation_date":1294704000,"questions":27264,"answers":55346,"percent_answered":94.6266138497653,"users":40500,"visits_per_day":160048,"questions_per_day":44.6428571428571},{"category":"technology","slug":"codereview","url":"http://codereview.stackexchange.com","description":"Q&A for peer programmer code reviews","name":"Code Review","creation_date":1295395200,"questions":30016,"answers":51766,"percent_answered":94.556236673774,"users":78004,"visits_per_day":31195,"questions_per_day":30.2142857142857},{"category":"technology","slug":"codegolf","url":"http://codegolf.stackexchange.com","description":"Q&A for programming puzzle enthusiasts and code golfers","name":"Programming Puzzles & Code Golf","creation_date":1296086400,"questions":4624,"answers":44863,"percent_answered":97.5778546712803,"users":34686,"visits_per_day":3573,"questions_per_day":8.42857142857143},{"category":"business","slug":"quant","url":"http://quant.stackexchange.com","description":"Q&A for finance professionals and academics","name":"Quantitative Finance","creation_date":1296432000,"questions":5781,"answers":8528,"percent_answered":78.9309807991697,"users":10958,"visits_per_day":2890,"questions_per_day":5.07142857142857},{"category":"business","slug":"pm","url":"http://pm.stackexchange.com","description":"Q&A for project managers","name":"Project Management","creation_date":1297036800,"questions":2969,"answers":10023,"percent_answered":97.7770293027956,"users":13047,"visits_per_day":2500.5,"questions_per_day":1.5},{"category":"culturerecreation","slug":"skeptics","url":"http://skeptics.stackexchange.com","description":"Q&A for scientific skepticism","name":"Skeptics","creation_date":1298505600,"questions":6175,"answers":7802,"percent_answered":86.331983805668,"users":19636,"visits_per_day":11452.5,"questions_per_day":3.07142857142857},{"category":"lifearts","slug":"fitness","url":"http://fitness.stackexchange.com","description":"Q&A for physical fitness professionals, athletes, trainers, and those providing health-related needs","name":"Physical Fitness","creation_date":1298937600,"questions":5594,"answers":11719,"percent_answered":97.1934215230604,"users":12166,"visits_per_day":8026.5,"questions_per_day":3.42857142857143},{"category":"technology","slug":"drupal","url":"http://drupal.stackexchange.com","description":"Q&A for Drupal developers and administrators","name":"Drupal Answers","creation_date":1299024000,"questions":56686,"answers":73368,"percent_answered":68.7559538510391,"users":33724,"visits_per_day":16651,"questions_per_day":31.3571428571429},{"category":"culturerecreation","slug":"mechanics","url":"http://mechanics.stackexchange.com","description":"Q&A for mechanics and DIY enthusiast owners of cars, trucks, and motorcycles","name":"Motor Vehicle Maintenance & Repair","creation_date":1299456000,"questions":6632,"answers":11193,"percent_answered":93.3956574185766,"users":10095,"visits_per_day":29662.5,"questions_per_day":10.2142857142857},{"category":"lifearts","slug":"parenting","url":"http://parenting.stackexchange.com","description":"Q&A for parents, grandparents, nannies and others with a parenting role","name":"Parenting","creation_date":1301356800,"questions":3792,"answers":13068,"percent_answered":99.2616033755274,"users":12493,"visits_per_day":16993.5,"questions_per_day":2.42857142857143},{"category":"technology","slug":"sharepoint","url":"http://sharepoint.stackexchange.com","description":"Q&A for SharePoint enthusiasts","name":"SharePoint","creation_date":1302134400,"questions":57701,"answers":71737,"percent_answered":66.3194745325038,"users":30779,"visits_per_day":31227,"questions_per_day":29.2142857142857},{"category":"lifearts","slug":"music","url":"http://music.stackexchange.com","description":"Q&A for musicians, students, and enthusiasts","name":"Music: Practice & Theory","creation_date":1303776000,"questions":7072,"answers":19625,"percent_answered":98.4304298642534,"users":15430,"visits_per_day":15742.5,"questions_per_day":6.57142857142857},{"category":"technology","slug":"sqa","url":"http://sqa.stackexchange.com","description":"Q&A for software quality control experts, automation engineers, and software testers","name":"Software Quality Assurance & Testing","creation_date":1304380800,"questions":3685,"answers":8560,"percent_answered":86.9470827679783,"users":11618,"visits_per_day":5775,"questions_per_day":3},{"category":"culturerecreation","slug":"judaism","url":"http://judaism.stackexchange.com","description":"Q&A for those who base their lives on Jewish law and tradition and anyone interested in learning more","name":"Mi Yodeya","creation_date":1304985600,"questions":17571,"answers":29013,"percent_answered":85.2996414546696,"users":5580,"visits_per_day":2901.5,"questions_per_day":11.5714285714286},{"category":"culturerecreation","slug":"german","url":"http://german.stackexchange.com","description":"Q&A for speakers of German wanting to discuss the finer points of the language and translation","name":"German Language","creation_date":1306195200,"questions":5929,"answers":14373,"percent_answered":99.9156687468376,"users":10499,"visits_per_day":6644,"questions_per_day":3.57142857142857},{"category":"culturerecreation","slug":"japanese","url":"http://japanese.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the Japanese language","name":"Japanese Language","creation_date":1306800000,"questions":7969,"answers":12724,"percent_answered":98.9584640481867,"users":7957,"visits_per_day":3386,"questions_per_day":7.71428571428571},{"category":"science","slug":"philosophy","url":"http://philosophy.stackexchange.com","description":"Q&A for those interested in logical reasoning","name":"Philosophy","creation_date":1307404800,"questions":5555,"answers":13661,"percent_answered":93.4293429342934,"users":12523,"visits_per_day":1929,"questions_per_day":7.07142857142857},{"category":"lifearts","slug":"gardening","url":"http://gardening.stackexchange.com","description":"Q&A for gardeners and landscapers","name":"Gardening & Landscaping","creation_date":1307491200,"questions":4767,"answers":8128,"percent_answered":98.0071323683658,"users":5755,"visits_per_day":2709.5,"questions_per_day":1.57142857142857},{"category":"culturerecreation","slug":"travel","url":"http://travel.stackexchange.com","description":"Q&A for road warriors and seasoned travelers","name":"Travel","creation_date":1308614400,"questions":14993,"answers":25960,"percent_answered":99.0795704662176,"users":24678,"visits_per_day":28156.5,"questions_per_day":16.1428571428571},{"category":"lifearts","slug":"productivity","url":"http://productivity.stackexchange.com","description":"Q&A for people wanting to improve their personal productivity","name":"Personal Productivity","creation_date":1308700800,"questions":2025,"answers":7503,"percent_answered":99.2592592592593,"users":12049,"visits_per_day":1068.5,"questions_per_day":1},{"category":"technology","slug":"crypto","url":"http://crypto.stackexchange.com","description":"Q&A for software developers, mathematicians and others interested in cryptography","name":"Cryptography","creation_date":1310428800,"questions":8265,"answers":11256,"percent_answered":88.6509376890502,"users":19777,"visits_per_day":3880,"questions_per_day":6.85714285714286},{"category":"technology","slug":"dsp","url":"http://dsp.stackexchange.com","description":"Q&A for practitioners of the art and science of signal, image and video processing","name":"Signal Processing","creation_date":1313452800,"questions":8455,"answers":10679,"percent_answered":74.441159077469,"users":12607,"visits_per_day":3947,"questions_per_day":7.78571428571429},{"category":"culturerecreation","slug":"french","url":"http://french.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the French language","name":"French Language","creation_date":1313539200,"questions":3491,"answers":8217,"percent_answered":99.8281294757949,"users":7299,"visits_per_day":4928,"questions_per_day":2.92857142857143},{"category":"culturerecreation","slug":"christianity","url":"http://christianity.stackexchange.com","description":"Q&A for committed Christians, experts in Christianity and those interested in learning more","name":"Christianity","creation_date":1314057600,"questions":7697,"answers":19135,"percent_answered":98.6488242172275,"users":11897,"visits_per_day":17409.5,"questions_per_day":4.21428571428571},{"category":"business","slug":"bitcoin","url":"http://bitcoin.stackexchange.com","description":"Q&A for Bitcoin crypto-currency enthusiasts","name":"Bitcoin","creation_date":1314662400,"questions":10009,"answers":15612,"percent_answered":89.3795583974423,"users":18167,"visits_per_day":5377.5,"questions_per_day":5.85714285714286},{"category":"science","slug":"linguistics","url":"http://linguistics.stackexchange.com","description":"Q&A for professional linguists and others with an interest in linguistic research and theory","name":"Linguistics","creation_date":1315872000,"questions":3622,"answers":5927,"percent_answered":81.8332413031474,"users":6338,"visits_per_day":1294.5,"questions_per_day":3.21428571428571},{"category":"culturerecreation","slug":"hermeneutics","url":"http://hermeneutics.stackexchange.com","description":"Q&A for professors, theologians, and those interested in exegetical analysis of biblical texts","name":"Biblical Hermeneutics","creation_date":1317686400,"questions":3049,"answers":6321,"percent_answered":94.0964250573959,"users":5261,"visits_per_day":5107,"questions_per_day":2.78571428571429},{"category":"culturerecreation","slug":"history","url":"http://history.stackexchange.com","description":"Q&A for historians and history buffs","name":"History","creation_date":1318291200,"questions":4802,"answers":9531,"percent_answered":94.2107455226989,"users":9463,"visits_per_day":5529,"questions_per_day":3.35714285714286},{"category":"culturerecreation","slug":"bricks","url":"http://bricks.stackexchange.com","description":"Q&A for LEGO® and building block enthusiasts","name":"LEGO® Answers","creation_date":1319500800,"questions":1518,"answers":2740,"percent_answered":95.9815546772068,"users":4050,"visits_per_day":2726,"questions_per_day":1.92857142857143},{"category":"culturerecreation","slug":"spanish","url":"http://spanish.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the Spanish language","name":"Spanish Language","creation_date":1321315200,"questions":2729,"answers":6752,"percent_answered":99.8900696225724,"users":5976,"visits_per_day":5318.5,"questions_per_day":2.28571428571429},{"category":"science","slug":"scicomp","url":"http://scicomp.stackexchange.com","description":"Q&A for scientists using computers to solve scientific problems","name":"Computational Science","creation_date":1322524800,"questions":4807,"answers":6918,"percent_answered":80.5491990846682,"users":11019,"visits_per_day":1349,"questions_per_day":3.57142857142857},{"category":"lifearts","slug":"movies","url":"http://movies.stackexchange.com","description":"Q&A for movie and tv enthusiasts","name":"Movies & TV","creation_date":1322611200,"questions":10091,"answers":15802,"percent_answered":92.6370032702408,"users":18994,"visits_per_day":33715.5,"questions_per_day":19.3571428571429},{"category":"culturerecreation","slug":"chinese","url":"http://chinese.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the Chinese language","name":"Chinese Language","creation_date":1323734400,"questions":3158,"answers":8382,"percent_answered":99.2083597213426,"users":6644,"visits_per_day":1011,"questions_per_day":2},{"category":"science","slug":"biology","url":"http://biology.stackexchange.com","description":"Q&A for biology researchers, academics, and students","name":"Biology","creation_date":1323820800,"questions":10486,"answers":13163,"percent_answered":86.9349609002479,"users":12773,"visits_per_day":8164,"questions_per_day":9.78571428571429},{"category":"culturerecreation","slug":"poker","url":"http://poker.stackexchange.com","description":"Q&A for serious players and enthusiasts of poker","name":"Poker","creation_date":1326153600,"questions":883,"answers":2076,"percent_answered":97.6217440543601,"users":2649,"visits_per_day":1125.5,"questions_per_day":0.857142857142857},{"category":"technology","slug":"mathematica","url":"http://mathematica.stackexchange.com","description":"Q&A for users of Mathematica","name":"Mathematica","creation_date":1326758400,"questions":29780,"answers":45786,"percent_answered":89.8354600402955,"users":22574,"visits_per_day":4923.5,"questions_per_day":24.3571428571429},{"category":"science","slug":"cogsci","url":"http://cogsci.stackexchange.com","description":"Q&A for practitioners, researchers, and students in cognitive science, psychology, neuroscience, and psychiatry","name":"Cognitive Sciences","creation_date":1326844800,"questions":3379,"answers":4158,"percent_answered":82.6871855578573,"users":7376,"visits_per_day":1273,"questions_per_day":2.92857142857143},{"category":"culturerecreation","slug":"outdoors","url":"http://outdoors.stackexchange.com","description":"Q&A for people who love outdoor activities, excursions, and outdoorsmanship","name":"The Great Outdoors","creation_date":1327363200,"questions":2439,"answers":5814,"percent_answered":98.2369823698237,"users":5061,"visits_per_day":4111,"questions_per_day":3.07142857142857},{"category":"culturerecreation","slug":"martialarts","url":"http://martialarts.stackexchange.com","description":"Q&A for students and teachers of all martial arts","name":"Martial Arts","creation_date":1327968000,"questions":891,"answers":3283,"percent_answered":98.989898989899,"users":3308,"visits_per_day":1521,"questions_per_day":0.285714285714286},{"category":"culturerecreation","slug":"sports","url":"http://sports.stackexchange.com","description":"Q&A for participants in team and individual sport activities","name":"Sports","creation_date":1328659200,"questions":2548,"answers":4154,"percent_answered":94.701726844584,"users":4694,"visits_per_day":4156.5,"questions_per_day":2.21428571428571},{"category":"lifearts","slug":"academia","url":"http://academia.stackexchange.com","description":"Q&A for academics and those enrolled in higher education","name":"Academia","creation_date":1329177600,"questions":12042,"answers":30323,"percent_answered":99.1114432818469,"users":34553,"visits_per_day":13108.5,"questions_per_day":13.1428571428571},{"category":"science","slug":"cs","url":"http://cs.stackexchange.com","description":"Q&A for students, researchers and practitioners of computer science","name":"Computer Science","creation_date":1330992000,"questions":12581,"answers":16499,"percent_answered":86.4239726571815,"users":32287,"visits_per_day":4247.5,"questions_per_day":13.7857142857143},{"category":"professional","slug":"workplace","url":"http://workplace.stackexchange.com","description":"Q&A for members of the workforce navigating the professional setting","name":"The Workplace","creation_date":1334016000,"questions":9362,"answers":30149,"percent_answered":99.9893185216834,"users":29436,"visits_per_day":18498.5,"questions_per_day":8.35714285714286},{"category":"technology","slug":"windowsphone","url":"http://windowsphone.stackexchange.com","description":"Q&A for enthusiasts and power users of Windows Phone OS","name":"Windows Phone","creation_date":1335225600,"questions":2516,"answers":3275,"percent_answered":82.154213036566,"users":7857,"visits_per_day":6660,"questions_per_day":2},{"category":"science","slug":"chemistry","url":"http://chemistry.stackexchange.com","description":"Q&A for scientists, academics, teachers and students","name":"Chemistry","creation_date":1335312000,"questions":12162,"answers":14897,"percent_answered":85.8246998848874,"users":13805,"visits_per_day":10631.5,"questions_per_day":18.5},{"category":"culturerecreation","slug":"chess","url":"http://chess.stackexchange.com","description":"Q&A for serious players and enthusiasts of chess","name":"Chess","creation_date":1335830400,"questions":2381,"answers":5593,"percent_answered":96.0520789584208,"users":6578,"visits_per_day":2459.5,"questions_per_day":2.42857142857143},{"category":"technology","slug":"raspberrypi","url":"http://raspberrypi.stackexchange.com","description":"Q&A for users and developers of hardware and software for Raspberry Pi","name":"Raspberry Pi","creation_date":1339459200,"questions":9994,"answers":13990,"percent_answered":80.6383830298179,"users":27867,"visits_per_day":24430.5,"questions_per_day":19.7142857142857},{"category":"culturerecreation","slug":"russian","url":"http://russian.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the Russian language","name":"Russian Language","creation_date":1339545600,"questions":1730,"answers":4728,"percent_answered":100,"users":4817,"visits_per_day":860,"questions_per_day":1.42857142857143},{"category":"culturerecreation","slug":"islam","url":"http://islam.stackexchange.com","description":"Q&A for Muslims, experts in Islam, and those interested in learning more about Islam","name":"Islam","creation_date":1340064000,"questions":4640,"answers":8294,"percent_answered":83.1465517241379,"users":7240,"visits_per_day":10371.5,"questions_per_day":3.21428571428571},{"category":"technology","slug":"salesforce","url":"http://salesforce.stackexchange.com","description":"Q&A for Salesforce administrators, implementation experts, developers and anybody in-between","name":"Salesforce","creation_date":1343692800,"questions":35565,"answers":43998,"percent_answered":73.769155068185,"users":16984,"visits_per_day":17521,"questions_per_day":35.1428571428571},{"category":"business","slug":"patents","url":"http://patents.stackexchange.com","description":"Q&A for people interested in improving and participating in the patent system","name":"Ask Patents","creation_date":1348099200,"questions":2145,"answers":3582,"percent_answered":79.9067599067599,"users":8176,"visits_per_day":2060,"questions_per_day":1.07142857142857},{"category":"lifearts","slug":"genealogy","url":"http://genealogy.stackexchange.com","description":"Q&A for expert genealogists and people interested in genealogy or family history","name":"Genealogy & Family History","creation_date":1349740800,"questions":1392,"answers":2773,"percent_answered":92.2413793103448,"users":2141,"visits_per_day":678.5,"questions_per_day":1.21428571428571},{"category":"technology","slug":"robotics","url":"http://robotics.stackexchange.com","description":"Q&A for professional robotic engineers, hobbyists, researchers and students","name":"Robotics","creation_date":1350950400,"questions":2234,"answers":3552,"percent_answered":88.3616830796777,"users":7012,"visits_per_day":1267.5,"questions_per_day":2.35714285714286},{"category":"technology","slug":"expressionengine","url":"http://expressionengine.stackexchange.com","description":"Q&A for administrators, end users, developers and designers for ExpressionEngine® CMS","name":"ExpressionEngine® Answers","creation_date":1352937600,"questions":10699,"answers":13677,"percent_answered":79.8953173193756,"users":4290,"visits_per_day":796,"questions_per_day":3.5},{"category":"culturerecreation","slug":"politics","url":"http://politics.stackexchange.com","description":"Q&A for people interested in governments, policies, and political processes","name":"Politics","creation_date":1354579200,"questions":1994,"answers":3453,"percent_answered":88.4653961885657,"users":4559,"visits_per_day":1319.5,"questions_per_day":1.42857142857143},{"category":"culturerecreation","slug":"anime","url":"http://anime.stackexchange.com","description":"Q&A for anime and manga fans","name":"Anime & Manga","creation_date":1355184000,"questions":7150,"answers":9444,"percent_answered":87.6643356643357,"users":11312,"visits_per_day":22731.5,"questions_per_day":13.2142857142857},{"category":"technology","slug":"magento","url":"http://magento.stackexchange.com","description":"Q&A for users of the Magento e-Commerce platform","name":"Magento","creation_date":1358812800,"questions":29659,"answers":36063,"percent_answered":76.7119592703732,"users":20903,"visits_per_day":23790.5,"questions_per_day":43.4285714285714},{"category":"culturerecreation","slug":"ell","url":"http://ell.stackexchange.com","description":"Q&A for speakers of other languages learning English","name":"English Language Learners","creation_date":1358899200,"questions":21919,"answers":39038,"percent_answered":97.5546329668324,"users":20910,"visits_per_day":31663.5,"questions_per_day":30.4285714285714},{"category":"lifearts","slug":"sustainability","url":"http://sustainability.stackexchange.com","description":"Q&A for folks dedicated to a lifestyle that can be maintained indefinitely without depleting available resources","name":"Sustainable Living","creation_date":1359417600,"questions":845,"answers":1707,"percent_answered":95.3846153846154,"users":2677,"visits_per_day":1152,"questions_per_day":0.642857142857143},{"category":"technology","slug":"tridion","url":"http://tridion.stackexchange.com","description":"Q&A for Tridion developers and administrators","name":"Tridion","creation_date":1361232000,"questions":3773,"answers":6187,"percent_answered":94.1690962099125,"users":1483,"visits_per_day":514.5,"questions_per_day":2.85714285714286},{"category":"technology","slug":"reverseengineering","url":"http://reverseengineering.stackexchange.com","description":"Q&A for researchers and developers who explore the principles of a system through analysis of its structure, function, and operation","name":"Reverse Engineering","creation_date":1363651200,"questions":2596,"answers":3696,"percent_answered":86.3636363636364,"users":8034,"visits_per_day":2391,"questions_per_day":2.57142857142857},{"category":"technology","slug":"networkengineering","url":"http://networkengineering.stackexchange.com","description":"Q&A for network engineers","name":"Network Engineering","creation_date":1367884800,"questions":5418,"answers":8209,"percent_answered":84.0531561461794,"users":14791,"visits_per_day":7662.5,"questions_per_day":8.14285714285714},{"category":"technology","slug":"opendata","url":"http://opendata.stackexchange.com","description":"Q&A for developers and researchers interested in open data","name":"Open Data","creation_date":1367971200,"questions":1948,"answers":3079,"percent_answered":82.0328542094456,"users":7235,"visits_per_day":1010.5,"questions_per_day":2.92857142857143},{"category":"professional","slug":"freelancing","url":"http://freelancing.stackexchange.com","description":"Q&A for self-employed and freelance workers","name":"Freelancing","creation_date":1369094400,"questions":934,"answers":2304,"percent_answered":97.3233404710921,"users":7459,"visits_per_day":577.5,"questions_per_day":0.642857142857143},{"category":"technology","slug":"blender","url":"http://blender.stackexchange.com","description":"Q&A for people who use Blender to create 3D graphics, animations, or games","name":"Blender","creation_date":1369180800,"questions":14042,"answers":15470,"percent_answered":82.2603617718274,"users":12800,"visits_per_day":10610.5,"questions_per_day":25},{"category":"science","slug":"mathoverflow","url":"http://mathoverflow.net","description":"Q&A for professional mathematicians","name":"MathOverflow","creation_date":1254154260,"questions":67127,"answers":106942,"percent_answered":78.212939651705,"users":50468,"visits_per_day":14638,"questions_per_day":31.0714285714286},{"category":"technology","slug":"space","url":"http://space.stackexchange.com","description":"Q&A for spacecraft operators, scientists, engineers, and enthusiasts","name":"Space Exploration","creation_date":1373932800,"questions":3376,"answers":5600,"percent_answered":95.053317535545,"users":7310,"visits_per_day":5486.5,"questions_per_day":6.35714285714286},{"category":"technology","slug":"sound","url":"http://sound.stackexchange.com","description":"Q&A for sound engineers, producers, editors, and enthusiasts","name":"Sound Design","creation_date":1289347200,"questions":7010,"answers":21210,"percent_answered":91.9686162624822,"users":6936,"visits_per_day":3995,"questions_per_day":3.07142857142857},{"category":"science","slug":"astronomy","url":"http://astronomy.stackexchange.com","description":"Q&A for astronomers and astrophysicists","name":"Astronomy","creation_date":1379980800,"questions":2655,"answers":4038,"percent_answered":92.3540489642185,"users":5893,"visits_per_day":951,"questions_per_day":3.07142857142857},{"category":"technology","slug":"tor","url":"http://tor.stackexchange.com","description":"Q&A for researchers, developers, and users of Tor","name":"Tor","creation_date":1380067200,"questions":2299,"answers":2812,"percent_answered":80.5132666376686,"users":5291,"visits_per_day":3033.5,"questions_per_day":2.21428571428571},{"category":"lifearts","slug":"pets","url":"http://pets.stackexchange.com","description":"Q&A for pet owners, caretakers, breeders, veterinarians, and trainers","name":"Pets","creation_date":1381190400,"questions":2587,"answers":4094,"percent_answered":91.0707383069192,"users":3814,"visits_per_day":8807,"questions_per_day":2.35714285714286},{"category":"culturerecreation","slug":"ham","url":"http://ham.stackexchange.com","description":"Q&A for amateur radio enthusiasts","name":"Amateur Radio","creation_date":1382400000,"questions":1111,"answers":1902,"percent_answered":94.7794779477948,"users":3598,"visits_per_day":779.5,"questions_per_day":1},{"category":"culturerecreation","slug":"italian","url":"http://italian.stackexchange.com","description":"Q&A for students, teachers, and linguists wanting to discuss the finer points of the Italian language","name":"Italian Language","creation_date":1383609600,"questions":1076,"answers":1937,"percent_answered":98.6988847583643,"users":1927,"visits_per_day":925.5,"questions_per_day":1.92857142857143},{"category":"technology","slug":"pt-stackoverflow","url":"http://pt.stackoverflow.com","description":"Q&A for programadores profissionais e entusiastas","name":"Stack Overflow em Português","creation_date":1386806400,"questions":35285,"answers":47047,"percent_answered":80.3599263142979,"users":24569,"visits_per_day":15249.5,"questions_per_day":58.8571428571429},{"category":"professional","slug":"aviation","url":"http://aviation.stackexchange.com","description":"Q&A for aircraft pilots, mechanics, and enthusiasts","name":"Aviation","creation_date":1387238400,"questions":4950,"answers":10340,"percent_answered":99.1111111111111,"users":8907,"visits_per_day":8509,"questions_per_day":7.71428571428571},{"category":"technology","slug":"ebooks","url":"http://ebooks.stackexchange.com","description":"Q&A for ebook publishers and readers","name":"Ebooks","creation_date":1387324800,"questions":690,"answers":1131,"percent_answered":84.0579710144928,"users":3653,"visits_per_day":1178.5,"questions_per_day":0.928571428571429},{"category":"culturerecreation","slug":"beer","url":"http://beer.stackexchange.com","description":"Q&A for beer aficionados and collectors","name":"Beer","creation_date":1390262400,"questions":455,"answers":1073,"percent_answered":97.5824175824176,"users":2753,"visits_per_day":1716.5,"questions_per_day":0.214285714285714},{"category":"technology","slug":"softwarerecs","url":"http://softwarerecs.stackexchange.com","description":"Q&A for people seeking specific software recommendations","name":"Software Recommendations","creation_date":1391472000,"questions":7544,"answers":7910,"percent_answered":58.4703075291622,"users":14542,"visits_per_day":3713,"questions_per_day":12.7142857142857},{"category":"technology","slug":"arduino","url":"http://arduino.stackexchange.com","description":"Q&A for developers of open-source hardware and software that is compatible with Arduino","name":"Arduino","creation_date":1392076800,"questions":5133,"answers":7164,"percent_answered":74.3424897720631,"users":11363,"visits_per_day":6129.5,"questions_per_day":11.1428571428571},{"category":"lifearts","slug":"expatriates","url":"http://expatriates.stackexchange.com","description":"Q&A for people living abroad on a long-term basis","name":"Expatriates","creation_date":1394582400,"questions":1636,"answers":2064,"percent_answered":86.3080684596577,"users":3444,"visits_per_day":1436.5,"questions_per_day":2.42857142857143},{"category":"science","slug":"matheducators","url":"http://matheducators.stackexchange.com","description":"Q&A for those involved in the field of teaching mathematics","name":"Mathematics Educators","creation_date":1394668800,"questions":1285,"answers":4442,"percent_answered":95.5642023346304,"users":3934,"visits_per_day":353.5,"questions_per_day":1.07142857142857},{"category":"science","slug":"earthscience","url":"http://earthscience.stackexchange.com","description":"Q&A for those interested in the geology, meteorology, oceanography, and environmental sciences","name":"Earth Science","creation_date":1397520000,"questions":1486,"answers":2087,"percent_answered":90.6460296096904,"users":2865,"visits_per_day":974.5,"questions_per_day":1.57142857142857},{"category":"technology","slug":"joomla","url":"http://joomla.stackexchange.com","description":"Q&A for Joomla! administrators, users, developers and designers","name":"Joomla","creation_date":1398124800,"questions":3104,"answers":4430,"percent_answered":85.8247422680412,"users":3207,"visits_per_day":2404.5,"questions_per_day":3.85714285714286},{"category":"technology","slug":"datascience","url":"http://datascience.stackexchange.com","description":"Q&A for Data science professionals, Machine Learning specialists, and those interested in learning more about the field","name":"Data Science","creation_date":1399939200,"questions":1880,"answers":2758,"percent_answered":75.8510638297872,"users":9785,"visits_per_day":1109.5,"questions_per_day":5.14285714285714},{"category":"culturerecreation","slug":"puzzling","url":"http://puzzling.stackexchange.com","description":"Q&A for those who create, solve, and study puzzles","name":"Puzzling","creation_date":1400025600,"questions":4256,"answers":11786,"percent_answered":99.5065789473684,"users":12295,"visits_per_day":5152,"questions_per_day":5.07142857142857},{"category":"technology","slug":"craftcms","url":"http://craftcms.stackexchange.com","description":"Q&A for administrators, end users, developers and designers for Craft CMS","name":"Craft CMS","creation_date":1402444800,"questions":4182,"answers":5207,"percent_answered":93.37637494022,"users":2368,"visits_per_day":998.5,"questions_per_day":4.21428571428571},{"category":"culturerecreation","slug":"buddhism","url":"http://buddhism.stackexchange.com","description":"Q&A for people practicing or interested in Buddhist philosophy, teaching, and practice","name":"Buddhism","creation_date":1402963200,"questions":2398,"answers":7108,"percent_answered":99.5829858215179,"users":3236,"visits_per_day":1080.5,"questions_per_day":3.42857142857143},{"category":"culturerecreation","slug":"hinduism","url":"http://hinduism.stackexchange.com","description":"Q&A for followers of the Hindu religion and those interested in learning more about Hinduism","name":"Hinduism","creation_date":1403049600,"questions":2374,"answers":3040,"percent_answered":71.9882055602359,"users":3112,"visits_per_day":4046,"questions_per_day":4.14285714285714},{"category":"professional","slug":"communitybuilding","url":"http://communitybuilding.stackexchange.com","description":"Q&A for community managers, administrators, and moderators","name":"Community Building","creation_date":1406592000,"questions":353,"answers":849,"percent_answered":98.300283286119,"users":1654,"visits_per_day":26.5,"questions_per_day":0.214285714285714},{"category":"business","slug":"startups","url":"http://startups.stackexchange.com","description":"Q&A for entrepreneurs faced with delivering a new product or service under conditions of significant uncertainty","name":"Startups","creation_date":1406678400,"questions":1600,"answers":2975,"percent_answered":92,"users":6071,"visits_per_day":361,"questions_per_day":2.57142857142857},{"category":"lifearts","slug":"worldbuilding","url":"http://worldbuilding.stackexchange.com","description":"Q&A for writers/artists using science, geography and culture to construct imaginary worlds and settings","name":"Worldbuilding","creation_date":1410825600,"questions":4373,"answers":20510,"percent_answered":99.885662016922,"users":12121,"visits_per_day":4128,"questions_per_day":10.7857142857143},{"category":"technology","slug":"ja-stackoverflow","url":"http://ja.stackoverflow.com","description":"Q&A for プログラマーとプログラミングに熱心の人","name":"スタック・オーバーフロー","creation_date":1410998400,"questions":6342,"answers":8102,"percent_answered":76.2535477767266,"users":7646,"visits_per_day":4900.5,"questions_per_day":14.0714285714286},{"category":"technology","slug":"emacs","url":"http://emacs.stackexchange.com","description":"Q&A for those using, extending or developing Emacs","name":"Emacs","creation_date":1411430400,"questions":5304,"answers":6901,"percent_answered":81.4291101055807,"users":5527,"visits_per_day":1404,"questions_per_day":9.42857142857143},{"category":"science","slug":"hsm","url":"http://hsm.stackexchange.com","description":"Q&A for people interested in the history and origins of science and mathematics","name":"History of Science and Mathematics","creation_date":1414454400,"questions":785,"answers":1147,"percent_answered":86.3694267515924,"users":2418,"visits_per_day":196,"questions_per_day":1.57142857142857},{"category":"science","slug":"economics","url":"http://economics.stackexchange.com","description":"Q&A for professional and academic economists and analysts","name":"Economics","creation_date":1416268800,"questions":2256,"answers":3001,"percent_answered":79.9202127659574,"users":3666,"visits_per_day":564.5,"questions_per_day":4.85714285714286},{"category":"lifearts","slug":"lifehacks","url":"http://lifehacks.stackexchange.com","description":"Q&A for people looking to bypass life's everyday problems with simple tricks","name":"Lifehacks","creation_date":1418083200,"questions":1117,"answers":3888,"percent_answered":99.5523724261414,"users":7240,"visits_per_day":9477.5,"questions_per_day":2.14285714285714},{"category":"technology","slug":"engineering","url":"http://engineering.stackexchange.com","description":"Q&A for professionals and students of engineering","name":"Engineering","creation_date":1421712000,"questions":1527,"answers":2297,"percent_answered":85.396201702685,"users":4165,"visits_per_day":992,"questions_per_day":4.42857142857143},{"category":"lifearts","slug":"coffee","url":"http://coffee.stackexchange.com","description":"Q&A for people interested in all aspects of producing and consuming coffee","name":"Coffee","creation_date":1422316800,"questions":436,"answers":764,"percent_answered":97.0183486238532,"users":1814,"visits_per_day":711.5,"questions_per_day":0.285714285714286},{"category":"technology","slug":"vi","url":"http://vi.stackexchange.com","description":"Q&A for people using the vi and Vim families of text editors","name":"Vi and Vim","creation_date":1422921600,"questions":1774,"answers":2712,"percent_answered":90.7553551296505,"users":4788,"visits_per_day":840,"questions_per_day":4.71428571428571},{"category":"lifearts","slug":"musicfans","url":"http://musicfans.stackexchange.com","description":"Q&A for music historians, critics, and fans","name":"Music Fans","creation_date":1424736000,"questions":611,"answers":844,"percent_answered":81.505728314239,"users":1600,"visits_per_day":683,"questions_per_day":2.57142857142857},{"category":"culturerecreation","slug":"woodworking","url":"http://woodworking.stackexchange.com","description":"Q&A for professional and amateur woodworkers","name":"Woodworking","creation_date":1426550400,"questions":773,"answers":2033,"percent_answered":98.9650711513583,"users":1584,"visits_per_day":1539,"questions_per_day":1.92857142857143},{"category":"technology","slug":"civicrm","url":"http://civicrm.stackexchange.com","description":"Q&A for administrators and users of the CiviCRM Constituent Relationship Management software","name":"CiviCRM","creation_date":1427155200,"questions":2618,"answers":3620,"percent_answered":83.1168831168831,"users":1520,"visits_per_day":255,"questions_per_day":6.28571428571429},{"category":"lifearts","slug":"health","url":"http://health.stackexchange.com","description":"Q&A for medical specialists, students, dietitians, and anyone with health-related questions","name":"Health","creation_date":1427760000,"questions":1281,"answers":1098,"percent_answered":67.1350507416081,"users":2393,"visits_per_day":724.5,"questions_per_day":4.57142857142857},{"category":"technology","slug":"ru-stackoverflow","url":"http://ru.stackoverflow.com","description":"Q&A for программистов","name":"Stack Overflow на русском","creation_date":1427414400,"questions":74455,"answers":104868,"percent_answered":82.8567591162447,"users":34479,"visits_per_day":30729,"questions_per_day":111.785714285714},{"category":"culturerecreation","slug":"rus","url":"http://rus.stackexchange.com","description":"Q&A for лингвистов, этимологов, и энтузиастов русского языка","name":"Русский язык","creation_date":1430179200,"questions":8805,"answers":19446,"percent_answered":95.4003407155026,"users":4218,"visits_per_day":23588.5,"questions_per_day":5},{"category":"culturerecreation","slug":"mythology","url":"http://mythology.stackexchange.com","description":"Q&A for enthusiasts and scholars of mythology","name":"Mythology","creation_date":1430179200,"questions":373,"answers":490,"percent_answered":90.3485254691689,"users":1049,"visits_per_day":183,"questions_per_day":1.14285714285714},{"category":"lifearts","slug":"law","url":"http://law.stackexchange.com","description":"Q&A for legal professionals, students, and others with experience or interest in law","name":"Law","creation_date":1432598400,"questions":1958,"answers":2484,"percent_answered":82.4821246169561,"users":2844,"visits_per_day":691.5,"questions_per_day":7.42857142857143},{"category":"professional","slug":"opensource","url":"http://opensource.stackexchange.com","description":"Q&A for people organizing, marketing or licensing open source development projects","name":"Open Source","creation_date":1435017600,"questions":602,"answers":1225,"percent_answered":99.3355481727575,"users":2608,"visits_per_day":92.5,"questions_per_day":1.14285714285714},{"category":"technology","slug":"elementaryos","url":"http://elementaryos.stackexchange.com","description":"Q&A for developers and users of elementary OS and applications","name":"elementary OS","creation_date":1435622400,"questions":1523,"answers":1562,"percent_answered":73.3420879842416,"users":2554,"visits_per_day":1572.5,"questions_per_day":6.28571428571429},{"category":"culturerecreation","slug":"portuguese","url":"http://portuguese.stackexchange.com","description":"Q&A for linguists, teachers and learners wanting to discuss the finer points of the Portuguese language","name":"Portuguese Language","creation_date":1436832000,"questions":575,"answers":979,"percent_answered":97.2173913043478,"users":678,"visits_per_day":392,"questions_per_day":1.71428571428571},{"category":"technology","slug":"computergraphics","url":"http://computergraphics.stackexchange.com","description":"Q&A for computer graphics researchers and programmers","name":"Computer Graphics","creation_date":1438646400,"questions":329,"answers":430,"percent_answered":91.1854103343465,"users":1350,"visits_per_day":108,"questions_per_day":1.5},{"category":"technology","slug":"hardwarerecs","url":"http://hardwarerecs.stackexchange.com","description":"Q&A for people seeking specific hardware recommendations","name":"Hardware Recommendations","creation_date":1441756800,"questions":516,"answers":559,"percent_answered":70.5426356589147,"users":1350,"visits_per_day":158.5,"questions_per_day":3.35714285714286},{"category":"technology","slug":"es-stackoverflow","url":"http://es.stackoverflow.com","description":"Q&A for programadores y profesionales de la informática","name":"Stack Overflow en español","creation_date":1448928000,"questions":469,"answers":835,"percent_answered":83.5820895522388,"users":2340,"visits_per_day":727.5,"questions_per_day":15.3571428571429}],"creation_date":1451529774180}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment