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”

Pinned Loading

  1. apache/beam apache/beam Public

    Apache Beam is a unified programming model for Batch and Streaming data processing.

    Java 8.5k 4.5k

  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. python-ALU python-ALU Public

    Educational 8-bit ALU built from first principles: ripple-carry adders, two's complement subtraction, and status flags (Zero, Negative, Overflow). Simulates how CPUs do integer arithmetic at the bi…

    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