About Me

profile-pic
class Thien():
    def __init__(self):
        self.name = "Thien Tran"
        self.home = "New Orleans, LA"
        self.undergradSchool = "University of New Orleans"
        self.hobbies = {
            "Skateboarding",
            "Biking",
            "Watching TV Shows",
            "Going to the Movies",
            "Investing"
        }

    def getInfo():
        return {
            #Click the Link!
            Email("ttran384@gatech.edu"),
            Github("thienlongtran"),
            LinkedIn("thienlongtran"),
            Resume("thienlongtran")
        }

    def getFunFacts():
        return {
            "favoriteClass" = "Solar Systems Astronomy",
            "favoriteTVShow" = "House of the Dragon",
            "favoriteMovie" = "Frozen II",
            "favoriteSong" = "Roses by The Chainsmokers",
            "favoriteFood" = "Gumbo"
        }

Education

University of New Orleans

B.S. Computer Science

Graduation Date: December 2021

Final GPA: 3.99/4.0

Relevant Coursework:

  • Data Structures & Algorithms (CSCI 2125)
  • Machine Structure and Assembly Language (CSCI 2450)
  • Systems Programming (CSCI 2467)
  • Theory of Computation (CSCI 3102)
  • Python for Data Science & Artificial Intelligence (CSCI 3220)
  • Computer Design & Organization (CSCI 3301)
  • Analysis of Algorithms (CSCI 4101)
  • Database Systems (CSCI 4125)
  • Computer Networks and Telecommunications (CSCI 4311)
  • Operating Systems (CSCI 4401)
  • Cloud Computing (CSCI 4452)
  • Programming Language Structure (CSCI 4501)

Projects

House Edge Scraper

Program that web-scrapes the betting odds of a variety of sports games from a casino website and calculates the house edge from the info.

Python

Warframe Inventory Info

Warframe tool that gathers the live web market price of a user's prime items for easier overtime tracking and maximizing profit opportunities.

Python

MRCoD

A Mixed Reality Cognitive Distortion (MRCoD) detection mobile game that interweaves a phone's camera and MobileVR headset to create a cheap, accessible Mixed Reality result.

Unity, C#

Simple Moving Average Pipeline

AWS data pipeline infrastructure involving S3, Lambda, SNS, and DynamoDB that computes the simple moving average of a stock from a CSV input file of stock data.

Python, AWS

AWS Lambda Execution Context

An experiment finding the time/delay conditions that triggers AWS Lambda's execution context switch between cold start and warm start.

Python, AWS, Shell Scripting

Personal Website v1

First version of my personal website featuring a darker theme and a Jekyll landing page template.

HTML, CSS, Javascript

Personal Website v2

The website that you are currently on! Second version of my personal website. Isn't it beautiful?! ♥

HTML, CSS, Javascript

Resume CI/CD Pipeline

GitHub Actions pipeline that propogates resume updates into the host resume repository, into a personal website repository's assets, into a Google Drive folder, and into my personal LinkedIn's featured links.

GitHub Actions, YAML

AI Agent - Raven's Progressive Matrices

Knowledge-Based Artificial Intelligence that's able to solve a selection of problems from Raven's Progressive Matrices (RPM).

Python