Skip to content
View sodiNICH's full-sized avatar
:bowtie:
Of great interest
:bowtie:
Of great interest

Block or report sodiNICH

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

For starters...

from textwrap import dedent
from dataclasses import dataclass

@dataclass
class Person:
    __instance = None

    name: str
    age: int
    role: str
    language: str

    def __new__(cls, *args, **kwargs):
        if cls.__instance is None:
            cls.__instance = super().__new__(cls)
        return cls.__instance

    def __str__(self) -> str:
        brief_description = dedent(
            f"""
            Hi, my name is {self.name} β€” I'm a {self.role} in {self.language}.
            I'm {self.age} years old and have been programming for over 1 year.
            Thank you for stopping by!
            """
        )
        return brief_description

def main() -> None:
    me = Person(name="Lev", age=17, role="Web developer", language="Python")
    print(me)


if __name__ == "__main__":
    main()
    # Hi, my name is Lev β€” I'm a Web developer in Python.
    # I'm 17 years old and have been programming for over 1 year.
    # Thank you for stopping by!

πŸ‘¨β€πŸ’»About me:

  • ⚑ I like to write code
  • πŸ”§ Creating my own projects
  • πŸ‘ Happy to have any real practice
  • 🧐 Responsible, limited and very pedantic
  • 😎 I am self-taught
  • πŸ““ I follow the basic principles of programming: DRY, KISS, YAGNI, SOLID

πŸ’» Technology Stack:

  • Language and web frameworks


  • Interaction with API


  • Data bases: SQL / NoSQL / ORM



  • Files storage

  • Message queue

  • Git

  • Deployment technologies


  • Front-end technologies (basic)



OS and terminal


✍️ IDE:


πŸ“© My contacts:


πŸ—‚οΈ Highlight Projects

DA-RNN

βš™οΈ GitHub statistics:

webDev's Github Languages

Popular repositories Loading

  1. Bulletin_boards Bulletin_boards Public

    Service for placing ads for goods as a sale to those who need it

    Python 1

  2. sodiNICH sodiNICH Public

  3. social_network social_network Public

    Python