Skip to content

Instantly share code, notes, and snippets.

View monte-hayward's full-sized avatar

Monte Hayward monte-hayward

  • Greenfield Innovation Group
  • San Francisco Bay Area, CA
View GitHub Profile
@monte-hayward
monte-hayward / resume.json
Created April 19, 2021 16:29
resume.json
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Monte Hayward",
"label": "Engineer | Architect | Core Product Developer",
"image": "https://avatars.githubusercontent.com/u/3780422?s=400&u=dab6e843db062963a4b2f12e12e7813706a8ac49&v=4",
"email": "info@montehayward.com",
"url": "https://monte.io",
"summary": "Software Leader: Employs a user-experience-first approach to envision, engineer, and launch scalable software designs. Ensures seamless end-user experiences and predictable state management.",
"location": {
@monte-hayward
monte-hayward / BraveReader.sh
Last active July 18, 2019 21:42
launch Brave Browser with Reader View - MacOS
# from Terminal.app
open '/Applications/Brave Browser.app' --args --enable-dom-distiller
@monte-hayward
monte-hayward / .bash_profile
Last active February 25, 2016 19:40
Handy Aliases for OS X bash 4
#!/bin/bash
export PS1=\$
## CONVENIENCE ALIASES for Bash 4 on OS X ##
## Monte Hayward
alias justnow='history | sort -nr | less'
alias envbash='source ~/.bash_profile'
alias see='ls -lpa $1' # list hidden files
alias nu='ls -lposth . | head' # list n newest files
alias lsd="ls -p $1 | grep '/'" # list only directories
@monte-hayward
monte-hayward / .gitignore
Last active August 29, 2015 14:22
D3 Bubble map
.DS_Store
build
node_modules
@monte-hayward
monte-hayward / .gitignore
Last active August 29, 2015 14:22
Map using TopoJSON
ne_10m_admin_0_map_subunits
ne_10m_populated_places
@monte-hayward
monte-hayward / data.tsv
Last active August 29, 2015 14:22
Stacked-to-Multiples
group date value
1 2008-01 10
1 2008-04 8
1 2008-07 14
1 2008-10 9
1 2009-01 10
1 2009-04 8
1 2009-07 14
1 2009-10 9
2 2008-01 3
@monte-hayward
monte-hayward / index.html
Last active August 29, 2015 14:22
bar chart with ordinal scale
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>D3 Bar Chart</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<svg class="chart vert"></svg>
<script src="http://d3js.org/d3.v3.js" charset="utf-8"></script>