Stack Exchangeのサイトをさまざまな指標にもとづいたツリーマップで表示します。色分けはサイト一覧上のカテゴリによります。
-
-
Save ento/568dad1045ff25d376e1 to your computer and use it in GitHub Desktop.
Treemap of Stack Exchange Sites
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> </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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"items":[{"category":"technology","slug":"stackoverflow","url":"http://stackoverflow.com","description":"Q&A for professional and enthusiast programmers","name":"Stack Overflow","creation_date":1217462400,"questions":8877364,"answers":14923603,"percent_answered":74.2009227063349,"users":3960322,"visits_per_day":7226315,"questions_per_day":7776.57142857143},{"category":"technology","slug":"serverfault","url":"http://serverfault.com","description":"Q&A for system and network administrators","name":"Server Fault","creation_date":1241049600,"questions":190614,"answers":342882,"percent_answered":82.0112898318067,"users":197989,"visits_per_day":315713,"questions_per_day":112},{"category":"technology","slug":"superuser","url":"http://superuser.com","description":"Q&A for computer enthusiasts and power users","name":"Super User","creation_date":1247529600,"questions":255266,"answers":401625,"percent_answered":71.1324657416185,"users":308669,"visits_per_day":645216.5,"questions_per_day":185.857142857143},{"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":70044,"answers":110316,"percent_answered":88.5257837930444,"users":121118,"visits_per_day":8082,"questions_per_day":15.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":16678,"answers":24419,"percent_answered":79.5059359635448,"users":51958,"visits_per_day":46389.5,"questions_per_day":14.6428571428571},{"category":"culturerecreation","slug":"gaming","url":"http://gaming.stackexchange.com","description":"Q&A for passionate videogamers on all platforms","name":"Arqade","creation_date":1278460800,"questions":51930,"answers":88464,"percent_answered":91.8467167340651,"users":61889,"visits_per_day":256061,"questions_per_day":39.5714285714286},{"category":"technology","slug":"webmasters","url":"http://webmasters.stackexchange.com","description":"Q&A for pro webmasters","name":"Webmasters","creation_date":1278547200,"questions":19321,"answers":33050,"percent_answered":97.3396822110657,"users":34955,"visits_per_day":11816.5,"questions_per_day":14.0714285714286},{"category":"lifearts","slug":"cooking","url":"http://cooking.stackexchange.com","description":"Q&A for professional and amateur chefs","name":"Seasoned Advice","creation_date":1278633600,"questions":11652,"answers":30305,"percent_answered":98.3693786474425,"users":21716,"visits_per_day":88035.5,"questions_per_day":9.14285714285714},{"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":24552,"answers":43244,"percent_answered":91.1290322580645,"users":46162,"visits_per_day":24145,"questions_per_day":27.0714285714286},{"category":"lifearts","slug":"photo","url":"http://photo.stackexchange.com","description":"Q&A for professional, enthusiast and amateur photographers","name":"Photography","creation_date":1279152000,"questions":12569,"answers":33473,"percent_answered":97.5813509427958,"users":23624,"visits_per_day":25515.5,"questions_per_day":8},{"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":51291,"answers":54942,"percent_answered":64.7384531399271,"users":49242,"visits_per_day":48622.5,"questions_per_day":74.8571428571429},{"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":398327,"answers":582680,"percent_answered":79.3980824799725,"users":168497,"visits_per_day":128815.5,"questions_per_day":586.571428571429},{"category":"lifearts","slug":"diy","url":"http://diy.stackexchange.com","description":"Q&A for contractors and serious DIYers","name":"Home Improvement","creation_date":1279670400,"questions":14983,"answers":27479,"percent_answered":87.9530134152039,"users":20798,"visits_per_day":63083.5,"questions_per_day":21.5},{"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":45923,"answers":58933,"percent_answered":75.093090608192,"users":33464,"visits_per_day":35251,"questions_per_day":57.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":81152,"answers":111398,"percent_answered":93.4308458201893,"users":57138,"visits_per_day":70875.5,"questions_per_day":73.8571428571429},{"category":"technology","slug":"askubuntu","url":"http://askubuntu.com","description":"Q&A for Ubuntu users and developers","name":"Ask Ubuntu","creation_date":1280275200,"questions":180833,"answers":235203,"percent_answered":67.1232573700597,"users":248633,"visits_per_day":415908.5,"questions_per_day":176.571428571429},{"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":9535,"answers":19684,"percent_answered":95.3120083901416,"users":16272,"visits_per_day":19503,"questions_per_day":16},{"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":48439,"answers":126687,"percent_answered":97.9499989677739,"users":76881,"visits_per_day":252478,"questions_per_day":54.9285714285714},{"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":1895,"answers":2037,"percent_answered":64.0633245382586,"users":19284,"visits_per_day":521,"questions_per_day":1},{"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":15118,"answers":43591,"percent_answered":96.9308109538299,"users":46074,"visits_per_day":13656.5,"questions_per_day":15.1428571428571},{"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":58408,"answers":93508,"percent_answered":80.4769894534995,"users":87270,"visits_per_day":184364,"questions_per_day":73.8571428571429},{"category":"technology","slug":"wordpress","url":"http://wordpress.stackexchange.com","description":"Q&A for WordPress developers and administrators","name":"WordPress Development","creation_date":1281484800,"questions":53822,"answers":69003,"percent_answered":74.5940321801494,"users":46934,"visits_per_day":39134.5,"questions_per_day":51.8571428571429},{"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":6680,"answers":10861,"percent_answered":78.1137724550898,"users":20014,"visits_per_day":2017,"questions_per_day":5.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":52118,"answers":80438,"percent_answered":71.1443263363905,"users":84060,"visits_per_day":228722,"questions_per_day":55.6428571428571},{"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":11022,"answers":30668,"percent_answered":99.6098711667574,"users":12295,"visits_per_day":15237.5,"questions_per_day":13.6428571428571},{"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":5600,"answers":15847,"percent_answered":97.5178571428571,"users":11709,"visits_per_day":13416,"questions_per_day":3.92857142857143},{"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":35254,"answers":127569,"percent_answered":96.3209848527827,"users":135169,"visits_per_day":70978,"questions_per_day":36},{"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":40555,"answers":75764,"percent_answered":89.9001356182961,"users":44117,"visits_per_day":66097.5,"questions_per_day":62},{"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":27995,"answers":34503,"percent_answered":64.336488658689,"users":66696,"visits_per_day":148154,"questions_per_day":39.3571428571429},{"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":4929,"answers":10318,"percent_answered":97.6668695475756,"users":7967,"visits_per_day":9192.5,"questions_per_day":4.64285714285714},{"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":48545,"answers":76314,"percent_answered":83.8335564939747,"users":47871,"visits_per_day":53656,"questions_per_day":73.1428571428571},{"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":3496,"answers":8388,"percent_answered":98.5983981693364,"users":4808,"visits_per_day":5251,"questions_per_day":2.14285714285714},{"category":"technology","slug":"security","url":"http://security.stackexchange.com","description":"Q&A for Information security professionals","name":"Information Security","creation_date":1289433600,"questions":19513,"answers":41507,"percent_answered":95.0545789986163,"users":52631,"visits_per_day":45768,"questions_per_day":26.5714285714286},{"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":2873,"answers":8526,"percent_answered":98.7817612252001,"users":8496,"visits_per_day":4293,"questions_per_day":2.71428571428571},{"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":2219,"answers":3374,"percent_answered":90.4461469130239,"users":6333,"visits_per_day":2781.5,"questions_per_day":3.07142857142857},{"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":11292,"answers":21118,"percent_answered":90.3028692879915,"users":27531,"visits_per_day":58182,"questions_per_day":17.9285714285714},{"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":30340,"answers":41616,"percent_answered":81.0382333553065,"users":46813,"visits_per_day":82553.5,"questions_per_day":35.2142857142857},{"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":19165,"answers":40025,"percent_answered":95.3143751630577,"users":29251,"visits_per_day":44219,"questions_per_day":22.2142857142857},{"category":"technology","slug":"codereview","url":"http://codereview.stackexchange.com","description":"Q&A for peer programmer code reviews","name":"Code Review","creation_date":1295395200,"questions":21537,"answers":37627,"percent_answered":94.9157264242931,"users":55894,"visits_per_day":38935,"questions_per_day":31.8571428571429},{"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":2986,"answers":28311,"percent_answered":98.3924983255191,"users":26607,"visits_per_day":3544.5,"questions_per_day":3.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":4014,"answers":6294,"percent_answered":78.47533632287,"users":8003,"visits_per_day":3363,"questions_per_day":5.85714285714286},{"category":"business","slug":"pm","url":"http://pm.stackexchange.com","description":"Q&A for project managers","name":"Project Management","creation_date":1297036800,"questions":2332,"answers":8333,"percent_answered":98.4133790737564,"users":10080,"visits_per_day":3420,"questions_per_day":2.92857142857143},{"category":"culturerecreation","slug":"skeptics","url":"http://skeptics.stackexchange.com","description":"Q&A for scientific skepticism","name":"Skeptics","creation_date":1298505600,"questions":5480,"answers":6993,"percent_answered":85.3102189781022,"users":16375,"visits_per_day":12810.5,"questions_per_day":3.64285714285714},{"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":4579,"answers":9643,"percent_answered":96.3747543131688,"users":9610,"visits_per_day":10039,"questions_per_day":3.5},{"category":"technology","slug":"drupal","url":"http://drupal.stackexchange.com","description":"Q&A for Drupal developers and administrators","name":"Drupal Answers","creation_date":1299024000,"questions":47232,"answers":60133,"percent_answered":68.6737804878049,"users":27150,"visits_per_day":28145.5,"questions_per_day":43.5714285714286},{"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":4360,"answers":7458,"percent_answered":89.0366972477064,"users":6595,"visits_per_day":22198,"questions_per_day":5.42857142857143},{"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":2877,"answers":10175,"percent_answered":99.6871741397289,"users":8617,"visits_per_day":15369.5,"questions_per_day":2.35714285714286},{"category":"technology","slug":"sharepoint","url":"http://sharepoint.stackexchange.com","description":"Q&A for SharePoint enthusiasts","name":"SharePoint","creation_date":1302134400,"questions":46358,"answers":58925,"percent_answered":69.1617412312869,"users":24267,"visits_per_day":47683,"questions_per_day":49.7857142857143},{"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":5151,"answers":14390,"percent_answered":98.6992816928752,"users":10831,"visits_per_day":16322,"questions_per_day":8.21428571428571},{"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":2598,"answers":6235,"percent_answered":86.4126250962279,"users":8338,"visits_per_day":5844.5,"questions_per_day":4.07142857142857},{"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":14024,"answers":24307,"percent_answered":87.0079863091843,"users":4378,"visits_per_day":2913.5,"questions_per_day":18.4285714285714},{"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":4534,"answers":11108,"percent_answered":99.7353330392589,"users":7368,"visits_per_day":6855.5,"questions_per_day":4.85714285714286},{"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":5648,"answers":9468,"percent_answered":99.1501416430595,"users":5717,"visits_per_day":3406,"questions_per_day":6.85714285714286},{"category":"science","slug":"philosophy","url":"http://philosophy.stackexchange.com","description":"Q&A for those interested in logical reasoning","name":"Philosophy","creation_date":1307404800,"questions":3898,"answers":9461,"percent_answered":92.5346331452027,"users":8959,"visits_per_day":2811,"questions_per_day":5.14285714285714},{"category":"lifearts","slug":"gardening","url":"http://gardening.stackexchange.com","description":"Q&A for gardeners and landscapers","name":"Gardening & Landscaping","creation_date":1307491200,"questions":3616,"answers":6324,"percent_answered":99.3639380530973,"users":4225,"visits_per_day":3333.5,"questions_per_day":2.5},{"category":"culturerecreation","slug":"travel","url":"http://travel.stackexchange.com","description":"Q&A for road warriors and seasoned travelers","name":"Travel","creation_date":1308614400,"questions":10286,"answers":18564,"percent_answered":99.0569706397044,"users":16367,"visits_per_day":20044,"questions_per_day":15},{"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":1747,"answers":6715,"percent_answered":99.7710360618203,"users":9768,"visits_per_day":1444,"questions_per_day":0.785714285714286},{"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":5938,"answers":8461,"percent_answered":89.2556416301785,"users":14000,"visits_per_day":4495.5,"questions_per_day":7.57142857142857},{"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":6072,"answers":7945,"percent_answered":76.465744400527,"users":8924,"visits_per_day":5256.5,"questions_per_day":8.14285714285714},{"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":2685,"answers":6321,"percent_answered":99.7392923649907,"users":5245,"visits_per_day":5525,"questions_per_day":2.14285714285714},{"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":6541,"answers":16645,"percent_answered":98.5629108698976,"users":9183,"visits_per_day":21392,"questions_per_day":6.92857142857143},{"category":"business","slug":"bitcoin","url":"http://bitcoin.stackexchange.com","description":"Q&A for Bitcoin crypto-currency enthusiasts","name":"Bitcoin","creation_date":1314662400,"questions":8385,"answers":13423,"percent_answered":89.5766249254621,"users":14247,"visits_per_day":5464.5,"questions_per_day":5.57142857142857},{"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":2662,"answers":4457,"percent_answered":82.0435762584523,"users":4648,"visits_per_day":1838.5,"questions_per_day":3.5},{"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":2353,"answers":4859,"percent_answered":96.1750956226094,"users":3600,"visits_per_day":6148.5,"questions_per_day":2.5},{"category":"culturerecreation","slug":"history","url":"http://history.stackexchange.com","description":"Q&A for historians and history buffs","name":"History","creation_date":1318291200,"questions":3714,"answers":7223,"percent_answered":93.753365643511,"users":6591,"visits_per_day":6711.5,"questions_per_day":4.42857142857143},{"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":1169,"answers":2198,"percent_answered":96.3216424294269,"users":3116,"visits_per_day":2018,"questions_per_day":1.21428571428571},{"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":2068,"answers":5172,"percent_answered":99.8549323017408,"users":4173,"visits_per_day":5403,"questions_per_day":2},{"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":3704,"answers":5742,"percent_answered":83.207343412527,"users":8066,"visits_per_day":2244,"questions_per_day":3.07142857142857},{"category":"lifearts","slug":"movies","url":"http://movies.stackexchange.com","description":"Q&A for movie and tv enthusiasts","name":"Movies & TV","creation_date":1322611200,"questions":7187,"answers":11071,"percent_answered":92.6255739529706,"users":11950,"visits_per_day":22264,"questions_per_day":12.5714285714286},{"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":2284,"answers":6234,"percent_answered":99.2994746059545,"users":4950,"visits_per_day":1303.5,"questions_per_day":2.5},{"category":"science","slug":"biology","url":"http://biology.stackexchange.com","description":"Q&A for biology researchers, academics, and students","name":"Biology","creation_date":1323820800,"questions":7166,"answers":9459,"percent_answered":90.608428691041,"users":8338,"visits_per_day":8722.5,"questions_per_day":12},{"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":629,"answers":1614,"percent_answered":97.933227344992,"users":1877,"visits_per_day":959.5,"questions_per_day":1.07142857142857},{"category":"technology","slug":"mathematica","url":"http://mathematica.stackexchange.com","description":"Q&A for users of Mathematica","name":"Mathematica","creation_date":1326758400,"questions":21647,"answers":34111,"percent_answered":88.3124682404028,"users":16816,"visits_per_day":8522.5,"questions_per_day":31.7857142857143},{"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":2577,"answers":3197,"percent_answered":78.0752813348855,"users":5154,"visits_per_day":1589,"questions_per_day":3.71428571428571},{"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":1744,"answers":4221,"percent_answered":99.197247706422,"users":3353,"visits_per_day":3096.5,"questions_per_day":1.42857142857143},{"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":707,"answers":2590,"percent_answered":98.019801980198,"users":2427,"visits_per_day":1471.5,"questions_per_day":0.785714285714286},{"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":1983,"answers":3217,"percent_answered":93.3434190620272,"users":3487,"visits_per_day":3893.5,"questions_per_day":1.78571428571429},{"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":7824,"answers":19553,"percent_answered":97.7377300613497,"users":21645,"visits_per_day":15292.5,"questions_per_day":19.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":9094,"answers":12339,"percent_answered":86.9804266549373,"users":21679,"visits_per_day":5700.5,"questions_per_day":16.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":6158,"answers":20231,"percent_answered":99.9025657681065,"users":21009,"visits_per_day":20601.5,"questions_per_day":8.78571428571429},{"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":1819,"answers":2512,"percent_answered":86.2561847168774,"users":4890,"visits_per_day":5849.5,"questions_per_day":3.42857142857143},{"category":"science","slug":"chemistry","url":"http://chemistry.stackexchange.com","description":"Q&A for scientists, academics, teachers and students","name":"Chemistry","creation_date":1335312000,"questions":6693,"answers":9046,"percent_answered":91.0802330793366,"users":7543,"visits_per_day":14214.5,"questions_per_day":20},{"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":1638,"answers":3949,"percent_answered":96.9474969474969,"users":4612,"visits_per_day":2151,"questions_per_day":1.64285714285714},{"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":6525,"answers":9388,"percent_answered":80.2605363984674,"users":17935,"visits_per_day":23572,"questions_per_day":14.5},{"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":1154,"answers":3247,"percent_answered":100,"users":3556,"visits_per_day":849,"questions_per_day":0.928571428571429},{"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":3520,"answers":6270,"percent_answered":83.9772727272727,"users":5147,"visits_per_day":7432,"questions_per_day":4.35714285714286},{"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":22004,"answers":28391,"percent_answered":78.5584439192874,"users":10562,"visits_per_day":19639,"questions_per_day":47},{"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":1643,"answers":2961,"percent_answered":76.6889835666464,"users":6899,"visits_per_day":1227,"questions_per_day":3.78571428571429},{"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":1000,"answers":2232,"percent_answered":95.6,"users":1551,"visits_per_day":669,"questions_per_day":0.571428571428571},{"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":1507,"answers":2462,"percent_answered":86.1977438619774,"users":4879,"visits_per_day":1651,"questions_per_day":3.21428571428571},{"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":9351,"answers":11814,"percent_answered":80.0021388086836,"users":3601,"visits_per_day":1660.5,"questions_per_day":8.07142857142857},{"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":1490,"answers":2491,"percent_answered":87.248322147651,"users":2993,"visits_per_day":1756.5,"questions_per_day":1.71428571428571},{"category":"culturerecreation","slug":"anime","url":"http://anime.stackexchange.com","description":"Q&A for anime and manga fans","name":"Anime & Manga","creation_date":1355184000,"questions":4702,"answers":6418,"percent_answered":86.8991918332624,"users":6700,"visits_per_day":12280,"questions_per_day":9.92857142857143},{"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":17904,"answers":21861,"percent_answered":75.7931188561215,"users":13314,"visits_per_day":22549.5,"questions_per_day":57.2857142857143},{"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":13909,"answers":25025,"percent_answered":98.0588108419009,"users":12563,"visits_per_day":23136.5,"questions_per_day":29.0714285714286},{"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":674,"answers":1359,"percent_answered":97.4777448071217,"users":1915,"visits_per_day":907,"questions_per_day":0.428571428571429},{"category":"technology","slug":"tridion","url":"http://tridion.stackexchange.com","description":"Q&A for Tridion developers and administrators","name":"Tridion","creation_date":1361232000,"questions":2854,"answers":4879,"percent_answered":96.3910301331465,"users":1223,"visits_per_day":878.5,"questions_per_day":5.28571428571429},{"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":1688,"answers":2685,"percent_answered":89.4549763033175,"users":5470,"visits_per_day":2361,"questions_per_day":3.21428571428571},{"category":"technology","slug":"networkengineering","url":"http://networkengineering.stackexchange.com","description":"Q&A for network engineers","name":"Network Engineering","creation_date":1367884800,"questions":3231,"answers":5047,"percent_answered":86.1962240792324,"users":8849,"visits_per_day":8810,"questions_per_day":8.57142857142857},{"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":1079,"answers":2085,"percent_answered":88.1371640407785,"users":4492,"visits_per_day":1059.5,"questions_per_day":4.07142857142857},{"category":"professional","slug":"freelancing","url":"http://freelancing.stackexchange.com","description":"Q&A for self-employed and freelance workers","name":"Freelancing","creation_date":1369094400,"questions":671,"answers":1697,"percent_answered":97.0193740685544,"users":4889,"visits_per_day":732,"questions_per_day":1.14285714285714},{"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":7005,"answers":8630,"percent_answered":88.6224125624554,"users":7031,"visits_per_day":8952.5,"questions_per_day":24.8571428571429},{"category":"science","slug":"mathoverflow","url":"http://mathoverflow.net","description":"Q&A for professional mathematicians","name":"MathOverflow","creation_date":1254154260,"questions":58075,"answers":96757,"percent_answered":79.2630219543694,"users":41058,"visits_per_day":20156.5,"questions_per_day":41.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":2163,"answers":3558,"percent_answered":93.7586685159501,"users":4322,"visits_per_day":2585.5,"questions_per_day":3.85714285714286},{"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":6265,"answers":20021,"percent_answered":94.5251396648045,"users":5204,"visits_per_day":4422,"questions_per_day":3.78571428571429},{"category":"science","slug":"astronomy","url":"http://astronomy.stackexchange.com","description":"Q&A for astronomers and astrophysicists","name":"Astronomy","creation_date":1379980800,"questions":1598,"answers":2525,"percent_answered":94.9937421777222,"users":3458,"visits_per_day":954,"questions_per_day":3.5},{"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":1555,"answers":1977,"percent_answered":80.6430868167203,"users":3306,"visits_per_day":3102.5,"questions_per_day":2.64285714285714},{"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":1815,"answers":2864,"percent_answered":92.2314049586777,"users":2452,"visits_per_day":5767,"questions_per_day":2.64285714285714},{"category":"culturerecreation","slug":"ham","url":"http://ham.stackexchange.com","description":"Q&A for amateur radio enthusiasts","name":"Amateur Radio","creation_date":1382400000,"questions":791,"answers":1397,"percent_answered":98.1036662452592,"users":2113,"visits_per_day":659.5,"questions_per_day":1.64285714285714},{"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":639,"answers":1224,"percent_answered":99.5305164319249,"users":1185,"visits_per_day":509.5,"questions_per_day":1.64285714285714},{"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":15284,"answers":22977,"percent_answered":89.1978539649306,"users":13653,"visits_per_day":12568.5,"questions_per_day":51.9285714285714},{"category":"professional","slug":"aviation","url":"http://aviation.stackexchange.com","description":"Q&A for aircraft pilots, mechanics, and enthusiasts","name":"Aviation","creation_date":1387238400,"questions":2364,"answers":5118,"percent_answered":99.3654822335025,"users":5046,"visits_per_day":7773,"questions_per_day":7.14285714285714},{"category":"technology","slug":"ebooks","url":"http://ebooks.stackexchange.com","description":"Q&A for ebook publishers and readers","name":"Ebooks","creation_date":1387324800,"questions":510,"answers":864,"percent_answered":87.6470588235294,"users":2204,"visits_per_day":1158,"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":349,"answers":777,"percent_answered":96.8481375358166,"users":1732,"visits_per_day":1170.5,"questions_per_day":0.142857142857143},{"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":4371,"answers":4730,"percent_answered":57.5840768702814,"users":8295,"visits_per_day":4468,"questions_per_day":12},{"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":2117,"answers":2895,"percent_answered":72.6499763816722,"users":5253,"visits_per_day":4082.5,"questions_per_day":8.28571428571429},{"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":907,"answers":1294,"percent_answered":90.4079382579934,"users":2038,"visits_per_day":1464,"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":898,"answers":3151,"percent_answered":95.5456570155902,"users":2625,"visits_per_day":577.5,"questions_per_day":1.5},{"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":874,"answers":1190,"percent_answered":90.9610983981693,"users":1522,"visits_per_day":1074,"questions_per_day":1.64285714285714},{"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":1581,"answers":2477,"percent_answered":90.0695762175838,"users":1641,"visits_per_day":2394,"questions_per_day":6.28571428571429},{"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":705,"answers":1207,"percent_answered":76.8794326241135,"users":4197,"visits_per_day":626.5,"questions_per_day":3.92857142857143},{"category":"culturerecreation","slug":"puzzling","url":"http://puzzling.stackexchange.com","description":"Q&A for those who study the creation and solving of puzzles","name":"Puzzling","creation_date":1400025600,"questions":1523,"answers":4150,"percent_answered":97.9645436638214,"users":5535,"visits_per_day":2605.5,"questions_per_day":10.7142857142857},{"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":2143,"answers":2778,"percent_answered":95.7536164255716,"users":1281,"visits_per_day":1136,"questions_per_day":7.78571428571429},{"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":1136,"answers":3197,"percent_answered":97.4471830985916,"users":1650,"visits_per_day":730,"questions_per_day":2.85714285714286},{"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":1086,"answers":1675,"percent_answered":80.2946593001842,"users":1460,"visits_per_day":2211,"questions_per_day":3.71428571428571},{"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":251,"answers":662,"percent_answered":99.601593625498,"users":929,"visits_per_day":46.5,"questions_per_day":0.5},{"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":730,"answers":1432,"percent_answered":94.3835616438356,"users":2602,"visits_per_day":291.5,"questions_per_day":2.64285714285714},{"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":1153,"answers":5526,"percent_answered":99.9132697311362,"users":4308,"visits_per_day":3230,"questions_per_day":11.2142857142857},{"category":"technology","slug":"ja-stackoverflow","url":"http://ja.stackoverflow.com","description":"Q&A for プログラマーとプログラミングに熱心の人","name":"スタック・オーバーフロー","creation_date":1410998400,"questions":1480,"answers":2443,"percent_answered":83.7162162162162,"users":6344,"visits_per_day":4014,"questions_per_day":20.2142857142857},{"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":1909,"answers":2997,"percent_answered":88.5280251440545,"users":2537,"visits_per_day":1010.5,"questions_per_day":11.6428571428571},{"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":337,"answers":499,"percent_answered":86.9436201780415,"users":863,"visits_per_day":116.5,"questions_per_day":2.64285714285714},{"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":557,"answers":771,"percent_answered":78.6355475763016,"users":991,"visits_per_day":191.5,"questions_per_day":5.78571428571429},{"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":463,"answers":1412,"percent_answered":98.7041036717063,"users":1907,"visits_per_day":697.5,"questions_per_day":4},{"category":"technology","slug":"engineering","url":"http://engineering.stackexchange.com","description":"Q&A for professionals and students of engineering","name":"Engineering","creation_date":1421712000,"questions":236,"answers":376,"percent_answered":81.3559322033898,"users":577,"visits_per_day":331,"questions_per_day":6.85714285714286},{"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":192,"answers":273,"percent_answered":94.2708333333333,"users":341,"visits_per_day":71,"questions_per_day":4.57142857142857}],"creation_date":1424280722668} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment