CURRICULUM VITAE

SOFTWARE ENGINEER | AUTOMATION ENGINEER

interface SoftwareEngineer {
  name: string;
  role: string;
  summary: string;
  coreSkills: string[];
  cloudDevOps: string[];
  dataIntegration: string[];
  engineeringPractices: string[];
}

const me: SoftwareEngineer = {
  name: 'Lebohang Makateng',
  role: 'Automation Engineer | Agentic Automation | Software Engineering',
  summary: 'Software Engineer with 4+ years of experience delivering production systems across fintech and high-volume transactional environments.',
  coreSkills: [
    'LLM API integration',
    'Workflow automation',
    'Agentic pipeline design',
    'Python',
    'C#',
    '.NET Core',
    'ASP.NET Core',
    'FastAPI'
  ],
  cloudDevOps: [
    'AWS (EC2, S3, RDS, Lambda, EKS)',
    'Docker',
    'Kubernetes',
    'Azure DevOps',
    'CI/CD'
  ],
  dataIntegration: [
    'PostgreSQL',
    'MySQL',
    'MS SQL Server',
    'REST APIs',
    'Schema design',
    'Query optimization'
  ],
  engineeringPractices: [
    'Microservices',
    'Secure coding',
    'Authentication and access control',
    'Observability',
    'Agile/Scrum',
    'Technical mentoring'
  ]
};