Skip to content

Commit

Permalink
Added newcomer!
Browse files Browse the repository at this point in the history
  • Loading branch information
highjun committed Sep 23, 2024
1 parent 9d0eaa7 commit b159378
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions data/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,42 @@ let members: { [key: string]: AlumniProp | CurrentMemberProp } = {
],
"image": "/members/UichinLee.jpg"
},
"YoungseokSeo": {
"name": "Youngseok Seo",
"role": "M.S. Student",
"email": "ysseo0910@kaist.ac.kr",
"github": "https://github.com/komaseo",
"google_scholar": "https://scholar.google.com/citations?view_op=list_works&hl=en&user=hzANqAEAAAAJ",
"research_interests": [
"Digital wellbeing",
"Behavior change"
],
"histories": [
{
"role": "M.S. Student",
"enterance": "2024.09",
"graduation": ""
}
],
"image": "/members/YoungseokSeo.jpg"
},
"DejiangZheng": {
"name": "Dejiang Zheng",
"role": "Ph.D. Student",
"email": "deok-kang@kaist.ac.kr",
"research_interests": [
"Mobile Computing",
"Human Computer Interaction"
],
"histories": [
{
"role": "Ph.D. Student",
"enterance": "2024.09",
"graduation": ""
}
],
"image": "/members/DejiangZheng.jpg"
},
"JeonghyunKim": {
"name": "Jeonghyun Kim",
"role": "M.S. Student",
Expand Down Expand Up @@ -898,9 +934,9 @@ let members: { [key: string]: AlumniProp | CurrentMemberProp } = {

const sortMemberByEntrance = (a: MemberProp, b: MemberProp) => {
const findEntranceYear = (member: MemberProp) => {
for(let role of memberRoles){
for (let role of memberRoles) {
const idx = member.histories.findIndex((history) => history.role === role);
if(idx !== -1)
if (idx !== -1)
return member.histories[idx].enterance;
}
throw new Error("Member does not have entrance year");
Expand Down
Binary file added public/members/DejiangZheng.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/members/YoungseokSeo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b159378

Please sign in to comment.