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
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.