Last active
September 8, 2015 20:43
-
-
Save jonahwilliams/722d058fbacf630064bf to your computer and use it in GitHub Desktop.
Force Bubbles
This file contains hidden or 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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" | |
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<style> | |
.d3-tip { | |
line-height: 1; | |
background: white; | |
color: black; | |
text-align: center; | |
margin-top: 0px; | |
margin-bottom: 0px; | |
margin-left: -1px; | |
} | |
</style> | |
</head> | |
<body> | |
<svg width="960" height="500"></svg> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.7/d3-tip.min.js"></script> | |
<script> | |
var colors = [ | |
'rgb(255,255,217)', | |
'rgb(237,248,177)', | |
'rgb(199,233,180)', | |
'rgb(127,205,187)', | |
'rgb(65,182,196)', | |
'rgb(29,145,192)', | |
'rgb(34,94,168)', | |
'rgb(37,52,148)' | |
]; | |
var svg = d3.select("svg"); | |
var width = 960; | |
var height = 500; | |
tip = d3.tip().attr('class', 'd3-tip').html(function(d) { | |
return "<strong>" + d.name + "</strong> <span>" + | |
d.radius + "</span>"; | |
}); | |
svg.call(tip) | |
d3.json('reduced.json', function(err, data) { | |
var data = data.map(function(d) { | |
return { | |
'name': d[0], | |
'size': +d[1], | |
'word': d[0].length, | |
'radius': +d[1], | |
'group': d[0][0] | |
}; | |
}).filter(function(d) { | |
return d.size > 30; | |
}); | |
var root = data[0]; | |
root.fixed = true | |
root.size = 0; | |
var z = d3.scale.sqrt() | |
.range([2, 40]) | |
.domain([1, d3.max(data, function(d) { | |
return d.size; | |
})]); | |
var maximum = d3.max(data, function(d) { return d.size; }); | |
var c = d3.scale.quantize() | |
.range(colors) | |
.domain([ | |
d3.min(data, function(d) { return d.word; }), | |
d3.max(data, function(d) { return d.word; }) | |
]); | |
var force = d3.layout.force() | |
.gravity(0.05) | |
.charge(function(d, i) { return i ? 0 : -2000; }) | |
.nodes(data) | |
.size([width, height]); | |
force.start(); | |
var gnodes = svg.selectAll('g.gnode') | |
.data(data.slice(1)) | |
.enter() | |
.append('g') | |
.classed('gnode', true) | |
.call(force.drag); | |
var node = gnodes.append("circle") | |
.attr("class", "node") | |
.attr("cx", function(d) { return d.x; }) | |
.attr("cy", function(d) { return d.y; }) | |
.attr("r", function(d) { | |
return z(d.size); | |
}) | |
.style('alpha', 0.9) | |
.style('fill', function(d) { | |
return c(d.word); | |
}) | |
.on('mouseover', tip.show) | |
.on('mouseout', tip.hide); | |
var labels = gnodes.append("text") | |
.attr("dx", 12) | |
.attr("dy", ".35em") | |
.text(function(d) { | |
if (d.radius > 200) return d.name; | |
return; | |
}); | |
force.on("tick", function(e) { | |
var q = d3.geom.quadtree(data), | |
i = 0, | |
n = data.length; | |
while (++i < n) q.visit(collide(data[i])); | |
svg.selectAll("circle") | |
.attr("cx", function(d) { return d.x; }) | |
.attr("cy", function(d) { return d.y; }); | |
svg.selectAll("text") | |
.attr("x", function(d) { return d.x - 40; }) | |
.attr("y", function(d) { return d.y; }); | |
}); | |
function collide(node) { | |
var r = z(node.radius) + z(maximum), | |
nx1 = node.x - r, | |
nx2 = node.x + r, | |
ny1 = node.y - r, | |
ny2 = node.y + r; | |
return function(quad, x1, y1, x2, y2) { | |
if (quad.point && (quad.point !== node)) { | |
var x = node.x - quad.point.x, | |
y = node.y - quad.point.y, | |
l = Math.sqrt(x * x + y * y), | |
r = z(node.radius) + z(quad.point.radius) ; | |
if (l < r) { | |
l = (l - r) / l * .5; | |
node.x -= x *= l; | |
node.y -= y *= l; | |
quad.point.x += x; | |
quad.point.y += y; | |
} | |
} | |
return x1 > nx2 || x2 < nx1 || y1 > ny2 || y2 < ny1; | |
}; | |
} | |
}); | |
</script> | |
</body> | |
</html> |
This file contains hidden or 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
[ | |
[ | |
"brings", | |
6 | |
], | |
[ | |
"effects", | |
6 | |
], | |
[ | |
"tutorials", | |
6 | |
], | |
[ | |
"right", | |
6 | |
], | |
[ | |
"inside", | |
6 | |
], | |
[ | |
"bonfire", | |
6 | |
], | |
[ | |
"qune0mei7v", | |
6 | |
], | |
[ | |
"sign", | |
6 | |
], | |
[ | |
"current", | |
6 | |
], | |
[ | |
"scope", | |
6 | |
], | |
[ | |
"date", | |
6 | |
], | |
[ | |
"canvas", | |
6 | |
], | |
[ | |
"ble", | |
6 | |
], | |
[ | |
"nosql", | |
6 | |
], | |
[ | |
"philadelphia", | |
6 | |
], | |
[ | |
"0113", | |
6 | |
], | |
[ | |
"vim", | |
6 | |
], | |
[ | |
"nexperience", | |
6 | |
], | |
[ | |
"girls", | |
6 | |
], | |
[ | |
"also", | |
6 | |
], | |
[ | |
"riotjs", | |
6 | |
], | |
[ | |
"exp", | |
6 | |
], | |
[ | |
"xcode", | |
6 | |
], | |
[ | |
"equity", | |
6 | |
], | |
[ | |
"nzgb", | |
6 | |
], | |
[ | |
"telerik", | |
6 | |
], | |
[ | |
"melbourne", | |
6 | |
], | |
[ | |
"chat", | |
6 | |
], | |
[ | |
"coder", | |
6 | |
], | |
[ | |
"resources", | |
6 | |
], | |
[ | |
"let", | |
6 | |
], | |
[ | |
"technical", | |
6 | |
], | |
[ | |
"vacancy", | |
6 | |
], | |
[ | |
"k8elafmaf7", | |
6 | |
], | |
[ | |
"edition", | |
6 | |
], | |
[ | |
"hottest", | |
6 | |
], | |
[ | |
"command", | |
6 | |
], | |
[ | |
"much", | |
6 | |
], | |
[ | |
"websites", | |
6 | |
], | |
[ | |
"startupjobsbcn", | |
6 | |
], | |
[ | |
"searls", | |
6 | |
], | |
[ | |
"officially", | |
6 | |
], | |
[ | |
"toronto", | |
6 | |
], | |
[ | |
"exercises", | |
6 | |
], | |
[ | |
"tons", | |
6 | |
], | |
[ | |
"cycligent", | |
6 | |
], | |
[ | |
"marketing", | |
6 | |
], | |
[ | |
"offering", | |
6 | |
], | |
[ | |
"gluton", | |
6 | |
], | |
[ | |
"jag", | |
6 | |
], | |
[ | |
"half", | |
6 | |
], | |
[ | |
"increase", | |
6 | |
], | |
[ | |
"wcg1cpaifz", | |
6 | |
], | |
[ | |
"early", | |
6 | |
], | |
[ | |
"musichackfest", | |
6 | |
], | |
[ | |
"sanfrancisco", | |
6 | |
], | |
[ | |
"tried", | |
6 | |
], | |
[ | |
"photoshop", | |
6 | |
], | |
[ | |
"yo", | |
6 | |
], | |
[ | |
"7", | |
6 | |
], | |
[ | |
"iosprogramming", | |
6 | |
], | |
[ | |
"deploying", | |
6 | |
], | |
[ | |
"requires", | |
6 | |
], | |
[ | |
"products", | |
6 | |
], | |
[ | |
"fabrily", | |
6 | |
], | |
[ | |
"cloud", | |
6 | |
], | |
[ | |
"qs7heizpef", | |
6 | |
], | |
[ | |
"kallyas", | |
6 | |
], | |
[ | |
"yay", | |
6 | |
], | |
[ | |
"sofia", | |
6 | |
], | |
[ | |
"xss", | |
6 | |
], | |
[ | |
"universal", | |
6 | |
], | |
[ | |
"dynamic", | |
6 | |
], | |
[ | |
"ieaaunp0uy", | |
6 | |
], | |
[ | |
"logging", | |
6 | |
], | |
[ | |
"dom", | |
6 | |
], | |
[ | |
"bad", | |
6 | |
], | |
[ | |
"australia", | |
6 | |
], | |
[ | |
"periscope", | |
6 | |
], | |
[ | |
"lovely", | |
6 | |
], | |
[ | |
"ii", | |
6 | |
], | |
[ | |
"agile", | |
6 | |
], | |
[ | |
"golang", | |
6 | |
], | |
[ | |
"making", | |
6 | |
], | |
[ | |
"snr", | |
6 | |
], | |
[ | |
"switch", | |
6 | |
], | |
[ | |
"black", | |
6 | |
], | |
[ | |
"affordable", | |
6 | |
], | |
[ | |
"different", | |
6 | |
], | |
[ | |
"videos", | |
6 | |
], | |
[ | |
"important", | |
6 | |
], | |
[ | |
"iamfranq", | |
6 | |
], | |
[ | |
"firebase", | |
6 | |
], | |
[ | |
"1wzb9wqlgd", | |
6 | |
], | |
[ | |
"share", | |
6 | |
], | |
[ | |
"numbers", | |
6 | |
], | |
[ | |
"guadalajara", | |
6 | |
], | |
[ | |
"interactive", | |
6 | |
], | |
[ | |
"mountain", | |
6 | |
], | |
[ | |
"interfaces", | |
6 | |
], | |
[ | |
"backend", | |
6 | |
], | |
[ | |
"cut", | |
6 | |
], | |
[ | |
"beyondsoft", | |
6 | |
], | |
[ | |
"engineering", | |
6 | |
], | |
[ | |
"ref", | |
6 | |
], | |
[ | |
"mid", | |
6 | |
], | |
[ | |
"request", | |
6 | |
], | |
[ | |
"timing", | |
6 | |
], | |
[ | |
"latest", | |
6 | |
], | |
[ | |
"dzwkqvfbie", | |
6 | |
], | |
[ | |
"functional", | |
6 | |
], | |
[ | |
"limited", | |
6 | |
], | |
[ | |
"blue", | |
6 | |
], | |
[ | |
"would", | |
6 | |
], | |
[ | |
"aymysbasvl", | |
6 | |
], | |
[ | |
"though", | |
6 | |
], | |
[ | |
"adding", | |
6 | |
], | |
[ | |
"games", | |
6 | |
], | |
[ | |
"hearts", | |
6 | |
], | |
[ | |
"medium", | |
6 | |
], | |
[ | |
"tip", | |
6 | |
], | |
[ | |
"weird", | |
6 | |
], | |
[ | |
"offers", | |
6 | |
], | |
[ | |
"ike7kk2q4q", | |
6 | |
], | |
[ | |
"jobsliveuk", | |
6 | |
], | |
[ | |
"y6lhysnbwt", | |
6 | |
], | |
[ | |
"barcelona", | |
6 | |
], | |
[ | |
"emberjs", | |
6 | |
], | |
[ | |
"cedric_exbrayat", | |
6 | |
], | |
[ | |
"wrote", | |
6 | |
], | |
[ | |
"webprogrammer", | |
6 | |
], | |
[ | |
"f9z4kecyak", | |
6 | |
], | |
[ | |
"initials", | |
6 | |
], | |
[ | |
"aspnet", | |
6 | |
], | |
[ | |
"javascriptdeveloper", | |
6 | |
], | |
[ | |
"webapp", | |
6 | |
], | |
[ | |
"lightweight", | |
6 | |
], | |
[ | |
"nget", | |
7 | |
], | |
[ | |
"qixskyyhr6", | |
7 | |
], | |
[ | |
"formvalidation", | |
7 | |
], | |
[ | |
"role", | |
7 | |
], | |
[ | |
"thespite", | |
7 | |
], | |
[ | |
"opinionated", | |
7 | |
], | |
[ | |
"louisville", | |
7 | |
], | |
[ | |
"internet", | |
7 | |
], | |
[ | |
"deploy", | |
7 | |
], | |
[ | |
"sites", | |
7 | |
], | |
[ | |
"single", | |
7 | |
], | |
[ | |
"levels", | |
7 | |
], | |
[ | |
"spring", | |
7 | |
], | |
[ | |
"oracle", | |
7 | |
], | |
[ | |
"send", | |
7 | |
], | |
[ | |
"immutability", | |
7 | |
], | |
[ | |
"static", | |
7 | |
], | |
[ | |
"comparison", | |
7 | |
], | |
[ | |
"manchester", | |
7 | |
], | |
[ | |
"robots", | |
7 | |
], | |
[ | |
"unity3d", | |
7 | |
], | |
[ | |
"cms", | |
7 | |
], | |
[ | |
"secure", | |
7 | |
], | |
[ | |
"hl7", | |
7 | |
], | |
[ | |
"creates", | |
7 | |
], | |
[ | |
"jobhero", | |
7 | |
], | |
[ | |
"lineup", | |
7 | |
], | |
[ | |
"principal", | |
7 | |
], | |
[ | |
"car", | |
7 | |
], | |
[ | |
"mxxc5nwijb", | |
7 | |
], | |
[ | |
"modular", | |
7 | |
], | |
[ | |
"real", | |
7 | |
], | |
[ | |
"beyond", | |
7 | |
], | |
[ | |
"x661ps3kmq", | |
7 | |
], | |
[ | |
"used", | |
7 | |
], | |
[ | |
"jsp", | |
7 | |
], | |
[ | |
"webvr", | |
7 | |
], | |
[ | |
"2014", | |
7 | |
], | |
[ | |
"samsung", | |
7 | |
], | |
[ | |
"uxdesign", | |
7 | |
], | |
[ | |
"clojurescript", | |
7 | |
], | |
[ | |
"k113aamz69", | |
7 | |
], | |
[ | |
"amazing", | |
7 | |
], | |
[ | |
"enjoy", | |
7 | |
], | |
[ | |
"basic", | |
7 | |
], | |
[ | |
"finally", | |
7 | |
], | |
[ | |
"manningbooks", | |
7 | |
], | |
[ | |
"designer", | |
7 | |
], | |
[ | |
"3rd", | |
7 | |
], | |
[ | |
"anyone", | |
7 | |
], | |
[ | |
"here's", | |
7 | |
], | |
[ | |
"road", | |
7 | |
], | |
[ | |
"component", | |
7 | |
], | |
[ | |
"goos", | |
7 | |
], | |
[ | |
"blogging", | |
7 | |
], | |
[ | |
"purpose", | |
7 | |
], | |
[ | |
"task", | |
7 | |
], | |
[ | |
"saas", | |
7 | |
], | |
[ | |
"typescriptlang", | |
7 | |
], | |
[ | |
"rutmqpmcjb", | |
7 | |
], | |
[ | |
"dhoko_", | |
7 | |
], | |
[ | |
"objects", | |
7 | |
], | |
[ | |
"30", | |
7 | |
], | |
[ | |
"cylon", | |
7 | |
], | |
[ | |
"calling", | |
7 | |
], | |
[ | |
"nnov", | |
7 | |
], | |
[ | |
"multi", | |
7 | |
], | |
[ | |
"autodesk", | |
7 | |
], | |
[ | |
"isolated", | |
7 | |
], | |
[ | |
"itjobs", | |
7 | |
], | |
[ | |
"casting", | |
7 | |
], | |
[ | |
"gklvqyped0", | |
7 | |
], | |
[ | |
"git", | |
7 | |
], | |
[ | |
"faster", | |
7 | |
], | |
[ | |
"8ed83azywj", | |
7 | |
], | |
[ | |
"clone", | |
7 | |
], | |
[ | |
"sure", | |
7 | |
], | |
[ | |
"multiple", | |
7 | |
], | |
[ | |
"ways", | |
7 | |
], | |
[ | |
"short", | |
7 | |
], | |
[ | |
"rails", | |
7 | |
], | |
[ | |
"reach", | |
7 | |
], | |
[ | |
"demos", | |
7 | |
], | |
[ | |
"hadoop", | |
7 | |
], | |
[ | |
"akjivx0c5z", | |
7 | |
], | |
[ | |
"backbonejs", | |
7 | |
], | |
[ | |
"sinon", | |
7 | |
], | |
[ | |
"last", | |
7 | |
], | |
[ | |
"codepen", | |
7 | |
], | |
[ | |
"webpack", | |
8 | |
], | |
[ | |
"creative", | |
8 | |
], | |
[ | |
"years", | |
8 | |
], | |
[ | |
"going", | |
8 | |
], | |
[ | |
"technology", | |
8 | |
], | |
[ | |
"weekly", | |
8 | |
], | |
[ | |
"ad", | |
8 | |
], | |
[ | |
"th", | |
8 | |
], | |
[ | |
"github", | |
8 | |
], | |
[ | |
"introduction", | |
8 | |
], | |
[ | |
"currently", | |
8 | |
], | |
[ | |
"paloalto", | |
8 | |
], | |
[ | |
"community", | |
8 | |
], | |
[ | |
"cdjt3vm7ei", | |
8 | |
], | |
[ | |
"malware", | |
8 | |
], | |
[ | |
"scene", | |
8 | |
], | |
[ | |
"sq0wogjvdk", | |
8 | |
], | |
[ | |
"inc", | |
8 | |
], | |
[ | |
"di", | |
8 | |
], | |
[ | |
"adblock", | |
8 | |
], | |
[ | |
"animations", | |
8 | |
], | |
[ | |
"ankgoxda6t", | |
8 | |
], | |
[ | |
"sublime", | |
8 | |
], | |
[ | |
"overview", | |
8 | |
], | |
[ | |
"desktop", | |
8 | |
], | |
[ | |
"throw", | |
8 | |
], | |
[ | |
"lot", | |
8 | |
], | |
[ | |
"redux", | |
8 | |
], | |
[ | |
"strings", | |
8 | |
], | |
[ | |
"month", | |
8 | |
], | |
[ | |
"solving", | |
8 | |
], | |
[ | |
"event", | |
8 | |
], | |
[ | |
"graduate", | |
8 | |
], | |
[ | |
"wow", | |
8 | |
], | |
[ | |
"svg", | |
8 | |
], | |
[ | |
"click", | |
8 | |
], | |
[ | |
"focused", | |
8 | |
], | |
[ | |
"jeremylikness", | |
8 | |
], | |
[ | |
"final", | |
8 | |
], | |
[ | |
"capture", | |
8 | |
], | |
[ | |
"tweetmyjobs", | |
8 | |
], | |
[ | |
"modern", | |
8 | |
], | |
[ | |
"www", | |
8 | |
], | |
[ | |
"perl", | |
8 | |
], | |
[ | |
"group", | |
8 | |
], | |
[ | |
"bullshit", | |
8 | |
], | |
[ | |
"thing", | |
8 | |
], | |
[ | |
"angularjsfan", | |
8 | |
], | |
[ | |
"morning", | |
8 | |
], | |
[ | |
"unittest", | |
8 | |
], | |
[ | |
"authentication", | |
8 | |
], | |
[ | |
"needs", | |
8 | |
], | |
[ | |
"services", | |
8 | |
], | |
[ | |
"bhalp1", | |
8 | |
], | |
[ | |
"connecting", | |
8 | |
], | |
[ | |
"iterators", | |
8 | |
], | |
[ | |
"private", | |
8 | |
], | |
[ | |
"li", | |
8 | |
], | |
[ | |
"devtools", | |
8 | |
], | |
[ | |
"it's", | |
8 | |
], | |
[ | |
"s8a4ph2rce", | |
8 | |
], | |
[ | |
"started", | |
8 | |
], | |
[ | |
"feathers", | |
8 | |
], | |
[ | |
"mwfr8pg1tn", | |
8 | |
], | |
[ | |
"days", | |
8 | |
], | |
[ | |
"30i3xv3dvg", | |
8 | |
], | |
[ | |
"flow", | |
8 | |
], | |
[ | |
"conference", | |
8 | |
], | |
[ | |
"nc", | |
8 | |
], | |
[ | |
"infoworld", | |
8 | |
], | |
[ | |
"list", | |
8 | |
], | |
[ | |
"september", | |
8 | |
], | |
[ | |
"loops", | |
8 | |
], | |
[ | |
"fhir", | |
8 | |
], | |
[ | |
"find", | |
8 | |
], | |
[ | |
"slides", | |
8 | |
], | |
[ | |
"machine", | |
9 | |
], | |
[ | |
"re", | |
9 | |
], | |
[ | |
"object", | |
9 | |
], | |
[ | |
"xml", | |
9 | |
], | |
[ | |
"javascriptdaily", | |
9 | |
], | |
[ | |
"social", | |
9 | |
], | |
[ | |
"workathome", | |
9 | |
], | |
[ | |
"hello", | |
9 | |
], | |
[ | |
"minimalist", | |
9 | |
], | |
[ | |
"etc", | |
9 | |
], | |
[ | |
"ca", | |
9 | |
], | |
[ | |
"vs", | |
9 | |
], | |
[ | |
"com", | |
9 | |
], | |
[ | |
"remember", | |
9 | |
], | |
[ | |
"allsecretcoding", | |
9 | |
], | |
[ | |
"csharp", | |
9 | |
], | |
[ | |
"required", | |
9 | |
], | |
[ | |
"hands", | |
9 | |
], | |
[ | |
"keep", | |
9 | |
], | |
[ | |
"lists", | |
9 | |
], | |
[ | |
"gallery", | |
9 | |
], | |
[ | |
"goldcomputing", | |
9 | |
], | |
[ | |
"speaker", | |
9 | |
], | |
[ | |
"training", | |
9 | |
], | |
[ | |
"meetup", | |
9 | |
], | |
[ | |
"popular", | |
9 | |
], | |
[ | |
"ajax", | |
9 | |
], | |
[ | |
"14", | |
9 | |
], | |
[ | |
"ember", | |
9 | |
], | |
[ | |
"8", | |
9 | |
], | |
[ | |
"alternative", | |
9 | |
], | |
[ | |
"excited", | |
9 | |
], | |
[ | |
"f", | |
9 | |
], | |
[ | |
"virtual", | |
9 | |
], | |
[ | |
"johndyer", | |
9 | |
], | |
[ | |
"wanted", | |
9 | |
], | |
[ | |
"experts", | |
9 | |
], | |
[ | |
"level", | |
9 | |
], | |
[ | |
"devs", | |
9 | |
], | |
[ | |
"1qf3dfptos", | |
9 | |
], | |
[ | |
"reorderable", | |
9 | |
], | |
[ | |
"follow", | |
9 | |
], | |
[ | |
"prkrzj4kdw", | |
9 | |
], | |
[ | |
"architect", | |
9 | |
], | |
[ | |
"apptua", | |
9 | |
], | |
[ | |
"fullstackfest", | |
9 | |
], | |
[ | |
"80", | |
9 | |
], | |
[ | |
"makeiteasy", | |
9 | |
], | |
[ | |
"webdeveloper", | |
9 | |
], | |
[ | |
"take", | |
10 | |
], | |
[ | |
"nativescript", | |
10 | |
], | |
[ | |
"rubyonrails", | |
10 | |
], | |
[ | |
"tx", | |
10 | |
], | |
[ | |
"experience", | |
10 | |
], | |
[ | |
"sometimes", | |
10 | |
], | |
[ | |
"input", | |
10 | |
], | |
[ | |
"atlanta", | |
10 | |
], | |
[ | |
"chance", | |
10 | |
], | |
[ | |
"db12c", | |
10 | |
], | |
[ | |
"nif", | |
10 | |
], | |
[ | |
"welcome", | |
10 | |
], | |
[ | |
"concurrent", | |
10 | |
], | |
[ | |
"article", | |
10 | |
], | |
[ | |
"src", | |
10 | |
], | |
[ | |
"jobhero_io", | |
10 | |
], | |
[ | |
"recommendations", | |
10 | |
], | |
[ | |
"mongodb", | |
10 | |
], | |
[ | |
"newyork", | |
10 | |
], | |
[ | |
"javascr", | |
10 | |
], | |
[ | |
"you're", | |
10 | |
], | |
[ | |
"seriously", | |
10 | |
], | |
[ | |
"solution", | |
10 | |
], | |
[ | |
"growing", | |
10 | |
], | |
[ | |
"matching", | |
10 | |
], | |
[ | |
"retweet", | |
10 | |
], | |
[ | |
"flux", | |
10 | |
], | |
[ | |
"back", | |
10 | |
], | |
[ | |
"powerbi", | |
10 | |
], | |
[ | |
"material", | |
10 | |
], | |
[ | |
"studio", | |
10 | |
], | |
[ | |
"jjuffakis9", | |
10 | |
], | |
[ | |
"pro", | |
10 | |
], | |
[ | |
"hack", | |
10 | |
], | |
[ | |
"k4tz0tvzpe", | |
10 | |
], | |
[ | |
"immutable", | |
10 | |
], | |
[ | |
"demo", | |
10 | |
], | |
[ | |
"moar", | |
10 | |
], | |
[ | |
"coffeescript", | |
10 | |
], | |
[ | |
"essential", | |
10 | |
], | |
[ | |
"associates", | |
10 | |
], | |
[ | |
"nice", | |
10 | |
], | |
[ | |
"86", | |
10 | |
], | |
[ | |
"module", | |
10 | |
], | |
[ | |
"service", | |
11 | |
], | |
[ | |
"visual", | |
11 | |
], | |
[ | |
"system", | |
11 | |
], | |
[ | |
"email", | |
11 | |
], | |
[ | |
"tiny", | |
11 | |
], | |
[ | |
"d3", | |
11 | |
], | |
[ | |
"comments", | |
11 | |
], | |
[ | |
"developing", | |
11 | |
], | |
[ | |
"touch", | |
11 | |
], | |
[ | |
"issue", | |
11 | |
], | |
[ | |
"useless", | |
11 | |
], | |
[ | |
"ggkfxdzhzp", | |
11 | |
], | |
[ | |
"urgent", | |
11 | |
], | |
[ | |
"youtube", | |
11 | |
], | |
[ | |
"parts", | |
11 | |
], | |
[ | |
"say", | |
11 | |
], | |
[ | |
"beginner's", | |
11 | |
], | |
[ | |
"kmensah", | |
11 | |
], | |
[ | |
"11", | |
11 | |
], | |
[ | |
"broken", | |
11 | |
], | |
[ | |
"remote", | |
11 | |
], | |
[ | |
"scala", | |
11 | |
], | |
[ | |
"35", | |
11 | |
], | |
[ | |
"thebeebs", | |
11 | |
], | |
[ | |
"hey", | |
11 | |
], | |
[ | |
"codylindley", | |
11 | |
], | |
[ | |
"talking", | |
11 | |
], | |
[ | |
"improve", | |
11 | |
], | |
[ | |
"56", | |
11 | |
], | |
[ | |
"dublin", | |
11 | |
], | |
[ | |
"come", | |
11 | |
], | |
[ | |
"engine", | |
11 | |
], | |
[ | |
"ltd", | |
11 | |
], | |
[ | |
"ionic", | |
11 | |
], | |
[ | |
"getting", | |
11 | |
], | |
[ | |
"understanding", | |
12 | |
], | |
[ | |
"awesome", | |
12 | |
], | |
[ | |
"world", | |
12 | |
], | |
[ | |
"company", | |
12 | |
], | |
[ | |
"sydney", | |
12 | |
], | |
[ | |
"d", | |
12 | |
], | |
[ | |
"babel", | |
12 | |
], | |
[ | |
"android", | |
12 | |
], | |
[ | |
"compares", | |
12 | |
], | |
[ | |
"z4fo7ecwol", | |
12 | |
], | |
[ | |
"rocks", | |
12 | |
], | |
[ | |
"mvc", | |
12 | |
], | |
[ | |
"udemystartups", | |
12 | |
], | |
[ | |
"i'll", | |
12 | |
], | |
[ | |
"p2people", | |
12 | |
], | |
[ | |
"pretty", | |
12 | |
], | |
[ | |
"transpile", | |
12 | |
], | |
[ | |
"powerful", | |
12 | |
], | |
[ | |
"marketplace", | |
12 | |
], | |
[ | |
"side", | |
12 | |
], | |
[ | |
"enabled", | |
12 | |
], | |
[ | |
"testing", | |
12 | |
], | |
[ | |
"00", | |
12 | |
], | |
[ | |
"interesting", | |
12 | |
], | |
[ | |
"15", | |
12 | |
], | |
[ | |
"pill", | |
12 | |
], | |
[ | |
"careers", | |
12 | |
], | |
[ | |
"iosdev", | |
12 | |
], | |
[ | |
"measuring", | |
12 | |
], | |
[ | |
"nodevember", | |
12 | |
], | |
[ | |
"writing", | |
12 | |
], | |
[ | |
"approach", | |
12 | |
], | |
[ | |
"on_code", | |
12 | |
], | |
[ | |
"today", | |
12 | |
], | |
[ | |
"stackjs", | |
12 | |
], | |
[ | |
"loading", | |
12 | |
], | |
[ | |
"ihz7gi6hk0", | |
12 | |
], | |
[ | |
"easy", | |
13 | |
], | |
[ | |
"working", | |
13 | |
], | |
[ | |
"progr", | |
13 | |
], | |
[ | |
"nrotezvkpi", | |
13 | |
], | |
[ | |
"madewithangular", | |
13 | |
], | |
[ | |
"survey", | |
13 | |
], | |
[ | |
"tickets", | |
13 | |
], | |
[ | |
"security", | |
13 | |
], | |
[ | |
"gui", | |
13 | |
], | |
[ | |
"read", | |
13 | |
], | |
[ | |
"experienced", | |
13 | |
], | |
[ | |
"trends", | |
13 | |
], | |
[ | |
"step", | |
13 | |
], | |
[ | |
"mean", | |
13 | |
], | |
[ | |
"niivgtvctx", | |
13 | |
], | |
[ | |
"7yjaaus10m", | |
13 | |
], | |
[ | |
"plugin", | |
13 | |
], | |
[ | |
"laravelnews", | |
13 | |
], | |
[ | |
"tool", | |
13 | |
], | |
[ | |
"client", | |
13 | |
], | |
[ | |
"ng", | |
13 | |
], | |
[ | |
"jsx", | |
13 | |
], | |
[ | |
"isomorphic", | |
13 | |
], | |
[ | |
"sass", | |
13 | |
], | |
[ | |
"hxvngckzmy", | |
14 | |
], | |
[ | |
"release", | |
14 | |
], | |
[ | |
"san", | |
14 | |
], | |
[ | |
"5uskzpyamh", | |
14 | |
], | |
[ | |
"link", | |
14 | |
], | |
[ | |
"results", | |
14 | |
], | |
[ | |
"reasonsto", | |
14 | |
], | |
[ | |
"francisco", | |
14 | |
], | |
[ | |
"gamedev", | |
14 | |
], | |
[ | |
"scripts", | |
14 | |
], | |
[ | |
"leeds", | |
14 | |
], | |
[ | |
"napply", | |
14 | |
], | |
[ | |
"jdbc", | |
14 | |
], | |
[ | |
"xz", | |
14 | |
], | |
[ | |
"asp", | |
14 | |
], | |
[ | |
"drupal", | |
14 | |
], | |
[ | |
"user", | |
14 | |
], | |
[ | |
"properly", | |
14 | |
], | |
[ | |
"depth", | |
14 | |
], | |
[ | |
"twitter", | |
14 | |
], | |
[ | |
"deal", | |
14 | |
], | |
[ | |
"webservices", | |
14 | |
], | |
[ | |
"basket", | |
14 | |
], | |
[ | |
"workshop", | |
14 | |
], | |
[ | |
"26", | |
14 | |
], | |
[ | |
"seeking", | |
14 | |
], | |
[ | |
"lines", | |
14 | |
], | |
[ | |
"programmer", | |
14 | |
], | |
[ | |
"watch", | |
14 | |
], | |
[ | |
"ny", | |
14 | |
], | |
[ | |
"added", | |
14 | |
], | |
[ | |
"files", | |
14 | |
], | |
[ | |
"usa", | |
14 | |
], | |
[ | |
"jxozxacqrk", | |
14 | |
], | |
[ | |
"swift", | |
14 | |
], | |
[ | |
"basics", | |
15 | |
], | |
[ | |
"freelance", | |
15 | |
], | |
[ | |
"future", | |
15 | |
], | |
[ | |
"scratch", | |
15 | |
], | |
[ | |
"es2015", | |
15 | |
], | |
[ | |
"hire", | |
15 | |
], | |
[ | |
"swiftlang", | |
15 | |
], | |
[ | |
"look", | |
15 | |
], | |
[ | |
"000", | |
15 | |
], | |
[ | |
"lib", | |
15 | |
], | |
[ | |
"drag", | |
15 | |
], | |
[ | |
"procedures", | |
15 | |
], | |
[ | |
"make", | |
15 | |
], | |
[ | |
"digital", | |
15 | |
], | |
[ | |
"language", | |
15 | |
], | |
[ | |
"file", | |
15 | |
], | |
[ | |
"chicago", | |
15 | |
], | |
[ | |
"stored", | |
15 | |
], | |
[ | |
"bootstrap", | |
15 | |
], | |
[ | |
"got", | |
15 | |
], | |
[ | |
"java8", | |
15 | |
], | |
[ | |
"week", | |
15 | |
], | |
[ | |
"os", | |
15 | |
], | |
[ | |
"intro", | |
15 | |
], | |
[ | |
"creating", | |
15 | |
], | |
[ | |
"looks", | |
15 | |
], | |
[ | |
"opening", | |
15 | |
], | |
[ | |
"drop", | |
15 | |
], | |
[ | |
"bristol", | |
16 | |
], | |
[ | |
"site", | |
16 | |
], | |
[ | |
"wp", | |
16 | |
], | |
[ | |
"interested", | |
16 | |
], | |
[ | |
"domxss", | |
16 | |
], | |
[ | |
"starcraft", | |
16 | |
], | |
[ | |
"ff", | |
16 | |
], | |
[ | |
"x", | |
16 | |
], | |
[ | |
"functions", | |
16 | |
], | |
[ | |
"100", | |
16 | |
], | |
[ | |
"save", | |
16 | |
], | |
[ | |
"sink", | |
16 | |
], | |
[ | |
"42", | |
16 | |
], | |
[ | |
"'href'", | |
16 | |
], | |
[ | |
"exer", | |
16 | |
], | |
[ | |
"'javascript", | |
16 | |
], | |
[ | |
"supports", | |
16 | |
], | |
[ | |
"hot", | |
17 | |
], | |
[ | |
"came", | |
17 | |
], | |
[ | |
"examples", | |
17 | |
], | |
[ | |
"sr", | |
17 | |
], | |
[ | |
"andrew", | |
17 | |
], | |
[ | |
"seo", | |
17 | |
], | |
[ | |
"learninglaravel", | |
17 | |
], | |
[ | |
"thanks", | |
17 | |
], | |
[ | |
"care", | |
17 | |
], | |
[ | |
"connell", | |
17 | |
], | |
[ | |
"based", | |
17 | |
], | |
[ | |
"home", | |
17 | |
], | |
[ | |
"meteor", | |
17 | |
], | |
[ | |
"talk", | |
17 | |
], | |
[ | |
"easily", | |
17 | |
], | |
[ | |
"simple", | |
17 | |
], | |
[ | |
"text", | |
17 | |
], | |
[ | |
"preview", | |
17 | |
], | |
[ | |
"grunt", | |
17 | |
], | |
[ | |
"cambridge", | |
17 | |
], | |
[ | |
"meteorjs", | |
17 | |
], | |
[ | |
"class", | |
17 | |
], | |
[ | |
"lead", | |
17 | |
], | |
[ | |
"set", | |
18 | |
], | |
[ | |
"see", | |
18 | |
], | |
[ | |
"njavascript", | |
18 | |
], | |
[ | |
"type", | |
18 | |
], | |
[ | |
"server", | |
18 | |
], | |
[ | |
"google", | |
18 | |
], | |
[ | |
"day", | |
18 | |
], | |
[ | |
"iot", | |
18 | |
], | |
[ | |
"released", | |
18 | |
], | |
[ | |
"gulp", | |
18 | |
], | |
[ | |
"9", | |
18 | |
], | |
[ | |
"we're", | |
18 | |
], | |
[ | |
"made", | |
18 | |
], | |
[ | |
"dataviz", | |
18 | |
], | |
[ | |
"book", | |
18 | |
], | |
[ | |
"applications", | |
19 | |
], | |
[ | |
"open", | |
19 | |
], | |
[ | |
"startup", | |
19 | |
], | |
[ | |
"try", | |
19 | |
], | |
[ | |
"d3js", | |
19 | |
], | |
[ | |
"change", | |
19 | |
], | |
[ | |
"game", | |
19 | |
], | |
[ | |
"definitive", | |
19 | |
], | |
[ | |
"fe2u8m0s4t", | |
19 | |
], | |
[ | |
"k0xzziwmrz", | |
19 | |
], | |
[ | |
"junior", | |
19 | |
], | |
[ | |
"todocoders", | |
20 | |
], | |
[ | |
"source", | |
20 | |
], | |
[ | |
"really", | |
20 | |
], | |
[ | |
"location", | |
20 | |
], | |
[ | |
"function", | |
20 | |
], | |
[ | |
"facebook", | |
20 | |
], | |
[ | |
"upup", | |
20 | |
], | |
[ | |
"debugging", | |
20 | |
], | |
[ | |
"works", | |
20 | |
], | |
[ | |
"jquery_rain", | |
20 | |
], | |
[ | |
"don't", | |
20 | |
], | |
[ | |
"nconsole", | |
20 | |
], | |
[ | |
"languages", | |
20 | |
], | |
[ | |
"know", | |
20 | |
], | |
[ | |
"online", | |
21 | |
], | |
[ | |
"turnbox", | |
21 | |
], | |
[ | |
"nashorn", | |
21 | |
], | |
[ | |
"serious", | |
21 | |
], | |
[ | |
"closures", | |
21 | |
], | |
[ | |
"contract", | |
21 | |
], | |
[ | |
"line", | |
22 | |
], | |
[ | |
"still", | |
22 | |
], | |
[ | |
"instagram", | |
22 | |
], | |
[ | |
"equivalents", | |
22 | |
], | |
[ | |
"call", | |
22 | |
], | |
[ | |
"built", | |
22 | |
], | |
[ | |
"top", | |
22 | |
], | |
[ | |
"turn", | |
23 | |
], | |
[ | |
"project", | |
23 | |
], | |
[ | |
"image", | |
23 | |
], | |
[ | |
"next", | |
23 | |
], | |
[ | |
"never", | |
23 | |
], | |
[ | |
"responsive", | |
23 | |
], | |
[ | |
"one", | |
23 | |
], | |
[ | |
"browsers", | |
23 | |
], | |
[ | |
"big", | |
23 | |
], | |
[ | |
"laravel", | |
23 | |
], | |
[ | |
"good", | |
23 | |
], | |
[ | |
"libraries", | |
23 | |
], | |
[ | |
"questions", | |
23 | |
], | |
[ | |
"learntocode", | |
23 | |
], | |
[ | |
"york", | |
23 | |
], | |
[ | |
"recruitment", | |
24 | |
], | |
[ | |
"page", | |
24 | |
], | |
[ | |
"hood", | |
24 | |
], | |
[ | |
"3d", | |
24 | |
], | |
[ | |
"must", | |
24 | |
], | |
[ | |
"freecodecamp", | |
24 | |
], | |
[ | |
"02108", | |
25 | |
], | |
[ | |
"unit", | |
25 | |
], | |
[ | |
"best", | |
25 | |
], | |
[ | |
"ambient", | |
25 | |
], | |
[ | |
"ux", | |
25 | |
], | |
[ | |
"ecmascript6", | |
25 | |
], | |
[ | |
"era", | |
25 | |
], | |
[ | |
"typescript", | |
25 | |
], | |
[ | |
"pls", | |
25 | |
], | |
[ | |
"tdd", | |
25 | |
], | |
[ | |
"guide", | |
25 | |
], | |
[ | |
"application", | |
25 | |
], | |
[ | |
"practical", | |
25 | |
], | |
[ | |
"dev", | |
25 | |
], | |
[ | |
"create", | |
25 | |
], | |
[ | |
"blog", | |
25 | |
], | |
[ | |
"offline", | |
26 | |
], | |
[ | |
"computing", | |
26 | |
], | |
[ | |
"log", | |
26 | |
], | |
[ | |
"help", | |
26 | |
], | |
[ | |
"admin", | |
26 | |
], | |
[ | |
"m", | |
26 | |
], | |
[ | |
"website", | |
26 | |
], | |
[ | |
"please", | |
26 | |
], | |
[ | |
"webdesign", | |
26 | |
], | |
[ | |
"oh", | |
26 | |
], | |
[ | |
"team", | |
27 | |
], | |
[ | |
"video", | |
27 | |
], | |
[ | |
"tools", | |
27 | |
], | |
[ | |
"go", | |
27 | |
], | |
[ | |
"net", | |
27 | |
], | |
[ | |
"4", | |
28 | |
], | |
[ | |
"portland", | |
28 | |
], | |
[ | |
"json", | |
28 | |
], | |
[ | |
"advanced", | |
28 | |
], | |
[ | |
"cool", | |
28 | |
], | |
[ | |
"tooling", | |
28 | |
], | |
[ | |
"want", | |
29 | |
], | |
[ | |
"tech", | |
29 | |
], | |
[ | |
"skills", | |
29 | |
], | |
[ | |
"berlin", | |
29 | |
], | |
[ | |
"script", | |
29 | |
], | |
[ | |
"methods", | |
30 | |
], | |
[ | |
"ecmascript", | |
30 | |
], | |
[ | |
"ruby", | |
30 | |
], | |
[ | |
"mobile", | |
30 | |
], | |
[ | |
"answer", | |
30 | |
], | |
[ | |
"trends2015", | |
30 | |
], | |
[ | |
"things", | |
31 | |
], | |
[ | |
"data", | |
31 | |
], | |
[ | |
"h", | |
31 | |
], | |
[ | |
"sql", | |
31 | |
], | |
[ | |
"dotnet", | |
31 | |
], | |
[ | |
"i'm", | |
32 | |
], | |
[ | |
"love", | |
32 | |
], | |
[ | |
"mysql", | |
32 | |
], | |
[ | |
"reflect", | |
32 | |
], | |
[ | |
"every", | |
32 | |
], | |
[ | |
"join", | |
32 | |
], | |
[ | |
"_ericelliott", | |
33 | |
], | |
[ | |
"theme", | |
33 | |
], | |
[ | |
"2015", | |
33 | |
], | |
[ | |
"better", | |
33 | |
], | |
[ | |
"prototyping", | |
33 | |
], | |
[ | |
"_c", | |
34 | |
], | |
[ | |
"need", | |
34 | |
], | |
[ | |
"performance", | |
34 | |
], | |
[ | |
"part", | |
34 | |
], | |
[ | |
"plugins", | |
34 | |
], | |
[ | |
"nwhat", | |
35 | |
], | |
[ | |
"5mj4j1hgle", | |
35 | |
], | |
[ | |
"ng_", | |
35 | |
], | |
[ | |
"cybercoders", | |
35 | |
], | |
[ | |
"ma", | |
35 | |
], | |
[ | |
"absurd", | |
35 | |
], | |
[ | |
"entrepreneurs", | |
35 | |
], | |
[ | |
"needed", | |
36 | |
], | |
[ | |
"execute", | |
36 | |
], | |
[ | |
"another", | |
36 | |
], | |
[ | |
"h1", | |
36 | |
], | |
[ | |
"weekend", | |
36 | |
], | |
[ | |
"manager", | |
36 | |
], | |
[ | |
"javascriptkicks", | |
36 | |
], | |
[ | |
"ios", | |
36 | |
], | |
[ | |
"god", | |
36 | |
], | |
[ | |
"restful", | |
36 | |
], | |
[ | |
"2", | |
37 | |
], | |
[ | |
"programmers", | |
37 | |
], | |
[ | |
"state", | |
37 | |
], | |
[ | |
"add", | |
38 | |
], | |
[ | |
"free", | |
38 | |
], | |
[ | |
"package", | |
39 | |
], | |
[ | |
"details", | |
39 | |
], | |
[ | |
"itjob", | |
39 | |
], | |
[ | |
"write", | |
40 | |
], | |
[ | |
"build", | |
40 | |
], | |
[ | |
"coding", | |
40 | |
], | |
[ | |
"test", | |
41 | |
], | |
[ | |
"get", | |
41 | |
], | |
[ | |
"someone", | |
41 | |
], | |
[ | |
"great", | |
42 | |
], | |
[ | |
"done", | |
42 | |
], | |
[ | |
"ui", | |
43 | |
], | |
[ | |
"alert", | |
44 | |
], | |
[ | |
"makes", | |
44 | |
], | |
[ | |
"courses", | |
44 | |
], | |
[ | |
"us", | |
46 | |
], | |
[ | |
"course", | |
47 | |
], | |
[ | |
"frontend", | |
48 | |
], | |
[ | |
"tutorial", | |
48 | |
], | |
[ | |
"6", | |
49 | |
], | |
[ | |
"w", | |
49 | |
], | |
[ | |
"0x6d6172696f", | |
49 | |
], | |
[ | |
"view", | |
49 | |
], | |
[ | |
"nhttps", | |
50 | |
], | |
[ | |
"senior", | |
50 | |
], | |
[ | |
"projects", | |
52 | |
], | |
[ | |
"animation", | |
52 | |
], | |
[ | |
"app", | |
52 | |
], | |
[ | |
"apps", | |
52 | |
], | |
[ | |
"3", | |
53 | |
], | |
[ | |
"10", | |
53 | |
], | |
[ | |
"reactjs", | |
53 | |
], | |
[ | |
"like", | |
53 | |
], | |
[ | |
"0", | |
55 | |
], | |
[ | |
"native", | |
55 | |
], | |
[ | |
"rreverser", | |
56 | |
], | |
[ | |
"fetish", | |
57 | |
], | |
[ | |
"nis", | |
57 | |
], | |
[ | |
"way", | |
57 | |
], | |
[ | |
"replying", | |
57 | |
], | |
[ | |
"development", | |
57 | |
], | |
[ | |
"beginners", | |
59 | |
], | |
[ | |
"api", | |
59 | |
], | |
[ | |
"london", | |
60 | |
], | |
[ | |
"use", | |
60 | |
], | |
[ | |
"missed", | |
61 | |
], | |
[ | |
"webdevelopment", | |
61 | |
], | |
[ | |
"python", | |
62 | |
], | |
[ | |
"question", | |
62 | |
], | |
[ | |
"5", | |
63 | |
], | |
[ | |
"building", | |
64 | |
], | |
[ | |
"developers", | |
65 | |
], | |
[ | |
"first", | |
65 | |
], | |
[ | |
"features", | |
66 | |
], | |
[ | |
"check", | |
67 | |
], | |
[ | |
"something", | |
67 | |
], | |
[ | |
"people", | |
69 | |
], | |
[ | |
"always", | |
70 | |
], | |
[ | |
"stack", | |
70 | |
], | |
[ | |
"noh", | |
70 | |
], | |
[ | |
"start", | |
70 | |
], | |
[ | |
"c", | |
71 | |
], | |
[ | |
"learning", | |
72 | |
], | |
[ | |
"full", | |
73 | |
], | |
[ | |
"wait", | |
73 | |
], | |
[ | |
"wordpress", | |
74 | |
], | |
[ | |
"framework", | |
74 | |
], | |
[ | |
"time", | |
75 | |
], | |
[ | |
"react", | |
75 | |
], | |
[ | |
"webdev", | |
77 | |
], | |
[ | |
"post", | |
79 | |
], | |
[ | |
"apply", | |
79 | |
], | |
[ | |
"career", | |
80 | |
], | |
[ | |
"nasdaq", | |
80 | |
], | |
[ | |
"using", | |
81 | |
], | |
[ | |
"fpga", | |
82 | |
], | |
[ | |
"labview", | |
82 | |
], | |
[ | |
"deepmind", | |
82 | |
], | |
[ | |
"forex", | |
82 | |
], | |
[ | |
"webcl", | |
82 | |
], | |
[ | |
"installed", | |
82 | |
], | |
[ | |
"vi", | |
83 | |
], | |
[ | |
"runs", | |
83 | |
], | |
[ | |
"sap", | |
84 | |
], | |
[ | |
"ibm", | |
84 | |
], | |
[ | |
"work", | |
86 | |
], | |
[ | |
"lt", | |
86 | |
], | |
[ | |
"frameworks", | |
87 | |
], | |
[ | |
"webgl", | |
87 | |
], | |
[ | |
"design", | |
87 | |
], | |
[ | |
"boston", | |
90 | |
], | |
[ | |
"without", | |
90 | |
], | |
[ | |
"angular", | |
93 | |
], | |
[ | |
"swiftonsecurity", | |
95 | |
], | |
[ | |
"diy", | |
98 | |
], | |
[ | |
"es6", | |
101 | |
], | |
[ | |
"java", | |
102 | |
], | |
[ | |
"css3", | |
105 | |
], | |
[ | |
"node", | |
111 | |
], | |
[ | |
"software", | |
112 | |
], | |
[ | |
"3", | |
113 | |
], | |
[ | |
"12345", | |
113 | |
], | |
[ | |
"via", | |
116 | |
], | |
[ | |
"replace", | |
117 | |
], | |
[ | |
"browser", | |
118 | |
], | |
[ | |
"nhttp", | |
121 | |
], | |
[ | |
"startups", | |
121 | |
], | |
[ | |
"engineer", | |
121 | |
], | |
[ | |
"nodejs", | |
125 | |
], | |
[ | |
"udemy", | |
128 | |
], | |
[ | |
"code", | |
133 | |
], | |
[ | |
"news", | |
133 | |
], | |
[ | |
"1", | |
142 | |
], | |
[ | |
"_", | |
142 | |
], | |
[ | |
"programming", | |
143 | |
], | |
[ | |
"amp", | |
145 | |
], | |
[ | |
"looking", | |
147 | |
], | |
[ | |
"hiring", | |
150 | |
], | |
[ | |
"library", | |
162 | |
], | |
[ | |
"front", | |
164 | |
], | |
[ | |
"new", | |
167 | |
], | |
[ | |
"end", | |
167 | |
], | |
[ | |
"nodenow", | |
171 | |
], | |
[ | |
"howto", | |
185 | |
], | |
[ | |
"gt", | |
203 | |
], | |
[ | |
"html5", | |
212 | |
], | |
[ | |
"php", | |
228 | |
], | |
[ | |
"jquery", | |
235 | |
], | |
[ | |
"learn", | |
239 | |
], | |
[ | |
"html", | |
239 | |
], | |
[ | |
"job", | |
656 | |
], | |
[ | |
"web", | |
287 | |
], | |
[ | |
"css", | |
290 | |
], | |
[ | |
"angularjs", | |
335 | |
], | |
[ | |
"developer", | |
545 | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment