This is an automated email from the ASF dual-hosted git repository.
apratim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb-site.git
The following commit(s) were added to refs/heads/master by this push:
new 17a2019 Update index.tsx
17a2019 is described below
commit 17a2019f510558434880dc0cad4e8ee0b4e47a4c
Author: Apratim Shukla <[email protected]>
AuthorDate: Mon Feb 10 13:30:04 2025 -0800
Update index.tsx
---
src/components/Publications/index.tsx | 52 +++++++++++++++++++++++++++++++----
1 file changed, 46 insertions(+), 6 deletions(-)
diff --git a/src/components/Publications/index.tsx
b/src/components/Publications/index.tsx
index 7e11286..2ab7bec 100644
--- a/src/components/Publications/index.tsx
+++ b/src/components/Publications/index.tsx
@@ -4,7 +4,7 @@ import SectionTitle from "../Common/SectionTitle";
import SinglePublication from "./SinglePublication";
import { useState, useEffect } from 'react';
-const years = [2018, 2019, 2020, 2021, 2022, 2023, 2024];
+const years = [2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025];
const publicationData: Publication[] = [
{
@@ -229,28 +229,68 @@ const publicationData: Publication[] = [
},
{
id: 23,
- name: "Thunderbolt: Causal Concurrent Consensus and Execution",
+ name: "Orthrus: Accelerating Multi-BFT Consensus through Concurrent
Partial Ordering of Transactions.",
venue: "arXiv 2024",
year: 2024,
content:
"Read Publication",
- publink: "https://arxiv.org/abs/2407.09409",
+ publink: "https://arxiv.org/abs/2501.14732",
award: ""
},
{
id: 24,
- name: "HotStuff-1: Linear Consensus with One-Phase Speculation",
+ name: "Did we miss P In CAP? Partial Progress Conjecture under
Asynchrony.",
+ venue: "arXiv 2024",
+ year: 2024,
+ content:
+ "Read Publication",
+ publink: "https://arxiv.org/abs/2501.00021",
+ award: ""
+ },
+ {
+ id: 25,
+ name: "AVA: Fault-tolerant Reconfigurable Geo-Replication on Heterogeneous
Clusters.",
venue: "arXiv 2024",
year: 2024,
+ content:
+ "Read Publication",
+ publink: "https://arxiv.org/abs/2412.01999",
+ award: ""
+ },
+ {
+ id: 26,
+ name: "Thunderbolt: Causal Concurrent Consensus and Execution.",
+ venue: "arXiv 2024",
+ year: 2024,
+ content:
+ "Read Publication",
+ publink: "https://arxiv.org/abs/2407.09409",
+ award: ""
+ },
+ {
+ id: 27,
+ name: "HotStuff-1: Linear Consensus with One-Phase Speculation.",
+ venue: "SIGMOD 2025",
+ year: 2025,
content:
"Read Publication",
publink: "https://arxiv.org/abs/2408.04728",
award: ""
- }
+ },
+ {
+ id: 28,
+ name: "Fides: Scalable Censorship-Resistant DAG Consensus via Trusted
Components.",
+ venue: "arXiv 2025",
+ year: 2025,
+ content:
+ "Read Publication",
+ publink: "https://arxiv.org/abs/2501.01062",
+ award: ""
+ },
];
const Publications = () => {
- const [selectedYear, setSelectedYear] = useState<number>(2024);
+ const [selectedYear, setSelectedYear] = useState<number>(2025);
const [activeId, setActiveId] = useState<number | null>(null);
useEffect(() => {