{{> partial_name}}
woopra.track("signup", {
company: "My Business",
username: "johndoe",
plan: "Gold"
})
heroku create newapplicationname
git push heroku master
Where do I get my code again if I've lost it?
Use the instructions on the next slide.
Run an A/B test on a grid vs. the old vertical layout
var random_num = Math.random();
if(random_num > 0.5){
res.render("index", projects);
}else{
res.render("index_alternate", projects)
}
git status
git add ...
git commit -m "initial analytics lab"
git push
git push heroku master