Video Playlists
Notable Demos / Examples
Notable Courses / Tutorials
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' |
Video Playlists
Notable Demos / Examples
Notable Courses / Tutorials
## Don't forget to go to settings>editor?external source bullshit> make meta file shappen time | |
# =============== # | |
# Unity generated # | |
# =============== # | |
Temp/ | |
Obj/ | |
UnityGenerated/ | |
Library/ | |
Builds/ | |