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
category.posts | |
#=> [] # list of all posts | |
posts.categories | |
#=> [] # list of all categories |
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 tween(start, end, fn) { | |
var duration = end - start | |
; | |
fn = fn || function (v) { return v; }; | |
return function (continuation, now) { | |
var relativeNow = now - start | |
, normalNow | |
, res |
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
class Dsl | |
attr_accessor :hash | |
def initialize(hash, &block) | |
@hash = hash | |
instance_eval(&block) | |
end | |
def method_missing(key_name, *args) | |
key_name = prepare_key(key_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
var range = [0, 1000], | |
domain = [0, 25], | |
power = 2; | |
function calc(v) { | |
var normal_domain = domain[1] - domain[0] | |
, normal_range = range[1] - range[0] | |
, normal_num = v - domain[0] | |
, inter = normal_num / normal_domain | |
; |
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
class BulkUpdater | |
def bulk_update(models) | |
errors = {} | |
models.each do |model_id, model_attrs| | |
model = self.class.find(model_id) | |
unless model.update_attributes(model_attrs) | |
errors[model_id] = model.errors | |
end | |
end | |
errors |
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
# don't tell me | |
# don't tell me not to tell you | |
# don't tell me not to tell you not to tell me | |
# don't tell me not to tell you not to tell me not to tell you | |
def dont(times) | |
"Don't" + tell_me("me", times) | |
end | |
def tell_me(subject, times) |
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
# don't tell me | |
# don't tell me not to tell you | |
# don't tell me not to tell you not to tell me | |
# don't tell me not to tell you not to tell me not to tell you | |
def dont(subject, times) | |
"Don't" + tell_me(subject, times) | |
end | |
def tell_me(subject, times) |
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
// call this separately to load the lib... | |
$.getScript('https://rawgithub.com/flowgrammer/Riffle/master/riffle.js').then(function () { | |
var clicks = stream(function (outFn, selector) { | |
$(selector).on('click', function (ev) { | |
outFn($(this)); | |
}); | |
}) | |
, hrefs = stream(function (outFn, $element) { | |
outFn($element.attr('href')); | |
}) |
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 () { | |
var initializing = false | |
, superPattern = /xyz/.test(function () { xyz; }) ? /\b_super\b/ : /.*/; | |
Object.subClass = function (properties) { | |
var _super = this.prototype; | |
initializing = true; | |
var proto = new this(); | |
initializing = false; |
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 () { | |
var initializing = false | |
, superPattern = /xyz/.test(function () { xyz; }) ? /\b_super\b/ : /.*/; | |
Object.subClass = function (properties) { | |
var _super = this.prototype; | |
initializing = true; | |
var proto = new this(); | |
initializing = false; |