Skip to content

Instantly share code, notes, and snippets.

@neilhawkins
neilhawkins / sorting-array-of-objects.js
Last active August 29, 2015 14:02
Ways of sorting an array of objects
// Ways to sort an array of objects
var arr = [{"member_id":"40323","person_id":"24709","name":"Bridget Phillipson","party":"Labour","constituency":"Houghton and Sunderland South","office":[]},{"member_id":"40636","person_id":"11592","name":"Sharon Hodgson","party":"Labour","constituency":"Washington and Sunderland West","office":[]},{"member_id":"40592","person_id":"24710","name":"Julie Elliott","party":"Labour","constituency":"Sunderland Central","office":[]},{"member_id":"40068","person_id":"13814","name":"Naomi Long","party":"Alliance","constituency":"Belfast East","office":[]},{"member_id":"40428","person_id":"13852","name":"Ian Paisley Jnr","party":"DUP","constituency":"North Antrim"},{"member_id":"40653","person_id":"10858","name":"Pat Doherty","party":"Sinn Fein","constituency":"West Tyrone"},{"member_id":"40434","person_id":"11003","name":"Kevan Jones","party":"Labour","constituency":"North Durham","office":[]},{"member_id":"40606","person_id":"10626","name":"Steve Webb","party":"Liberal Democrat","c
@neilhawkins
neilhawkins / README.md
Last active August 29, 2015 13:56
My 10,000 pixel wide bar chart.

Why a bar chart for 800 rows of data will end in tears and repetitive strain injury.

Data is political donations above £7500 made to Labour, Conservative and Liberal Democrat parties in the United Kingdom between May 2010 and August 2013.

@neilhawkins
neilhawkins / gist:9069114
Created February 18, 2014 11:20
Newspaper circulation in dc js
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>dc.js Experiment</title>
<script src='bower_components/d3/d3.js' type='text/javascript'></script>
<script src='bower_components/crossfilter/crossfilter.js' type='text/javascript'></script>
<script src='dc.js' type='text/javascript'></script>