-
Archives
- March 2012
- November 2011
- July 2010
- April 2009
- February 2009
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- February 2008
- January 2008
- December 2007
- October 2007
- July 2007
- June 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
-
Meta
Category Archives: Uncategorized
Java Quick Data Store
I’ve written a small library to quickly save and load data in a Java app. It’s a simple persistent data store. I plan to use it in some upcoming demos. Example: QDS.save(“Testing”, “A String”); String s = (String)QDS.load(“Testing”); Downlaod src
Posted in Uncategorized
Leave a comment
JavaFX 2.0 Fading Status Message
When a user completes an action it’s nice to display a message to show that the action was successful. With JavaFX animations this becomes very easy to do. The code below displays a message when a button is clicked, and … Continue reading
Posted in Uncategorized
1 Comment
JavaFX 2.0 Layout with MigPane
I have been starting to look at JavaFX 2.0 since I have been doing a lot of GUI work in swing. The first challenge was layout since it is different from swing. JavaFX comes with a number of Panes (or … Continue reading
Posted in Uncategorized
2 Comments
Javascript Style Guide
Google has a style guide for writing javascript. I think it’s great. Link
Posted in Uncategorized
Leave a comment
Google Appengine supports Java
http://code.google.com/appengine/docs/java/overview.htmlFirst app I will port to the Java App engine will be cl1p.net. This should improves cl1p’s speed, and scalablity. Fun times!
Posted in Uncategorized
Leave a comment