Hi, I'm Brian Chen

I'm a computer science and statistics student who loves building things that work. Whether it's creating full-stack web applications, automating data pipelines, or simulating complex systems in C++, I enjoy the process of turning ideas into real, functional projects.

This site is a collection of what I’ve built so far — from web platforms to backend systems — and a way to keep track of what I’m learning along the way.

The languages and frameworks I use are Python, C, C++, JavaScript, Java, R, HTML, CSS, Django, Flask, Bootstrap, and React.

Currently, I am learning mobile development.

Projects


MultipliX
HTML, CSS, Python, SQL, JavaScript & Django, Bootstrap, SQLite, Gunicorn, Nginx

Responsive web application that allows users to customize and take mental math tests and compete with others while giving feedback on user's performance based on the type of question.
brianchen.org
HTML, CSS, JavaScript & Bootstrap

Responsive single-page application created with JavaScript that serves as a personal website.

Responsive features created with vanilla JavaScript include this carousel and the Tech Stack carousel, and the scroll-spy feature on the Projects page.
Ternary Addition Turing Machine
Python

Turing machine implemented in JFLAP to simulate the addition of ternary numbers. Used carry propogation and edge-handling to add numbers of varying lengths.

Includes Python scripts for generating and testing cases.
Cache Associativity Simulation
C++

C++ simulation of different types of caches.

Examines the impact of associativity, different least recently used mechanisms, and different write policies for store instructions for multi-tiered caches.
Technical Research Paper

Pre-Processing Methods to Reduce Racial Discrimination of Machine Learning Models in Credit Scoring.

Technical research paper about targeting racial discrimination in AI credit-scoring algorithms by applying pre-processing methods to training data.
Tournament Branch Predictor
C++

C++ program that models bimodal and gshare branch predictors and a tournament branch predictor between the two.

Examines the effect on prediction accuracy of adding layers of complexity and different sized indexes, global history registers, and prediction counts.
Network App
HTML, CSS, Python, SQL, JavaScript & Django, Bootstrap, SQLite

Responsive single-page social media application. Users can post, like posts, edit posts, and follow other users on their feed.

JavaScript on the frontend allows those small user actions to be displayed without needing to reload the page.

Tech Stack

C
HTML
JavaScript
CSS
Java
Python
R
Amazon Web Services
Github/Git/Pages
PostgreSQL
SQLite
Click icon for more info.

About This Site


This is a responsive static single-page application utilizing HTML, CSS(Bootstrap), and vanilla JavaScript that is hosted with Github pages.

The Projects, Courses, and Experience pages are fully loaded using JavaScript, allowing for easy updates.

The responsive carousel feature for the icons and projects on the home(this) page and the scrollspy feature on the prohjects page were fully created with vanilla JavaScript.

Projects Page


The Projects page utilizes Bootstrap's container property to display the projects and project navbar. This is responsive and the navbar disappears when the screen is small enough.

The Projects page also features a scrollspy functionality on the projects navbar, created with vanilla Javascript. This means that the projects navbar will activate in response to what is on the screen.

This is done by adding a function to JavaScript's window.onscroll, which is called whenever the screen is scrolled. The function then checks if the top of any project's container is in the range of 60-200px from the top of the screen, with 60px being slightly above the bottom of the main nav bar. Because this function is called whenever the screen is moved, clicking on a project's link will cause the projects inbetween that project and the current project on the screen to be highlighted.


Courses Page


The Courses page utilizies Bootstrap's container property to collapse and change the view of each classes' information when screen shrinks.

If a course has more information, clicking on it will change the display of the container holding that information to 'block', and displaying that information.