Hacker News new | ask | show | jobs
by bitsandboots 526 days ago
I don't use VSCode, that'd be slower too. I just use emacs and tmux.

But one category of things that's faster is any linux utility that needs to interact with files. NTFS stores metadata differently making things like "stat" much more expensive on windows than on linux. Naively ported programs used to doing I/O that is cheap on linux will be slower on Windows. git is an exception where they coded around this problem.

If you use nodejs for example, you'll find that the thousands of files and folders under node_modules results in way slower builds and searches on windows than linux. It's comical that a linux VM running within windows on a virtual disk on an NTFS partition will still be faster than windows itself at this because the I/O will be, from the windows perspective, one big file.