-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
177 additions
and
92 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Link from "next/link"; | ||
|
||
export default function ProjectDetail({projectName, projectDesc, githubLink}: { | ||
projectName: string, | ||
projectDesc: string[], | ||
githubLink: string | ||
}) { | ||
return ( | ||
<div> | ||
<Link href={githubLink}> | ||
<span className={"link-header"}>{projectName}</span> | ||
</Link> | ||
<div className={"light-text"}> | ||
{projectDesc.map((desc, index) => ( | ||
<div key={index}>{desc}</div> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,55 @@ | ||
{} | ||
{ | ||
"edu": { | ||
"title": "Education", | ||
"nu": { | ||
"degree": "M.S. in Computer Science", | ||
"name": "Northwestern University", | ||
"period": "Sept, 2023 - Dec, 2024" | ||
}, | ||
"sustech": { | ||
"degree": "B.E. in Computer Science and Technology", | ||
"name": "Southern University of Science and Technology", | ||
"period": "Sept, 2019 - Jun, 2023" | ||
}, | ||
"wisc": { | ||
"degree": "Visiting International Student", | ||
"name": "University of Wisconsin - Madison", | ||
"period": "Sept, 2022 - Jan, 2023" | ||
} | ||
}, | ||
"research": { | ||
"title": "Research Interests", | ||
"content": "<div>Now I'm mainly interested in some topics in the research fields of computer security, including <b>system security</b>, <b>network security</b> and <b>cloud native security</b>.</div>" | ||
}, | ||
"projects": { | ||
"title": "Projects", | ||
"ms": { | ||
"name": "MicroShield", | ||
"des": [ | ||
"An East-West Traffic Capturing and Auto Policy Generating System for Kubernetes", | ||
"This is a cloud native security research project supervised by Prof. Yan Chen of NU." | ||
] | ||
}, | ||
"store": { | ||
"name": "SUSTech Store", | ||
"des": [ | ||
"A second-hand trading platform for SUSTech students.", | ||
"This is the course project of Object-Oriented Analysis and Design." | ||
] | ||
}, | ||
"spl": { | ||
"name": "SPL Compiler", | ||
"des": [ | ||
"A compiler for SPL, which is short for SUSTech Programming Language.", | ||
"This is the course project of Compilers." | ||
] | ||
}, | ||
"hc": { | ||
"name": "Hash Checker for Web Applications", | ||
"des": [ | ||
"A lightweight plugin to detect pages containing Wasm and trace them to avoid threats like cryptocurrency mining.", | ||
"This is the course project of Computer Security." | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,55 @@ | ||
{} | ||
{ | ||
"edu": { | ||
"title": "教育背景", | ||
"nu": { | ||
"degree": "计算机科学硕士", | ||
"name": "西北大学", | ||
"period": "2023年9月 - 2024年12月" | ||
}, | ||
"sustech": { | ||
"degree": "计算机科学与技术学士", | ||
"name": "南方科技大学", | ||
"period": "2019年9月 - 2023年6月" | ||
}, | ||
"wisc": { | ||
"degree": "访问国际学生", | ||
"name": "威斯康星大学麦迪逊分校", | ||
"period": "2022年9月 - 2023年1月" | ||
} | ||
}, | ||
"research": { | ||
"title": "研究兴趣", | ||
"content": "<div>目前我主要对计算机安全的一些研究领域感兴趣,包括<b>系统安全</b>、<b>网络安全</b>和<b>云原生安全</b>。</div>" | ||
}, | ||
"projects": { | ||
"title": "参与项目", | ||
"ms": { | ||
"name": "MicroShield", | ||
"des": [ | ||
"一款针对Kubernetes的东西向流量捕获和自动策略生成系统", | ||
"这是由西北大学的闫辰教授指导的云原生安全研究项目。" | ||
] | ||
}, | ||
"store": { | ||
"name": "南科大二手交易平台", | ||
"des": [ | ||
"为南方科技大学学生提供的二手交易平台。", | ||
"该项目为面向对象分析与设计的期末课程项目。" | ||
] | ||
}, | ||
"spl": { | ||
"name": "SPL编译器", | ||
"des": [ | ||
"一款用于SPL(一个专门用于南科大编译原理课程的语言)的编译器。", | ||
"该项目为编译原理课程的项目,是该学期此课程唯二受邀参与期末展示的项目之一。" | ||
] | ||
}, | ||
"hc": { | ||
"name": "网页应用哈希检查器", | ||
"des": [ | ||
"一款轻量级插件,用于检测包含Wasm的页面并追踪,以避免加密货币挖矿等威胁。", | ||
"该项目为计算机安全课程的期末项目。" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters