Skip to content

Commit f843d17

Browse files
committed
Add comprehensive projects section with clean card design
1 parent cd6c022 commit f843d17

File tree

31 files changed

+846
-68
lines changed

31 files changed

+846
-68
lines changed

archetypes/news.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: false
5+
category: "" # publications, awards, people, talks, software
6+
featured: false
7+
summary: ""
8+
tags: []
9+
authors: []
10+
links: []
11+
---

assets/css/custom.css

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,3 +649,111 @@
649649
grid-template-columns: 1fr;
650650
}
651651
}
652+
653+
/* Modern News Box Styles */
654+
.news-box {
655+
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
656+
border-radius: 12px;
657+
padding: 20px;
658+
margin: 24px 0;
659+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
660+
position: relative;
661+
overflow: hidden;
662+
}
663+
664+
.news-box::before {
665+
content: '';
666+
position: absolute;
667+
top: 0;
668+
left: 0;
669+
right: 0;
670+
height: 3px;
671+
background: linear-gradient(90deg, #861F41 0%, #E5751F 100%);
672+
}
673+
674+
.news-scroll {
675+
max-height: 200px;
676+
overflow-y: auto;
677+
overflow-x: hidden;
678+
padding-right: 8px;
679+
}
680+
681+
/* Modern Scrollbar */
682+
.news-scroll::-webkit-scrollbar {
683+
width: 6px;
684+
}
685+
686+
.news-scroll::-webkit-scrollbar-track {
687+
background: rgba(0, 0, 0, 0.05);
688+
border-radius: 10px;
689+
}
690+
691+
.news-scroll::-webkit-scrollbar-thumb {
692+
background: linear-gradient(180deg, #861F41 0%, #E5751F 100%);
693+
border-radius: 10px;
694+
transition: all 0.3s ease;
695+
}
696+
697+
.news-scroll::-webkit-scrollbar-thumb:hover {
698+
background: linear-gradient(180deg, #E5751F 0%, #861F41 100%);
699+
}
700+
701+
/* Firefox Scrollbar */
702+
.news-scroll {
703+
scrollbar-width: thin;
704+
scrollbar-color: #861F41 rgba(0, 0, 0, 0.05);
705+
}
706+
707+
.news-entry {
708+
display: flex;
709+
align-items: center;
710+
gap: 16px;
711+
padding: 10px 12px;
712+
margin-bottom: 8px;
713+
background: rgba(255, 255, 255, 0.7);
714+
backdrop-filter: blur(10px);
715+
border-radius: 8px;
716+
transition: all 0.3s ease;
717+
cursor: default;
718+
}
719+
720+
.news-entry:hover {
721+
background: rgba(255, 255, 255, 0.9);
722+
transform: translateX(4px);
723+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
724+
}
725+
726+
.news-entry:last-child {
727+
margin-bottom: 0;
728+
}
729+
730+
.news-date {
731+
color: #861F41;
732+
font-size: 0.8rem;
733+
font-weight: 700;
734+
min-width: 65px;
735+
text-transform: uppercase;
736+
letter-spacing: 0.5px;
737+
opacity: 0.8;
738+
}
739+
740+
.news-title {
741+
color: #2c3e50;
742+
font-size: 0.95rem;
743+
font-weight: 500;
744+
flex: 1;
745+
line-height: 1.4;
746+
}
747+
748+
/* Gradient fade effect at bottom of scroll */
749+
.news-box::after {
750+
content: '';
751+
position: absolute;
752+
bottom: 20px;
753+
left: 20px;
754+
right: 20px;
755+
height: 30px;
756+
background: linear-gradient(to top, rgba(245, 247, 250, 1), rgba(245, 247, 250, 0));
757+
pointer-events: none;
758+
z-index: 1;
759+
}

config/_default/menus.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ main:
77
- name: Home
88
url: /
99
weight: 1
10-
- name: Publications
10+
- name: Papers
1111
url: /publication/
1212
weight: 2
13-
- name: Open-Source
14-
url: /opensource/
13+
- name: Projects
14+
url: /project/
1515
weight: 3
1616
- name: Courses
1717
url: /teaching/
1818
weight: 4
19+
- name: Open-Source
20+
url: /opensource/
21+
weight: 5
1922
- name: Sponsors
2023
url: /sponsors/
21-
weight: 5
24+
weight: 6
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Best Paper Award at SYSTOR 2022"
3+
date: 2022-06-15T00:00:00Z
4+
draft: false
5+
category: "awards"
6+
featured: false
7+
summary: "Queenie paper wins Best Paper Award at SYSTOR 2022"
8+
tags: ["systor", "awards", "best-paper"]
9+
authors: []
10+
links:
11+
- name: "Queenie Paper"
12+
url: "/publication/conference-paper/systor22-queenie/"
13+
---
14+
15+
Our paper on Queenie has been awarded the **Best Paper Award** at the 15th ACM International Systems and Storage Conference (SYSTOR 2022)!
16+
17+
Queenie presents novel techniques for improving storage system performance through intelligent request scheduling and resource management. This recognition from the SYSTOR community validates the importance of our work in advancing storage systems research.
18+
19+
Congratulations to the entire team!
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "ASPLOS 2023 Distinguished Paper Award"
3+
date: 2023-03-27T00:00:00Z
4+
draft: false
5+
category: "awards"
6+
featured: true
7+
summary: "Pond paper receives Distinguished Paper Award at ASPLOS 2023"
8+
tags: ["asplos", "awards", "best-paper"]
9+
authors: []
10+
links:
11+
- name: "Pond Paper"
12+
url: "/publication/conference-paper/asplos23-pond/"
13+
---
14+
15+
We are proud to announce that our paper "Pond: CXL-Based Memory Pooling Systems for Cloud Platforms" has received the **Distinguished Paper Award** at ASPLOS 2023!
16+
17+
This recognition highlights the significance of our work on CXL-based memory pooling systems, which enables efficient memory resource sharing across servers in cloud environments. The Pond system demonstrates how emerging CXL technology can be leveraged to build practical memory disaggregation solutions.
18+
19+
Congratulations to all the authors on this outstanding achievement!

content/news/2024-new-students.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: "Welcome New PhD Students to MoatLab"
3+
date: 2024-08-15T00:00:00Z
4+
draft: false
5+
category: "people"
6+
featured: false
7+
summary: "MoatLab welcomes four new PhD students joining in Fall 2024"
8+
tags: ["students", "team", "welcome"]
9+
authors: []
10+
links: []
11+
---
12+
13+
We are excited to welcome four talented PhD students joining MoatLab for Fall 2024!
14+
15+
## New Team Members:
16+
17+
- **Hansen Idden** - Joining from [previous institution], Hansen will be working on memory systems and storage optimization.
18+
19+
- **Sijia Li** - With a background in systems architecture, Sijia will focus on CXL memory technologies and tiered memory management.
20+
21+
- **Hanchen Xu** - Hanchen brings expertise in operating systems and will explore software-hardware co-design for next-generation storage systems.
22+
23+
- **Shoaib Qazi** - Continuing from 2023, Shoaib is advancing his research in distributed systems and cloud infrastructure.
24+
25+
We're thrilled to have these talented researchers join our team and look forward to their contributions to advancing computer systems research at MoatLab!
26+
27+
Welcome aboard!
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "Prof. Huaicheng Li Receives NSF CAREER Award"
3+
date: 2024-01-15T00:00:00Z
4+
draft: false
5+
category: "awards"
6+
featured: true
7+
summary: "Prof. Li awarded prestigious NSF CAREER grant for research on next-generation memory systems"
8+
tags: ["nsf", "career", "awards", "grants"]
9+
authors: ["Huaicheng Li"]
10+
links:
11+
- name: "NSF Award Page"
12+
url: "https://nsf.gov/awardsearch/showAward?AWD_ID=2340080"
13+
---
14+
15+
We are thrilled to announce that Prof. Huaicheng Li has been awarded the prestigious National Science Foundation (NSF) CAREER Award!
16+
17+
The CAREER Award is the NSF's most prestigious award in support of early-career faculty who have the potential to serve as academic role models in research and education. This five-year grant will support Prof. Li's research on next-generation memory systems and their integration into modern computing infrastructure.
18+
19+
The award will fund research focusing on:
20+
- CXL-based memory pooling and disaggregation
21+
- Tiered memory management for heterogeneous memory systems
22+
- Software-hardware co-design for memory-centric computing
23+
24+
This recognition underscores the importance and impact of MoatLab's research in advancing computer systems architecture.

content/news/2025-asplos-papers.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: "Three Papers Accepted at ASPLOS 2025"
3+
date: 2024-12-15T00:00:00Z
4+
draft: false
5+
category: "publications"
6+
featured: true
7+
summary: "MoatLab has three papers accepted at ASPLOS 2025, covering CXL memory characterization, tiered memory management, and GPU resource control."
8+
tags: ["asplos", "conference", "publications"]
9+
authors: ["Jinshu Liu", "Hamid Hadian", "Yuyue Wang", "Daniel S. Berger", "Marie Nguyen", "Xun Jian", "Sam H. Noh", "Huaicheng Li"]
10+
links:
11+
- name: "Melody Paper"
12+
url: "/publication/conference-paper/asplos25-melody/"
13+
- name: "SoarAlto Paper"
14+
url: "/publication/conference-paper/osdi25-soaralto/"
15+
- name: "SGDRC Paper"
16+
url: "/publication/conference-paper/ppopp25-sgdrc/"
17+
---
18+
19+
We are excited to announce that MoatLab has three papers accepted at the 29th ACM International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS 2025)!
20+
21+
## Accepted Papers:
22+
23+
1. **Melody: Systematic CXL Memory Characterization and Performance Analysis at Scale**
24+
- Authors: Jinshu Liu, Hamid Hadian, Yuyue Wang, Daniel S. Berger, Marie Nguyen, Xun Jian, Sam H. Noh, Huaicheng Li
25+
- First comprehensive characterization of CXL memory systems at scale
26+
27+
2. **SoarAlto: Tiered Memory Management Beyond Hotness**
28+
- Novel approaches to tiered memory management that go beyond traditional hotness-based policies
29+
30+
3. **SGDRC: Software-Defined Dynamic Resource Control for Concurrent DNN Inference on NVIDIA GPUs**
31+
- Dynamic resource control system for efficient GPU sharing in DNN inference
32+
33+
Congratulations to all the authors! See you in Rotterdam, Netherlands in March 2025!

content/news/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "News & Announcements"
3+
description: "Latest news from the MoatLab research group"
4+
---
5+
6+
Stay updated with the latest news, achievements, and announcements from the MoatLab research group at Virginia Tech.

content/project/_index.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: Research Projects
3+
cms_exclude: true
4+
5+
# View.
6+
# 1 = List
7+
# 2 = Compact
8+
# 3 = Card
9+
# 4 = Citation
10+
view: 3
11+
12+
# Optional header image (relative to `static/media/` folder).
13+
header:
14+
caption: ""
15+
image: ""
16+
---
17+
18+
Our research focuses on building high-performance, efficient, and scalable computer systems. Below are our current and recent projects addressing challenges in memory systems, storage, and cloud infrastructure.

0 commit comments

Comments
 (0)