Skip to content

Instantly share code, notes, and snippets.

View ascott's full-sized avatar
✌️
👌 🌊 ☕️

Alanna Scott ascott

✌️
👌 🌊 ☕️
View GitHub Profile
@ascott
ascott / README.md
Created February 19, 2019 05:46 — forked from gabrielflorit/README.md
SCRIPT-8
@ascott
ascott / minimal loading spinner.html
Created February 15, 2017 23:17 — forked from anonymous/index.html
minimal loading spinner
<div class="loading"></div>
@ascott
ascott / README.md
Created September 28, 2016 01:36 — forked from sxywu/README.md
The Force with React + D3, Approach #3

React + D3 exploration with the force layout:

  • React for structure
  • D3 for data calculation
  • D3 for rendering

Pro:

  • The viz scales!
  • Use all the d3 functions!

Con:

@ascott
ascott / .block
Created September 28, 2016 00:12 — forked from mbostock/.block
Population Pyramid
license: gpl-3.0
@ascott
ascott / README.md
Last active September 27, 2016 04:35 — forked from syntagmatic/README.md
Hypersolids as PNG's
@ascott
ascott / exportjson.js
Created February 29, 2012 04:41 — forked from pamelafox/exportjson.js
Google Spreadsheet JSON Export
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
function exportAllSheets() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheets = ss.getSheets();
var sheetsData = {};
for (var i = 0; i < sheets.length; i++) {
var sheet = sheets[i];
var rowsData = getRowsData_(sheet);