Iβm a motivated SWE student at McGill and I'm trying to learn as much as possible through my projects.
"Managing complexity is the most important technical topic in software development." - Steve McConnell
Feel free to explore my repositories and connect!
class Benjamin(Human):
def __init__(self):
self.name = "Benjamin Curis-Friedman"
self.role = "Software Engineering Student"
self.education = "Mcgill University"
self.location = "Montreal π¨π¦"
self.interests = [
"Machine Learning",
"Shaders with WGSL",
"Open Source"
]
self.languages = ["French", "English"]
def get_current_projects(self):
return {
"OmniClaw": "AI Integration with Omnivox",
}
def say_hi(self):
print("Hey it's nice to meet you!")
print("I'm Ben, what's your name?")
me = Benjamin()
me.say_hi()


