Posts tagged with "Architecture"

Software architecture refers to the high level structures of a software system, the discipline of creating such structures, and the documentation of these structures. These structures are needed to reason about the software system.

MVC (Model-View-Controller)

May 17, 2016 by Christoff Truter - 1 Comment

Originally titled Thing-Model-View-Editor and a few months later recoined as Models-Views-Controllers by its creator Trygve Reenskaug around 1978/1979 applied to the SmallTalk, it its hardly a new pattern, but evolved (perhaps more accurately was raped and bastardized in the opinion of some), quite a bit over the decades.

Architecture   MVC  

Personal Movie Database Part 2 - Service (PHP)

January 15, 2016 by Christoff Truter

Last year in the first part of this series of posts we had a quick look at the technologies that makes the frontend tick, in this post we're going to have a look at the backend service used for saving movie metadata.

PHP   Architecture  

Proof of Concept - JavaScript Mediator Framework

January 13, 2015 by Christoff Truter

Plugins you write will require no additional dependencies but would survive in whatever habitat it lives in, this is what this post and proof of concept is all about.

JavaScript   Architecture  

C# Design Pattern : Strategy

February 10, 2011 by Christoff Truter

The strategy design pattern defines a means by which we decouple a family of related algorithms and make them interchangeable among one another within a required context.

C#   Design Patterns   Architecture  

C# Design Pattern : Observer

November 14, 2010 by Christoff Truter

How to implement the Observer Pattern in C#

C#   Design Patterns   Architecture