About

# profile.py

from __future__ import annotations
from typing import List

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",
            "ak+q",
        ]

        self.favorite_bands: List[str] = [
            "Morfonica",
            "Ave Mujica",
        ]

        self.favorite_songs: List[str] = [
            "Grievous Lady -nothing is but what is not- · Team Grimoire & Laur",
            "PRAGMATISM -RESURRECTION- · Laur",
            "Cyaegha · USAO",
            "Cryptarithm · Sakuzyo",
            "虚空の夢 · ak+q",
            "One step at a time · Morfonica",
            "顔 · Ave Mujica",
        ]

huihui = HuiHui()

Interests

Maimai

Arcaea

Galgame

Images © respective owners (SEGA, lowiro, YUZUSOFT, NEKO WORKs, etc.)