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
'use strict' | |
const five = require('johnny-five'); | |
const board = new five.Board(); | |
board.on('ready', () => { | |
console.log('Ready'); | |
let lcd = new five.LCD({ |
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 uk = createFuzzyScorer('United Kingdom'); | |
var us = createFuzzyScorer('United States'); | |
console.log([ | |
uk('United') > uk('uk'), | |
uk('nited') > uk('ingdom'), | |
uk('united kingdom') > uk('united kingdo'), | |
uk('united dom') < uk('united kin'), | |
uk('knited k') > uk('dom'), | |
uk('_united_') < uk('united'), |
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
// context: https://twitter.com/codepo8/status/572863924887945216 | |
function fuzzysearch(query, text) { | |
// Build a regex, then test text against it: | |
return RegExp( | |
query | |
// Escape any special regex characters: | |
.replace(/[.*+?^${}()|[\]\/\\]/g, '\\$&') | |
// Any escaped or non-escaped character can be followed by | |
// any number of other characters (.*): |
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
TheThing.SOME_CONSTANT = 1; | |
TheThing.SOME_OTHER_CONSTANT = 1; | |
function TheThing() { | |
} | |
TheThing.prototype = { /* ... */ }; |
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
// Scrape/Grab page using YQL via JSONP | |
function grab(url, cb) { | |
var fn = '__grabber' + +new Date; | |
var query = 'select * from html where url="{URL}" and xpath="*"'; | |
var yurl = 'http' + (/^https/.test(location.protocol)?'s':'') + '://query.yahooapis.com/v1/public/yql?'; | |
yurl += [ | |
'callback=' + fn, | |
'format=xml', | |
'q=' + encodeURIComponent(query.replace('{URL}', url)) | |
].join('&'); |
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 git_likely_authority() { | |
# Outputs a ranked list of likely author(itie)s regarding tracked files matching *${1}* | |
# (Makes it easier to discover who likely knows most about the matched files) | |
# (Note: Not always indicative if large refactors/renamings have occurred) | |
# E.g. `git_likely_authority some_pattern_that_matches_a_path` | |
git ls-files "*${1}*" | | |
grep -v -E 'node_modules|vendor' | # edit to avoid certain files/dirs | |
xargs -n1 git blame --line-porcelain | | |
sed -n 's/^author //p' | | |
sort -f | |
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
describe(' a tribute ') | |
.to(' the syntactical hubris of attempting ') | |
.to(' present logic flows as grammatically coherent ') | |
.english() | |
it(' is a foolish attempt ') | |
.for(' it aids aesthetically but limits functionally ') | |
.and() | |
.truly(' misidentifies ') | |
.a(' difficulty in the understanding of code ') | |
.foolishly(' attributing understandability of it to its ') |
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 vic = require('./vic').vic; | |
var singular = require('./singularValidators'); | |
var DateRange = require('./DateRange'); | |
var Date = require('./Date'); | |
var NativeDate = Date.NativeDate; | |
// Regexes adaped/used in the regexBuilder (r) | |
// Flag hard-set to 'i'; | |
var YEAR = /(\d{2,4})/; |
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
for (var i in $.fn) (function(method, name) { | |
// ignore traversal/selection methods | |
if (typeof method != 'function' || [ | |
'constructor', 'init', 'find', 'add', 'next', 'nextUnil', 'prevUntil', | |
'parents', 'closest', 'eq', 'filter', 'has', 'first', 'siblings', | |
'last', 'map', 'not', 'slice', 'addBack', 'andSelf', 'contents', 'prev', | |
'end', 'not', 'children', 'nextAll', 'prevAll', 'parent', 'parentsUntil' | |
].indexOf(name) > -1) { | |
return; | |
} |
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.throwOnStyle = (function($) { | |
var watchers = []; | |
$.style = (function(_style) { | |
return function(elem, name, value) { | |
for (var i = 0, l = watchers.length; i < l; ++i) { | |
var w = watchers[i]; | |
if ( | |
(w.styleMatcher.test ? |