Skip to content
View MK-444's full-sized avatar
📂
Open source project
📂
Open source project
Block or Report

Block or report MK-444

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MK-444/README.md

Hello there 👋

class PythonDeveloper:
    """
    👩‍💻 Just like the Singleton pattern ensures a single, unique instance, 
    each of us is a singular, irreplaceable individual in this world.
    """
    _instance = None

    def __new__(cls, *args, **kwargs):
        """ 👶 We create ourselves, and everything depends solely on us. """
        if cls._instance is None:
            cls._instance = super().__new__(cls)
        return cls._instance

    def __init__(self):
        self.name: str = "👩 Marie Kostenkova"
        self.role: str = "🐍 Python developer"
        self.language_spoken: set[str] = {"🇨🇿 cs_CZ", "🇺🇸 en_US", "🇺🇦 uk", "🇷🇺 ru-RU"}

    def say_hi(self) -> str:
        """ Return my greeting message."""
        return "😀 Thanks for dropping by, hope you find some of my work interesting."


me = PythonDeveloper()
greeting = me.say_hi()
print(greeting)

My stack

Python Django Django Rest Framework Django Ninja FastAPI Flask Celery Postgresql Redis React HTML5 CSS3 Docker Postman Linux Git

@MK-444's activity is private