Bio
class WordCraftingProgrammer:
def __init__(self):
self.occupation = "programmer"
self.passions = ["coding", "wordcrafting"]
self.day_job = "crafts_codes"
self.night_hobby = "crafts_stories"
self.avoidance = "SemanticError: LIFE_NOT_IN_SPECIFIED_REASON"
self.pursuits = ["meaning_of_life", "forgiveness_redemption"]def status(self):
return f"{self.occupation} who loves the challenge of his {self.passions[0]} and the craft of {self.passions[1]}. " \
f"Crafts codes by day and crafts stories by night, all whilst avoiding the dreaded {self.avoidance}. " \
f"When not debugging lines of code or plot, he finds joy in chasing the {self.pursuits[0]} and a {self.pursuits[1]}."