From ac8b75eeec39fc7d3a75a92482718557efe5adfd Mon Sep 17 00:00:00 2001 From: Nils Weiss Date: Fri, 5 Jul 2024 11:56:03 +0200 Subject: [PATCH 1/2] Added ScapyCon to Conferences --- src/views/Home.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/views/Home.vue b/src/views/Home.vue index e557e6e..a8999b7 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -529,6 +529,17 @@ const RESOURCES = [ /* Conferences */ const CONFERENCES = [ + { + "title": "ScapyCon Automotive", + "venue": "ScapyCon 2024", + "links": [ + { + tooltip: "Website", + icon: mdiWeb, + link: "https://scapycon.com" + } + ] + }, { "title": "Automotive Network Scans with Scapy", "venue": "Troopers 2022", From a189c87f2bbb8262732f6f16576cd45780ebff84 Mon Sep 17 00:00:00 2001 From: Nils Weiss Date: Wed, 10 Jul 2024 13:04:15 +0000 Subject: [PATCH 2/2] fix url --- src/views/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index a8999b7..d8dc181 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -536,7 +536,7 @@ const CONFERENCES = [ { tooltip: "Website", icon: mdiWeb, - link: "https://scapycon.com" + link: "http://scapycon.com" } ] },