Usefall

Software Design Fables

The Singleton Pattern

8/3/2025

Many things of a kind may exist.

I want to ensure I always work with the same single one of them.


The Prototype Pattern

8/2/2025

A complex thing exists.

I want to create a thing just like it, but with slight modifications.


The Builder Pattern

8/1/2025

A complex thing is created.

I want to simplify its creation.


The Abstract Factory Pattern

7/29/2025

Things are created then other things are happening.

I want to change the kind of things that are created without affecting anything else.


The Factory Method Pattern

7/28/2025

Something is created then other things are happening.

I want to change what is created without affecting the other things.