- Implement standalone Go backend API server using Gin and pure-Go SQLite (modernc.org/sqlite) - Add 11-table schema DDL migrations (000001_init.up.sql) based on DATA_TABLE.md - Add seed data ingestion tool (cmd/seed) and static TypeScript content exporter (cmd/export-content) - Add configuration loader (internal/config) supporting environment variables and .env files (HOST, PORT, DB_PATH, GIN_MODE, CORS_ALLOW_ORIGINS, AUTO_MIGRATE) - Add lightweight multi-stage Dockerfile and docker-compose.yml with persistent SQLite volume - Add comprehensive architecture specification (ARCHITECTURE.md) and REST API interface specification (API_INTERFACE.md) - Harmonize frontend publications page to consume isHighlight flag from database-synced content
545 lines
14 KiB
TypeScript
545 lines
14 KiB
TypeScript
// AUTO-GENERATED by backend/cmd/export-content — DO NOT EDIT BY HAND
|
|
import { Member, Alumnus } from "./types";
|
|
|
|
export const activeMembers: Member[] = [
|
|
{
|
|
"ko": "고석주",
|
|
"en": "Seok-Joo Koh",
|
|
"degree": "Professor"
|
|
},
|
|
{
|
|
"ko": "최동규",
|
|
"en": "Dong-Kyu Choi",
|
|
"degree": "PhD"
|
|
},
|
|
{
|
|
"ko": "남혜빈",
|
|
"en": "Hye-Been Nam",
|
|
"degree": "PhDCandidate"
|
|
},
|
|
{
|
|
"ko": "임도현",
|
|
"en": "Dohyeon Lim",
|
|
"degree": "PhDStudent"
|
|
},
|
|
{
|
|
"ko": "최준혁",
|
|
"en": "Jun-Hyeok Choi",
|
|
"degree": "PhDStudent"
|
|
},
|
|
{
|
|
"ko": "신광선",
|
|
"en": "Gwang-Seon Shin",
|
|
"degree": "MSCandidate"
|
|
},
|
|
{
|
|
"ko": "이환웅",
|
|
"en": "Hwan-Woong Lee",
|
|
"degree": "MSStudent"
|
|
},
|
|
{
|
|
"ko": "Hoang Anh Dang",
|
|
"en": "Hoang Anh Dang",
|
|
"degree": "MSStudent"
|
|
},
|
|
{
|
|
"ko": "김민희",
|
|
"en": "Minhee Kim",
|
|
"degree": "PhDCandidate",
|
|
"affiliation": "School of Computer Science and Engineering"
|
|
},
|
|
{
|
|
"ko": "김근솔",
|
|
"en": "Keun-Sol Kim",
|
|
"degree": "PhDCandidate",
|
|
"affiliation": "Department of Information Security"
|
|
},
|
|
{
|
|
"ko": "민성준",
|
|
"en": "Sung-Jun Min",
|
|
"degree": "PhDCandidate",
|
|
"affiliation": "Department of Information Science"
|
|
},
|
|
{
|
|
"ko": "최진원",
|
|
"en": "Jin-Won Choi",
|
|
"degree": "PhDStudent",
|
|
"affiliation": "Department of Science and Technology"
|
|
},
|
|
{
|
|
"ko": "정기수",
|
|
"en": "Ki-Soo Jung",
|
|
"degree": "PhDStudent",
|
|
"affiliation": "Department of Science and Technology"
|
|
},
|
|
{
|
|
"ko": "이미주",
|
|
"en": "Mi-Joo Lee",
|
|
"degree": "PhDStudent",
|
|
"affiliation": "Department of ICT Convergence"
|
|
},
|
|
{
|
|
"ko": "박유나",
|
|
"en": "Yunah Park",
|
|
"degree": "MSCandidate",
|
|
"affiliation": "Department of Information Security"
|
|
},
|
|
{
|
|
"ko": "박채영",
|
|
"en": "Chae-Young Park",
|
|
"degree": "MSCandidate",
|
|
"affiliation": "Department of Information Science"
|
|
}
|
|
];
|
|
|
|
export const alumni: Alumnus[] = [
|
|
{
|
|
"ko": "김동주",
|
|
"en": "Dongju Kim",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2026-08",
|
|
"major": "Computer Science and Engineering",
|
|
"currentPosition": "He is now with Daegu Catholic University (대구가톨릭대학교) as Professor"
|
|
},
|
|
{
|
|
"ko": "황정미",
|
|
"en": "Jung-Mi Hwang",
|
|
"degree": "MS",
|
|
"graduatedAt": "2026-08",
|
|
"major": "Information Science",
|
|
"currentPosition": "She is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "배드로",
|
|
"en": "Dro Bae",
|
|
"degree": "MS",
|
|
"graduatedAt": "2026-02",
|
|
"major": "Industrial Engineering",
|
|
"currentPosition": "He is now with SK AX"
|
|
},
|
|
{
|
|
"ko": "권세기",
|
|
"en": "Se-Gi Kwon",
|
|
"degree": "MS",
|
|
"graduatedAt": "2026-02",
|
|
"major": "Information Security",
|
|
"currentPosition": "He is now with J Solution (제이솔루션) as CEO"
|
|
},
|
|
{
|
|
"ko": "조세현",
|
|
"en": "Se-Hyun Cho",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2025-08",
|
|
"major": "Information Security",
|
|
"currentPosition": "He is now with Cyber Security Center"
|
|
},
|
|
{
|
|
"ko": "김윤성",
|
|
"en": "Yun-Seong Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2025-08",
|
|
"major": "Data Convergence Computing",
|
|
"currentPosition": "He is now with SL (에스엘)"
|
|
},
|
|
{
|
|
"ko": "김수진",
|
|
"en": "Su-Jin Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2025-08",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "김상태",
|
|
"en": "Sang-Tae Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2025-08",
|
|
"major": "Industrial Engineering",
|
|
"currentPosition": "He is now with Oh-Sung Electronis (오성전자)"
|
|
},
|
|
{
|
|
"ko": "김규범",
|
|
"en": "Gyu-Bum Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2025-08",
|
|
"major": "Computer Science and Engineering",
|
|
"currentPosition": "He is now with Korea Real Estate Board (한국부동산원)"
|
|
},
|
|
{
|
|
"ko": "정중화",
|
|
"en": "Joong-Hwa Jung",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2025-02",
|
|
"currentPosition": "He is now with Lychee AI Coding Academy (리치AI코딩학원) as CEO"
|
|
},
|
|
{
|
|
"ko": "임도현",
|
|
"en": "Dohyeon Lim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2025-02",
|
|
"major": "Computer Science and Engineering",
|
|
"currentPosition": "He is now with TakenSoft (테이큰소프트)"
|
|
},
|
|
{
|
|
"ko": "김소용",
|
|
"en": "So-Yong Kim",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2024-08",
|
|
"currentPosition": "He is now with Catholic University of Leuven (UCLouvain) in Belgium"
|
|
},
|
|
{
|
|
"ko": "김민지",
|
|
"en": "Min-Ji Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2024-02",
|
|
"currentPosition": "She is now with LG Electronics"
|
|
},
|
|
{
|
|
"ko": "안은지",
|
|
"en": "Eun-Ji Ahn",
|
|
"degree": "MS",
|
|
"graduatedAt": "2024-02",
|
|
"currentPosition": "S is now with National Security Research Institute (국가보안연구소)"
|
|
},
|
|
{
|
|
"ko": "오동규",
|
|
"en": "Dong-Kyu Oh",
|
|
"degree": "MS",
|
|
"graduatedAt": "2024-02",
|
|
"major": "Industrial Engineering",
|
|
"currentPosition": "He is now with Human-Plus (휴먼플러스)"
|
|
},
|
|
{
|
|
"ko": "김재성",
|
|
"en": "Jae-Seong Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2023-08",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "최동규",
|
|
"en": "Dong-Kyu Choi",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2023-02",
|
|
"currentPosition": "He is now with ISL in KNU"
|
|
},
|
|
{
|
|
"ko": "최진원",
|
|
"en": "Jin-Won Choi",
|
|
"degree": "MS",
|
|
"graduatedAt": "2023-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "김지은",
|
|
"en": "Ji-Eun Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2023-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "She is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "김철민",
|
|
"en": "Cheol-Min Kim",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2022-08",
|
|
"currentPosition": "He is now with KETI (한국전자기술연구원)"
|
|
},
|
|
{
|
|
"ko": "김경식",
|
|
"en": "Kyung-Sik Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2022-02",
|
|
"currentPosition": "He is now with Hyundai Autoever (현대오토에버)"
|
|
},
|
|
{
|
|
"ko": "김근수",
|
|
"en": "Keun-Soo Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2022-02",
|
|
"currentPosition": "He is now with Shinhan Bank (신한은행)"
|
|
},
|
|
{
|
|
"ko": "정성우",
|
|
"en": "Seong-Woo Jeong",
|
|
"degree": "MS",
|
|
"graduatedAt": "2022-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "최민철",
|
|
"en": "Min-Cheol Choi",
|
|
"degree": "MS",
|
|
"graduatedAt": "2022-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "장준희",
|
|
"en": "Jun-Hee Jang",
|
|
"degree": "MS",
|
|
"graduatedAt": "2021-08",
|
|
"major": "Computer Science and Engineering",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "Muhammad Hafidh Firmansyah",
|
|
"en": "Muhammad Hafidh Firmansyah",
|
|
"degree": "MS",
|
|
"graduatedAt": "2021-08",
|
|
"currentPosition": "He is now with State Polytechnic University of Jember in Indonesia"
|
|
},
|
|
{
|
|
"ko": "장강민",
|
|
"en": "Kang-Min Jang",
|
|
"degree": "MS",
|
|
"graduatedAt": "2021-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "이홍근",
|
|
"en": "Hong-Keun Lee",
|
|
"degree": "MS",
|
|
"graduatedAt": "2021-02",
|
|
"major": "Information Science",
|
|
"currentPosition": "He is now with NIA (한국지능정보사회진흥원)"
|
|
},
|
|
{
|
|
"ko": "남혜빈",
|
|
"en": "Hyebeen Nam",
|
|
"degree": "MS",
|
|
"graduatedAt": "2021-02",
|
|
"currentPosition": "She is now with ISL in KNU"
|
|
},
|
|
{
|
|
"ko": "최낙중",
|
|
"en": "Nak-Jung Choi",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2020-02",
|
|
"currentPosition": "He is now with Agency for Defense Development (국방과학연구소)"
|
|
},
|
|
{
|
|
"ko": "정민우",
|
|
"en": "Min-Woo Jung",
|
|
"degree": "MS",
|
|
"graduatedAt": "2019-02",
|
|
"currentPosition": "He is now with LG Electronics (LG전자)"
|
|
},
|
|
{
|
|
"ko": "강형우",
|
|
"en": "Hyung-Woo Kang",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2018-08",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "최예찬",
|
|
"en": "Ye-Chan Choi",
|
|
"degree": "MS",
|
|
"graduatedAt": "2018-02",
|
|
"currentPosition": "He is now with LG-CNS"
|
|
},
|
|
{
|
|
"ko": "최상일",
|
|
"en": "Sang-Il Choi",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2017-02",
|
|
"currentPosition": "He is now with Daegu Catholic University (대구가톨릭대학교) as a professor"
|
|
},
|
|
{
|
|
"ko": "박진호",
|
|
"en": "Jin-Ho Park",
|
|
"degree": "MS",
|
|
"graduatedAt": "2016-08",
|
|
"currentPosition": "He is now with BiThumb (빗썸코리아)"
|
|
},
|
|
{
|
|
"ko": "석성윤",
|
|
"en": "Sung-Yoon Seok",
|
|
"degree": "MS",
|
|
"graduatedAt": "2016-08",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김진규",
|
|
"en": "Jin-Kyu Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2016-08",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김재철",
|
|
"en": "Jae-Cheol Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2016-08",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김지인",
|
|
"en": "Ji-In Kim",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2016-02",
|
|
"currentPosition": "He is now with FAM Tech. (팸텍) as CEO"
|
|
},
|
|
{
|
|
"ko": "김우주",
|
|
"en": "Woo-Ju Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2016-02",
|
|
"currentPosition": "He is now with ZCube (지큐브)"
|
|
},
|
|
{
|
|
"ko": "박정섭",
|
|
"en": "Jung-Sub Park",
|
|
"degree": "MS",
|
|
"graduatedAt": "2015-08",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "최종명",
|
|
"en": "Jong-Myoung Choi",
|
|
"degree": "MS",
|
|
"graduatedAt": "2015-02",
|
|
"currentPosition": "He is now with NP Communications"
|
|
},
|
|
{
|
|
"ko": "이종관",
|
|
"en": "Jong-Kwan Lee",
|
|
"degree": "MS",
|
|
"graduatedAt": "2014-02",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Hanwha Ocean (한화오션)"
|
|
},
|
|
{
|
|
"ko": "이상헌",
|
|
"en": "Sang-Hun Lee",
|
|
"degree": "MS",
|
|
"graduatedAt": "2014-02",
|
|
"currentPosition": "He is now with Inno Wireless"
|
|
},
|
|
{
|
|
"ko": "민경욱",
|
|
"en": "Kyeong-Wook Min",
|
|
"degree": "MS",
|
|
"graduatedAt": "2013-02",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김상헌",
|
|
"en": "Sang-Heon Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2013-02",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "Moneeb Gohar",
|
|
"en": "Moneeb Gohar",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2012-08",
|
|
"currentPosition": "He is now with Department of Computer Science, Bahria University (at Islamabad) in Pakistan"
|
|
},
|
|
{
|
|
"ko": "박재완",
|
|
"en": "Jae-Wan Park",
|
|
"degree": "MS",
|
|
"graduatedAt": "2012-02",
|
|
"currentPosition": "He is now with Ministry of Justice (Immigration Information Center, 법무부)"
|
|
},
|
|
{
|
|
"ko": "이재경",
|
|
"en": "Jae-Kyoung Lee",
|
|
"degree": "MS",
|
|
"graduatedAt": "2012-02",
|
|
"currentPosition": "She is now with Korea Transportation Satefy Authority (한국교통안전공단)"
|
|
},
|
|
{
|
|
"ko": "하원기",
|
|
"en": "Won-Ki Ha",
|
|
"degree": "MS",
|
|
"graduatedAt": "2012-02",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김근희",
|
|
"en": "Keun-Hee Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2012-02",
|
|
"major": "Samsung Electronics Program",
|
|
"currentPosition": "She is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "권순홍",
|
|
"en": "Soon-Hong Kwon",
|
|
"degree": "MS",
|
|
"graduatedAt": "2010-02",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "김동필",
|
|
"en": "Dong-Phil Kim",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2009-02",
|
|
"currentPosition": "He is now with National Security Research Institute (국가보안연구소)"
|
|
},
|
|
{
|
|
"ko": "최린",
|
|
"en": "Lin Cui",
|
|
"degree": "PhD",
|
|
"graduatedAt": "2009-02",
|
|
"currentPosition": "He is now with Tianjin University of Technology and Education in China"
|
|
},
|
|
{
|
|
"ko": "이동화",
|
|
"en": "Dong-Hwa Lee",
|
|
"degree": "MS",
|
|
"graduatedAt": "2009-02",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
},
|
|
{
|
|
"ko": "박재성",
|
|
"en": "Jae-Sung Park",
|
|
"degree": "MS",
|
|
"graduatedAt": "2008-08",
|
|
"currentPosition": "He is now with Gom&Company (곰앤컴퍼니)"
|
|
},
|
|
{
|
|
"ko": "주수경",
|
|
"en": "Su-Kyoung Ju",
|
|
"degree": "MS",
|
|
"graduatedAt": "2008-02",
|
|
"currentPosition": "She is now with Youngjin Univ. (영진전문대학교)"
|
|
},
|
|
{
|
|
"ko": "윤성식",
|
|
"en": "Sung-Shik Yoon",
|
|
"degree": "MS",
|
|
"graduatedAt": "2007-08",
|
|
"currentPosition": "He is now with Jo-Il Textile Processing Company (조일가공) as CEO"
|
|
},
|
|
{
|
|
"ko": "김상태",
|
|
"en": "Sang-Tae Kim",
|
|
"degree": "MS",
|
|
"graduatedAt": "2007-02",
|
|
"currentPosition": "He is now with LG Electronics (LG전자)"
|
|
},
|
|
{
|
|
"ko": "하종식",
|
|
"en": "Jong-Shik Ha",
|
|
"degree": "MS",
|
|
"graduatedAt": "2007-02",
|
|
"currentPosition": "He is now with Samsung Electronics (삼성전자)"
|
|
}
|
|
];
|