This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Utils = Utils || {}; | |
Utils = (function (window, $) { | |
var _c, _private, _public; | |
_private = { | |
/** | |
* @event |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
@class | |
@description Checks for touch events and returns the appropriate supported touchevent | |
*/ | |
(function(){ | |
var TouchEvent = (function() { | |
// Mapping of Events, for easier reference | |
var events = { | |
'START': 'ontouchstart', | |
'MOVE': 'ontouchmove', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Old browsers */ | |
background: #a09e91; | |
background: url('path/to/image.png') no-repeat 0 0; | |
/* FF3.6+ */ | |
background: url('path/to/image.png') no-repeat 0 0, -moz-linear-gradient(top, #ffffff 0%, #a09e91 75%); | |
/* Chrome,Safari4+ */ | |
background: url('path/to/image.png') no-repeat 0 0, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(75%,#a09e91)); | |
/* Chrome10+,Safari5.1+ */ | |
background: url('path/to/image.png') no-repeat 0 0, -webkit-linear-gradient(top, #ffffff 0%,#a09e91 75%); | |
/* Opera 11.10+ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global url."https://".insteadOf git:// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"font_size": 12.0, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"word_wrap": "false" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "", | |
"version": "", | |
"description": "", | |
"keywords": [], | |
"homepage": "", | |
"bugs": { | |
"url": "", | |
"email": "" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Example: node deploy.js | |
* | |
* Getting Started | |
* Change BUCKET_NAME | |
* Create AwsConfig.json in same directory as deploy.js | |
* | |
* References: Ken Tabor (NodeJS Deploying Files to AWS S3)[http://blog.katworksgames.com/2014/01/26/nodejs-deploying-files-to-aws-s3/] | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remap prefix to Control + a | |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# force a reload of the config file | |
unbind r | |
bind r source-file ~/.tmux.conf | |
# use PREFIX | to split window horizontally and PREFIX - to split vertically |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Mouse Support | |
set mouse=a | |
set ttymouse=xterm2 | |
" Uncomment in order to disabling tmp and swp files | |
"set nobackup | |
"set nowritebackup | |
"set noswapfile | |
" Moves tmp and swp files outside of the working directory |
OlderNewer