This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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": "[email protected]", | |
"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": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from Terminal.app | |
open '/Applications/Brave Browser.app' --args --enable-dom-distiller |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
build | |
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ne_10m_admin_0_map_subunits | |
ne_10m_populated_places |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |