git flow feature start <branchname>
starts a new branch
git commit -am "commit message"
make commits as usual
git pull
from master branch, pull in latest changes from the repo (repeat often)
git pull origin <branchname>
window.setTimeout( | |
function() { | |
(Math.floor(Math.random()*(100)) % 2 ) ? console.log('Chipotle') : console.log('Venue'); | |
}, | |
3600000 // deliberate for an hour before deciding | |
); |
git flow feature start <branchname>
starts a new branch
git commit -am "commit message"
make commits as usual
git pull
from master branch, pull in latest changes from the repo (repeat often)
git pull origin <branchname>
debug = if console?.log? then true else false | |
# ... # | |
console.log "error" if debug |
addListener = (elt, type, fn) -> | |
if elt.addEventListener then elt.addEventListener(type, fn, false) | |
else if elt.attachEvent then elt.attachEvent('on' + type, fn) |
var genericHandler = function(evt) { | |
evt.preventDefault ? evt.preventDefault() : evt.returnValue = false; | |
}; |
<html style="overflow-x:hidden"></html> |