Abhinav Yedla

Software Engineer ✦

Abhinav

Yedla

Engineer. Builder. Deep in distributed systems.

Software Engineer II at Booz Allen Hamilton. Building cloud infrastructure and AI tooling. Starting Georgia Tech OMSCS Fall 2026.

About

A bit about me

I'm a software engineer with two years of full-time experience at Booz Allen Hamilton, working across federal cloud infrastructure, AI systems, and test engineering. The work has been varied — from FAFSA AI prototypes and Kubernetes migrations to building accessibility pipelines and pushing back on AI governance proposals that didn't hold up to scrutiny.

Outside of work, I spent the last year building VTaaS from scratch — a production-deployed distributed video transcoding service on AWS. Not a tutorial project, not a toy app. Real cloud infrastructure: presigned uploads, SQS-decoupled workers, ECS Fargate containers, CloudWatch debugging, and IAM policy simulation to root-cause failures that don't surface in local dev. I needed something that would force me to think like an infrastructure engineer, and it delivered.

I also shipped 2llm, a live AI tooling product that converts ChatGPT memory exports into Claude-compatible formats. It picked up 8,500+ organic views on Reddit at launch — useful signal that the problem was real and the solution resonated.

In Fall 2026, I'll be starting Georgia Tech's OMSCS program. Aiming for senior backend and infrastructure roles at top-tier companies — the kind of work where distributed systems depth actually matters.

Experience

Where I've worked

Booz Allen Hamilton·Software Engineer I → II
July 2024–Present

Software Engineer II

OTCnet — AI Implementation & Governance

  • Lead engineer for the AI-in-SDLC track within OTCnet's five-track AI governance program (AI-in-SDLC, reports/dashboards, insights/trends, chatbot, adaptive training); own engineering breakdown, task assignment, and stakeholder reporting in recurring review cycles.
  • Authored the program's AI risk-assessment and trade-off scoring framework — scoring use cases on data confidence and relevancy, model and algorithm suitability, algorithm attributes (e.g., decision-tree transparency), lifecycle, equity and inclusion, and privacy. Delivered scored technical assessments and ran proof-of-concept evaluation in the governance sub-council.
  • Built an AI-assisted Section 508 accessibility triage layer: Azure DevOps pipeline runs Playwright + axe-core against OTCnet, findings and screenshots land in Azure Blob, Azure Functions orchestrate Azure OpenAI calls (GPT-4o for multimodal triage, GPT-4.1 for long-context batch, o3-mini for escalated reasoning) under RAG against an Azure AI Search index of OTCnet component patterns, known false positives, and 508 techniques.
  • Triage output — severity and false-positive classification, OTCnet-component mapping, and VPAT-ready remediation language — routed as Azure DevOps work items to the accessibility queue; human testers review and dispose, dispositions roll to Power BI. AI never makes the final compliance call.
  • Deployed in Azure Government (FedRAMP High) inside a private endpoint within the OTCnet VNet; designed to reduce false-positive and duplicate burden on a small accessibility team by ~40%.
  • Prototyped an AI drafting accelerator for SSP control narratives and assessor-response support — Azure OpenAI GPT-4.1 with hybrid keyword + vector retrieval and semantic ranking over fiscal-service control mappings, prior approved narratives, and OTCnet system docs. Compresses first-draft time on ATO-adjacent artifacts so ISSOs and security SMEs spend time on judgment review; all narratives stay SME-reviewed.
  • Challenged leadership's 40–60% time-savings projection with an independent cost-benefit analysis grounded in realistic adoption curves and review overhead; reframed the initiative around sustainable adoption over inflated efficiency claims.

OTCnet — Test Automation & Performance

  • Expanded test ownership from manual coverage into full automation and performance testing across OTCnet's federal payment workflows.
  • Building an automated suite with Python, JavaScript, Selenium, and Playwright — semantic locators and self-healing scripts cut maintenance overhead from UI churn.
  • Performance testing via Azure Load Testing with AI-assisted JMeter script generation for realistic load profiles.

Software Engineer I

OTCnet — Manual Test Engineering

  • Owned manual test coverage for OTCnet's federal payment workflows under CitiBank-managed delivery.
  • Executed functional and regression testing to ensure production stability; identified edge cases and managed the defect lifecycle from discovery to verification.

Jira → Azure DevOps Migration

  • Led the technical migration of project management infrastructure from Jira to Azure DevOps for a high-visibility federal program.
  • Architected the mapping of complex work item hierarchies and automated workflows to preserve data integrity across the transition.

DoE — Cloud Infrastructure (Kubernetes)

  • Contributed to Kubernetes-based cloud migration for Department of Education workloads across containerized microservices.
  • Built declarative infrastructure-as-code with Terraform and AWS CDK; implemented idempotent deployment patterns for consistent system state.
  • Helped deliver the Kubernetes-based MVP enabling scalable, compliant, cloud-native deployment inside Booz Allen's Trusted Environment; contributed to VPC setup and CI/CD pipelines.

DoE — FAFSA AI Assistant

  • Designed and built an AI-powered navigation agent to help students complete FAFSA applications — targeting high support volume and low-income aid-access bottlenecks.
  • React frontend, Flask backend, GPT-3.5 via OpenAI API, and a LangChain RAG architecture over federal financial aid documentation.
  • Engineered custom state management and prompt templates to stabilize non-deterministic LLM workflows and improve response reliability for high-volume inquiries.
  • Won the firm-wide Booz Allen AI innovation competition (200+ attendees including senior leadership); awarded dedicated R&D engineering hours. Development paused when the DoE contract restructured.
Booz Allen Hamilton·Software Engineering Intern
May–August 2023
  • Built an automated federal procurement data harvester in Python on the USASpending API — error handling, retry logic, server management — reducing data retrieval latency from days to minutes.
  • Performed competitive analysis on a 50M+ row federal spending dataset using regression and clustering to surface agency procurement patterns; translated raw data into actionable trends supporting strategic product positioning.
  • Modernized Booz Allen's TFX internal platform with a full-stack overhaul: React/JS/HTML/CSS frontend bridged to a Flask/SQL backend; added features to support scalable vendor onboarding and cross-agency expansion.
MetLife·Software Engineering Intern
May–August 2022
  • Built cross-platform automation in JavaScript and PowerShell to standardize production server recovery workflows; improved availability by streamlining state-dependent restarts across production applications.
  • Provisioned and maintained a distributed documentation environment on AWS EC2 with automated S3 migration pipelines for secure, persistent storage.
  • Identified and resolved performance bottlenecks in MetLife's 1Desk Automation platform (JavaScript, PowerShell), significantly reducing execution latency on high-frequency workflows.
USDA APHIS·Research Intern
May 2021–January 2022
  • Developed a bioeconomic optimization model to determine intertemporal management strategies for infectious citrus disease across heterogeneous U.S. growing landscapes.
  • Engineered a disease dispersal matrix in Python and R, synthesizing high-dimensional economic parameters (marginal costs, production loss) with environmental data.
  • Applied regression-based modeling and cost-function optimizations to evaluate region-specific intervention strategies.
  • Presented formal modeling results to USDA APHIS leadership; findings adopted to inform data-driven resource allocation policy across U.S. citrus growing regions.

Projects

Things I've built

not tutorials — real systems, real users, real failures ✦

VTaaS

Video Transcoding as a Service

NestJSAWS ECS FargateS3SQSFFmpegReact/VitePostgreSQLDockerGitHub ActionsVercelALBUpstash Redis

Production-deployed async video transcoding service on AWS. Users upload via presigned S3 URLs, jobs queue through SQS, FFmpeg workers on ECS Fargate transcode media to multiple formats, results serve back from S3. React/Vite dashboard with real-time job status, deployed on Vercel with an API proxy to the ALB. NestJS API + worker, Neon Postgres via Prisma, GitHub Actions CI/CD with SHA-tagged ECR images, 120-test suite, least-privilege IAM, SSM-managed secrets.

Cost engineering

  • On-demand provisioning system cut VTaaS AWS costs 99% ($58 → $0.50/mo).
  • Vercel Edge Function proxy reads dynamic ALB DNS from an Upstash Redis state machine to resume ECS Fargate Spot in ~4 minutes after idle.
  • 60-minute idle auto-hibernate — cold-start tradeoff deliberately accepted for portfolio/demo use.

Diagnosed in production

  • AWS SDK changed CRC64NVME checksum behavior between versions, silently breaking all S3 downloads. Admin credentials in local dev bypassed the permission checks that trigger the error — invisible until CloudWatch.
  • ECS task role missing s3:ListBucket caused S3 to return 403 on HeadObject instead of 404. Without list permission, S3 can't confirm object non-existence and falls back to access denied. Confirmed via IAM policy simulation.

2llm

AI Memory Migration Tool

Open-sourcing soon
Next.jsVercel Edge FunctionsAnthropic APIUpstash RedisStripe

Live tool that converts AI memory exports into structured formats compatible with any LLM — shipped during the ChatGPT-to-Claude migration wave. 8,500+ organic Reddit views and ~40 users on launch. BYOK architecture with zero server-side key storage: API keys live in sessionStorage only, cleared in the finally block of every request. Two-tier token gate with server-side revalidation. Built a managed conversion feature with Stripe payments; currently testing migration accuracy across workflows and project-level data.

abhinavyedla.com

Personal Portfolio & Engineering Site

Next.jsTypeScriptReactTailwind CSSVercel

The site you're on. Built as a living portfolio rather than a static resume mirror — designed to give depth where the one-page resume can't. Next.js App Router with TypeScript, deployed on Vercel with a custom domain. Content lives in a typed data.ts source of truth so experience, projects, and skills update in one place without touching components. Built with motion, accessible navigation, and a structure that scales as projects ship.

Orai

Mental Health Assessment Tool

App hosting upcoming
ReactJavaScript

Behavioral screening app assessing Depression, Anxiety, OCD, ADHD, and PTSD through a condition-weighted scoring algorithm. Built in collaboration with mental health professionals to validate diagnostic alignment, with user testing across diagnosed individuals to refine question framing and result delivery.

Education

Where I've studied

Georgia Institute of Technology

Fall 2026

M.S. Computer Science (OMSCS)

Starting Fall 2026

University of Maryland

Spring 2024

B.S. Computer Science

FIRE Scholars Program — Sustainability Analytics

Certifications

AWS Solutions Architect Associate

Amazon Web Services

July 2025

Verify on Credly

AWS Cloud Practitioner

Amazon Web Services

2024

Verify on Credly

Oracle Certified Associate, Java SE 8

Oracle

March 2025

Verify Badge

Skills

What I work with

the toolkit, always growing ✦

Languages

PythonTypeScriptJavaScriptJavaC/C++SQLBashPowerShellR

Frameworks & Libraries

ReactNext.jsNestJSNode.jsExpressFlaskPrismaLangChainREST APIs

Cloud & Infrastructure

AWSECS FargateS3SQSECRIAMCloudWatchEC2ALBSSMAzureDockerKubernetesTerraformAWS CDKVercelLinux

Databases

PostgreSQLMongoDBRedisNeonUpstash

Data & ML

NumPyPandasTensorFlowPyTorchLangChain

Testing & DevOps

SeleniumPlaywrightJUnitTestNGJestVitestJMeterGitHub ActionsCI/CDGit

AI

OpenAI APIAnthropic APIVercel AI SDKRAGPrompt EngineeringLLM Governance

Methodologies

AgileKanbanInfrastructure-as-CodeTest-Driven Development

Let's talk.

Open to backend, infrastructure, and distributed systems roles. Reach out directly ✦