Adam Krebs
Adam Krebs
From the discussion in #2345, returning false from a failed save prevents a clean chaining API (`model.save().done(...).fail(...)`). Using deferreds, we can reject a promise instead to avoid the discrepancy. This...
Now that #3003 is merged, we need an easy way for alternative View implementations to run against our View conformance test. This pulls jQuery out of the View tests except...
While messing with `NativeView#undelegate` I realized that it's only possible to undelegate using a selector when that selector matches _exactly_ the string passed to `delegate`. It doesn't do matching or...
This is a strawman fix for #927. Currently react-mapbox-gl binds DOM events the first time a prop function is passed in, which means that for memoized functions (for instance, with...
# Add a VideoBuilder class The web runs primarily realtime and interactive but there are a number of cases where you might want the content in the canvas to run...
I'd like to propose the ability to load [Fusion config variables](https://github.com/fusionjs/fusion-core/blob/master/src/get-env.js) from a file instead of requiring that they live in an env variable, similar to [dotenv](https://github.com/motdotla/dotenv). Certain properties like...
I opened a pull at jashkenas/Backbone#3003 which attempts to remove the hard jQuery dependency from within Backbone.View, and it seems Stickit would be a good place to start answering some...
Hi there - is there an equivalent to https://pandas.pydata.org/docs/reference/api/pandas.melt.html for pivoting columns? My csv looks like this: ``` id,name,type,2000-01-31,2000-02-29,2000-03-31,2000-04-30 102001,demo,test,70759,70760,70767,70815 ``` I'd like the resulting dataframe to look like: ```...
Hubble currently relies on Luma's Timeline and AnimationLoop classes which utilize the browser's `requestAnimationFrame` timer. This is higher-precision and more realtime than alternatives (notably `setTimeout`) but requires that the tab...
Hubble depends on the [WebMWriter](https://github.com/thenickdude/webm-writer-js) library to record webm video within the WebMEncoder class. WebMWriter uses `canvas.toDataURL` [under the hood](https://github.com/thenickdude/webm-writer-js/blob/v0.3.0/src/WebMWriter.js#L55) to serialize the canvas state as a base64-encoded string, which...