dwight0

Stories submitted by dwight0

The Specification Pattern (devlicio.us)

submitted by dwight0dwight0(25) 2 years, 8 months ago

In computer programming, the specification pattern is a particular software design pattern, whereby business logic can be recombined by chaining the business logic together using boolean logic. A Specification is, in simple terms, a small piece of logic that sits on it’s own and gives an answer to a simple question … “does this match?” we start to couple our entities tightly together, and as the number of questions we want to ask of our entity increases, the more polluted its interface becomes. read more...

add a comment |category: |Views: 31

tags: another

Building an IoC container in 15 lines of code(ayende.com)

submitted by dwight0dwight0(25) 3 years, 8 months ago

It interesting to see how far an IoC container could be minimized. The result is 15 lines of significant code (ignoring blank lines or line with just curly braces). read more...

add a comment |category: |Views: 50

tags: another