Posts about Designpatterns

Design Patterns Revisited: Iterators II

I am learning Haskell afresh now, and it turns out that the iterator pattern is REALLY invisible in Haskell. This is a departure from other languages that claim to make iterators invisible like... more
Posted by Toby on Dec 03, 07
About programming, designpatterns and haskell

Design Patterns Revisited: Iterator

The Iterator Pattern came under attack. I shall take on the task of defending the Gof(as it's turning out)! So, okay, yes, yes, the iterator pattern as implemented in the way the class diagram... more
Posted by Toby on Nov 06, 07
About programming and designpatterns

Design Patterns Revisited: State

Design Patterns have come under mild attact lately, as seen here, and here(well, this one's not exactly recent). As a result, I decided to revisit some of the design patterns to tell truth from myth... more
Posted by Toby on Nov 04, 07
About programming, ruby and designpatterns

Metaprogramming Patterns

I want to catalogue the ruby metaprogramming patterns that are used in the ruby community. Here are some blog links:Inheriting class methods from modulesOla bini's list of 10... more
Posted by Toby on Oct 11, 07
About programming, ruby, designpatterns and metaprogramming