Skip to main content
View by: Most Recent | Topic | Community | Webloggers   
Monthly Archives:    

Blogs by topic Global Education and Learning and user mkarg

• Accessibility • Ajax • Blogging • Business • Community 
• Databases • Deployment • Distributed • Eclipse • Education 
• EJB • Extreme Programming • Games • GlassFish • Grid 
• GUI • IDE • Instant Messaging • J2EE • J2ME 
• J2SE • Jakarta • JavaFX • JavaOne • Jini 
• JSP • JSR • JXTA • LDAP • Linux 
• Mobility • NetBeans • Open Source • OpenSolaris • OSGi 
• P2P • Patterns • Performance • Porting • Programming 
• Research • RMI • RSS Feeds • Search • Security 
• Servlets • Struts • Swing • Testing • Tools 
• Virtual Machine • Web Applications • Web Design • Web Development Tools • Web Services and XML 


Research

  Last week I gave a brief explanation of Web 3.0 and The Semantic Web to students at the college I attended more than ten years back. Possibly you are interested in the way Terminator and The Matrix will become real, then you should read on.
on May 16, 2010 | Permalink | Discuss

JSR

There is much discussion these days about HATEOAS (Hypermedia as the engine of application state) so it gets time to clearly say what HATEOAS actually means.
on Feb 14, 2010 | Permalink | Discuss

Databases

I did some experiments with JPA which is a really cool and simple API...
on Jan 3, 2010 | Permalink | Discuss

Education

Just found out how easy it is to use the full screen mode in Swing...
on Jan 3, 2010 | Permalink | Discuss
Java 6 comes with SwingWorker as an integral part of the JRE (yes, you no more need to download it). And THAT version of SwingWorker can send progress status while the background work still is in progress...
on Jan 3, 2010 | Permalink | Discuss
Attaching a GUI to a domain model object (a.k.a. "Entity") is a boring job. You need to write lots of synchronization code or models to change the UI when the entity changes and vice versa. Now that has an end. Here is the ultimate, automatic glue generator: The Java Beans Binding API...
on Jan 3, 2010 | Permalink | Discuss
Do you know EnumSet? No? Then you should take the time to look at this sample code. EnumSet allows writing of really eloquent Java source code...
on Jan 3, 2010 | Permalink | Discuss

Programming

Several APIs demand that the user is implementing the .hashCode() method. There are lots of standard implementations on the web, so the question is, what performance impact the implemenation of .hashCode() will have. I did some tests...
on Jan 3, 2010 | Permalink | Discuss