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
function getSearch() { | |
return window.location.search | |
.substr(1) // remove the '?' | |
.split('&') | |
.map(function(entry) { | |
return entry | |
.split('=') | |
.map(decodeURIComponent); | |
}); | |
} |
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
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 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 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 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 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
// Calculates the space closest to the middle of the name | |
function splitName(name) { | |
var middle = name.length / 2; | |
var spaces = []; | |
var last = name.indexOf(' '); | |
while(last !== -1) { | |
spaces.push(last); | |
last = name.indexOf(' ', last + 1) | |
} |
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
function raceCondition(fn) { | |
var counter = 0; | |
return function() { | |
var index = ++counter; | |
var prom = fn.apply(this, arguments); | |
return new Promise(function(resolve, reject) { | |
prom.then(function(value) { | |
if (isLast()) resolve(value); |
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
<script src="//cdn.raygun.io/raygun4js/raygun.min.js"></script> | |
<script> | |
Raygun.init('<TOKEN>', { | |
excludedHostnames: ['localhost'], | |
}) | |
.attach() | |
.withCustomData(function() { | |
return { | |
hash: document.location.hash, | |
}; |
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
env: | |
browser: true | |
globals: | |
define: true | |
rules: | |
# possible errors | |
comma-dangle: [1, "always-multiline"] | |
no-cond-assign: [2, "except-parens"] |
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
function deepExtend(target, source) { | |
Object.keys(source).forEach(function(key) { | |
var value = source[key]; | |
var dest = target[key]; | |
var sourceType = typeof value; | |
var destType = typeof target[key]; | |
if (Array.isArray(value) && Array.isArray(dest)) | |
target[key] = dest.concat(value); | |
else if (sourceType === destType && sourceType === 'object') |