Added board games to the MediaDB

I have added board games to my MediaDB program. I first created the application in java, and then re-wrote it while I was on the Paragon “bench” program. The purpose of the application is to track your personal collection of books, DVDs and now board games. The application originally used Amazon.com’s Product API to fetch item data and an image for books and DVDs in your collection. I have added board games and I am using boardgamegeek.com‘s API to load information and an image for board games.

BoardGameGeek also allows you to track and rate your board games on their web site, so I have added code to download an existing collection, or to upload a collection that you create in the program.

Learning C#

After my job on Sonja at Raytheon ended in late April I continued to be a Paragon Dynamics employee, using their “bench” program. No one was really sure what I was supposed to do while on the “bench”, but I had to come in to their office each day and put in 8 hours of desk time. Some of the time was spent helping Paragon with proposals, computer maintenance and even an office move. But most of the time was my own to fill and I used it to learn C#.

I think of the language as a mix between C++ and Java. It is managed like Java, and has a large set of convenience classes (.NET), but the feel of the language is closer to C++. The Visual Studio IDE is a beautiful piece of software and makes putting together graphical applications simple.

To really learn something, I just have to start using it, so I have written some small applications. A couple of them are good enough to make public, and a couple aren’t.

I re-wrote the Media Database which tracks your books and DVDs using Amazon Web Services to download book/DCD data. It now uses C# instead of Java, so it is faster. And it uses SQLite to store the collection instead of a bunch of little files.

I wrote a Gallery Builder for creating a web page out of a set of digital photos.

I wrote a program to convert an image (jpg, gif, png, etc) into an icon.

And last, and least, I wrote a color picker app that bring up a color dialog and then lists the RGB/HSB values, the web hex code, and the color name.

Thanks to Paragon Dynamics for continuing to pay me while I learned C#.