Skip to content
View salloom-domani's full-sized avatar
🌟
Studying
🌟
Studying

Block or report salloom-domani

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

About me

from datetime import date
from damascus_university.ite_college import FourthYearStudent
from experience import two_years, one_year, decent
from creativity import alot

class Me(FourthYearStudent):
    """
    A passionated software engineer who likes to develop 2d games and large
    systems that needs to squeeze every cell of your brain to get it done,
    with some perfectionism I tweak code repeatedly trying to make it work
    perfectly and I always succeed. 
    """

    def __new__(cls):
        if not hasattr(cls, 'instance'):
            cls.instance = super(Me, cls).__new__(cls)
        return cls.instance
    
    def __init__(self):
        self.name = 'Salem Domani'
        self.birthdate = date(1999, 1, 4)

    @property
    def experience(self):
        return [
            two_years(of='Django'),
            one_year(of='React.js'),
            decent(of='Docker'),
        ]

    @property
    def creativity(self):
        return alot(limit=float('inf'))

    @property
    def hoppies(self):
        return [
            'Coding',
            'Game Development',
            'Drawing',
            'Learning',
        ]

    def contact_me(self):
        return '[email protected]'

More Info

My GitHub stats

Pinned Loading

  1. design-patterns design-patterns Public

    All design patterns coded with python

    Python

  2. Pixel-Adventure Pixel-Adventure Public

    A Unity copy of the Pixel Adventur game in itch.io

    C#

  3. Blob-Wars Blob-Wars Public

    A clone of the turn-based game Blob Wars with pygame

    Python

  4. Portfolio Portfolio Public

    more like a resume

    HTML

  5. Trans-problem Trans-problem Public

    A basic solution for TSP

    Python