Skip to content
View Mathdee's full-sized avatar
💭
Being happy!!
💭
Being happy!!

Highlights

  • Pro

Block or report Mathdee

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mathdee/README.md

👋 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”

Popular repositories Loading

  1. RandomWeightedSampler RandomWeightedSampler Public

    A high-performance Python implementation of weighted random sampling using prefix sums and binary search.

    Python 1

  2. KV-Store KV-Store Public

    Built a fault-tolerant KV store from scratch: Raft leader election + replication, WAL persistence, benchmarks/metrics, and a Next.js monitoring dashboard.

    Go 1

  3. Lock-Free-RingBuffer Lock-Free-RingBuffer Public

    A formally verified (TLA+), hardware-optimized SPSC ring buffer in Go that outperforms channels by 25%.

    Go 1

  4. AI_Discord_bot AI_Discord_bot Public

    DiscordBot fully written in Python

    Python

  5. OddSports OddSports Public

    OddSports is a web-based predictive analytics platform for sports enthusiasts. It allows users to get match outcome probabilities for various sports leagues using an interactive interface and machi…

    JavaScript

  6. Proximity-Alert-Face-Detection-System Proximity-Alert-Face-Detection-System Public

    Real-time face detection system alerting users when too close to screen.

    C++