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
// $q comes from angular | |
function wrapFunct(fn) { | |
return function() { | |
var context = this; | |
var args = [].slice.call(arguments); | |
var resolved = $q.all(args.map($q.when)); | |
return resolved.then(function(values) { | |
return fn.apply(context, values); |
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
// jshint maxlen:false | |
{ | |
// Enforcing | |
"bitwise": true, // Prohibits the use of bitwise operators such as ^ (XOR), | (OR) and others. | |
"camelcase": true, // Allows you to force all variable names to use either camelCase style or UPPER_CASE with underscores. | |
"curly": false, // Requires you to always put curly braces around blocks in loops and conditionals. | |
"enforceall": false, // Is a short hand for the most strict JSHint configuration. | |
"eqeqeq": true, // This options prohibits the use of == and != in favor of === and !==. | |
"es3": false, // Tells JSHint that your code needs to adhere to ECMAScript 3 specification. |
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
[app:api] | |
use = egg:thefc | |
pyramid.debug = true | |
pyramid.reload_templates = true | |
pyramid.debug_authorization = false | |
pyramid.debug_notfound = true | |
pyramid.debug_routematch = false | |
pyramid.default_locale_name = en | |
pyramid.includes = | |
pyramid_tm |
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
1 """adding display_networktab column to blog | |
2 | |
3 Revision ID: 43dd765b5380 | |
4 Revises: 4b76556140fb | |
5 Create Date: 2014-12-09 17:54:39.803860 | |
6 | |
7 """ | |
8 | |
9 # revision identifiers, used by Alembic. | |
10 revision = '43dd765b5380' |
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
function getSearch() { | |
return window.location.search | |
.substr(1) // remove the '?' | |
.split('&') | |
.map(function(entry) { | |
return entry | |
.split('=') | |
.map(decodeURIComponent); | |
}); | |
} |
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
/** | |
* @param {Function} fn Function to curry. | |
* @param {Number} lenght The arguments required to invoke the function. Optional. By default is fn.length | |
* @returns {Function} The currified function. | |
*/ | |
function curry(fn, length) { | |
length = length || fn.length; | |
return function currified() { | |
var args = [].slice.call(arguments); |
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
function throttlePromise(operation) { | |
var promise = null; | |
return function() { | |
if (!promise) { | |
promise = operation.apply(this, arguments).finally(function() { | |
promise = null; | |
}); | |
} |
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
Show hidden characters
{ | |
// JSHint Default Configuration File (as on JSHint website) | |
// See http://jshint.com/docs/ for more details | |
"maxerr" : 50, // {int} Maximum error before stopping | |
// Enforcing | |
"bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
"camelcase" : true, // true: Identifiers must be in camelCase | |
"curly" : false, // true: Require {} for every new block or scope |
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
(function() { | |
function Deferred() { | |
if (window.Promise) { | |
var that = this; | |
this.promise = new Promise(function(resolve, reject) { | |
that._resolve = resolve; | |
that._reject = reject; | |
}); | |
} |
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
function listenAll(target) { | |
var protos = [], | |
proto = target; | |
while (proto) { | |
protos.push(proto); | |
proto = Object.getPrototypeOf(proto) | |
} | |
protos |