CumpsD

Stories submitted by CumpsD

GPG in Outlook 2007 - OutlookGnuPG(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 1 month ago

Outlook 2007 addin to provide support for GnuPG in Outlook. read more...

add a comment |category: |Views: 180

tags: another

Design Patterns - Proxy Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 9 months ago

Last part of a 16 parts Design Patterns series, talking about the Proxy Pattern. read more...

add a comment |category: |Views: 32

tags: another

Design Patterns - State Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 9 months ago

It's been a while again, but it's time for another pattern. Today we'll look at the State Pattern. First of all, the definition: "Allow an object to alter its behavior when its internal state changes. The object will appear to change its class." read more...

add a comment |category: |Views: 25

tags: another

Design Patterns - Composite Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 9 months ago

Time for the Composite Pattern. This is one I'm having a little trouble with to describe clearly. Let’s start with the definition: "Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly." read more...

add a comment |category: |Views: 54

tags: another

Design Patterns - Iterator Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Time for the next part in our series, the Iterator Pattern. Let's start with the definition: "Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation." read more...

add a comment |category: |Views: 18

tags: another

Design Patterns - Template Method Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Time for yet another pattern, the Template Method Pattern. The definition: "Define the skeleton of an algorithm in an operation, deferring some steps to subclasses. Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm's structure" read more...

add a comment |category: |Views: 20

tags: another

Design Patterns - Facade Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Time for another, simple, design pattern. The Facade Pattern. The definition of today's pattern: "Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use." read more...

add a comment |category: |Views: 76

tags: another

Design Patterns - Adapter Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

We’ve seen quite a few patterns so far, and I’m glad so many people like them. Today we’ll have a look at the Adapter Pattern. read more...

add a comment |category: |Views: 53

tags: another

Design Patterns - Command Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

What’s a lonely geek to do late in the evening? Write about the Command Pattern of course… Let’s start with the definition: “Encapsulate a request as an object, thereby letting you parameterize clients with different requests, queue or log requests, and support undo-able operations.“ read more...

add a comment |category: |Views: 71

tags: another

Design Patterns - Generic Singleton Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

A little follow up from yesterday ’s Singleton Pattern, where I asked for some help on how you would approach a generic singleton. With the help of Andrew Stevenson and ExNihilo, we came up with the following Generic Singleton Pattern. read more...

add a comment |category: |Views: 45

tags: another

Design Patterns - Singleton Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Today we’ll have a look at a well known pattern, the Singleton Pattern. Most people have already heard about this one. The definition: “Ensure a class has only one instance and provide a global point of access to it.“ read more...

add a comment |category: |Views: 18

tags: another

Design Patterns - Abstract Factory Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Time to continue from yesterday ’s Factory Method Pattern by exploring the Abstract Factory Pattern. The definition and then some code to make everything clear. “Provide an interface for creating families of related or dependent objects without specifying their concrete classes. read more...

add a comment |category: |Views: 38

tags: another

Design Patterns - Factory Method Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

First of all, the definition: “Define an interface for creating an object, but let the subclasses decide which class to instantiate. The Factory method lets a class defer instantiation to subclasses.“ Illustrated by adding a building to our game, which creates various GameUnits for each faction. read more...

add a comment |category: |Views: 20

tags: another

Design Patterns - Observer/Event Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 10 months ago

Yesterday I described the Observer Pattern and mentioned that the .NET CLR provides this functionality through events and delegates. Let’s have a look on how to implement this right now. read more...

add a comment |category: |Views: 28

tags: another

Design Patterns - Observer Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 11 months ago

Yesterday we saw the Strategy Pattern. Today I want to talk about the Observer Pattern. First, the definition again: "Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically." read more...

add a comment |category: |Views: 57

tags: another

Design Patterns - Strategy Pattern(blog.cumps.be)

submitted by CumpsDCumpsD(360) 3 years, 11 months ago

An informal explanation of the Strategy Pattern, using a simply strategy game as an example, class diagrams and code samples included. read more...

add a comment |category: |Views: 72

tags: another