Your Computer Science Resource

Archive for July, 2009

Jul
31st

PROJECT: TrayTweet v.2.0

Just updated my previous TrayTweet project to version 2.0. All those interested please feel free to visit www.traytweet.com.

Jul
9th

PROJECT: TrayTweet

I recently published a free Twitter system tray client called TrayTweet. While the code is not open source, I will post some of the highlights.

(more…)

Jul
9th

HOW-TO: Save User Preferences with Java’s Preferences API

Users have certain expectations of your program. One of those expectations might be to have their preferences saved. This might include their username and password, the location of the application window, the size of the window, etc. Java’s Preferences API is an easy way to accomplish tasks like this without having to manually write and later read / parse a config file. This method is also platform independent; we don’t have to worry about where or how the data is saved — just that it is being saved and that it is persistent. Let’s see how to do it!

(more…)