Fixed typos and added projects

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2024-05-02 11:04:23 +02:00
parent 21f38e7e16
commit a6c382fc8b
5 changed files with 64 additions and 48 deletions

View File

@@ -32,7 +32,7 @@ struct PublicationProp {
fn Publications() -> Element {
rsx! {
div {
class: "flex gap-4 items-center",
class: "flex gap-4 items-center flex-wrap",
Publication {
doi: "https://doi.org/10.48550/arXiv.2307.09639",
conference: "IEEE LCN 2023",
@@ -42,12 +42,12 @@ fn Publications() -> Element {
In this paper, we present Reverse Path Congestion Marking
(RPM) to accelerate the reaction to network congestion
events without changing the end-host stack. RPM decouples
the conges- tion signal from the downstream path after the
the congestion signal from the downstream path after the
bottleneck while maintaining the stability of the
congestion control loop. We show that RPM improves
throughput fairness for RTT- heterogeneous TCP flows as
throughput fairness for RTT on heterogeneous TCP flows as
well as the flow completion time, especially for small
Data Center TCP (DCTCP) flows. around P4 programmable ASIC
Data Center TCP (DCTCP) flows around P4 programmable ASIC
switches."
},
@@ -90,8 +90,10 @@ fn Publication(prop: PublicationProp) -> Element {
fn Projects() -> Element {
rsx! {
Project {
url: "https://git.tudattr.dev/AISE/seminar/src/branch/main/paper.pdf",
div {
class: "flex gap-4 items-center flex-wrap",
Project {
url: "https://git.ude-syssec.de/uni-due-syssec/students/2022_tuan-dat_tran_libAFLEVMFuzzer/ethfuzz/",
kind: "Bachelorproject",
title: "Undisclosed Ethereum Smart Contract Fuzzer",
authors: "Tuan-Dat Tran",
@@ -99,6 +101,33 @@ fn Projects() -> Element {
In this ingoing project I am building an Ethereum
Smart Contract Fuzzer. More info will follow."
},
Project {
url: "https://git.tudattr.dev/tudattr/dotfiles",
kind: "Personal Project",
title: ".dotfiles",
authors: "Tuan-Dat Tran",
description: "
dotfiles is a slang term usually used for configuration files in
Linux based systems. My dotfiles contain configurations for tools
I frequently use as well as a documentation on how to set up
my daily-use notebook. It provides a baseline for any personal
Linux system I set up and allows for repeatability simplifies
the process of setting up an ArchLinux based system.
"
},
Project {
url: "https://git.tudattr.dev/tudattr/ansible",
kind: "Personal Project",
title: "Ansible Homelab",
authors: "Tuan-Dat Tran",
description: "
Ansible is a automation engine which allows for automatic
provisioning, configuration management and application
deployment. I use ansible to set up my homelab, which serves as
a platform for me to try out and learn new technologies.
"
}
}
}
}