Projects
Filesystem Device Driver
A class project to create a distributed filesystem device driver to interact with a virtual disk based on user commands using the C programming language. Allows users to interact with files on a virtual disk with functions like open, close, read, write, seek.
Designed structures to hold metadata about each file in the disk, such as the file descriptor, file size, position of the file pointer, location of the file's data on the disk, etc.
Utilized socket programming to send and receive data and commands over a network
Implemented a LRU cache to improve performance of disk operations
Tested to handle over 6 million I/O operations on a combined workload of over 50 million bytes of data
Memory Allocator
A class project to implement a memory allocator that supports both Buddy Allocation and Slab Allocation schemes.
Designed structures to hold metadata about the binary tree for the buddy allocator scheme and the slab descriptor table for the slab allocator scheme
Implemented custom versions of malloc() and free() for users to manage memory addresses within a memory space using either scheme.
Virtual Memory Manager
A class project to create an access control mechanism to manage virtual memory on limited physical memory using two different page replacement policies.
Designed structures to hold metadata about our queues for the first-in-first-out and the third chance replacement policies, as well as the virtual pages.
Implemented a sigsev_handler() to catch access to pages of memory that are not currently in physical memory, or pages that may require a permission change.
Allows a user to create more pages than the physical memory can hold, in which the virtual memory manager seamlessly evicts and replaces physical frames when full.
Room Scheduler Application
A class project to create a room scheduling application for a fictional college using java.
Designed classes to hold metadata of the faculty, rooms, reservations, etc.
Utilized multiple databases to hold data for the entire application
Created an interactive user interface window for users to have full functionality of the application.
Dungeon Crawler Game
A solo developed 2.5D roguelike dungeon crawler video game made in the Godot game engine.
Utilized procedural generation to randomly create new dungeon floors every playthrough with randomized layouts, enemies, items, and more.
Designed classes to hold metadata for the player and various enemy types along with including their in-game functionality.