Experience

Doing what I love, one project at a time

Throughout my journey as a developer, I have had the opportunity to work in a variety of projects that have shaped my skills, while also mastering the fine art of debugging at 2 AM. In each project I have worked on, I have strived to create solutions that are not only functional but also user-friendly and visually appealing.

  1. Researcher / Software Engineer · AI4GovLatest

    Currently working as a researcher and software engineer at the HORIZON EU project AI4Gov, where I focus on developing innovative solutions for public sector challenges. My role involves collaborating with cross-functional teams to design and implement software applications that leverage artificial intelligence and data analytics.

  2. Laboratory Teaching Assistant · University of Piraeus

    Worked as a Laboratory Teaching Assistant at the University of Piraeus, where I assist in teaching web development courses. My role involves preparing lab materials, guiding students through practical exercises, and providing support for their projects.

  3. Researcher / Web Developer · DIASTEMA

    Worked as a researcher and web developer at DIASTEMA, where I focused on web development and data visualization. I was responsible for creating interactive web applications that visualized complex data sets, making it easier for researchers to analyze and interpret their findings.

  4. Website Developer · Freelance

    Worked as a freelance website developer, where I designed and developed websites for small businesses and individuals, using WordPress and custom HTML/CSS solutions. This experience honed my skills in web development and client communication.

experience.js

const experience = [
  {
    role: "Senior bug fixer",
    company: "Remote Office (My Desk)",
    duration: "Forever",
    skills: ["Bug Staring", "Keyboard Jamming"],
  },
  {
    role: "Full-Stack Developer",
    company: "Stack Overflow Solutions Inc.",
    duration: "When Google is Available",
    skills: ["Copy-Pasting", "Fixing Bugs with Console.log", "Deploying & Praying"],
  },
  {
    role: "Intern",
    company: "My Own Side Project",
    duration: "Since Birth",
    skills: ["Breaking Code", "Googling Errors", "Naming Variables Creatively"],
  },
];

experience.forEach((job) => {
  console.log(`👨‍💻 ${job.role} at ${job.company} (${job.duration}) 
🚀 Skills: ${job.skills.join(", ")}`);
});