Randall Harmon
Randall Harmon
See https://gist.github.com/rjharmon/789bfaa8dc5ab91bd515 for a fork of the original that tracks access to inherited settings and doesn't interfere when the inherited object adds its own property with that same name.
Hi again, We want to symmetrically encrypt certain data to a key that's provided by the model object. Particularly, we're encrypting it to a secret answer known only to the...
According to this article http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation the IV doesn't to be secret; instead, it should only be ensured that the IV isn't re-used with the same key. Since you do generate...
Is there any reason to expect this won't work well with React @ 0.14 ?
nestedKey (see #759) seems useful enough in concept to warrant a specialized implementation to support it for log attributes added as part of child-logger creation. Perhaps it could use a...
When a nested collection changes (EDIT: item removal, specifically), the model doesn't get notified. This or similar should do the trick (it's worked for me outside of backbone-relational): ``` javascript...
Using stickit in a Marionette Composite view, the outer instance of the view is seeing and honoring events from an inner view because the inner view's stickit's default updateModel() just...
``` myMixin = function() { return { foo: function() { return "My foo result" } } myOtherClass = function() {}.mixin(myMixin); // mumble - point is, it doesn't have 'foo'. myOtherClass.foo("some...
When the json is %q[""] or %q[''], json_record was barfing after parsing the json, expecting the decoded thing to be a hash already. Fixed.
https://github.com/pouchdb/pouchdb/blob/ff81fa35be04454457afaa3bf99a2eeae99b5a18/package.json#L3 Is there a build process/tool or human step that is expected to be bumping these version numbers?