Skip to content
View dominatorul's full-sized avatar
๐ŸŽฏ
Focusing
๐ŸŽฏ
Focusing

Block or report dominatorul

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
dominatorul/README.md
from typing import Tuple, List, Dict
from rich.console import Console
from rich.panel import Panel
from rich.text import Text
from rich import box

console = Console()


class Dominatorul:
    """๐Ÿ’ซ The Supreme Class of All Classes ๐Ÿ’ซ"""
    pass


class Attributes(Dominatorul):
    """๐Ÿ‘‘ Dominatorulโ€™s Royal Attributes ๐Ÿ‘‘"""

    @property
    def contact(self) -> str:
        discord = "Dominatorul"
        telegram = "https://t.me/dominatorul"
        kofi = "https://ko-fi.com/dominatorul"

        message = (
            f"[bold cyan]๐Ÿ“ฌ Find me on Discord:[/bold cyan] [white]{discord}[/white]\n"
            f"[bold magenta]๐Ÿ’ฌ Telegram:[/bold magenta] [white]{telegram}[/white]\n"
            f"[bold yellow]โ˜• Buy me a coffee:[/bold yellow] [white]{kofi}[/white]"
        )
        return message

    @property
    def life(self) -> str:
        hobbies = ['๐ŸŽฎ Gaming', '๐Ÿ’ป Coding', '๐ŸŒ Exploring the digital realm', '๐ŸŽถ Music']
        age = 21
        message = (
            f"[bold green]๐ŸŒŸ Age:[/bold green] [white]{age}[/white]\n"
            f"[bold blue]๐Ÿ’ซ My life revolves around:[/bold blue] "
            f"[italic]{', '.join(hobbies)}[/italic]"
        )
        return message

    @property
    def coding(self) -> str:
        skills = {
            '๐Ÿ’Ž Expert': ['Python'],
            'โš™๏ธ Intermediate': ['C++', 'JavaScript'],
            '๐ŸŒฑ Learning': ['Java']
        }
        expertise = ['Python']
        tools = ['๐Ÿช„ VSCode', 'โœจ Magic Wand']

        skills_text = "\n".join(
            [f"[bold]{level}:[/bold] [white]{', '.join(langs)}[/white]" for level, langs in skills.items()]
        )

        message = (
            f"[bold cyan]๐Ÿ‘จโ€๐Ÿ’ป Skills Breakdown:[/bold cyan]\n{skills_text}\n\n"
            f"[bold yellow]โšก Expertise:[/bold yellow] [white]{', '.join(expertise)}[/white]\n"
            f"[bold green]๐Ÿงฐ Tools of choice:[/bold green] [white]{', '.join(tools)}[/white]"
        )
        return message


def main():
    dominatorul_attributes = Attributes()

    console.print(Panel.fit(
        Text("๐ŸŒ DOMINATORUL PROFILE ๐ŸŒ", justify="center", style="bold underline magenta"),
        box=box.DOUBLE,
        border_style="bright_magenta"
    ))

    console.print(Panel(dominatorul_attributes.contact, title="๐Ÿ“ž CONTACT", border_style="cyan", box=box.ROUNDED))
    console.print(Panel(dominatorul_attributes.life, title="๐Ÿ’– LIFE", border_style="green", box=box.ROUNDED))
    console.print(Panel(dominatorul_attributes.coding, title="๐Ÿ’ป CODING", border_style="yellow", box=box.ROUNDED))


if __name__ == "__main__":
    main()

Pinned Loading

  1. SWITCHWAY-60FPS-OVERCLOCK-ADD-ON SWITCHWAY-60FPS-OVERCLOCK-ADD-ON Public

    1