Wednesday, July 7, 2010

Four Things to Know when Writing Comments

Four Things to Know when Writing Comments: "Every developer has been learned from his teachers how important is
to comment his source code. You should comment the classes, the methods,
the logic, etc. However nobody explained how exactly to code with
comments between the lines. Have you ever seen that
i++; // we increment i with one
That’s a shame! This doesn’t tell you anything, and what will happen
if sometime later somebody sits..."

Effective Teamworking With Eclipse: Highlighting Local Changes

Effective Teamworking With Eclipse: Highlighting Local Changes: "Eclipse can make your life really easy when it comes to working with version control systems. Over the next few articles, I'll be sharing some of the tips that I've picked up while using Eclipse (with CVS). When you make changes in your local workspace, the default decoration is a '>' before the change, up to project level. This is fine, but isn't particularly obvious when scanning..."

Four Things to Know when Writing Comments

Four Things to Know when Writing Comments: "Every developer has been learned from his teachers how important is
to comment his source code. You should comment the classes, the methods,
the logic, etc. However nobody explained how exactly to code with
comments between the lines. Have you ever seen that
i++; // we increment i with one
That’s a shame! This doesn’t tell you anything, and what will happen
if sometime later somebody sits..."

Spring Framework Architecture

Spring Framework Architecture: "The Spring framework is a layered architecture which consists of several
modules. All modules are built on the top of its core container.
These modules provide everything that a developer may need for use in the
enterprise application development. He is always free to choose what features he needs and eliminate the modules which are of no use.
It's modular architecture enables integration with..."