diff --git a/_data/sources.yaml b/_data/sources.yaml new file mode 100644 index 0000000..4629019 --- /dev/null +++ b/_data/sources.yaml @@ -0,0 +1,43 @@ +- id: https://doi.org/10.1145/3654927 + conference: ACM SIGMOD 2024 + +- title: "Prophet: Optimizing LSM-Based Key-Value Store on ZNS SSDs with File Lifetime Prediction and Compaction Compensation" + authors: + - Gaoji Liu + - Chongzhuo Yang + - Qiaolin Yu + - Chang Guo + - Wen Xia + - Zhichao Cao + conference: MSST 2024 + type: To Appear + +- title: "SAS-Cache: A Semantic-Aware Secondary Cache for LSM-based Key-Value Stores" + authors: + - Zhang Cao + - Chang Guo + - Ziyan Lv + - Anand Ananthabhotla + - Zhichao Cao + conference: MSST 2024 + type: To Appear + +- title: "Can ZNS SSDs be Better Storage Devices for Persistent Cache?" + authors: + - Chongzhuo Yang + - Zhang Cao + - Chang Guo + - Ming Zhao + - Zhichao Cao + conference: ACM HotStorage 2024 + type: To Appear + +- title: "Can Modern LLMs Tune and Configure LSM-based Key-Value Stores?" + authors: + - Viraj Thakkar + - Madhumitha Sukumar + - Jiaxin Dai + - Kaushiki Singh + - Zhichao Cao + conference: ACM HotStorage 2024 + type: To Appear diff --git a/_data/types.yaml b/_data/types.yaml index 2909b0a..ecd8f13 100644 --- a/_data/types.yaml +++ b/_data/types.yaml @@ -14,6 +14,10 @@ phd: icon: fa-solid fa-graduation-cap description: PhD Student +grad: + icon: fa-solid fa-user-graduate + description: Graduate Student + undergrad: icon: fa-solid fa-user-graduate description: Undergraduate Student diff --git a/_includes/citation.html b/_includes/citation.html index ea62b17..89b9027 100644 --- a/_includes/citation.html +++ b/_includes/citation.html @@ -1,6 +1,6 @@ {% assign citation = site.data.citations | where_exp: "citation", - "citation.id == include.lookup or citation.title contains include.lookup" + "citation.title == include.lookup or citation.title contains include.lookup" | first | default: include %} @@ -54,11 +54,19 @@
- {{ citation.publisher | default: "[no publisher info]" }} -   ·   - {{ citation.date | default: "[no date info]" | date: "%d %b %Y" }} + {% if citation.conference %} + {{ citation.conference }} + {% else %} + {{ citation.publisher | default: "[no publisher info]" }} + {% endif %}   ·   - {{ citation.id | default: "[no id info]" }} + {% if citation.type == "To Appear" %} + To Appear + {% else %} + {{ citation.date | default: "[no date info]" | date: "%d %b %Y" }} +   ·   + {{ citation.id | default: "[no id info]" }} + {% endif %}
{% if include.style == "rich" %} diff --git a/_includes/header.html b/_includes/header.html index 2e79730..9e3f729 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -17,7 +17,7 @@ {% endif %} > - {% if logo %} + {% if site.logo-text != false %} - + {% if site.title and site.show-title != false %} {{ site.title }} {% endif %} @@ -50,7 +50,6 @@ {% if page.nav.display %} {{ page.title }} diff --git a/_includes/list.html b/_includes/list.html index 92026fd..7848af6 100644 --- a/_includes/list.html +++ b/_includes/list.html @@ -41,6 +41,7 @@ lookup=d.lookup name=d.name publisher=d.publisher + conference=d.conference repo=d.repo role=d.role slug=d.slug diff --git a/_members/zhichao-cao.md b/_members/zhichao-cao.md index ffba0c6..9ff6eff 100644 --- a/_members/zhichao-cao.md +++ b/_members/zhichao-cao.md @@ -1,6 +1,6 @@ --- name: Zhichao Cao -image: images/photo.jpg +image: images/members/zcao57.png role: pi links: home-page: https://search.asu.edu/profile/4082902 diff --git a/_styles/-theme.scss b/_styles/-theme.scss index 6ceff0f..594b037 100644 --- a/_styles/-theme.scss +++ b/_styles/-theme.scss @@ -43,7 +43,7 @@ --bold: 600; // text line spacing - --spacing: 2; + --spacing: 1.5; // effects --rounded: 3px; diff --git a/images/members/zcao57.png b/images/members/zcao57.png new file mode 100644 index 0000000..abf3384 Binary files /dev/null and b/images/members/zcao57.png differ diff --git a/index.md b/index.md index 50f5d8b..3e67bb0 100644 --- a/index.md +++ b/index.md @@ -63,7 +63,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor i {% include button.html - link="team" + link="people" text="Meet our team" icon="fa-solid fa-arrow-right" flip=true @@ -75,7 +75,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor i {% include feature.html image="images/photo.jpg" - link="team" + link="people" title="Our Team" text=text %} diff --git a/team/index.md b/people/index.md similarity index 93% rename from team/index.md rename to people/index.md index f80c5c1..2fd6832 100644 --- a/team/index.md +++ b/people/index.md @@ -1,7 +1,7 @@ --- -title: Team +title: People nav: - order: 3 + order: 2 tooltip: About our team display: true --- @@ -15,7 +15,7 @@ nav: {% include list.html data="members" component="portrait" filters="role: pi" %} {% include list.html data="members" component="portrait" filters="role: phd" %} -{% include list.html data="members" component="portrait" filters="role: ms" %} +{% include list.html data="members" component="portrait" filters="role: grad" %} {% include list.html data="members" component="portrait" filters="role: undergrad" %} ## Alumni diff --git a/project/index.md b/project/index.md index 4b59b53..6881405 100644 --- a/project/index.md +++ b/project/index.md @@ -1,7 +1,7 @@ --- title: Projects nav: - order: 2 + order: 1 tooltip: Our Ideas, Solutions, and Work display: true --- diff --git a/publications/index.md b/publications/index.md index b212fb0..772805b 100644 --- a/publications/index.md +++ b/publications/index.md @@ -1,9 +1,9 @@ --- title: Publications nav: - order: 1 + order: 3 tooltip: Published works - display: false + display: true --- # {% include icon.html icon="fa-solid fa-file-circle-check" %}Publications