Skip to content

Mathdee/mathdee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 

Repository files navigation

👋 Hi There,

import sys

class Student:
    def __init__(self):
        self.name = "Mathijs Deelen"
        self.university = "UBC Computer Science"
        self.focus = [
            "Systems Programming",
            "Distributed Consensus",
            "Performance Optimization"
        ]
        # Honest: Active learning, not "Expert"
        self.currently = "Building a Raft KV Store from scratch & partaking in competitive programming"

    def say_hi(self):
        print(f"Hi, I'm {self.name}. I like digging into how computers actually work.")

if __name__ == "__main__":
    me = Student()
    me.say_hi()

good?

💭 “42”

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published