
Java
Get flash to fully experience Pearltrees
Richard G. Baldwin's all articles - Developer.com: Your Home for Java and Open Source Development Knowledge - Developer.com
encryption
algorithms
Java Performance Tuning Training Video
frameworks
Games
Annotations
Ajax
Tutorials
Security
Groovy
Threading
JFace
Developer Guide - Protocol Buffers - Google Code
When your boss asks you to rewrite your application to be more performant and handle greater throughput, what do you do? Once upon a time, when Moore’s Law held steady, all you had to do was to go drink a soy latte, play some Doom, twiddle your thumbs for a few months on the pretext of rewriting your application, and then redeploy it. Unchanged. Just onto more current hardware.
Caching, Parallelism and Scalability | Javalobby
Build your own profiling tool
Whether you're using System.out.println() or a profiling tool such as hprof or OptimizeIt, code profiling should be an essential component of your software development practice. This article discusses the most common approaches to code profiling and explains their downsides. It provides a list of best-of-breed features you might look for in an ideal profiler and explains why aspect-oriented techniques are well suited to achieving some of those features.The term "unchecked" warning is misleading. It does not mean that the warning is unchecked in any way. The term "unchecked" refers to the fact that the compiler and the runtime system do not have enough type information to perform all type checks that would be necessary to ensure type safety. In this sense, certain operations are "unchecked". The most common source of "unchecked" warnings is the use of raw types. "unchecked" warnings are issued when an object is accessed through a raw type variable, because the raw type does not provide enough type information to perform all necessary type checks.

