Graeme Yeates
Graeme Yeates
Changes made: - Separation of jsonme resources (`snack`+`Sizzle` are compiled together and `app.js` is key seperate) - Data from `resume.json` is escaped using the method from Handlebars.Utils - templates can...
As we all know, there are numerous plugins in the wild which override `Backbone.sync` with specific domain logic. Things like storage proxies, web socket connections, etc. The way plugins add...
As mentioned earlier (#2199), `exectueBound` doesn't support all of `Function.prototype.bind` cases on constructors which take variable arguments. As the main implementation of `bind` no longer uses the native implementation, it's...
Bugged me a little not seeing the syntax highlighting https://gist.github.com/megawac/d4630dba3298ea7ea41a
Focused on abstractions and libraries
It would be nice to have some branch management utilities including the following: - list branches which are local but not on remote `git branches --missing ` - list branches...
Unifies the handling of `max` and `min` scalars by simply using them relative to the value range Also shortcuts the loop if `max` and `min` are already known
As far as I can tell after peaking at the spec, `try` blocks should also be included in the scopes while `catch` and `finally` shouldn't. However `escope` only creates adds...
When a event is triggered, eg model property change, if the args is an array, events is going to apply each listener with the array. With all other data types...