Skip to content

Instantly share code, notes, and snippets.

View Ian-Gabaraev's full-sized avatar
:octocat:

Ian Gabaraev Ian-Gabaraev

:octocat:
View GitHub Profile
@juanbrujo
juanbrujo / PlayStationBIOSFilesNAEUJP.md
Last active July 22, 2024 16:02
Files for PlayStation BIOS Files NA-EU-JP
@dmmeteo
dmmeteo / 1.srp.py
Last active June 7, 2024 14:11
SOLID Principles explained in Python with examples.
"""
Single Responsibility Principle
“…You had one job” — Loki to Skurge in Thor: Ragnarok
A class should have only one job.
If a class has more than one responsibility, it becomes coupled.
A change to one responsibility results to modification of the other responsibility.
"""
class Animal:
def __init__(self, name: str):