├── index.html ├── lifeontheisland ├── bat.png ├── key.png ├── map.png ├── house.png ├── squirrel.png ├── index.html ├── style.css ├── main.js ├── life_on_the_island.js └── ink.js └── sociocracy ├── diagram2.png ├── newdiagram.png ├── newdiagram2.png ├── manifest.json ├── d3-save-svg-min.js ├── normalize.css └── index.html /index.html: -------------------------------------------------------------------------------- 1 | Placeholder. -------------------------------------------------------------------------------- /lifeontheisland/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/lifeontheisland/bat.png -------------------------------------------------------------------------------- /lifeontheisland/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/lifeontheisland/key.png -------------------------------------------------------------------------------- /lifeontheisland/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/lifeontheisland/map.png -------------------------------------------------------------------------------- /sociocracy/diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/sociocracy/diagram2.png -------------------------------------------------------------------------------- /lifeontheisland/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/lifeontheisland/house.png -------------------------------------------------------------------------------- /sociocracy/newdiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/sociocracy/newdiagram.png -------------------------------------------------------------------------------- /lifeontheisland/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/lifeontheisland/squirrel.png -------------------------------------------------------------------------------- /sociocracy/newdiagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbutter/bitbutter.github.io/master/sociocracy/newdiagram2.png -------------------------------------------------------------------------------- /sociocracy/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Sociocracy Org Chart", 3 | "name": "Sociocracy Org Chart Maker", 4 | "display": "standalone", /* Could be "fullscreen", "standalone", "minimal-ui", or "browser" */ 5 | "orientation": "landscape", 6 | "start_url": "index.html", 7 | "display": "fullscreen", 8 | } -------------------------------------------------------------------------------- /lifeontheisland/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |