Bloom 2.5 released: 200 photos, video upload and improved user experience

Bloom 2.5 is finally here. It increases the number of photos per album to 200 photos, adds the ability to upload videos, and brings an improved user experience with the ability to track the progress of the uploaded file (each 100 bytes transferred). It also improves the load of the photos viewed from FB. This release is a must so upgrade ASAP.
Get it from http://getbloom.com

Swing Application Framework

The Swing Application Framework that will be part of Java 7 makes developing Java Swing applications easier and helps in avoiding writing boilerplate code such as saving an application Window dimensions, locations, it provides a structured approach to developing Swing application which was lacking apart from the Netbeans platform which has a steep learning curve. For the time being there’s not as much documentation as someone would like to have but it should be straightforward because the framework is small. Coupled with JGoodies FormLayout it’s the best way to create small to midsize Swing applications.

Useful Java VM switches

These switches apply to Java 5 and up.

Switch Description
-Dsun.java2d.d3d=false Disables direct3d in case you have a problem in full screen mode, this solves also the bug 4417798
-Xms: ex. -Xms64m Default Java heap size
-Xmx: ex. -Xmx1024m Maximum Java heap size
-XX:+PrintGCdetails Prints the basic GC information
-XX:+PrintGCdetails Prints the detail GC information
-client Uses the client JVM
-server Uses the server JVM