┌──────────────────────────────────────────────────────────────────────┐
│ │
│ ██████╗ ██╗ ██████╗ ██████╗ ██╗ ██╗████████╗███████╗ │
│ ██╔══██╗██║██╔═══██╗██╔══██╗╚██╗ ██╔╝╚══██╔══╝██╔════╝ │
│ ██║ ██║██║██║ ██║██████╔╝ ╚████╔╝ ██║ █████╗ │
│ ██║ ██║██║██║ ██║██╔══██╗ ╚██╔╝ ██║ ██╔══╝ │
│ ██████╔╝██║╚██████╔╝██████╔╝ ██║ ██║ ███████╗ │
│ ╚═════╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚══════╝ │
│ │
│ ┌─────────────────────────────────────────────────────────────┐ │
│ │ STATUS : ONLINE ゴゴゴゴゴゴ │ │
│ │ STAND : 「Za Warudo」 │ │
│ │ POWER : ██████████████████░░░░ LVL 89 │ │
│ │ UPTIME : since mass_extinction.event │ │
│ │ CLASS : Stand User / AI Tinkerer │ │
│ └─────────────────────────────────────────────────────────────┘ │
│ │
└──────────────────────────────────────────────────────────────────────┘
#!/usr/bin/env python3
"""diobyte.py — you expected a normal profile, but it was me, Dio."""
class Diobyte:
def __init__(self):
self.alias = "Diobyte"
self.focus = ["AI/ML", "automation", "systems", "tinkering"]
self.stand = "「Za Warudo」"
self.os = "Arch btw"
self.editor = "nvim"
self.motto = "if it exists, it can be reverse-engineered"
def attack(self):
return "MUDA " * 7 + "MUDAAA!"
def currently(self):
return {
"hacking_on": "AI/ML experiments",
"learning": "whatever breaks next",
"building": "tools that shouldn't exist yet",
}
def philosophy(self):
return [
"ship it broken, fix it live",
"read the source, not the docs",
"automate yourself out of a job",
]
if __name__ == "__main__":
dio = Diobyte()
print(dio.attack()) # ZA WARUDO! TOKI WO TOMARE!


