avatar

Hello there

I’m Huan, a front-end engineer who loves building polished web applications. I dream of one day building my own product with a lot of users.

Currently crafting at Boxo, previously at Thoughtworks.

  • /* Participation Matters */
    class Life {
      constructor() {
        this.experiences = []
      }
      participate(event) {
        this.experiences.push(event)
      }
      reflect() {
        return this.experiences
          .reduce((wisdom, exp) => wisdom + exp, 0)
      }
    }
    const myLife = new Life()
    while (myLife.reflect() < Number.POSITIVE_INFINITY) {
      const next = World.opportunity()
      myLife.participate(next)
    }