{"id":19546988,"url":"https://github.com/lebrancconvas/design-pattern-laboratory","last_synced_at":"2025-07-29T03:34:42.981Z","repository":{"id":112928316,"uuid":"451935006","full_name":"lebrancconvas/Design-Pattern-Laboratory","owner":"lebrancconvas","description":"Design Pattern Lab for Design Pattern Class. ","archived":false,"fork":false,"pushed_at":"2022-06-03T20:01:26.000Z","size":32,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-26T19:39:38.306Z","etag":null,"topics":["college-project","design-patterns","java","lab","laboratory","object-oriented-programming","oop","solid-principles"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lebrancconvas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-01-25T15:35:01.000Z","updated_at":"2022-11-08T22:08:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"c9207a67-0109-404e-8209-9d960e3ef411","html_url":"https://github.com/lebrancconvas/Design-Pattern-Laboratory","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lebrancconvas/Design-Pattern-Laboratory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FDesign-Pattern-Laboratory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FDesign-Pattern-Laboratory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FDesign-Pattern-Laboratory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FDesign-Pattern-Laboratory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lebrancconvas","download_url":"https://codeload.github.com/lebrancconvas/Design-Pattern-Laboratory/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FDesign-Pattern-Laboratory/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267623424,"owners_count":24117185,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["college-project","design-patterns","java","lab","laboratory","object-oriented-programming","oop","solid-principles"],"created_at":"2024-11-11T03:48:03.968Z","updated_at":"2025-07-29T03:34:42.973Z","avatar_url":"https://github.com/lebrancconvas.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Design Pattern for Object-Oriented Programming\n\n## Overview\n\nDesign Pattern Lab to practice my design pattern implement on OOP.\n\n## E-Books\n\n- [EN: Design Patterns: Elements of Reuseable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissdes](http://www.javier8a.com/itc/bd1/articulo.pdf)\n\n## List\n\n- ### [Lab01: SOLID Design (Part 1 - S, O)](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab01)\n\n  - [S: Single Responsibility Principle](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab01/src/SOLID_S.java)\n  - [O: Open-Closed Principle](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab01/src/SOLID_O.java)\n\n- ### [Lab02: SOLID Design (Part 2 - L, I, D)](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab02)\n  \n  - [L: Liskov Substitution Principle](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab02/src/SOLID_L.java)\n  - [I: Interface Sagregation Principle](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab02/src/SOLID_I.java)\n  - [D: Dependency Inversion Principle](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab02/src/SOLID_D.java)\n  \n- ### [Lab03: Composite \u0026 Strategy](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab03)\n  \n  - [Composite Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab03/src/Composite.java)\n  - [Strategy Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab03/src/Strategy.java)\n  \n- ### [Lab04: Decorator \u0026 Abstract Factory](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab04)\n  \n  - [Decorator Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab04/src/Decorator.java)\n  - [Abstract Factory Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab04/src/AbstractFactory.java)\n  \n- ### [Lab05: Bridge \u0026 Command](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab05)\n  \n  - [Bridge Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab05/src/Bridge.java)\n  - [Command Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab05/src/Command.java)\n  \n- ### [Lab06: Memento, Prototype, and Singleton](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab06)\n  \n  - [Memento Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab06/src/Memento.java)\n  - [Prototype Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab06/src/Prototype.java)\n  - [Singleton Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab06/src/Singleton.java)\n  \n- ### [Lab07: Builder, Iterator, and Chain of Responsibilities](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab07)\n  \n  - [Builder Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab07/src/Builder.java)\n  - [Iterator Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab07/src/Iterator.java)\n  - [Chain of Responsibilities Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab07/src/CoR.java)\n\n- ### [Lab08: Interpreter and Visitor](https://github.com/lebrancconvas/Design-Pattern-Laboratory/tree/master/Lab08)\n  \n  - [Interpreter Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab08/src/Interpreter.java)\n  - [Visitor Pattern](https://github.com/lebrancconvas/Design-Pattern-Laboratory/blob/master/Lab08/src/Visitor.java)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flebrancconvas%2Fdesign-pattern-laboratory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flebrancconvas%2Fdesign-pattern-laboratory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flebrancconvas%2Fdesign-pattern-laboratory/lists"}