Post tagged "Software Development"

If you cannot find what you are looking for, check the archives or use the category list provided in the right side-bar to view postings by category.

Here are the results of your request:

7 Oct 2009

Introduction to Refactoring

I have presented about “Introduction to Refactoring” with Mr. Dane at BarCamp PP2. What interesting for me was “Coder Camp” which got more helps from Mr. Sokun to make it up without preparation, especially the room...

14 Nov 2008

Strategy Design Pattern

If you have the algorithms with conditional statements in the client code it will be messy. The Strategy pattern moves an algorithm from the client code to a separate class. A program that requires a...

28 Sep 2008

Factory Method Design Pattern

The factory method pattern is a design pattern that allows for the creations of objects without specifying the type of object that is to be created in code. A factory class contain a method that...

23 Sep 2008

What are Design Patterns?

Working everyday and sitting at your desk in front of your computer, you stare into space, trying to figure out how to write a new feature for your software. You know intuitively what must be...