Education

"Learning never stops, but my wallet sure wishes it would!"

My educational journey spans from foundational IT diplomas to advanced degrees, all from the University of Colombo School of Computing. Starting with the Diploma in Information Technology (DIT) and progressing through Higher Diploma (HDIT), Bachelor's (BIT), and currently pursuing my Master's in Information Technology (MIT). This structured progression has provided me with comprehensive knowledge in software development, system architecture, and modern technologies. Complemented by professional certifications in Web Engineering and PC Hardware Administration, my education has been the cornerstone of my career as a full-stack software engineer.

  1. Master of information technology (MIT) ReadingLatest

  2. Bachelor of information technology (BIT)

  3. Higher Diploma in information technology (HDIT)

  4. Diploma in information technology (DIT)

  5. Diploma in Web Engineering (Pearson Assured)

  6. Diploma in PC Hardware and network Administration (Pearson Assured)

  7. Sat for G.C.E Advanced Level Examination 2013 (Maths Stream)

  8. G.C.E Ordinary Level Examination 2010

education.ts

const educationJourney = [
  {
    degree: "Master of information technology (MIT) Reading",
    institution: "University of Colombo school of computing",
    isLatest: true,
  },
  {
    degree: "Bachelor of information technology (BIT)",
    institution: "University of Colombo school of computing",
  },
  {
    degree: "Higher Diploma in information technology (HDIT)",
    institution: "University of Colombo school of computing",
  },
  {
    degree: "Diploma in information technology (DIT)",
    institution: "University of Colombo school of computing",
  },
  {
    degree: "Diploma in Web Engineering (Pearson Assured)",
    institution: "Professional Certification",
  },
  {
    degree: "Diploma in PC Hardware and network Administration (Pearson Assured)",
    institution: "Professional Certification",
  },
  {
    degree: "G.C.E Advanced Level Examination 2013 (Maths Stream)",
    institution: "Mahanama College Colombo 03",
  },
  {
    degree: "G.C.E Ordinary Level Examination 2010",
    institution: "Rajasinghe Central College Hanwella",
  },
];

console.log("🎓 My Educational Journey:");
educationJourney.forEach((edu, index) => {
  const latestBadge = edu.isLatest ? " (Latest)" : "";
  console.log(`${index + 1}. ${edu.degree}${latestBadge}`);
  console.log(`   Institution: ${edu.institution}`);
});