Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: filesystem Clear Filter

In-Memory Filesystems in Rust

In-memory Filesystems in Rust I’ve been working on a CLI tool recently, and one of the things it does is manage files on disk. I have written a lot of file management tests for Bundler, and the two biggest reasons that the Bundler test suite is slow are exec and fstat . Knowing that, I thought I would try to get out ahead of the slow file stat problem by using an in-memory filesystem for testing. A collaborator mentioned being happy with the Go package named Afero for this purpose, and so I se

“Bypassing” specialization in Rust

"Bypassing" specialization in Rust or How I Learned to Stop Worrying and Love Function Pointers I've spent nearly a year developing and refining my own FAT driver in Rust. For much of the last six months, I had to put the project on hold due to school commitments. However, I'm back now, especially since this project has become my most-starred repository on GitHub. During that journey, I (almost) learned how FAT and filesystems in general work behind-the-scenes and in my attempts to navigate the

"Bypassing" Specialization in Rust or How I Learned to Stop Worrying and Love F

"Bypassing" specialization in Rust or How I Learned to Stop Worrying and Love Function Pointers I've spent nearly a year developing and refining my own FAT driver in Rust. For much of the last six months, I had to put the project on hold due to school commitments. However, I'm back now, especially since this project has become my most-starred repository on GitHub. During that journey, I (almost) learned how FAT and filesystems in general work behind-the-scenes and in my attempts to navigate the