writers

Java IO (javase 6)- Help me understand the effects of my sample use of Streams and Writers...

BufferedWriter out = new BufferedWriter( new OutputStreamWriter( new BufferedOutputStream( new FileOutputStream("out.txt") ) ) ); So let me see if I understand this: A byte output stream is opened for file "out.txt". It is then fed to a buffered output stream to make file operations faster. The buffered stream is fed to an output str...

Efficient Way to Find FLOSS Projects That Need Documentation

I have searched for a sort of system to match FLOSS projects with writers, and there doesn't appear to be any. This is aside from the few wiki manual projects out there, which I feel doesn't really give enough credit to the writer. Is this an unfilled niche, or am I missing something? Looking willy-nilly for a mature enough project th...