Forgot your password?
typodupeerror

Comment My Directory Structure (Score 1) 356

I concur with many of the others, directories are still a good way to organize your files :)

I have a three terabyte raid-5 Ubuntu file server I use to serve up the media in my house. I stick with a simple directory structure trying to keep it as shallow as possible:

/anime
/downloads
/e-books
/movies
/music
/pictures
/programming
/tv

This seems to work well for me, but just keep moving stuff around and you'll figure it out. File management is easy with Samba or your favorite SFTP client. I've also found that a bluray burner is good for stuff I want to keep, but in reality am never going to look at again.

Good Luck!

The Internet

The Wackiest Technology Tales of 2008 97

coondoggie writes "Despite the daily drumbeat of new and improved hardware or software, the tech industry isn't all bits and bytes. Some interesting things happen along the way too. Like floating data centers, space geekonauts, shape shifting robots and weird bedfellows (like Microsoft and Jerry Seinfeld). What we include here is an example of what we thought were the best, slightly off-center stories of 2008."

Comment Re:As someone who hasn't worked with unit tests... (Score 1) 208

Start by reading the developer documentation for the unit testing framework you are going to be using (junit for java, cppunit for c++, etc.)

Once you've mastered the basics of getting the framework installed and a basic test passing (e.g. assertTrue(true); ) check out xUnit test patterns. This book covers a lot of basic unit testing topics along with a number of things not to do while unit testing.

Slashdot Top Deals

UNIX was not designed to stop you from doing stupid things, because that would also stop you from doing clever things. -- Doug Gwyn

Working...