Austin Schey

Results 11 comments of Austin Schey

I have a branch [here](https://github.com/aschey/rodio/tree/seek) with a number of changes including seeking working. I was getting some strange runtime errors on Windows with the minimp3 fork with seek support (been...

@dskleingeld Yeah, that's basically how I handled it. I figured it's fine for a seek to be a no-op on situations where it doesn't make sense like a sine wave....

Okay, fair enough. I can probably make them interchangeable and have it opt-in via a feature flag. Seek can just be a no-op for any decoders that don't support it.

Thanks for getting my PRs merged @pdeljanov. Wrapping lewton in a Decoder trait is an interesting idea that I'll definitely take a look at. I have a working branch with...

> Hey @aschey, just wanted to give you a heads up that I published 0.3.0 which includes your changes. > > @probablykasper, for basic (non-fragmented) MP4 files, all you have...

I come from a webdev/React background and we typically use [React Testing Library](https://testing-library.com/docs/react-testing-library/example-intro) to test our UIs, so naturally, I was looking for a similar approach to test my TUI...

Nice, looks good! Since UI updates happen asynchronously, most UI testing libraries have a default timeout for any assertions so you don't have to hardcode sleeps in your program. Something...

I tried self-hosting using Render as suggested above, but sometimes I was having issues with request timeouts, so I decided to port the API to a Vercel serverless function: https://github.com/aschey/vercel-tokei....

Thanks for the reply; that makes a lot of sense. I don't think I have the knowledge necessary to implement the scoring method, but would you be interested in a...

Thanks for the tips; that's very helpful! I'll try to get around to this soon.