Andrew Smith

Results 51 comments of Andrew Smith

Yep, that makes sense to me. In the call to [`reqctx`](https://github.com/reactjs/react-rails/blob/master/react_ujs/src/getConstructor/fromRequireContext.js#L13), right?

Excellent! I've opened a PR #759 to fix this. This fix solves the issue on my local machine. I agree about the performance thing though. I'm not particularly savvy with...

I installed both at the same time, and didn't have either in the asset pipeline. In the original problem, `react-rails` was finding components with `.js` extensions, just not `.jsx` extensions....

I'm happy to work on this (experienced Rust dev, very inexperienced ARM dev), if someone can point me to a place with similar idiomatic cross-architecture code? My first impulse would...

Okay, thanks a lot all -- down to a few more, can't figure these ones out...sorry, I'm a wayland and arm noob, but I assume it's an issue with finding...

I don't believe the last frame `[1.0]` should be there actually, because the `frames` array doesn't end with `[0.0]`. (Sometimes you wouldn't want the value to return to unity, as...

Good point! In that case, it seems we'd want to keep the last two frames `[2.0], [2.0]`, rather than move toward unity. I could see the other way creating some...

Leaving a couple things here, to look into: - [dsp stackexchange question](http://dsp.stackexchange.com/questions/18106/memory-requirements-for-fft) - [nice description of an in-place algorithm](http://www.engineeringproductivitytools.com/stuff/T0001/PT04.HTM) We could conceptually make this work in-place and overwrite a given...

A few months down the line—rustfft is actually fantastic (now stable at 1.0), and I've used it a lot. I would vote we just aim for interoperability with rustfft: focus...

Yeah, right now `next_source_frame` only takes `&mut self` so it does actually keep state across calls when it's used in the `Converter`. `Converter` currently owns the `Interpolator`, but borrows it...