Skip to content

Instantly share code, notes, and snippets.

View HarryStevens's full-sized avatar

Harry Stevens HarryStevens

View GitHub Profile
@HarryStevens
HarryStevens / index.js
Last active May 16, 2017 09:04
Node Utility Functions
// Get all directories in another directory
// Requires "fs"
function getDirectories(path) {
return fs.readdirSync(path).filter(function (file) {
return fs.statSync(path + "/" + file).isDirectory();
});
}
// List all files in a directory
// Requires "fs"
@HarryStevens
HarryStevens / .block
Last active June 11, 2017 08:12
Sankey from CSV
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active June 11, 2017 08:14
Sankey from CSV II
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active June 11, 2017 08:15
Sankey from CSV III
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active April 14, 2017 19:53
jQuery Bar Chart
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active December 20, 2024 05:13
Contiguous Cartogram I
height: 530
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active December 18, 2019 16:18
Population Pyramid
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active July 24, 2017 08:03
Barbell Chart
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active July 24, 2017 13:08
Staggered Barbells
license: gpl-3.0
@HarryStevens
HarryStevens / .block
Last active January 20, 2020 21:05
Axis Transition
license: gpl-3.0
height: 100