Skip to content

Instantly share code, notes, and snippets.

View dcmoore-gd's full-sized avatar

Dan Moore dcmoore-gd

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>TEST</title>
<script type="text/javascript" src="https://raw.github.com/aFarkas/webshim/master/tests/dist/jquery.js"></script>
<script type="text/javascript" src="https://raw.github.com/aFarkas/webshim/master/src/extras/modernizr-custom.js"></script>
<!-- Master and 1.9.3 show the error -->
<!-- <script type="text/javascript" src="https://raw.github.com/aFarkas/webshim/master/src/polyfiller.js"></script> -->
@rdj
rdj / .bashrc
Created November 20, 2011 19:32
# grep recursive, skipping source control
function g {
find . -name .svn -prune -and -false -o -name .git -prune -and -false -o -type f -and -print0 | xargs -0 egrep --color=auto "$@"
}