Skip to content
View YaStirayuLaskoy's full-sized avatar
Block or Report

Block or report YaStirayuLaskoy

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
YaStirayuLaskoy/README.md

Oh Omnissiah, guide of the faithful,

I, Daniil the Python developer, servant of the machine spirit,

bless this GitHub profile with knowledge of hidden technologies

and the path of righteousness.

May my code be pure, my commits be timely,

and my pull requests be accepted.

In the name of the Machine God, so be it.

Blessed be the code.

Blessed be the repository.

Blessed be the developer.

For the Omnissiah and the Imperium of Man.

Ave Deus Mechanicus.

📂description.py
# Initializing connection to Machine Spirit...
# Establishing link to the Great Repository...

class TechPriest:
    """
    TechPriest class represents a Python developer
    dedicated to crafting quality code, forging bonds with colleagues,
    and seeking collaboration on sacred projects.

    Attributes:
        name (str): The name of the TechPriest.
        role (str): The role or profession of the TechPriest.
        diligence (bool): Indicates if the TechPriest is diligent.
        inquisitiveness (bool): Indicates if the TechPriest is inquisitive.
        communicative (bool): Indicates if the TechPriest is communicative.

        stack (dict): A dictionary containing information about
        the programming languages, frameworks, SQL databases,
        and other tools the TechPriest is proficient in.

        _telegram (str): The TechPriest's Telegram username.
        _mail (str): The TechPriest's email address.
    """
    def __init__(self):
        self.name = "Daniil"
        self.role = "Python Developer"
        self.diligence = True
        self.inquisitiveness = True
        self.communicative = True
        self.stack = {
            "Programming language": "Python",
            "Frameworks": {
                "Django",
                "DRF",
                "FastAPI"
            },
            "SQL": {
                "SQLAlchemy",
                "PostgreSQL",
                "MySQL",
                "SQLite3"
            },
            "Other": {
                "API",
                "Git",
                "Docker"
            }
        }
        self._telegram = "[@KorGolom](https://t.me/KorGolom)"
        self._mail = "malyshevdanpy@gmail.com"

    def collaborate(self):
        # Seeking collaboration with fellow tech-priests...
        return "Seeking collaboration on sacred projects..."

    def about_me(self):
        # Transmitting encoded message about self...
        description = (
            f'Greetings, diligent and inquisitive beings. '
            f'I am {self.name}, the humble {self.role} of the Machine God. '
            f'I am dedicated to crafting quality code and forging unbreakable bonds '
            f'with my colleagues using the {self.stack["Programming language"]}. '
            f'With a zeal for programming and an unyielding thirst for knowledge, '
            f'I am ever receptive to new insights and opportunities for joint endeavors.'
        )
        return description

    def _contact(self):
        # Reaching out to potential allies...
        message = (
            f'I will be glad to make any acquaintances! '
            f'You can contact me on: '
            f'Telegram: {self._telegram} '
            f'Mail: {self._mail}'
        )
        return message

    def __str__(self):
        сontents = (
            f'Имя - {self.name}\n'
            f'Проффесия - {self.role}\n'
            f'Стек - {self.stack}\n'
            f'Обо мне: {self.about_me()}\n'
            f'Контакты: {self._contact()}'
        )
        return сontents


if __name__ == "__main__":

    # Establishing communion with the Machine God...
    tech_priest = TechPriest()
    print(tech_priest)  # Calling __str__ method to print the information about the TechPriest
  • 👨‍🦽Стек

    • Python,
    • DRF, Django, FastAPI
    • SQL, MySQL, PostgreSQL, SQLAlchemy, SQLite3
    • Git, API, Docker
  • ✏️Обо мне:
    Привет) Я Python разработчик.
    Трудолюбивый, любознательный и коммуникабельный)
    В работе ценю хороший код, коллег и отлаженные процессы. Буду рад любым знакомствам!

  • 📫Контакты: I will be glad to make any acquaintances! You can contact me on:

Pinned Loading

  1. Sphere-Ya/backend Sphere-Ya/backend Public

    Python 2

  2. helper-products helper-products Public

    Helper Products - веб сервис для продуктовой корзины

    JavaScript