=====
I made a book, its one page.
# Sublime Text 3 - Useful Shortcuts | |
*Tested in Mac OS X: super == command* | |
Open/Goto | |
_________ | |
- super+t: go to file | |
- super+ctrl+p: go to project | |
- super+r: go to methods | |
- super+shift+p: command prompt |
=====
I made a book, its one page.
{ | |
"site": "site-00000000-host", | |
"order": { | |
"id": "1014", | |
"amount": "200.54" | |
}, | |
"products": [ | |
{ | |
"sku": "OMW-1001", | |
"price": "27.99", |
<div id="friendbuy_widget"></div> | |
<script type="text/javascript"> | |
var _frnd = { | |
site: "site-00000000-host", | |
order: { | |
id: "{{ order_number }}", | |
amount: "{{ total_price | money_without_currency }}" | |
}, | |
products: [ | |
{% for line in line_items %} |
#!/usr/bin/env ruby | |
require 'net/http' | |
require 'json' | |
# this job will track some metrics of a facebook page | |
# Config | |
# ------ | |
# the fb id or username of the page you’re planning to track | |
facebook_graph_username = ENV['FACEBOOK_GRAPH_USERNAME'] || 'foobugs' |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# ghost | |
# description "An Upstart task to make sure that my Ghost server is always running" | |
# author "@allenhurff" | |
start on startup | |
script | |
cd /var/www/ghost/ | |
npm start --production |
# Created by https://www.gitignore.io/api/ebstorm,cloud9,osx,sublimetext,textmate,vagrant,bower,node,yeoman,phpstorm,laravel,tower,xcode,composer,sass,grunt,archives | |
### Cloud9 ### | |
# Cloud9 IDE - http://c9.io | |
.c9revisions | |
.c9 | |
### OSX ### | |
.DS_Store |
<?php | |
/** | |
* The base configuration for WordPress | |
* | |
* The wp-config.php creation script uses this file during the | |
* installation. You don't have to use the web site, you can | |
* copy this file to "wp-config.php" and fill in the values. | |
* | |
* This file contains the following configurations: | |
* |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
width: 960px; | |
height: 500px; | |
position: relative; | |
} |