I created this website to become more familiar with React.js and to highlight my different projects, more information about me, and notes on courses I have taken. I am hosting this website on Netlify so I am able to showcase my website to anyone online. I created a responsive layout and tested this on multiple different devices (iPhone 12 Pro, Pixel 5, etc.) to ensure that my website was accessible on several different devices. I also created detailed notes (Crash Course) for APSC160 which included practice problems, detailed examples, and "Table of Contents" and "Back To Top" buttons to access different units.
What I learned from this project: From creating my personal website, I was able to become much more comfortable with using React and Tailwind CSS. In the past, I was only familiar with traditional CSS and JavaScript, however at my first Co-op, my company introduced me to Tailwind CSS and React. To gain more practice with using it, I decided to use these two frameworks to create this website. Personally, I find it much more convinient. By using Tailwind CSS and React, you do not have to have separate HTML and CSS files.
As part of my Relational Database class (CPSC 304), I worked with two other students to create an application using Java and Oracle to allow users to view the current state of a hypothetical multiplayer video game. We began our project by creating a relational schema to plan the various entities and attributes, including players, items, quests, and many others. Then we began to write our SQL statements using SELECT, UPDATE, and INSERT operations. We also had to implement SQL functionalities such as Selection, Projection, Join, Group By, and Division to allow users to view and edit various attributes.
What I learned from this project: From this database project, I was able to apply what I learned in class to create a functioning application. Being able to write the SQL statements for our specific project solidified my understanding of how relational databases work and how users can interact with them through SQL.
As a personal project, I created an application which generates personalized workouts for you. I found an exercise API and used this to allow users to select the type of exercises they want to perform (cardio, powerlifting, etc.), which muscle group they want to target, as well as the difficulty level of each exercise. Additionally, they can search for specific exercises by directly inputting a name. After submitting their choices, a workout consisting of 10 exercises is generated for them based on their inputs, with instructions on how to perform the exercise as well as any equipment that is needed.
A second feature that I added to my application was a page to calculate how many calories you burned depending on the type of exercise you performed. The form allows you to optionally enter your weight and the duration of exercise to provide a more accurate result. Please check it out here!
What I learned from this project: This project taught me so much about APIs while also improving my React and Tailwind CSS skills. The first step was to learn how to make an API call using an HTTP request. I first found a website to use to make an API call. I first started by trying to print the response to the console, and once I was able to successfully read the data from the console, I began to design the front-end. I felt that the hardest part of this project was creating a form to send the user's data. I also learned how to store my private API key in a .env file to protect it from other people.
In my Computing Systems class (CPEN212), I developed a shell called “Crash” from scratch, serving as a simplified version of Linux shell. It focused on enabling users to initiate new processes by entering commands and capturing signals effectively. I implemented signal handlers for SIGQUIT, SIGINT, SIGSTP, and SIGCHILD to appropriately handle signals sent from child processes or user input such as suspending running processes, terminating foreground processes and managing child process completion. I also addressed complexities related to signal handling in a multi-process environment, effectively managing signal propagation, blocking, and unblocking to avoid race conditions and ensure correct handling of user and child process signals.
What I learned from this project: Through this project, I became more familiar with programming in C and also learned so much about concurrent programming by managing multiple processes at the same time. I faced problems with blocking and unblocking signals correctly and handling race conditions, but was able to resolve these by using the GNU Debugger and through implementing various signal handlers.
During Term 2 of my second year at UBC, I worked with three other students to create our own mini-golf simulator. This project was one of two that I completed as part of my Computer Engineering Design Studio class (CPEN291). We were required to come up with our own idea, and at the time there was a popular golf game seen on TikTok, so we used this as inspiration for our project. We had two months to complete this project and were very happy with the final product. Since we were required to create everything from scratch, we had to assign certain tasks to every member. I worked with other members to implement HTTP POST requests to control user's keyboard inputs and HTTP GET requests to determine which holes were successfully hit to display different messages on front-end. I was also responsible for implementing CircuitPython functions to control the servo motors within the 3-D printed arm. This included the arm's height, reach, and rotation.
What I learned from this project: Overall I learned a ton about front-end languages such as HTML, CSS, and JavaScript, utilized MicroPython to control our 3-D printed arm (created using OnShape from scratch), and learned how the front and back end communicate with each other. It was also the first project where we had the freedom to create anything that we wanted, so we had to figure out with language or framework worked the best with what we wanted to create.
In my Computing Systems class (CPEN212), I developed an efficient memory allocator in Embedded C (similar to malloc function). I employed a first-fit allocation strategy and used an implicit free-list with coalescing in both directions to optimize memory utilization. I also implemented a robust heap consistency checker to determine if all blocks in given heap space were allocated, proper alignment of blocks on 8-byte boundaries and verified that allocated blocks pointed to valid physical memory addresses. After finishing the implementation, I designed and executed a comprehensive suite of 30+ test cases to rigorously assess the accuracy and effectiveness of the “malloc” and “free” functions to confirm proper functionality of the allocation system. Overall, this project familiarized my with coding in C as well as learning conceptual topics such as "malloc" and "free".
What I learned from this project: This project taught me a ton about both programming in C as well as the theory behind a heap management system. For this project, I had to use the GNU Debugger through the Linux command line, so I had to utilize this tool in order to efficiently debug my code.
During Term 2 of my second year, I worked with three other students to create a dancing robot using MicroPython. This project was one of two that I completed as part of my Computer Engineering Design Studio class (CPEN291). We programmed seven creative dance moves, to showcase our robot's mobility to our class. We were given 3-D printed parts for the robot's body and legs. We used 4 servo motors to control the vertical and horizontal movement of the legs, a keypad to control which dance move to perform, an LCD board to display different face images depending on the dance move in progress, and an LED light to blink while dancing. We also used a sensor which made the robot back up if set off. We also used a speaker and manually selected frequencies to be played when performing a dance.
What I learned from this project: This project allowed me to become more familiar with using MicroPython. Since my group did not have a ton of experience with MicroPython, we first learned how to control the servo motors. After successfully moving the servos, I worked with one other member to program the LCD board to display an image, while the other two members began to create unique dance moves. After much Googling and talking to other groups, we were able to display an image on the LCD board. After this, we started to load images for different faces for the dance moves. After the other two members created the dance moves, we collectively worked together to display a different face for each dance move. We did this by using a keypad to display a certain face while performing a dance move.