The Van der Grinten IV projection is available as d3.geo.vanDerGrinten4
in the geo.projection D3 plugin.
View README.md
View README.md
Zoomable Sunburst with Labels
View serialization_sql_dump_cleaner.sh
#!/bin/bash | |
################################################################## | |
# Licensed under GNU GPL v3 # | |
# regis.leroy@gmail.com # | |
# # | |
# DNS replacement scrpit in SQL dumps containing (also) PHP # | |
# serialized strings. # | |
# This script use bash and perl' perl is used to increment # | |
# serialized string length while performing DNS replacement # | |
# It also use sed for other basic DNS replacements # |
View hexagons.js
(function(){ | |
var canvas = document.getElementById('hexmap'); | |
var hexHeight, | |
hexRadius, | |
hexRectangleHeight, | |
hexRectangleWidth, | |
hexagonAngle = 0.523598776, // 30 degrees in radians | |
sideLength = 10, | |
boardWidth = 100, |