Many problems on software development are due to
which I call technology driven design obsession. Don’t let technologies and
stacks dictate your design, keep it as simple as possible. Many developers try
to use new technologies on their projects (because they are cool :P or have
cool names...
Tuesday, December 11, 2012
Friday, August 17, 2012
Open / Close principle and Design Patterns
The open/ closed principle
represents the second principle of SOLID design,
in this post I will give an overview of this principle and how to achieve it
using different design patterns (including...
Thursday, August 9, 2012
D.R.Y principle and the Broken clock
This will be a short post, it is more like taking note of a thought that crossed my mind.
VS
Dry: Don't repeat yourself principle,...
Tuesday, July 24, 2012
General thoughts about TDD, BDD, SOLID and Agile
TDD
I still remember first time i heard about TDD, i was curious and a little suspicious;
my first thought was how spending time and money writing more code that doesn’t add functionality
to...
Sunday, July 15, 2012
What is a good software ???
By googling this
question probably you will get this answer : it must be maintainable, flexible,
extensible, scalable, testable, modular, reusable, loosely coupled,…
Personally i define a
good software as a software that can be adapted to a change easily.
The change could be
of any...
Friday, June 29, 2012
How to face the huge amount of changes in IT world (from a software developer perspective)
IT professionals,
specially developers how are we supposed to deal with this huge amount of
changes, new concepts, APIs, technologies… ???
1-Open mind:
The IT world is moving fast we should be open
minded to accept changes. For example the old debate around ASP webforms...
Wednesday, June 27, 2012
Applying design patterns to SOLID design. Keep an eye on KISS and YAGNI !!! Part 1
I will start writing a series of articles about S.O.L.I.D design
and how to achieve it by using design patterns, I will not only focus on theory
but I will give some examples and code to try to explain the problem that each
principle of SOLID design is trying to solve and how to implement...