Skip to content

Instantly share code, notes, and snippets.

View jasonmorganson's full-sized avatar

Jason Morganson jasonmorganson

View GitHub Profile
ansifilter
antibody
asciidoc
autoconf
autoenv
automake
awscli
bc
bzip2
caddy
import test from 'tape';
// For each unit test you write,
// answer these questions:
test('What component aspect are you testing?', assert => {
const actual = 'What is the actual output?';
const expected = 'What is the expected output?';
assert.equal(actual, expected,
'What should the feature do?');
@jasonmorganson
jasonmorganson / vim.rc
Created September 25, 2016 18:34
Browser Vim Settings
let blacklists = ["https://trello.com/*","https://inbox.google.com/*"]
@jasonmorganson
jasonmorganson / brew.sh
Created December 29, 2016 06:07
Install and setup Homebrew
#!/usr/bin/env sh
# Install Brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Get Brew taps
curl https://gist.githubusercontent.com/jasonmorganson/da90bc75a6813ffb1f72/raw/7ad39ddeb7b0be152b4b1abd2a08aa9f78f3ff7d/Brewtaps > Brewtaps
# Get Brew list
curl https://gist.githubusercontent.com/jasonmorganson/4e99ed54bdcb24f7ea4d/raw/2579e73690cdbda20f7b4cb2589a367312f600c6/Brewlist > Brewlist
@jasonmorganson
jasonmorganson / setup.sh
Last active August 20, 2020 23:18
Setup tools
#!/bin/sh
export NAME="Jason Morganson"
export EMAIL="[email protected]"
if ! command -v chezmoi > /dev/null
then
curl -sfL https://git.io/chezmoi | sh
PATH=./bin:$PATH
fi
@jasonmorganson
jasonmorganson / surfingkeys.js
Last active April 25, 2019 19:44
Configuration for SurfingKeys
if (window.location.origin === "https://inbox.google.com") {
unmap('e')
unmap('h')
unmap('j')
unmap('k')
unmap('l')
unmap('x')
}
else if (window.location.origin === "https://docs.google.com") {
#cloud-config
users:
- name: jasonmorganson
ssh-authorized-keys:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBKVQhqDHkBVjzhOow2aQ+CJ51gWAaBIu6UfOJ7BIuHBpHCt/J6erlPYwSgz7l/BVAWEQebgHZYQi12Cgf/1iinZTtQ/mVhHoc0qGCIQOcXmAkO9wTsFH3H5Oh9Nyum8+K//VfSeMQzQPRsPE/nQmpwvEqjidbtgvyNAbu8hiwSWYLXtGcsv0KjpXRGGSgH2rx1DrufIvfpOjC/bYe6ATcfReLR96jo7f1iE+DIS7WHT4txQ4moRwUdJRTNfymfbxdmAgdAO06yHEpie6H+TLOA4pYy+2VxL5OJt2VDy03YqsaL7o29VUBSAl3fXicFhuqM4JbOSH/PmhDzUffANx/ [email protected]" >> $USERHOME/.ssh/authorized_keys
sudo: ['ALL=(ALL) NOPASSWD:ALL']
groups: sudo
shell: /bin/zsh
packages:
- zsh
tap "azure/draft"
tap "boz/repo"
tap "browsh-org/browsh"
tap "contribsys/faktory"
tap "datawire/blackbird"
tap "davrodpin/mole"
tap "derailed/k9s"
tap "dtan4/dtan4"
tap "fishtown-analytics/dbt"
tap "fluidkeys/tap"
@jasonmorganson
jasonmorganson / Brewfile
Last active June 12, 2023 03:08
MacOS Brewfile
tap "argoproj/tap"
tap "azure/draft"
tap "boz/repo"
tap "browsh-org/browsh"
tap "contribsys/faktory"
tap "datawire/blackbird"
tap "davrodpin/mole"
tap "derailed/k9s"
tap "dtan4/dtan4"
tap "eko/tap"
@jasonmorganson
jasonmorganson / Brewfile
Last active October 12, 2019 23:08
Linux Brewfile
tap "derailed/k9s"
tap "fishtown-analytics/dbt"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/core"
tap "homebrew/services"
tap "linuxbrew/xorg"
tap "loadimpact/k6"
tap "txn2/tap"
tap "wagoodman/dive"