lab1_110

seal

Luke’s User Page

Welcome to my personal GitHub User Page!

Click for a funny video

Link to projects

Click for readme


About Me

I am a computer science student at UCSD and programming is my passion. I enjoy working with C++, Python, and web development. I also love to play volleyball and video games (namely VALORANT, PEAK, and Brawl Stars)

“Code is like humor. When you have to explain it, it’s bad.” – Cory House


Skills


My Projects

  1. Sentinel - A project to scan codebases for 30+ vulnerability patterns.
  2. Codescan – SQL Full-stack web app where users can upload their codebases and have them scanned by Sentinel.
  3. SQL Database Engine – A C++ project to parse and execute SQL queries.

Task List

Favorite Quote

// A blunder my friend made a year ago, still makes me laugh thinking about it.
bool operator==(const Poly &lhs, const Poly &rhs)
{
    if(lhs == rhs){
        return true;
    }
    return false;
}