Design and Architecture

Singleton Pattern Inside and Out

A Brief Summary on Different Flavors of Singleton Pattern

Guowei Lv

5 minute read

Singleton Pattern is so popular that if you know only one design pattern it will probably be it. But do you know it inside out? There are different flavors of this pattern, let’s examine them one by one. Dummy Singleton This is the simplest implementation of Singleton Pattern. Just use a static final field in the class to store an instance of the class, and make all constructors private. See the example below:

The Evolution of Command Pattern (III)

The Command Pattern Revisited and its implementation in Android Service

5 minute read

In this final part of the Command Pattern series, we will talk about yet another improvement on top of the Command Processor Pattern. It is described in the paper Command Revisited. From now on, we will just refer to it as the Command Revisited Pattern. The paper is short and sweet but you might not find it to be to the point after the first glimpse. The most beautiful part of the Command Revisited Pattern is that it provides a new perspective on the general Command Pattern.

The Evolution of Command Pattern (II)

How Command Pattern has evolved overtime

3 minute read

In Part I, we discussed the original Command Pattern from the GoF Design Patterns book. In Part II, let’s talk about the improved version from another less known book: Pattern-Oriented Software Architecture Vol.1 (POSA in short).

In this book, there is a Command Processor pattern, which is based on the Command Pattern in GoF book. The most important difference is the newly introduced CommandProcessor. In the original Command Pattern, it defines how to create Commands, and each Command has an execute and undo methods.

The Evolution of Command Pattern (I)

How Command Pattern has evolved overtime

3 minute read

The Command Pattern is one of my favourite design patterns. It is also a good example that design patterns do change over time. In part I, we talk about the original version from the Design Patterns book. This pattern first appears in the famous GoF book, described as follows: Encapsulate a request as an object, thereby letting you parameterize clients with different requests, queue or log requests, and support undoable operations.

How (Not) To Store Password

Ways not to store user passwords and why

3 minute read

Design and Architecture

If you are a programmer, especially backend programmer, sooner or later you will face the problem of storing users' passwords. Even though at first sight this seems like an entry level problem that we should hand over to an intern, it is really not. If you ask me how to do it. My first answer would be DON’T DO IT! I’m serious, try to avoid it as much as you can, just use Google or Facebook signin and your life goes on.