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
- Host: GitHub
- URL: https://github.com/howz1t/learning-design-patterns
- Owner: HOWZ1T
- License: mit
- Created: 2018-04-23T01:12:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T08:19:45.000Z (about 8 years ago)
- Last Synced: 2025-05-31T13:05:31.761Z (about 1 year ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# 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)