###Getting Started
Login as root. If you don't specify root, you'll use the current user on your machine.
ssh [email protected]
Change root password.
passwd
| // http://paulirish.com/2009/markup-based-unobtrusive-comprehensive-dom-ready-execution/ | |
| // Modified to only fire on body class (not body class + ID, working off strictly WordPress body_class) | |
| Roots = { | |
| // all pages | |
| common: { | |
| init: function(){ | |
| // $('a').click(function() { | |
| // alert('Hello world!'); |
| // | |
| // Alerts | |
| // -------------------------------------------------- | |
| // Base styles | |
| // ------------------------- | |
| .alert, | |
| .validation_error, |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
| <title>Stripe Getting Started Form</title> | |
| <script type="text/javascript" src="https://js.stripe.com/v1/"></script> | |
| <!-- jQuery is used only for this example; it isn't required to use Stripe --> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| // this identifies your website in the createToken call below |
| .topbar { | |
| position: fixed; | |
| top: 0; | |
| right: 0; | |
| left: 0; | |
| height: 40px; | |
| padding: 0 20px; | |
| background-color: #333; | |
| border-bottom: 1px solid rgba(0,0,0,.1); | |
| box-shadow: 0 2px 3px rgba(0,0,0,.5); |
| #################################### | |
| # 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 | |
| #################################### | |
| sudo apt-get update | |
| sudo apt-get upgrade |
###Getting Started
Login as root. If you don't specify root, you'll use the current user on your machine.
ssh [email protected]
Change root password.
passwd
| <%= stylesheet_link_tag 'mobile/jquery.mobile-1.0.1.min', 'mobile/mobile' %> | |
| <%= javascript_include_tag 'mobile/respond.min' %> | |
| <%= javascript_include_tag 'mobile/jquery', 'mobile/jquery_ujs', "https://js.stripe.com/v1/", 'orders' %> | |
| <%= javascript_include_tag 'mobile/jquery.mobile-1.0.1.min' %> | |
| <%= csrf_meta_tag %> | |
| <%= tag :meta, :name => "stripe-key", :content => STRIPE_PUBLIC_KEY %> |
| <?php | |
| require 'path-to-Stripe.php'; | |
| if ($_POST) { | |
| Stripe::setApiKey("YOUR-API-KEY"); | |
| $error = ''; | |
| $success = ''; | |
| try { | |
| if (!isset($_POST['stripeToken'])) | |
| throw new Exception("The Stripe Token was not generated correctly"); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
| <title>Stripe Sample Form</title> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
| <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js"></script> | |
| <script type="text/javascript" src="https://js.stripe.com/v1/"></script> | |
| <script type="text/javascript"> |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query | |
| * Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php | |
| */ | |
| $args = array( |