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> | |
<html> | |
<head> | |
<style> | |
body { | |
background-color: #1e1e20; | |
} | |
</style> | |
<script src="//pixijs.download/v4.5.5/pixi.min.js"></script> | |
<script src="//d3js.org/d3.v3.min.js"></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
<body> | |
<style> | |
body { | |
background-color: #f6f1d5; | |
} | |
</style> | |
<svg id="barcode"></svg> |
We can't make this file beautiful and searchable because it's too large.
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
c,x,y | |
1,-114.99354553222656,36.032863616943359 | |
1,-115.16396331787109,36.11358642578125 | |
1,-115.16835784912109,36.117912292480469 | |
1,-71.364967346191406,44.047676086425781 | |
3,-73.353729248046875,40.324489593505859 | |
1,-73.411048889160156,40.703201293945313 | |
1,-73.52886962890625,41.0567626953125 | |
1,-73.564254760742187,40.670314788818359 | |
2,-73.606536865234375,40.778076171875 |
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"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> | |
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script> | |
<script src="textures.min.js"></script> | |
<style> |
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"> | |
<svg width="960" height="600"></svg> | |
<style> | |
body { | |
background-color: #171b1e; | |
} | |
</style> |
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: 10px sans-serif; | |
} | |
.axis path, | |
.axis line { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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"> | |
<body style="background-color:#000000"> | |
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
var width = 500, | |
height = 500; | |
var nodes = d3.range(width/2).map(function() { return {radius: Math.random()+ 1.0, angle: Math.random()*Math.PI*2} }); |
NewerOlder