Skip to content

Instantly share code, notes, and snippets.

@asuozzo
asuozzo / bwmapstyle.js
Created June 8, 2017 14:38
Custom black and white Google map style
map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: new google.maps.LatLng(43.946515, -72.677099),
mapTypeId: 'roadmap',
mapTypeControl: false,
streetViewControl: false,
fullscreenControl: false,
gestureHandling:'cooperative',
styles: [
{
@asuozzo
asuozzo / affordall.csv
Last active January 11, 2017 19:50
How Affordable Are U.S. States? D3 Diverging Bar Chart
state plusminus2014
Mississippi -13.3
Arkansas -12.5
Alabama -12.2
South Dakota -12.0
Kentucky -11.3
West Virginia -11.1
Ohio -10.7
Missouri -10.6
Oklahoma -9.9
@asuozzo
asuozzo / daysbetweendatesbetter.py
Created September 29, 2016 11:57
Better days between dates - Python
def isLeapYear(year):
if year % 4 == 0:
if year % 100 == 0 and year % 400 != 0:
return False
else:
return True
else:
return False
@asuozzo
asuozzo / daysbetweendates.py
Created September 29, 2016 11:17
Find the number of days between two dates - Python
def isLeapYear(year):
if year % 4 == 0:
if year % 100 == 0 and year % 400 != 0:
return False
else:
return True
else:
return False
@asuozzo
asuozzo / index.html
Last active August 30, 2016 20:46
Drop-down responsive bar chart
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" href="vtOverdoses.css" type="text/css" charset="utf-8">
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src = "https://code.jquery.com/jquery-3.1.0.min.js">
</script>
</head>
delegate num note
district delegates 11 Allegiances decided in March 1 primaries
super delegates 10 Vote for whomever they choose
additional delegates 5 Chosen by the district delegates at a June 11 meeting
@asuozzo
asuozzo / dairyproduction2014.csv
Last active November 25, 2015 02:53
U.S. Dairy Production by State, 2014
State milPounds
California 42337
Wisconsin 27795
Idaho 13873
New York 13733
Pennsylvania 10683
Texas 10310
Michigan 9609
Minnesota 9127
New Mexico 8105
@asuozzo
asuozzo / index.html
Last active November 21, 2015 01:11
d3 map of the USA
<!DOCTYPE html>
<meta charset="utf-8">
<title>USA Map</title>
<style>
body {
margin: 0;
background-color: rgb(0, 9, 129);
font-family: serif;
}
@asuozzo
asuozzo / index.html
Last active November 23, 2015 16:43
US Regional Milk Production
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>U.S. Regional Milk Production, 1970-2014</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<style type="text/css">
body {
margin: 0;
@asuozzo
asuozzo / index.html
Last active November 23, 2015 16:49
Books per Capita at Vermont Public Libraries
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="$1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Books per Capita at Vermont Libraries</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {