Skip to content
View ha8ta6's full-sized avatar
πŸ–ΌοΈ
This photo is of my pet cat, Mame-chan.
πŸ–ΌοΈ
This photo is of my pet cat, Mame-chan.

Block or report ha8ta6

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ha8ta6/README.md
#!/Earth/Asia/Japan
# -*- speaking: Japanese -*-


import sys, random


class EternalNewbieDeveloper:

    def __init__(self):
        self.name = "Hayato Tamura"
        self.pronoun = "He"
        self.age = 21
        self.hobbies = ["watching anime", "playing casual game", "customizing terminal env"]
        self.tiredness = 0
        self.greet()

    def greet(self):
        print(f"Hi there! I'm {self.name} πŸ‘‹")

    def work(self):
        print(f"{self.name} is developing something πŸ§‘β€πŸ’»")
        print(f"{self.pronoun} sometimes drinks coffee (fuel) to get going β˜•")
        self.tiredness += 40

    def learn(self):
        print(f"{self.name} is learning various technology stacks πŸ“š")
        print(f"{self.pronoun} is newbie and has a lot to learn πŸ’ͺ")
        self.tiredness += 30

    def free_time(self):
        print(f"{self.name} is {random.choice(self.hobbies)} πŸ˜†")
        print(f"{self.pronoun} seems to be having a lot of fun ✨")
        self.tiredness -= 20

    def refresh(self):
        print(f"{self.name} is comforted by small animals πŸ₯°")
        print(f"{self.pronoun} seems to be full of motivation πŸ”₯")
        self.tiredness = 0

    def update(self):
        # I want to live a long and "happy" life :D
        while self.age <= sys.maxsize:
            random.choice([self.work, self.learn, self.free_time])()
            if self.tiredness >= 100:
                self.refresh()


ha8ta6 = EternalNewbieDeveloper()
ha8ta6.update()

Popular repositories Loading

  1. devshells devshells Public

    πŸ‘¨β€πŸ’»πŸš ha8ta6's development shell templates.

    Nix

  2. gitlint-config gitlint-config Public

    πŸ™βš™οΈ ha8ta6's Gitlint configuration.

    Nix

  3. ha8ta6 ha8ta6 Public

    πŸ‘‹πŸ“ ha8ta6's GitHub Profile README.

    Nix