JD/MBAs are skilled: they think strategically; can anticipate, approach, and offer solutions to complex problems; remain detail-oriented while maintaining a "big-picture" understanding of the issue; can speak and write with precision and clarity; are dynamic presenters; and are bright and creative.
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
# Git | |
alias gs="git status" | |
alias ga="git add" | |
alias go="git checkout" | |
alias gc="git commit" | |
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative" | |
alias gp="git push" |
We hold your privacy in the highest regard. MyUSA collects some anonymous information automatically to help us improve the service (such as what components are being used when), and offers the opportunity for you to provide us with basic personal information (such as your name or address) to help customize your experience and simplify many common tasks. MyUSA has a few fundamental principles:
- Your personal information should only be used to improve or customize your experience.
- The information you provide is your information and you should have the ultimate say in how it's used.
- We'll always ask before we share your information with an agency or other government entity, and unless you say otherwise, will remain private to you (except where required by law).
- We never store personal information on our servers unless required for the on-going operation of one of our services.
$ git clone https://github.com/[user]/[source-repo].git
$ cd [source-repo]
$ git remote rm origin
$ git remote add origin https://github.com/[user]/[target repo].git
$ git push -u origin master
Here's an example of how to embed a Gist on GitHub Pages:
{% gist 5555251 %}
All you need to do is copy and paste the Gist's ID from the URL (here 5555251
), and add it to a gist
tag surrounded by {%
and %}
.
# Bulk convert shapefiles to geojson using ogr2ogr | |
# For more information, see http://ben.balter.com/2013/06/26/how-to-convert-shapefiles-to-geojson-for-use-on-github/ | |
# Note: Assumes you're in a folder with one or more zip files containing shape files | |
# and Outputs as geojson with the crs:84 SRS (for use on GitHub or elsewhere) | |
#geojson conversion | |
function shp2geojson() { | |
ogr2ogr -f GeoJSON -t_srs crs:84 "$1.geojson" "$1.shp" | |
} |
Thanks to Ben Balter and others for pointing out that raw geodata (topojson in this case) can be served from github without cross-domain failure the same way that everything else can be served: under the gh-pages umbrella.
# regex to match government emails. Should detect: | |
# foo.gov, foo.mil | |
# foo.gov.uk, foo.mil.uk | |
# foo.fed.us | |
# foo.govt.nz, foo.gc.ca, foo.guv.ro, gub.uy | |
# note: foo.gouvt, foo.gc, foo.fed.uk, etc. will technically pass, but they are invalid domains | |
regex = /(\.g[ou]{1,2}(v|b|vt)|\.mil|\.gc|\.fed)(\.[a-z]{2})?$/i |