Manuel Woelker

Results 16 comments of Manuel Woelker

Another culprit might be this server side throttling https://github.com/webxl/grunt-reload/blob/master/tasks/reload.js#L61 replacing the throttle with a debounce might do the trick. cf. http://benalman.com/projects/jquery-throttle-debounce-plugin/

Hi there, thanks for the interest! The idea is that the VFS is encapsulated in the `VfsPath` construct itself. This is done to improve ergonomics when dealing with paths. You...

The original implementation used type parameters like you described. However having the FileSystem Type and associated types generic made handling these types quite cumbersome, especially for combined FileSystems like OverlayFS....

I am not sure I completely understand. You could resolve the configured path either relative to the `config_path`'s parent, or some other explicit root or base directory (i.e. using another...

Thanks for reaching out! Random access would indeed be a neat capability to have for a more complete feature set. Ideally we should be catching random access on implementations that...

Thanks for the PR! It looks like `rewind()` is not available in 1.40 yet, but `seek(SeekFrom::Start(0))` should work as well. I'll try to take a deeper look tomorrow!

It looks the error changes I just merged caused a merge conflict, could you resolve that? Sorry for the extra work!

Thanks for the update! It looks the CI build is still failing, and there seem to be some formatting issues. Quick note - I'm currently on vacation, might be slow...

Hi again, just wanted to check in. Are you still working on this?

Hi, thanks for your comments and suggestions. The primary use case for this crate is abstracting over application files or assets. This means that the paths are under the control...