Skip to content
View TommyOh0428's full-sized avatar
💭
studying and training at the same time
💭
studying and training at the same time

Highlights

  • Pro

Organizations

@sfuosdev @sfu-akcse

Block or report TommyOh0428

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TommyOh0428/README.md

MasterHead

Tommy (Kanggeon) Oh

tommyoh0428

#include <iostream>
#include <map>
#include <string>

using namespace std;

map<string, string> get_bio() {
    return {
        {"- ⚡ Quick bio:", "4th year Software Systems at Simon Fraser University"},
        {"- 👯 I’m currently leading and collaborating with", "SFU Open Source Development Club"},
        {"- 🔭 I’m currently working on", "Multiagent Discord Bot"},
        {"- 🌱 I’m currently learning", "Amazon Web Services, Docker, SQL, Raspberry Pi"},
        {"- 👨‍💻 All of my projects are available at", "https://tommyoh0428.github.io/"},
        {"- 📫 Reach me through", "tommy32666@gmail.com"}
    };
}

int main() {
    map<string, string> bio = get_bio();
    for (const auto& [key, value] : bio) {
        cout << key << " " << value << endl;
    }
    return 0;
}

Pinned Loading

  1. sfuosdev/swe-resume-evaluator sfuosdev/swe-resume-evaluator Public

    SWE Resume Evaluator is a Software-as-a-Service (SaaS) web application that uses Naive Bayes classifiers to assess users' resumes for their suitability for various software engineering positions, s…

    JavaScript 7 2

  2. sfuosdev/Macm316 sfuosdev/Macm316 Public

    Macm316 provides a visualization and plotting tool for numerical methods in Numerical Analysis.

    JavaScript 5 2

  3. sfuosdev/SFU-RMP sfuosdev/SFU-RMP Public

    Chrome extension for SFU students to provide access to prof rating from RateMyProfessor.com on SFU course registration pages (goSFU, mySchedule)

    JavaScript 4 2

  4. cannon-chaos cannon-chaos Public

    Final project for CMPT 371

    Python 3

  5. Multiagent-Bot Multiagent-Bot Public

    A Multiagent Discord bot that utilize Large Language Model (LLM) and hosted on AWS

    Python 2

  6. sfuosdev/Email-Backend sfuosdev/Email-Backend Public

    Backend server to receive notification via email for any applicants applying

    Java