It's no surprise that Japan has evolved these anonymous networks, considering the legal pressure its media companies applies to its filesharers. Even Perfect Dark's users have been arrested, implying its security has been broken.[1] Maybe we elsewhere can draw some lessons. Reposting a comment of mine: ----- I actually submitted the Perfect Dark wiki article to HN after reading about Isamu's passing: http://en.wikipe…
Why don't these P2P apps store the file chunks in your hard drive's free space? The fact that commands like `shred` exist means that you can readily read/write from it, and your OS will automatically overwrite the cache contents when you need to use space (and it doesn't matter because P2P networks are fault tolerant anyway). That way users don't have to face the idea of "giving up" their disk space to be part of the…
What you'd be better off doing on Unix type OSes is creating a large empty file, deleting it but keeping the file handle, and reading/writing that. That's a traditional way to make a self erasing scratch file.
It doesn't work on Windows, though, because Windows won't let you delete a file that's open.