1
2
3
4
5
6
7
8
9
class Me:
    def __init__(self):
        self.name = "Justin Hu"
        self.MBTI = "INTJ"
        self.location = "Toronto, ON, CA"
        self.master = "MBA, Schulich School of Business, York U"
        self.bachelor = "Engineering of Automation, Xiamen University"
        self.hobbies = "hiking, road tripping, kayaking, swimming, reading"
        self.languages = "English, Mandarin, Python, Java, C, C++, Javascript"
1
2
3
4
5
6
7
8
9
class ThisSite:
    def __init__(self):
        self.name = "LogischerMix"
        self.framework = "Hugo"
        self.theme = "PaperMod"
        self.version = "3.0.0"
        self.comment_system = "giscus"
        self.hosting = "Cloudflare Pages"
        self.objective = "A place to allow me to learn systematically and share"