Skip to content

Instantly share code, notes, and snippets.

View marutypes's full-sized avatar
💻

Mallory Allen marutypes

💻
View GitHub Profile
@marutypes
marutypes / gist:1774d674b3b5a57c209c6bd83ba0d02f
Created September 19, 2016 20:01
JQuery without JQuery
function onReady(callback) {
if (typeof callback !== 'function') return;
if (document.readyState === 'complete') {
return callback();
}
document.addEventListener('DOMContentLoaded', callback, false);
}
// onReady(function(){ //do stuff });
# aliases for better names on some commands
git config --global alias.uncommit 'reset --soft HEAD^'
git config --global alias.unstage 'reset'
# aliases for quick typing
git config --global alias.co 'checkout'
git config --global alias.br 'branch'
git config --global alias.cm 'commit'
git config --global alias.st 'status'
git config --global alias.sh 'stash'
## Don't forget to go to settings>editor?external source bullshit> make meta file shappen time
# =============== #
# Unity generated #
# =============== #
Temp/
Obj/
UnityGenerated/
Library/
Builds/