Skip to content

Instantly share code, notes, and snippets.

View jstolle's full-sized avatar
🤡
Being a smart alec

Josh Tolle jstolle

🤡
Being a smart alec
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jstolle on github.
  • I am jstolle (https://keybase.io/jstolle) on keybase.
  • I have a public key ASBg0LSEXjGnnjsbwNqLMCbBvxWrPrLzTEZ7_3bi26E_KAo

To claim this, I am signing this object:

@jstolle
jstolle / tax_calc.sh
Created August 2, 2012 20:59
Marginal Taxes Owed
#!/bin/bash
GROSS=$1
if [[ -z "${GROSS}" ]];then
echo "usage $0 <income>" >&2
exit 1
fi
declare -a BRACKETS=('0 10' '8376 15' '34001 25' '82401 28' '171851 33' '373651 35')