Presentations

Where I talk about things that probably only 3 people understand

I love public speaking and sharing my knowledge with others. i am grateful for the opportunities given to me by my university and the people i have met. Below you will find some of the most important presentations that i have given.

AWS x UniPi Workshop
June 1, 2024AWS Cloud Club GreeceUniversity of Piraeus, Athens, Greece
View presentation details
WorkshopAWSWeb DevelopmentCloud ServicesStudent EventAWS Cloud Club GreeceUniversity of Piraeus
University of Piraeus Workshop
May 31, 2024IEEE Tech Seminars UniPiUniversity of Piraeus, Athens, Greece
View presentation details
WorkshopAIWeb DevelopmentCloud ServicesStudent EventIEEEUniversity of PiraeusOpen Source
AI4Gov Project first progress report
March 14, 2024EU HORIZON Project MeetingEuropean Research Executive Agency, Brussels, Belgium
View presentation details
Progress ReportAI4GovEUHORIZON Research ProjectEU Commission
AI4Gov Use Case initial demonstrations
November 8, 2023EU HORIZON Project MeetingSt Raphael Resort, Limassol, Cyprus
View presentation details
Plenary MeetingAI4GovEUHORIZON Research ProjectUse Cases
AI4Gov Project Kickoff Meeting
February 21, 2023EU HORIZON Project MeetingStratos Vassilikos Hotel, Athens, Greece
View presentation details
Kickoff MeetingAI4GovEUHORIZON Research Project
Presenting the Dimensioning Workbench tool
July 18, 2022The 13th IISA International ConferenceIonian University, Corfu, Greece
View presentation details
ConferenceResearch PaperCloud Computing

presentations.js

const presentations = [
  {
    title: "How to Make PowerPoint Slides That Don't Put People to Sleep",
    date: "2024-01-15",
    location: "Conference Room 404 (Not Found)",
    audience: "3 confused people and a janitor",
    slides: 47, // because 46 wasn't enough
    questions: 0, // crickets chirping
];

presentation.forEach(presentation => {
  console.log(`📄 ${presentation.title}`);
  console.log(`📅 ${presentation.date}`);
  console.log(`📍 ${presentation.location}`);
  console.log(`👥 ${presentation.audience}`);
  console.log(`📊 ${presentation.slides}`);
  console.log(`❓ ${presentation.questions}`);
});