Giter VIP home page Giter VIP logo

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

Lev Chernikov's Projects

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.