An open API service indexing awesome lists of open source software.

https://github.com/howz1t/learning-design-patterns

My resource / study of software design patterns
https://github.com/howz1t/learning-design-patterns

Last synced: 11 months ago
JSON representation

My resource / study of software design patterns

Awesome Lists containing this project

README

          

![design pattern banner](https://image.slidesharecdn.com/how-i-started-to-love-design-patterns-160919163418/95/how-i-started-to-love-design-patterns-9-638.jpg?cb=1474302899)

# My study of Software Design Patterns

- ### All example implementations are writen in Python
- ### Small summaries will be provided for each pattern

## Notes
- ### Creational Patterns
- #### [Abstract Factory](Abstract_Factory/NOTES.md)
- #### [Builder](Builder/NOTES.md)
- #### [Factory](Factory/NOTES.md)

## Patterns
- ### Creational Patterns
- #### Abstract Factory
- #### Builder
- #### Factory Method
- #### Object Pool
- #### Prototype
- #### Singleton
- ### Structural Patterns
- #### Adapter
- #### Bridge
- #### Composite
- #### Decorator
- #### Facade
- #### Flyweight
- #### Private Class Data
- #### Proxy
- ### Behavioral Patterns
- #### Chain of responsibility
- #### Command
- #### Interpreter
- #### Iterator
- #### Mediator
- #### Memento
- #### Null Object
- #### Observer
- #### State
- #### Strategy
- #### Template method
- #### Visitor
- ### Other Patterns
- #### Dependency Injection (DI) / Inversion of Control (IoC)

## Resources / References
- ### [Design patterns](https://sourcemaking.com/design_patterns)
- ### [Design pattern tutorials](https://www.tutorialspoint.com/design_pattern/index.htm)
- ### [Design pattern tutorials (in C#)](http://www.dofactory.com/net/design-patterns)