Profile-image

嗨!我是洪群崴!

軟體工程師

霹靂舞者

旅行者

About Me

💻

軟體工程師

趨勢科技的後端工程師

🤸‍♂️

霹靂舞者

來自 TOP COALITION 職業舞團

舞齡 10+ 年

🗺️

旅行者

真正的發現之旅不是在於尋找新的風景,而是在於有新的眼睛。

-- Marcel Proust

faith.py
class Principle:
    def __init__(self):
        self.mindset = {
            'courage': True,
            'wisdom': 0,
            'gratitude': 0
        }

    def take_responsibility(self):
        try_new_things()
        learn_from_errors()
        retrospective()
        self.mindset['wisdom'] += 1
        self.mindset['gratitude'] += 1

breakin_code = Principle()

while is_alive:
    breakin_code.take_responsibility()