This file contains 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
#!/bin/sh | |
echo "Deploying..." | |
unset GIT_DIR | |
cd /home/deploy/srv/destructly/ | |
GIT_WORK_TREE=/home/deploy/srv/destructly/ | |
git checkout -f master | |
pwd | |
echo "Stopping service" | |
sudo forever stop `forever list | grep destructly.js | awk '{ print $2 }' | sed 's/\[\(.*\)\]/\1/'` | |
echo "Installing dependencies" |
This file contains 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
/** | |
* Remove any common leading whitespace from every line in `text` | |
* Ported from http://hg.python.org/cpython/file/2.7/Lib/textwrap.py | |
* @param text | |
* @return {*} | |
*/ | |
var dedent = function(text){ | |
var leadingWhitespaceRE = /(^[ \t]*)(?:[^ \t\n])/; | |
var margin = null; | |
var i; |
This file contains 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 searchAndWrap = function(obj, regex, blacklist){ | |
var found = false; | |
_(obj).each(function(val, key){ | |
if(!_.include(blacklist || [], key)){ | |
if(_.isObject(val)){ | |
if(searchAndWrap(val, regex, blacklist)){ | |
found = true; | |
} | |
} else { | |
val = val.toString(); |
This file contains 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
if(geoPosition.init()){ | |
var foundLocation = function(city, state, country, lat, lon){ | |
//do stuff with your location! any of the first 3 args may be null | |
console.log(arguments); | |
} | |
var geocoder = new google.maps.Geocoder(); | |
geoPosition.getCurrentPosition(function(r){ | |
var findResult = function(results, name){ |
This file contains 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
/** | |
* | |
* you can use the message attribute to provide custom verbose error messages. The error message contains a token {} which will be replaced by the input label. | |
* | |
* Ex: | |
* <label for='firstName'>First Name</label><input id='firstName' name='first_name' class='verbose-error' message='Please enter your {}'/> | |
* the error message will be: Please enter your First Name | |
*/ | |
jQuery.validator.addMethod("verbose-error", function(value, element, param) { | |
var $elem = $(element); |
This file contains 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
//requires jQuery.Deferred | |
_deferred = (function(){ | |
var that = {}; | |
var deferred = {}; | |
var lazy = function(name) { | |
if(!deferred[name]){ | |
deferred[name] = $.Deferred(); | |
} | |
return deferred[name]; |
This file contains 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
//requires underscore.js 1.3+ | |
var wrapFunctions = function(obj){ | |
_.each(obj, function(func, funcName){ | |
if(_.isFunction(func)){ | |
obj[funcName] = _.wrap(func, function(fn){ | |
var wrappedArgs = _.toArray(arguments).slice(1); | |
wrappedArgs = obj[funcName].before && obj[funcName].before.apply(this, wrappedArgs) || wrappedArgs; | |
var ret = fn.apply(obj, wrappedArgs); | |
obj[funcName].after && obj[funcName].after.apply(this, wrappedArgs); | |
return ret; |
This file contains 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
/* jQuery.values: get or set all of the name/value pairs from child input controls | |
* @argument data {array} If included, will populate all child controls. | |
* @returns element if data was provided, or array of values if not | |
*/ | |
$.fn.values = function(data) { | |
var els = this.find(':input').get(); | |
if(arguments.length === 0) { | |
// return all data |
NewerOlder