I am currently a Graduate Engineer at Riverlane, working on Quantum Error Correction (QEC).
#!/usr/bin/python
class Person:
def __init__(self):
self.name = "Luca Huelle"
self.pronouns = "he/him"
self.languages_spoken = ["en_GB", "de", "ko"] # British English, German, Korean
self.personal_website = "https://51.pegasib.dev"
self.email = "wave@pegasib.dev"
self.current_tech = {
"Desktop OS": "Windows 11 24H2/macOS 15 Sequoia",
"IDE Family": "JetBrains",
"Mobile OS": "Android 12",
}
self.qualifications = ["BSc Natural Sciences (Computer Science & Mathematics)"]
self.experience = [
"Machine Learning/AI", "Python", "Full-stack Web Development", "TypeScript"
]
def say_hello(self):
print(f"Welcome to {self.name}'{'' if self.name.endswith('s') else 's'} GitHub profile!")
me = Person()
me.say_hello()