Kevin Ennis

Results 9 comments of Kevin Ennis
trafficstars

Hey @sotoole, Still gotta spend a little time figuring out the cleanest way to integrate this. Don't want to muddy up the Recorder constructor, but I also don't want to...

Hey @mattdiamond, Two years later, I found this in my list of open issues and realized I never did submit a PR. Gonna try to knock this out over the...

What if we just made a separate page that lets you drag/drop a bunch of MP3s with the FileReader API, creates the mix, and then gives you a button to...

Definitely interesting. I'll do some experimenting over the upcoming weekend.

Thanks so much for all the work you've put into this. It's a bit hard to review as-is because the change from 2 spaces to 4 made _everything_ part of...

As prior art, I'll submit [this commit in msgpack/msgpack-node](https://github.com/msgpack/msgpack-node/commit/44f322bd89c1b317f3895ee9700d3336c0723c01). I'd use that instead, but it doesn't appear to be actively maintained and it won't build on alpine linux, which I...

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#tojson_behavior I guess my argument would be that `decode( encode( x ) )` should generally look like `JSON.parse( JSON.stringify( x ) )`, unless `msgpack` explicitly knows how to do better....

Just want to include a few links here of popular libraries that implement `toJSON` for situations where some JS object may exist which have a number of _internal_ properties relating...

I still think you’re not understanding what `toJSON` is actually for. Moment does not include that for “formatting” purposes. It has a `format` method. `toJSON` is specifically meant to be...