Skip to content

Instantly share code, notes, and snippets.

View DaveSauce's full-sized avatar

Dave Bascom DaveSauce

View GitHub Profile
@dantonnoriega
dantonnoriega / us-state-ansi-fips.csv
Last active May 7, 2024 09:47
csv file of us state ansi fips codes that follows the us census variable names
stname st stusps
Alabama 01 AL
Alaska 02 AK
Arizona 04 AZ
Arkansas 05 AR
California 06 CA
Colorado 08 CO
Connecticut 09 CT
Delaware 10 DE
District of Columbia 11 DC
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active August 3, 2024 16:45
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>