I'm a 17 year old who enjoys programming in his free time. I switched from vim to Doom Emacs, and Iβve been really enjoying the experience. Right now, I mainly code in Python and JavaScript. Iβve also gained some shell experience through the OverTheWire Bandit challenges, which I found really fun and highly recommend. In addition to coding, I also have experience in video editing with DaVinci Resolve .I love building small apps, learning new programming languages, and creating simple games inspired by cellular automatons, like Langton's Ant or similar concepts.
class Programmer(object):
def __init__(self):
self.name: str = "Moritz"
self.age: int = 17
def hi(self):
print("Hey!")
programmer = Programmer()
programmer.hi()