One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| 'use strict'; | |
| define(['phaser'], function(Phaser) { | |
| function Gesture(game) { | |
| this.game = game; | |
| this.swipeDispatched = false; | |
| this.holdDispatched = false; | |
| this.isTouching = false; |
| " Beginners .vimrc | |
| " v0.1 2012-10-22 Philip Thrasher | |
| " | |
| " Important things for beginners: | |
| " * Start out small... Don't jam your vimrc full of things you're not ready to | |
| " immediately use. | |
| " * Read other people's vimrc's. | |
| " * Use a plugin manager for christ's sake! (I highly recommend vundle) | |
| " * Spend time configuring your editor... It's important. Its the tool you | |
| " spend 8 hours a day crafting your reputation. |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Micro Stripe Checkout</title> | |
| <meta charSet='utf-8' /> | |
| <meta name='viewport' content='initial-scale=1.0, width=device-width' /> | |
| <script src="https://js.stripe.com/v3/"></script> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> | |
| <style> | |
| * { |
| // ES6 w/ Promises | |
| // Note: From a React starter template - see https://t.co/wkStq8y3I5 | |
| function fetchData(routes, params) { | |
| let data = {}; | |
| return Promise.all(routes | |
| .filter(route => route.handler.fetchData) | |
| .map(route => { | |
| return route.handler.fetchData(params).then(resp => { | |
| data[route.name] = resp; |
| /** | |
| * Author: Julian Burr <https://github.com/julianburr> | |
| * License: https://creativecommons.org/publicdomain/zero/1.0/ | |
| * | |
| * This script basically just runs through all source files and | |
| * prints out a list of files and lines where it found the TODO | |
| * keyword | |
| * | |
| * If you want to look for other keywords, just changed the | |
| * searchRegEx to your needs :) |
Interactive support and resistance line rendering on a chart. Illustrating setting start end end points and horizontal line at full width.