Code & Projects

Technical Portfolio

A collection of academic projects, automation scripts, and database schemas. Focusing on efficient backend logic, data management, and process automation.

Portfolio Website Preview
Live Demo Active

Professional Portfolio

Designed and deployed this responsive personal brand website to showcase technical projects. Implemented a modern UI with Tailwind CSS, ensuring mobile responsiveness and cross-browser compatibility.

HTML5 Tailwind CSS Web Design
You Are Here
import pandas as pd
def clean_client_data(file_path):
  # Remove duplicates and nulls
  df = pd.read_csv(file_path)
  df.dropna(subset=['email'], inplace=True)
  return df.to_json()
View Source

Client Data Automator

A Python script developed to automate the cleaning and organization of client records. Reduces manual entry time by removing duplicates and formatting contact details for CRM integration.

Python Pandas Automation
Review Code
public class Student {
  private String name;
  private double gpa;

  public void updateGrade(double score) {
    // Calculate weighted average
    this.gpa = (gpa + score) / 2;
  }
}
View Source

Academic Grade Tracker

Object-Oriented Programming (OOP) project designed to manage student records. Features include GPA calculation, course enrollment logic, and data persistence using file I/O.

Java OOP Algorithms
Review Code
> SELECT agent_id, AVG(price)
> FROM transactions T
> JOIN agents A ON T.agent\_id = A.id
> GROUP BY agent_id;

Query executed in 0.05s...
[====================] 100%_
View Source

Real Estate Data Analysis

SQL Self-Study Project: Built a relational environment to model real estate transaction trends using public datasets. Focused on efficient data querying and aggregation.

SQL Database Design Data Analysis
Review Code

Explore More on GitHub

Check out my repositories for continuous learning projects, gists, and coding challenges.

Visit Full Profile