Personal 

Projects

Weather App
Next.js
TailwindCSS

I developed a dynamic website that enables users to easily check local weather conditions based on their location. The site is built with Next.js and styled using TailwindCSS, ensuring a seamless and responsive user experience. It's hosted on Vercel for optimal performance and reliability.

Leveraging the power of the OpenWeatherAPI, the website converts city names into precise latitude and longitude coordinates, providing detailed hourly and weekly weather forecasts. Key features of the website include a dark and light mode, responsive design, unit conversion, and search saving.

Rate My GSI
React.js
Node.js
MongoDB
Express
Figma

Rate My GSI is a website that allows users to rate and comment on their class GSIs and TAs. To create the website, I utilized the MERN (MongoDB, Express, React.js, Node.js) stack.

For the frontend, I used the React Material UI library to create the user interface, based on a Figma mockup. I used Node.js with Express and Mongoose for the backend to interact with a MongoDB database. To facilitate communication between the two, I created database models and routes in the backend, which I accessed through the frontend through the Axios library.

This comprehensive website incorporates a wide array of features, including advanced filtering and searching functionalities for Graduate Student Instructors (GSIs), an immersive display of their profiles and accompanying information, the ability for users to contribute comments and ratings, and a streamlined form for submitting new GSIs.

Pathfinding Algorithm Visualizer
C++
SFML
DSA

Pathfinding Algorithm Visualizer is a project where I utilized C++ and SFML to visualize different pathfinding algorithms.

This interactive project allows users to select from a range of pathfinding algorithms, including DFS, BFS, Dijkstra, and A*, and apply them to either a randomly generated maze or an open area. The algorithm visually highlights the visited squares, providing insight into their distinct characteristics and behavior.

Course Seat Bot
Python
MongoDB

Course Seat Bot is a project where I created a Discord Bot that notifies the user whenever Berkeley classes have open seats

The bot uses Python and the BeautifulSoup library to fetch the HTML of the Berkeley course catalog, then filters for seat numbers and notifies the user if any new seats have been open. This can potentially allow students to skip the waitlist and enroll directly into the class and save their class schedule plans.

School 

Projects

RISC-V CPU
Logism

RISC-V CPU is a project where I designed a RISC-V CPU using Logism.

I designed and implemented the parts of a CPU necessary to execute nearly all of the RISC-V instructions, including the Arithmetic Logic Unit (ALU), Register File (RegFile), Immediate Generator, and datapaths.

The CPU was able to run I-type (immediate) instructions, R-type (register) instructions, B-type (branch) instructions, load and store instructions, and jumps and U-type instructions. These instructions were also pipelined, allowing for two instructions to be run per CPU cycle.

BYOW
Java
DSA

Build Your Own World is a 2D, procedurally generated dungeon crawler game written in Java, where the user has to collect a key to escape a maze while being chased by enemies.

I implemented a sophisticated seed-based world generation engine using Prim’s MST. The game also features restricted vision based on line of sight, interactable light sources with a robust lighting system, an immersive sound system, enemies equipped with A* pathfinding capabilities, a player shooting and combat system, and the crucial functionality to save and quit games.

Secure File Sharing System
Go

Secure File Sharing System is a project where users can securely create, access, append, and share files securely, despite an attacker having access to the entire database, through the use of various cryptographic library functions in Go.

The system can initialize and load users on multiple devices. The users can create files, retrieve and append to these files, and also share these files so other users can access them. Of course, the system also comes with an access revocation system and prevents previously shared users from regaining access to files. The project uses symmetric encryption and HMACing to ensure integrity and confidentiality in files and RSA asymmetric encryption and digital signatures to ensure integrity and confidentiality in invitations. Some other important library functions include hashing, Argon2Key, and hash-based key derivation.

Machine Learning
Python
Pytorch

During this project, I learned how to use Pytorch on various machine-learning applications, including language detection and digit classification.

To recognize handwritten digits, I began by creating a one-layer Linear neural network, using ReLU activation to combine layers and Cross-Entropy for the loss. To filter the data, I performed a convolution on the data and flattened it to enhance model performance, achieving an accuracy of over 97%. For language recognition, I used a two-layer Recurrent Neural Network to recognize the languages of words of different lengths with an accuracy of over 81%. This project helped me understand neural networks and how to edit hyperparameters such as batch size, the learning rate, layer size, number of layers, and epoch size to achieve the best models.

Reinforcement Learning
Python
Pytorch

During this project, I simulated a Pacman game trained with reinforcement learning. I implemented value iteration, Q Learning, Approximate Q Learning, and Deep Q Learning using the Pytorch library.

During this, I solidified my understanding of Pytorch and Reinforcement Learning algorithms, including how to optimize hyperparameters such as the learning rate, number of hidden layers, hidden layer size, and batch size.

Scheme Intepreter
Python
Scheme

Scheme Interpreter is a project where I designed an interpreter for Scheme that translates lines of Scheme code into Python, and returns its output.

The project relies heavily on a deep understanding of Scheme and Python’s object-oriented programming. Through recursion, it parses the Scheme expressions to a custom Python object through lexical and syntactic analysis, then evaluates and outputs the resulting expression. The recursion also uses the tail recursion optimization to minimize memory usage. The final result can parse Scheme expressions like primitives, call expressions, and special forms to their resulting values.

Snek
C

Snek is a clone of the popular game Snake written in C.

I utilized double pointers and memory management to recreate the game’s functionality, including keyboard input, randomly generating food, and snake growth and death. I also gained familiarity using cgdb to debug my code, and Valgrind to check for memory leaks.