SYSTEM STATUS[×]
AWS Study: ██████████ 60%
Portfolio: Online
Next Cert: Solutions Architect
Uptime: 99.9%
◆ SATELLITE UPLINK ◆
SIGNAL ■■■■□ OK ·
★ Welcome to Aaron Altergott's Homepage ★ Last updated: March 2026 ★ Currently studying for AWS Cloud Practitioner ★ AWS Docs RAG system is LIVE ★ DevSecOps is the goal ★ Redlands, CA ★ Cal State Long Beach ’23 ★ Check out the Projects section for updates ★ "Make it work and make it fast" ★ Next up: AWS Solutions Architect ★

Welcome

Hi, I'm Aaron, an operations professional transitioning into cloud computing and DevSecOps. I'm fascinated by what happens under the hood of modern systems and enjoy building infrastructure that is fast and resilient.

This site documents the projects I'm working on and what I'm learning along the way. Check out my recent build ~ AWS Docs RAG.


About Me

I'm from Redlands, California and graduated from Cal State Long Beach in December 2023 with a BA in International Studies. That background shaped how I think about systems and organizations at scale.

I work as an Operations Support Specialist at Southwest Self Storage, where I've optimized critical processes: automated auction mailing certification workflow (95% time reduction), diagnosed system issues that were causing recurring payment failures, and implemented automatic SMS notifications to past due accounts. I understand the real world implication of design decisions, which is why the reliability and automation of cloud resonates with me.


Projects

Click a project to expand it and read more.

[+]AWS Docs RAG — AI Documentation Search✔ CompleteNEW!

I built a full-stack Retrieval Augmented Generation (RAG) system that answers questions about AWS services using real AWS documentation as its knowledge base. Users ask a question through a web-based chat interface, and the system searches through indexed documentation, retrieves the most relevant sections, and generates a grounded answer using Claude — complete with source links back to the original AWS docs.

The Problem

Large language models are powerful, but they hallucinate — they can confidently generate answers that sound right but aren’t. For something like AWS documentation, where accuracy matters, you need a way to ground the model’s responses in real source material. RAG solves this by retrieving actual documentation at query time and feeding it into the prompt so the model answers based on facts.

How I Built It

Data Pipeline: I wrote a Python scraper that crawls AWS user guides for S3, EC2, Lambda, DynamoDB, and VPC, strips the HTML down to clean text, and uploads it to S3. The documents are split into overlapping chunks (~1000 characters each) using LangChain’s text splitter, and each chunk is converted into a 1024-dimensional vector using Amazon Titan Embeddings v2 via Bedrock. The vectors are stored in Pinecone’s free-tier vector database for fast semantic search.

Query Pipeline: When a user asks a question, an AWS Lambda function embeds the question using the same Titan model, queries Pinecone for the 5 most semantically similar document chunks, constructs a prompt with anti-hallucination instructions, sends it to Claude via Amazon Bedrock, and returns the answer with source citations. API Gateway exposes this as a REST endpoint.

Frontend: A static HTML/JS chat interface hosted on S3 and served through CloudFront with HTTPS. Single-file HTML the API and renders responses.

Security: The Lambda execution role runs with a scoped IAM policy limited to Bedrock model invocation and CloudWatch logging. No broad admin permissions in production.

Architecture

User → CloudFront → API Gateway → Lambda ├―― Embed question (Titan v2 via Bedrock) ├―― Search Pinecone (top 5 chunks) ├―― Build prompt with context ├―― Generate answer (Claude via Bedrock) └―― Return response + sources

Tech Stack

LLMClaude Sonnet 4.6 via Amazon Bedrock
EmbeddingsAmazon Titan Embeddings v2
Vector DBPinecone (free tier)
ComputeAWS Lambda + API Gateway
FrontendS3 + CloudFront
MonitoringCloudWatch
LanguagePython 3.11

Key Decisions

Pinecone over OpenSearch Serverless: OpenSearch Serverless has a minimum cost of ~$700/month even at zero traffic. Pinecone’s free tier handles up to 100K vectors at no cost — identical search quality at a fraction of the price.

Serverless architecture: Lambda + API Gateway means zero cost at idle and automatic scaling under load. The entire system runs for approximately $3–11/month.

CLI-first deployment: Every component — from IAM roles to CloudFront distributions — is deployed through Python scripts using boto3 and the AWS CLI.

What I Learned

This project connected several concepts I’d studied independently — vector embeddings, serverless compute, API design, IAM security — into a single working system. Debugging Lambda deployments from a Windows machine taught me about cross-platform packaging (Linux binaries for Lambda, PowerShell). Scoping IAM policies after deployment reinforced why least-privilege matters.

[+]This Website — Personal Portfolio✔ Complete

This is the site you’re looking at right now. I built it as a single static HTML page with a retro early-2000s design, deployed on GitHub Pages. Every section works. The nav scrolls to the right spot, panels expand and collapse, the contact form opens your email client, and the resume has a download link.

The Approach

The early-2000s design was a deliberate choice. I wanted something that stands out from the typical modern portfolio templates while still being fully functional. The entire site is a single HTML file with raw HTML, CSS, and vanilla JS.

How It Works

Layout: A CSS table layout mimics the classic sidebar + content pattern from Web 1.0, using modern CSS under the hood. The sidebar collapses into a horizontal nav bar on mobile.

Expand/Collapse Panels: All project and resume sections use a custom toggle system built with vanilla JavaScript. Clicking the sidebar “Projects” or “Resume” links opens all panels in that section at once.

Widgets: The System Status and Satellite Uplink widgets are pure CSS animations positioned in the left margin on wide screens (>1700px) and hidden on smaller viewports.

Contact: The chatroom-styled contact form constructs a mailto: link on submit, opening the user’s default email client with pre-filled subject and body.

Tech Stack

FrontendSingle-file HTML, CSS, vanilla JS
HostingGitHub Pages
DesignCustom retro Web 1.0 aesthetic
ResponsiveCSS media queries (900px, 480px breakpoints)
DependenciesZero — no frameworks, no build step

Features

Fully responsive: Sidebar becomes horizontal nav on tablet/mobile. Panels, forms, and widgets all adapt to screen size.

Animated widgets: Spinning globe, orbiting satellite, blinking stars, and a system status panel.

Accessible navigation: Smooth scrolling, toggle-all functionality from the sidebar, and keyboard-friendly interactions.

What I Learned

Building a complete site without frameworks forced me to understand CSS layout, table display, flexbox, positioning, and media queries all working together. The retro aesthetic required creative problem-solving with pure CSS (the globe, satellite orbit, and progress bars are all done without images).

[+]Auction Mail Verification — Document Automation Workflow✔ Complete

Designed and implemented a document automation workflow to streamline PLN/NOL Certificate of Mailing verification for storage unit auction files. The previous process required manually cross-referencing mailing certifications against tenant records one at a time which is slow and error-prone.

The Problem

Before a storage unit can go to auction, the facility must prove that legally required notices were mailed to the tenant. Each auction file contains a Certificate of Mailing that has to be verified against the tenant name, address, dates, tracking numbers. With dozens of files per auction cycle, this manual lookup process took hours and was prone to human error. There was no standardized procedure, so results varied depending on who did the work.

How I Built It

Document Parsing: Integrated AI-assisted document parsing to extract key fields (tenant name, unit number, mailing date, certification ID) from scanned PDFs and printed forms. This replaced the manual read-and-compare step.

Matching Logic: Built a structured verification workflow that cross-references extracted data against Sitelink ERP tenant records. The process flags mismatches automatically rather than relying on visual inspection.

Documentation: Wrote a step-by-step procedure so that any team member can run the verification process and produce consistent, audit-ready results.

Process Flow

Scanned Auction File ├―― AI parses Certificate of Mailing ├―― Extract: name, unit, date, cert ID ├―― Match against Sitelink records ├―― Flag mismatches for manual review └―― Output: verified audit-ready file

Tech Stack

ParsingAI-assisted document extraction
Data SourceSitelink ERP (tenant records)
InputScanned PDFs, printed mailing certificates
OutputVerified, audit-ready auction files

Results

Time savings: Reduced verification time from hours to minutes per auction cycle. What used to take a full afternoon now takes a fraction of the time.

Accuracy: Automated matching catches mismatches that visual inspection missed. Fewer errors means fewer compliance risks.

Reproducibility: Documented process means anyone on the team can run it with consistent results, reducing single-point-of-failure dependency on one person.

What I Learned

This project taught me that the hardest part of automation isn’t the technology but understanding the existing process well enough to know what to automate and what to leave as a human check. Writing documentation that others can actually follow was just as important as building the workflow itself.


Resume

Click a category to expand. You can also download the full PDF below.

[+]■ Experience
CSR – Operations Specialist, Southwest Self Storage
Redlands, CA • Nov 2024 – Present
  • Troubleshoot user issues with the website payment portal and mobile application, resolving login errors, payment failures, and account access problems
  • Deliver account and billing support for 500+ customers using Sitelink ERP, resolving system and payment discrepancies and addressing customer requests via XPS tickets
  • Investigate financial discrepancies by reviewing operational reports and correcting errors within Sitelink
  • Automated the verification of mail certification files used in auctions, reducing processing time by 95% and eliminating manual errors; documented workflow for company
  • Produced effective marketing materials for promotions, sales, and holidays in Canva while maintaining brand consistency
  • Implemented automatic SMS notifications for past due accounts thru Sitelink ERP that reduced overdue customer accounts by 15%
  • Diagnosed and fixed recurring AVS configuration issue causing 15+ monthly autopay failures for American Express; prevented revenue loss and unhappy customers
Research Intern, The Advance Group
Remote • May 2023 – Aug 2023
  • Evaluated multiple organizations across various industries, identifying strategic opportunities and crafting partnership proposals aligned with organizational goals
  • Analyzed voter data and demographic trends across New York City districts to predict voting patterns, assess policy impact, and determine potential legislative sponsors for initiatives
  • Provided event coordination, logistical support, and outreach efforts for clients
English Instructor, American Language Institute
Long Beach, CA • Aug 2019 – Mar 2020
  • Provided personalized English tutoring to international students, tailoring lessons to enhance comprehension, speaking, and writing skills
  • Led Halloween and Christmas cultural events showcasing American customs and traditions
[+]■ Education
California State University Long Beach
Long Beach, CA • Aug 2019 – Dec 2023
  • BA in International Studies
  • Coursework: Cybersecurity 1 & 2: Information Systems
[+]■ Certifications
AWS Certified Cloud Practitioner (CLF-C02)
Status: In Progress
[+]■ Skills
Cloud: AWS (Lambda, S3, CloudFront, API Gateway, IAM, CloudWatch, Bedrock), Serverless Architecture, CLI
Programming fundamentals: Python, PowerShell, HTML, CSS
Data/AI: Pinecone, Vector Databases, Retrieval-Augmented Generation (RAG), Semantic Search, AmazonTitan Embeddings v2, Prompt Engineering
Tools: GitHub, Linux (Ubuntu), VirtualBox/VMware
Business Tools: Excel, Sitelink ERP, Windows, Microsoft 365, AnyDesk, Google Workspace, SPSS, Canva

Contact — Chat Room

Aaron's Chat Room — Send a Message
Room: #aaron-portfolioUsers online: 1
[system]
*** Welcome to #aaron-portfolio ***
*** Topic: Drop me a message. I'll get back to you. ***

No messages yet. Be the first to post below.
Online Users
@aaron
@guest

✎ Post a Message

Note: This will open your default email client to send the message to Aaron.