Maimai
# profile.py
from __future__ import annotations
from typing import List, Optional
class HuiHui:
"""Developer profile object."""
def __init__(self) -> None:
self.name: str = "huihui"
self.major: str = "Electronic Engineering"
self.hobbies: List[str] = ["Photography", "Rhythm Games", "Galgame"]
self.website: str = "huihui.dev"
self.contact: str = "contact@huihui.dev"
self.skills: List[str] = [
"Python (OpenCV, Computer Vision, ML basics)",
"SwiftUI (basic)",
"JavaScript (basic)",
"HTML & CSS (basic)",
]
self.projects: List[str] = [
"huihui.dev (personal website with custom UI and code rendering system)",
"Multimodal Health Analysis Prototype (Raspberry Pi + OpenCV)",
]
self.favorite_composers: List[str] = [
"Laur",
"USAO",
"Sakuzyo",
]
self.favorite_bands: List[str] = [
"Morfonica",
"Ave Mujica",
]
self.favorite_songs: List[str] = [
"Grievous Lady -nothing is but what is not- · Team Grimoire & Laur",
"Cyaegha · USAO",
"Cryptarithm · Sakuzyo",
"One step at a time · Morfonica",
"顏 · Ave Mujica",
]
self.favorite_illustrators: List[str] = [
"@momoco_haru",
"@horuhara",
"@kurumi_lm"
]
def about(self) -> str:
return (
"A personal dev space focused on embedded systems, "
"computer vision, and experimental projects"
)
huihui = HuiHui()
Images © respective owners (SEGA, lowiro, YUZUSOFT, NEKO WORKs,etc.)