<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: HamzaNab-Dev</title>
    <description>The latest articles on DEV Community by HamzaNab-Dev (@hamzanabdev).</description>
    <link>https://dev.to/hamzanabdev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4004629%2Fc058b185-d43f-45e5-8a3b-ea21ed186a93.png</url>
      <title>DEV Community: HamzaNab-Dev</title>
      <link>https://dev.to/hamzanabdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hamzanabdev"/>
    <language>en</language>
    <item>
      <title>Building a Full-Stack AI App on Vercel + AWS ECS in One Hackathon — ChatScroll</title>
      <dc:creator>HamzaNab-Dev</dc:creator>
      <pubDate>Fri, 26 Jun 2026 23:30:13 +0000</pubDate>
      <link>https://dev.to/hamzanabdev/building-a-full-stack-ai-app-on-vercel-aws-ecs-in-one-hackathon-chatscroll-3k3d</link>
      <guid>https://dev.to/hamzanabdev/building-a-full-stack-ai-app-on-vercel-aws-ecs-in-one-hackathon-chatscroll-3k3d</guid>
      <description>&lt;p&gt;For the AWS H0 Hackathon, I built and deployed ChatScroll &lt;br&gt;
— a full-stack AI knowledge management app — using Next.js &lt;br&gt;
on Vercel for the frontend and ASP.NET Core 9 on AWS ECS &lt;br&gt;
Fargate for the backend. Here's how the deployment &lt;br&gt;
architecture works and what I learned.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Frontend:&lt;/strong&gt; Next.js 14 App Router + TypeScript + &lt;br&gt;
Tailwind CSS deployed on Vercel&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Backend:&lt;/strong&gt; ASP.NET Core 9 API running on AWS ECS Fargate&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Containerized with Docker&lt;/li&gt;
&lt;li&gt;Images stored in Amazon ECR&lt;/li&gt;
&lt;li&gt;Deployed automatically via GitHub Actions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Databases:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Amazon Aurora PostgreSQL (pgvector, ltree, tsvector)&lt;/li&gt;
&lt;li&gt;Amazon DynamoDB (chat messages, TTL)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Auth:&lt;/strong&gt; AWS Cognito with JWT verification&lt;/p&gt;
&lt;h2&gt;
  
  
  The CI/CD Pipeline
&lt;/h2&gt;

&lt;p&gt;Every push to master triggers this automated pipeline:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git push → GitHub Actions → docker build → ECR push → ECS deploy → ✅ live
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The key insight I learned: &lt;code&gt;--force-new-deployment&lt;/code&gt; alone &lt;br&gt;
does NOT pick up new Docker images. It just restarts the &lt;br&gt;
service using the existing task definition.&lt;/p&gt;

&lt;p&gt;The correct approach:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Fetch current task definition via &lt;code&gt;describe-task-definition&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Update the container image to the new SHA-tagged ECR image&lt;/li&gt;
&lt;li&gt;Register a NEW task definition revision&lt;/li&gt;
&lt;li&gt;Pass the new revision ARN explicitly to &lt;code&gt;update-service&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="s"&gt;NEW_TASK_DEF=$(echo "$TASK_DEF" | jq \&lt;/span&gt;
  &lt;span class="s"&gt;--arg IMAGE "$ECR_REPO:${{ github.sha }}" \&lt;/span&gt;
  &lt;span class="s"&gt;'.containerDefinitions[0].image = $IMAGE |&lt;/span&gt; 
   &lt;span class="s"&gt;del(.taskDefinitionArn, .revision, .status,&lt;/span&gt; 
   &lt;span class="s"&gt;.requiresAttributes, .placementConstraints,&lt;/span&gt; 
   &lt;span class="s"&gt;.compatibilities, .registeredAt, .registeredBy)')&lt;/span&gt;

&lt;span class="s"&gt;NEW_REVISION=$(aws ecs register-task-definition \&lt;/span&gt;
  &lt;span class="s"&gt;--cli-input-json "$NEW_TASK_DEF" \&lt;/span&gt;
  &lt;span class="s"&gt;--query 'taskDefinition.taskDefinitionArn' \&lt;/span&gt;
  &lt;span class="s"&gt;--output text)&lt;/span&gt;

&lt;span class="s"&gt;aws ecs update-service \&lt;/span&gt;
  &lt;span class="s"&gt;--cluster default \&lt;/span&gt;
  &lt;span class="s"&gt;--service chatscroll-api \&lt;/span&gt;
  &lt;span class="s"&gt;--task-definition $NEW_REVISION \&lt;/span&gt;
  &lt;span class="s"&gt;--force-new-deployment&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This ensures every deploy runs the exact new image.&lt;/p&gt;

&lt;h2&gt;
  
  
  Vercel + AWS Together
&lt;/h2&gt;

&lt;p&gt;The combination of Vercel and AWS works beautifully:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vercel&lt;/strong&gt; handles frontend deployment, CDN, and 
edge caching — zero configuration needed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AWS ECS&lt;/strong&gt; handles the backend with full control 
over the runtime environment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Environment variables&lt;/strong&gt; in both Vercel and ECS 
task definitions keep secrets secure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The frontend on Vercel calls the backend on ECS via &lt;br&gt;
REST API — clean separation of concerns with each &lt;br&gt;
platform doing what it does best.&lt;/p&gt;

&lt;h2&gt;
  
  
  Anonymous → Authenticated Migration
&lt;/h2&gt;

&lt;p&gt;One interesting challenge: users can chat and save &lt;br&gt;
Scrolls before signing up. When they create an account, &lt;br&gt;
their anonymous data needs to migrate to their new &lt;br&gt;
Cognito identity.&lt;/p&gt;

&lt;p&gt;I built a &lt;code&gt;POST /api/users/me/migrate-anonymous&lt;/code&gt; endpoint:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Requires valid JWT (authenticated)&lt;/li&gt;
&lt;li&gt;Accepts the anonymous UUID from localStorage&lt;/li&gt;
&lt;li&gt;Runs 4 UPDATE statements atomically in Aurora&lt;/li&gt;
&lt;li&gt;Removes the anonymous user row after migration&lt;/li&gt;
&lt;li&gt;Frontend calls it once on first login then never again&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This means users never lose their data when they sign up.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built in One Hackathon
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Full CI/CD pipeline from git push to live ECS deployment&lt;/li&gt;
&lt;li&gt;Dual database architecture (Aurora + DynamoDB)&lt;/li&gt;
&lt;li&gt;Semantic search with pgvector and 3072-dim embeddings&lt;/li&gt;
&lt;li&gt;AWS Cognito authentication with anonymous migration&lt;/li&gt;
&lt;li&gt;Study Mode flashcards, scroll sharing, semantic search&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try it: &lt;a href="https://chatscroll.vercel.app" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app&lt;/a&gt;&lt;br&gt;
Architecture: &lt;a href="https://chatscroll.vercel.app/aws-showcase" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app/aws-showcase&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I created this content for the purposes of entering &lt;br&gt;
the AWS H0 Hackathon. &lt;/p&gt;

&lt;h1&gt;
  
  
  H0Hackathon #AWS #ECS #Vercel #Docker #Aurora #DynamoDB #H0Hackathon
&lt;/h1&gt;

</description>
      <category>aws</category>
      <category>vercel</category>
      <category>docker</category>
      <category>h0hackathon</category>
    </item>
    <item>
      <title>Why I Used Both Amazon Aurora AND DynamoDB in the Same App — AWS H0 Hackathon</title>
      <dc:creator>HamzaNab-Dev</dc:creator>
      <pubDate>Fri, 26 Jun 2026 23:27:33 +0000</pubDate>
      <link>https://dev.to/hamzanabdev/why-i-used-both-amazon-aurora-and-dynamodb-in-the-same-app-aws-h0-hackathon-5aia</link>
      <guid>https://dev.to/hamzanabdev/why-i-used-both-amazon-aurora-and-dynamodb-in-the-same-app-aws-h0-hackathon-5aia</guid>
      <description>&lt;p&gt;For the AWS H0 Hackathon I built ChatScroll — a personal &lt;br&gt;
AI knowledge library. I made a deliberate architectural &lt;br&gt;
choice to use TWO AWS databases for different reasons, &lt;br&gt;
and I want to explain why.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Core Insight
&lt;/h2&gt;

&lt;p&gt;Not all data is the same. Different data has different &lt;br&gt;
characteristics that make one database better than another.&lt;/p&gt;
&lt;h2&gt;
  
  
  Amazon Aurora PostgreSQL — The Knowledge Layer
&lt;/h2&gt;

&lt;p&gt;ChatScroll stores "Scrolls" (saved AI answers) in Aurora &lt;br&gt;
PostgreSQL because they need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Complex queries&lt;/strong&gt; — filter by folder, search by 
similarity, rank by relevance&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Relational integrity&lt;/strong&gt; — scrolls belong to folders, 
folders belong to users&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vector search&lt;/strong&gt; — pgvector extension for semantic 
similarity using 3072-dim embeddings&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full-text search&lt;/strong&gt; — tsvector for keyword matching&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tree structures&lt;/strong&gt; — ltree for hierarchical folder paths&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Aurora is perfect for this — it's PostgreSQL with &lt;br&gt;
production-scale reliability and three powerful extensions &lt;br&gt;
working together.&lt;/p&gt;
&lt;h2&gt;
  
  
  Amazon DynamoDB — The Chat Layer
&lt;/h2&gt;

&lt;p&gt;Chat messages have completely different characteristics:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;High volume&lt;/strong&gt; — every message in every conversation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Simple access pattern&lt;/strong&gt; — always fetched by conversationId&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Time-ordered&lt;/strong&gt; — always read chronologically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Auto-expiring&lt;/strong&gt; — old messages should disappear after 90 days&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a perfect DynamoDB use case:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PK: conversationId (String)
SK: {timestamp}#{messageId} (String)
TTL: expiresAt (Unix epoch, 90 days)
Capacity: PAY_PER_REQUEST
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The composite sort key enables chronological reads and &lt;br&gt;
time-range queries in a single DynamoDB operation. TTL &lt;br&gt;
auto-expires messages with zero infrastructure — no cron &lt;br&gt;
jobs, no manual deletes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Dual Database Pattern
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Aurora PostgreSQL          DynamoDB
─────────────────          ────────
scrolls + embeddings  │    chat messages
folder hierarchy      │    composite sort keys  
user accounts         │    90-day TTL
conversation metadata │    pay-per-request scale
complex queries       │    simple key-value access
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Aurora owns structure and search.&lt;br&gt;
DynamoDB owns the high-volume message stream.&lt;/p&gt;

&lt;p&gt;Each database doing what it's best at.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;DynamoDB key design is everything.&lt;/strong&gt; The &lt;br&gt;
&lt;code&gt;timestamp#messageId&lt;/code&gt; sort key pattern unlocks &lt;br&gt;
chronological reads, time-range queries, and uniqueness &lt;br&gt;
in a single attribute. Getting the key design right &lt;br&gt;
upfront saved me from any schema migrations later.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Aurora pgvector at 3072 dimensions has index limits.&lt;/strong&gt;&lt;br&gt;
Both ivfflat and hnsw indexes cap at 2000 dimensions on &lt;br&gt;
Aurora's pgvector version. For a personal knowledge base, &lt;br&gt;
exact search works perfectly and is simpler to maintain.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Serverless v2 auto-pause is a feature.&lt;/strong&gt; Aurora &lt;br&gt;
Serverless v2 auto-pauses when idle — zero cost during &lt;br&gt;
development and low-traffic periods. Perfect for a &lt;br&gt;
hackathon prototype.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Result
&lt;/h2&gt;

&lt;p&gt;A production-grade dual-database architecture where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Aurora handles all the complex relational and vector 
search operations&lt;/li&gt;
&lt;li&gt;DynamoDB absorbs all the chat message write volume&lt;/li&gt;
&lt;li&gt;Each database is used exactly as it was designed to be&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try ChatScroll: &lt;a href="https://chatscroll.vercel.app" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app&lt;/a&gt;&lt;br&gt;
AWS Architecture deep dive: &lt;a href="https://chatscroll.vercel.app/aws-showcase" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app/aws-showcase&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I created this content for the purposes of entering &lt;br&gt;
the AWS H0 Hackathon. &lt;/p&gt;

&lt;h1&gt;
  
  
  H0Hackathon #AWS #Aurora #DynamoDB #Vercel #H0Hackathon
&lt;/h1&gt;

</description>
      <category>aws</category>
      <category>dynamodb</category>
      <category>postgres</category>
      <category>h0hackathon</category>
    </item>
    <item>
      <title>How I Built a Personal AI Knowledge Base with Amazon Aurora pgvector and Next.js — AWS H0 Hackathon</title>
      <dc:creator>HamzaNab-Dev</dc:creator>
      <pubDate>Fri, 26 Jun 2026 23:25:05 +0000</pubDate>
      <link>https://dev.to/hamzanabdev/how-i-built-a-personal-ai-knowledge-base-with-amazon-aurora-pgvector-and-nextjs-aws-h0-hackathon-19jf</link>
      <guid>https://dev.to/hamzanabdev/how-i-built-a-personal-ai-knowledge-base-with-amazon-aurora-pgvector-and-nextjs-aws-h0-hackathon-19jf</guid>
      <description>&lt;p&gt;I built ChatScroll for the AWS H0 Hackathon — an app that &lt;br&gt;
lets you save AI answers as searchable "Scrolls" using &lt;br&gt;
Amazon Aurora PostgreSQL with pgvector for semantic search.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every day people ask AI assistants valuable questions and &lt;br&gt;
get great answers — then lose them forever. Chat history &lt;br&gt;
is linear, unsearchable, and ephemeral. I kept re-Googling &lt;br&gt;
the same questions knowing I had already found the answer &lt;br&gt;
somewhere but couldn't find it again.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;ChatScroll transforms AI conversations into a personal &lt;br&gt;
knowledge library. Save any AI answer as a "Scroll", &lt;br&gt;
organize it automatically, and find it later with &lt;br&gt;
semantic search.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Core Technical Challenge
&lt;/h2&gt;

&lt;p&gt;Making search understand MEANING not just keywords. When &lt;br&gt;
you search "blood thinner medication" it should find your &lt;br&gt;
warfarin scroll even though "blood thinner" doesn't appear &lt;br&gt;
in the title.&lt;/p&gt;

&lt;h2&gt;
  
  
  How pgvector on Aurora Solves This
&lt;/h2&gt;

&lt;p&gt;Amazon Aurora PostgreSQL with the pgvector extension stores &lt;br&gt;
3072-dimensional vector embeddings for every saved Scroll.&lt;/p&gt;

&lt;p&gt;When a user saves a Scroll:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The answer text is sent to Google's gemini-embedding-001&lt;/li&gt;
&lt;li&gt;The model returns a 3072-dimensional vector&lt;/li&gt;
&lt;li&gt;The vector is stored in Aurora alongside the content&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;When a user searches:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The search query is converted to a vector&lt;/li&gt;
&lt;li&gt;Aurora finds the most similar vectors using cosine distance&lt;/li&gt;
&lt;li&gt;Results are ranked by semantic similarity
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="c1"&gt;-- Semantic search with threshold&lt;/span&gt;
&lt;span class="k"&gt;WHERE&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;embedding&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&amp;gt;&lt;/span&gt; &lt;span class="err"&gt;$&lt;/span&gt;&lt;span class="n"&gt;queryVec&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt;
&lt;span class="k"&gt;ORDER&lt;/span&gt; &lt;span class="k"&gt;BY&lt;/span&gt; &lt;span class="n"&gt;embedding&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&amp;gt;&lt;/span&gt; &lt;span class="err"&gt;$&lt;/span&gt;&lt;span class="n"&gt;queryVec&lt;/span&gt;
&lt;span class="k"&gt;LIMIT&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Three PostgreSQL Extensions Working Together
&lt;/h2&gt;

&lt;p&gt;What makes Aurora special for this use case is three &lt;br&gt;
extensions working together:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;pgvector&lt;/strong&gt; — stores 3072-dim embeddings, enables cosine &lt;br&gt;
similarity search between vectors&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ltree&lt;/strong&gt; — stores folder paths as dot-separated label trees &lt;br&gt;
(&lt;code&gt;programming.containers&lt;/code&gt;), enables subtree queries without &lt;br&gt;
recursive CTEs&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;tsvector&lt;/strong&gt; — powers full-text search with ranking via &lt;br&gt;
ts_rank, combined with pgvector for hybrid search&lt;/p&gt;

&lt;h2&gt;
  
  
  The Dual Database Architecture
&lt;/h2&gt;

&lt;p&gt;I made a deliberate choice to use TWO AWS databases:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Aurora PostgreSQL&lt;/strong&gt; for structured data:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scrolls with embeddings&lt;/li&gt;
&lt;li&gt;Folder hierarchy (ltree)&lt;/li&gt;
&lt;li&gt;User accounts (Cognito sub)&lt;/li&gt;
&lt;li&gt;Conversation metadata&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Amazon DynamoDB&lt;/strong&gt; for chat messages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PK: conversationId&lt;/li&gt;
&lt;li&gt;SK: timestamp#messageId
&lt;/li&gt;
&lt;li&gt;TTL: 90-day auto-expiry&lt;/li&gt;
&lt;li&gt;PAY_PER_REQUEST billing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This separation keeps Aurora lean for complex queries &lt;br&gt;
while DynamoDB handles the high-volume chat stream.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Result
&lt;/h2&gt;

&lt;p&gt;Searching "containerization technology" correctly surfaces &lt;br&gt;
the Docker scroll. Searching "blood thinner medication" &lt;br&gt;
finds warfarin — no programming results contaminating it.&lt;/p&gt;

&lt;p&gt;Semantic search scoped to the same folder category &lt;br&gt;
ensures results are always relevant.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;Live app: &lt;a href="https://chatscroll.vercel.app" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app&lt;/a&gt;&lt;br&gt;
AWS Architecture: &lt;a href="https://chatscroll.vercel.app/aws-showcase" rel="noopener noreferrer"&gt;https://chatscroll.vercel.app/aws-showcase&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I created this content for the purposes of entering &lt;br&gt;
the AWS H0 Hackathon. &lt;/p&gt;

&lt;h1&gt;
  
  
  H0Hackathon #AWS #Aurora #pgvector #Vercel #NextJS #H0Hackathon
&lt;/h1&gt;

</description>
      <category>aws</category>
      <category>aurora</category>
      <category>h0hackathon</category>
      <category>pgvector</category>
    </item>
  </channel>
</rss>
