Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add funding list & new postdoc #11

Merged
merged 1 commit into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/avatar/changan.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/funds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 13 additions & 5 deletions src/components/People/people.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"postdocs": [
{
"name": "Kai WANG",
"date": "Sep 2022 - Present",
"img": "WangKai.png",
"bg": "PhD from Dalian University of Technology & Macquarie University",
"web": "https://scholar.google.com/citations?user=QHBzdg8AAAAJ",
"name": "Changan LIU",
"date": "Mar 2025 - Present",
"img": "changan.jpg",
"bg": "PhD from Fudan University",
"web": "https://scholar.google.com/citations?user=uk4iwHwAAAAJ&hl=en",
"area": "Graph Algorithm & Learning"
}
],
Expand Down Expand Up @@ -234,6 +234,14 @@
"web": "",
"position": "Master",
"next": "PhD @ SJTU"
},
{
"name": "Kai WANG",
"date": "Sep 2022 - Mar 2025",
"bg": "PhD from Dalian University of Technology & Macquarie University",
"web": "https://scholar.google.com/citations?user=QHBzdg8AAAAJ",
"next": "Associate Professor @ HIT",
"position": "PostDoc"
}
]
}
11 changes: 11 additions & 0 deletions src/components/self/funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
"Co-PI, MOE ERFP: Sustained Creative Discourse for Deep Learning: Synchronous, asynchronous and blended environment. 2023 - 2025",
"PI, NTU SUG: Workload-Aware Optimization for Improving the Performance of Graph-based Applications, 2021 - 2024",
"PI, MOE AcRF Tier-1: Machine-Learning Enhanced Graph Systems for Multi-Processing, 2021 - 2023",
"PI, MOE AcRF Tier-1: Quality-of-Service Optimization for Personalized Ranking in Dynamic Social Networks, 2022-2024",
"PI, NAP Award: Design and Implementing Autonomous Key-Value Stores, 2022 - 2026",
"PI, MOE AcRF Tier-2: Scaling up Graph Neural Networks – Theory and Algorithms, 2022-2025",
"PI, MOE AcRF Tier-2: Designing Scalable and Robust Storage Systems – From New Theories to Real Systems, 2025 - 2028",
"PI, AISG: Effective Detection of Harmful AI-Generated Videos: The Power of Graph-based Approach, 2025 - 2028",
"PI, NRF Frontier-CRP: From LLMs to LGMs: LLM-empowered Sub-Graph Learning for Large Graph Models, 2025 - 2029"
]
32 changes: 32 additions & 0 deletions src/components/self/fundingList.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import * as React from "react";

import rawData from './funding.json';

// revert the list
const fundings: string[] = rawData.reverse();

export class FundingList extends React.Component {
render() {
return (
<div style={{ width: '70%' }}>
<div style={{ textAlign: 'left', display:'flex', fontSize: "20px", fontWeight: "bold", fontFamily: "Droid Serif", marginBottom: '2rem' }}>

<img src="funds.png" style={{ width: '1.5rem', marginRight: '0.5rem' }} />
<div>Funding List</div>
</div>
<ul style={{ textAlign: 'left', listStyleType: 'none', paddingInlineStart: '0rem', height: '15rem', overflow: "scroll" }}>
{
fundings.map(val => (
<li style={{ marginBottom: '1rem', fontFamily: "'Cardo'", fontSize: "16px" }}>
<span style={{ fontWeight: 'bold' }}>{val.split(', ')[0]}</span>
<span>, {val.split(', ')[1]}, {val.split(', ')[2]}</span>
</li>
))
}
</ul>
</div>
)
}
}

export default FundingList;
4 changes: 4 additions & 0 deletions src/components/self/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as React from "react";
import { Col, Row } from "antd";
import { Content } from "antd/es/layout/layout";
import NewsList from "./news";
import FundingList from "./fundingList";

export class SelfIntro extends React.Component {
public render() {
Expand Down Expand Up @@ -71,6 +72,9 @@ export class SelfIntro extends React.Component {
<div style={{ display: 'flex', justifyContent: 'center' }}>
<NewsList />
</div>
<div style={{ display: 'flex', justifyContent: 'center' }}>
<FundingList />
</div>
</Content>
);
}
Expand Down