This assumes you already have a Yeoman app and are ready for publishing
Create production directory & assets
| /* | |
| requires libgit2 | |
| */ | |
| package main | |
| import ( |
This assumes you already have a Yeoman app and are ready for publishing
Create production directory & assets
| <?php | |
| // Get this at your MongoLab.com user page | |
| $MONGOLAB_API_KEY = 'XXXXXXXXXXXXXX'; | |
| $DB = 'mydb'; | |
| $COLLECTION = 'mycollection'; | |
| $name = $_POST['fullName']; | |
| $email = $_POST['email']; | |
| $phone = $_POST['phoneNumber']; | |
| $src = $_POST['src']; |
| #################################### | |
| # BASIC REQUIREMENTS | |
| # http://graphite.wikidot.com/installation | |
| # http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
| # Last tested & updated 10/13/2011 | |
| #################################### | |
| cd | |
| sudo apt-get update | |
| sudo apt-get upgrade |
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |