import type { Metadata } from 'next'; export const metadata: Metadata = { title: 'Resume', description: 'Experience, education, and technical skills of Akshay Kolli.', openGraph: { title: 'Resume', description: 'Experience, education, and technical skills of Akshay Kolli.', }, }; const experience = [ { title: 'PhD in Computer Science', org: 'University of Massachusetts', period: 'Jan 2025 – Present', bullets: [], }, { title: 'Research Assistant', org: 'Exalabs, University of Massachusetts', period: 'Sep 2022 – Present', bullets: [ 'Designing state-of-the-art ML pipelines for graph properties and trajectory forecasting.', 'Reduced multi-agent simulation time by 1000x.', ], }, { title: 'Software Engineering Intern', org: 'Siemens Healthineers', period: 'May 2023 – Sep 2023', bullets: [ 'Created a Python data analysis tool for commercial blood testing machines.', 'Deployed a 1DConv autoencoder with 99.99% accuracy on a 700k+ dataset for real-time error detection.', ], }, ]; const education = [ { title: 'MSc Computer Science', org: 'University of Massachusetts', period: 'Aug 2022 – Dec 2024', }, { title: 'BE Mechanical Engineering', org: 'Osmania University', period: 'Aug 2018 – Jun 2022', }, ]; const skills = [ { label: 'Languages', values: ['Python', 'Rust', 'C++', 'Go', 'SQL', 'TypeScript', 'Kotlin', 'R'], }, { label: 'Technologies', values: ['React', 'Django', 'Flask', 'TensorFlow', 'PyTorch', 'Jax', 'Tauri', 'Docker', 'Kubernetes', 'GCP', 'MongoDB'], }, { label: 'Concepts', values: ['NLP', 'Transformers', 'Encryption', 'AI', 'Machine Learning', 'Distributed Systems'], }, ]; export default function ResumePage() { return (

Resume

Experience, education, and technical depth.

Research, engineering, and systems work across academia and industry.

Experience

{experience.map((item) => (

{item.period}

{item.title}

{item.org}

{item.bullets.length > 0 ? (
    {item.bullets.map((bullet) => (
  • {bullet}
  • ))}
) : null}
))}

Education

{education.map((item) => (

{item.period}

{item.title}

{item.org}

))}

Skills

{skills.map((group) => (

{group.label}

{group.values.join(', ')}

))}
); }