Skip to content

Instantly share code, notes, and snippets.

View pjcozzi's full-sized avatar

Patrick Cozzi pjcozzi

View GitHub Profile
@pjcozzi
pjcozzi / CLA.md
Last active January 13, 2024 17:34
CLA for MIT license

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I have the right to submit it under the MIT license; or

(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the MIT license; or

@pjcozzi
pjcozzi / gist:cd6a5ff3839f27643c79
Created October 14, 2015 18:52
Run Canary with WebGL 2
/Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --enable-unsafe-es3-apis
git checkout master
git submodule update
git checkout YOUR_BRANCH
git add NAME_OF_SUBMODULE_DIRECTORY
git commit -m 'MESSAGE'
git push
@pjcozzi
pjcozzi / gist:2706c4e315adf1addc9c
Last active August 29, 2015 14:13
Test remote git branch
git remote add tmp-remote [remote]
git fetch tmp-remote
git checkout -b tmp-branch tmp-remote/[branch]
// ...
git checkout master
git branch -d tmp-branch
git remote rm tmp-remote