Are you a programmer?.... I thought i was one. Yes, anyone with some knowledge of HTML any simple language can make a website. I used PHP and MYSQL for my case. I thought i was a programmer.
When i came to meet a friend just a few days back then i came to realize this is programming and this is what a programmer does.
Programing is an art. Drawing a line on your screen does not make you one.
"Sharing knowledge will increase our understanding in many different perspectives which enhances our generalization of thought. Lets share what we know. Lets burn the fire of knowledge.'
Wednesday, September 29, 2010
Thursday, September 23, 2010
Software Design Patterns
What are Design Patterns?
Design patterns are optimized, reusable solutions to the programming problems that we encounter every day. A design pattern is not a class or a library that we can simply plug into our system; it’s much more than that. It is a template that has to be implemented in the correct situation. It’s not language-specific either. A good design pattern should be implementable in most—if not all—languages, depending on the capabilities of the language. Most importantly, any design pattern can be a double-edged sword— if implemented in the wrong place, it can be disastrous and create many problems for you. However, implemented in the right place, at the right time, it can be your savior.There are three basic kinds of design patterns:
- structural
- creational
- behavioral
Creational patterns provide instantiation mechanisms, making it easier to create objects in a way that suits the situation.
Behavioral patterns are used in communications between entities and make it easier and more flexible for these entities to communicate.
Why should we use them?
Design patterns are, by principle, well-thought out solutions to programming problems. Many programmers have encountered these problems before, and have used these ‘solutions’ to remedy them. If you encounter these problems, why recreate a solution when you can use an already proven answer?->view source: http://net.tutsplus.com/articles/general/a-beginners-guide-to-design-patterns/
Subscribe to:
Posts (Atom)