Skip to content

Instantly share code, notes, and snippets.

View NPashaP's full-sized avatar

Pasha NPashaP

  • Available for consulting
  • Columbus, Ohio
View GitHub Profile
@NPashaP
NPashaP / gradientPie.js
Last active August 29, 2015 13:58
Gradient Pie
!function(){
var gradPie={};
var pie = d3.layout.pie().sort(null).value(function(d) {return d.value;});
createGradients = function(defs, colors, r){
var gradient = defs.selectAll('.gradient')
.data(colors).enter().append("radialGradient")
.attr("id", function(d,i){return "gradient" + i;})
.attr("gradientUnits", "userSpaceOnUse")
@NPashaP
NPashaP / index.html
Last active August 29, 2015 14:08
Nails And Strings
<!DOCTYPE html>
<meta charset="utf-8">
<style>
circle{
fill:#e0e0e0;
}
</style>
<body>
<section style="display:block;">
Design: <select onchange="changeArt(this)"></select>
@NPashaP
NPashaP / goL games.js
Last active August 29, 2015 14:13
Conway's Game of Life
var games ={// list of sample games.
Planes:(function(){
var r = [
[ , , , , , , , , ,1, , , , , , , , , , , , , , , , , , , , , , , , , , ,0],
[ , , , , , , ,1, ,1, , , , , , , , , , , , , , , , , , , , , , , , , , ,0],
[ , , , , , ,1, ,1, , , , , , , , , , , , , , , , , ,1, , , , , , , , , ,0],
[1,1, , , , 1, , ,1, , , , , , , , , , , , , , , , , 1,1, , , , , , , , , ,0],
[1,1, , , , ,1, ,1, , , , , , , , , , , , , , , ,1, 1, , , , , 1,1, , , , ,0],
[ , , , , , , ,1, ,1, , , , , , , , , , , , , ,1,1, 1, , , , , 1,1, , ,1, 1,0],
[ , , , , , , , , ,1, , , , , , , , , , , , , , ,1, 1, , , , , 1,1, , ,1, 1,0],
@NPashaP
NPashaP / index.html
Last active August 29, 2015 14:14
Linear Model
<!DOCTYPE html>
<meta charset="utf-8">
<style>
circle{
fill:#DE3D71;
}
rect{
stroke:none;
}
line{
@NPashaP
NPashaP / .block
Last active June 22, 2016 04:26
Gauge I
license: gpl-3.0
@NPashaP
NPashaP / .block
Last active June 23, 2016 02:59
Gauge III
license: gpl-3.0
@NPashaP
NPashaP / .block
Last active July 31, 2016 21:01
Chord - startAngle
license: gpl-3.0
@NPashaP
NPashaP / .block
Last active July 31, 2016 21:03
Chord - sort
license: gpl-3.0
@NPashaP
NPashaP / .block
Last active July 31, 2016 21:03
Chord - labelPadding
license: gpl-3.0
@NPashaP
NPashaP / .block
Last active July 31, 2016 21:04
Chord - padding
license: gpl-3.0