<?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: Arish singh</title>
    <description>The latest articles on DEV Community by Arish singh (@arishsingh99).</description>
    <link>https://dev.to/arishsingh99</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3357004%2F5e54435b-0ed4-4c26-9c97-f05dce51c5c1.jpeg</url>
      <title>DEV Community: Arish singh</title>
      <link>https://dev.to/arishsingh99</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arishsingh99"/>
    <language>en</language>
    <item>
      <title>Monitoring the Cloud: Learning CloudWatch</title>
      <dc:creator>Arish singh</dc:creator>
      <pubDate>Tue, 02 Sep 2025 22:20:14 +0000</pubDate>
      <link>https://dev.to/arishsingh99/week-1-exploring-cloud-computing-getting-started-with-cloudwatch-13np</link>
      <guid>https://dev.to/arishsingh99/week-1-exploring-cloud-computing-getting-started-with-cloudwatch-13np</guid>
      <description>&lt;p&gt;When you move applications to the cloud, the biggest challenge is not just deploying them but ensuring they stay reliable, performant, and cost-efficient. In modern architectures, applications are distributed across servers, databases, APIs, and containers. Without proper monitoring, problems often go unnoticed until customers start complaining.&lt;br&gt;
This is where Amazon CloudWatch comes in. CloudWatch is AWS’s native monitoring and observability service. It helps you collect, visualize, and act on data about your infrastructure and applications. Let’s dive deep into how it works, why it matters, and how it applies to real-world use cases.&lt;/p&gt;

&lt;p&gt;** What is Amazon CloudWatch?**&lt;/p&gt;

&lt;p&gt;Amazon CloudWatch is a comprehensive observability platform that provides system-wide visibility into applications, infrastructure, and network activity. It collects data in three main forms:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Metrics&lt;/strong&gt; → Numbers that represent performance over time.&lt;br&gt;
&lt;strong&gt;Logs&lt;/strong&gt; → Event data that records activity.&lt;br&gt;
&lt;strong&gt;Traces &amp;amp; Insights&lt;/strong&gt; → End-to-end visibility into distributed systems.&lt;/p&gt;

&lt;p&gt;The goal is simple: to enable proactive monitoring. Instead of finding out about downtime from users, CloudWatch helps developers and operators detect, analyze, and resolve issues early.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy&lt;/strong&gt;: Running without CloudWatch is like driving a car without a speedometer, fuel gauge, or warning lights. You wouldn’t know if you’re running out of fuel or overheating until the car breaks down. CloudWatch is that dashboard of gauges and warning signals for your cloud.&lt;/p&gt;

&lt;p&gt;** Core Components of CloudWatch**&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Metrics&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Metrics are the heartbeat of CloudWatch. They are numerical data points that represent resource or application performance. AWS automatically provides basic metrics such as:&lt;br&gt;
&lt;strong&gt;EC2 CPU utilization&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Lambda function duration&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;S3 bucket request counts&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can also publish custom metrics like the number of active users in your app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example:&lt;/strong&gt; In a food delivery app, metrics could track order-processing time, rider availability, and server response latency. During dinner rush hours, these metrics help ensure the system scales properly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Dashboards&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CloudWatch Dashboards allow you to visualize multiple metrics and logs in one place. These dashboards can be customized per team or per use case.&lt;br&gt;
Real-world example: For a video streaming service, a dashboard may show:&lt;br&gt;
Playback success rate per region&lt;br&gt;
Buffering time per user session&lt;br&gt;
Server load per data center&lt;br&gt;
This unified view helps engineers quickly detect regional issues, like slow playback in Europe but smooth streaming in North America.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Alarms&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Alarms continuously evaluate metrics against thresholds and trigger actions when breached. These actions can include:&lt;br&gt;
&lt;strong&gt;Sending notifications via SNS&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Triggering a Lambda function&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Scaling out infrastructure automatically&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example&lt;/strong&gt;: In a ride-hailing app, if API latency goes above 2 seconds, an alarm could automatically scale up more servers. At the same time, it might notify the engineering team on Slack.&lt;br&gt;
**&lt;br&gt;
🔍 Advanced Capabilities**&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Application Performance Monitoring (APM)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CloudWatch provides Application Signals to track KPIs such as request latency, error rates, and throughput.&lt;br&gt;
Synthetics Canaries simulate user interactions with APIs or endpoints.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SLOs (Service Level Objectives)&lt;/strong&gt; let you define targets like “99.9% uptime” and track error budgets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example:&lt;/strong&gt; In a banking app, CloudWatch Synthetics can simulate fund transfers every few minutes. If the API slows down, the system alerts the team before real customers are affected.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Infrastructure Insights&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CloudWatch provides specialized monitoring for different AWS environments:&lt;br&gt;
Database Insights: Monitor queries, transaction latency, and DB load.&lt;br&gt;
Lambda Insights: Track execution duration, memory usage, and cold starts.&lt;br&gt;
Container Insights: Monitor ECS/EKS workloads and microservices metrics.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example:&lt;/strong&gt; An online ticket booking site during a movie release can use Database Insights to catch slow SQL queries that might delay seat reservations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Logs &amp;amp; Querying&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CloudWatch Logs centralize logs from across AWS services. With CloudWatch Logs Insights, you can run queries to analyze patterns and troubleshoot faster.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example:&lt;/strong&gt; In a gaming platform, developers can query logs to see login failure counts in the last 15 minutes. If failures spike in one region, it signals a potential outage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Cross-Account &amp;amp; Centralized Monitoring&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Large organizations often split workloads across multiple AWS accounts. CloudWatch supports central dashboards and alarms that pull data across accounts.&lt;/p&gt;

&lt;p&gt;**Real-world example: **A hospital chain may run separate accounts for each branch. CloudWatch lets IT teams monitor all accounts centrally to ensure consistent uptime for telemedicine services.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;8. Network &amp;amp; Internet Monitoring&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;CloudWatch can monitor both internal AWS networks and the public internet. It helps determine if performance issues are caused by AWS infrastructure or third-party ISPs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-world example:&lt;/strong&gt; A global e-commerce platform detects that checkout latency in Europe isn’t caused by AWS servers but by congestion at a regional ISP. This saves hours of false troubleshooting.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;⚡ Why CloudWatch Matters&lt;/strong&gt;&lt;br&gt;
CloudWatch is crucial because it transforms monitoring from a reactive process into a proactive one. Instead of relying on customer complaints, you gain the ability to:&lt;br&gt;
Detect problems early with metrics and alarms.&lt;br&gt;
Respond automatically through scaling and automation.&lt;br&gt;
Optimize performance using logs and application insights.&lt;br&gt;
Build trust by meeting** SLOs and SLAs** consistently.&lt;/p&gt;

&lt;p&gt;** Real-World Case Studies**&lt;/p&gt;

&lt;p&gt;Amazon Prime Day: CloudWatch automatically scales servers to handle millions of users logging in at midnight. Without it, the website would crash under load.&lt;br&gt;
Healthcare Telemedicine: CloudWatch Synthetics monitor “Start Video Call” APIs, alerting engineers if latency rises before patients experience disruptions.&lt;br&gt;
Ride-Sharing Surge Nights: On New Year’s Eve, CloudWatch scales resources dynamically, keeping driver-rider matching responsive during peak demand.&lt;/p&gt;

&lt;p&gt;** Conclusion**&lt;br&gt;
AWS CloudWatch is not just a tool—it’s the nervous system of your cloud ecosystem. By collecting data, providing insights, and automating responses, it ensures that systems remain reliable and user experiences stay smooth. Whether you’re building e-commerce platforms, banking apps, or streaming services, CloudWatch helps you run them with confidence.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                           thank you by Arishsingh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>AWS Security 101</title>
      <dc:creator>Arish singh</dc:creator>
      <pubDate>Sun, 03 Aug 2025 10:43:46 +0000</pubDate>
      <link>https://dev.to/arishsingh99/aws-security-101-2g1a</link>
      <guid>https://dev.to/arishsingh99/aws-security-101-2g1a</guid>
      <description>&lt;p&gt;&lt;strong&gt;About the Project&lt;/strong&gt;&lt;br&gt;
AWS Security 101 is an interactive chatbot-based learning assistant designed to introduce beginners to foundational AWS security practices. The bot provides real-time explanations, guided labs, interactive quizzes, and curated resources to help learners build strong fundamentals in securing AWS environments. It simplifies concepts like IAM, encryption, monitoring, and compliance, making them digestible for non-experts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🤔 Why I Built This&lt;/strong&gt;&lt;br&gt;
As a student and cloud enthusiast, I noticed a major gap: many beginners dive into AWS without truly understanding how to secure what they build. Misconfigured IAM roles, public S3 buckets, or lack of monitoring can easily lead to vulnerabilities. I wanted to build something that:&lt;br&gt;
Teaches security first, not as an afterthought.&lt;br&gt;
Encourages hands-on exploration of AWS best practices.&lt;br&gt;
Acts as a friendly assistant—like a mentor—available 24/7.&lt;br&gt;
This project is especially helpful for students, developers, and early cloud learners who want to understand security concepts in a simple and interactive way.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🛠️ How I Built This&lt;/strong&gt;&lt;br&gt;
Amazon Q (or Amazon Lex) powers the conversational experience, letting users ask questions and get clear, actionable answers.&lt;br&gt;
AWS Lambda handles backend logic to fetch resources, generate quizzes, and suggest labs dynamically.&lt;br&gt;
DynamoDB is used to store user progress, quiz scores, and logs securely.&lt;br&gt;
Amazon S3 stores educational content like PDFs, cheat sheets, and interactive diagrams.&lt;br&gt;
CloudWatch tracks bot usage and monitors user interactions for improvements.&lt;br&gt;
IAM roles and policies are applied to create secure access boundaries within the application itself—making the bot a learning tool and a working demo of AWS security best practices.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📘 What is AWS Security 101?&lt;/strong&gt;&lt;br&gt;
"AWS Security 101" is a foundational guide to securing AWS environments. It covers:&lt;br&gt;
🔑 Identity &amp;amp; Access Management (IAM)&lt;br&gt;
🧱 Data Encryption using KMS, S3 encryption, etc.&lt;br&gt;
🌐 Network Security – VPC, Security Groups, and NACLs&lt;br&gt;
🛡️ Threat Detection &amp;amp; Monitoring – using CloudTrail, GuardDuty, CloudWatch&lt;br&gt;
📜 Compliance &amp;amp; Governance&lt;br&gt;
📦 Least Privilege Principle and secure-by-design workflows&lt;br&gt;
It’s not a certification course—but it helps you build the mindset to protect your cloud resources from Day 1.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F022w7l85m6im64pj7p4h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F022w7l85m6im64pj7p4h.png" alt=" " width="800" height="1493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✨ Key Features&lt;/strong&gt;&lt;br&gt;
📖 Conversational Learning Bot: Ask questions, explore topics, and get guidance in real time.&lt;br&gt;
🧪 Interactive Labs: Step-by-step instructions on real AWS consoles.&lt;br&gt;
🧠 Quiz Mode: Learn by doing — test your concepts with dynamically generated quizzes.&lt;br&gt;
💡 Daily Security Tips: Automatically fetches and displays AWS security news or practices.&lt;br&gt;
🧾 Progress Tracking: Stores quiz scores and recommends next steps.&lt;br&gt;
🌐 Multi-device Friendly UI: Runs smoothly on desktop and mobile via chatbot dashboard.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧰 Tech Stack&lt;/strong&gt;&lt;br&gt;
Category    Tool/Service&lt;br&gt;
Chatbot Engine  Amazon Q / Amazon Lex&lt;br&gt;
Backend AWS Lambda, API Gateway&lt;br&gt;
Storage Amazon S3, DynamoDB&lt;br&gt;
Monitoring  Amazon CloudWatch&lt;br&gt;
Identity    AWS IAM (Roles, Policies)&lt;br&gt;
Voice Support   Amazon Polly, Amazon Transcribe&lt;br&gt;
Hosting AWS Amplify / S3 Static Hosting&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔄 Workflow Overview&lt;/strong&gt;&lt;br&gt;
User → Chatbot Interface → Amazon Q / Lex&lt;br&gt;
   ↓&lt;br&gt;
Query Handled by AWS Lambda&lt;br&gt;
   ↓&lt;br&gt;
Lambda fetches content (S3), updates DB (DynamoDB), or processes quiz&lt;br&gt;
   ↓&lt;br&gt;
Response sent back to chatbot&lt;br&gt;
   ↓&lt;br&gt;
User can also receive links to labs, voice explanations (Polly), or PDFs&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📦 Project Repository&lt;/strong&gt;&lt;br&gt;
🔗 GitHub Repo: AWS-Security-101-Bot :-&amp;gt; &lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Arishsingh/AWS-Security-101.git" rel="noopener noreferrer"&gt;https://github.com/Arishsingh/AWS-Security-101.git&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Amazon Q Developer CLI</title>
      <dc:creator>Arish singh</dc:creator>
      <pubDate>Thu, 17 Jul 2025 18:05:58 +0000</pubDate>
      <link>https://dev.to/arishsingh99/amazon-q-developer-cli-2p3h</link>
      <guid>https://dev.to/arishsingh99/amazon-q-developer-cli-2p3h</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbsypmyvt6i54nezzafbv.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbsypmyvt6i54nezzafbv.jpg" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  About the Project
&lt;/h2&gt;

&lt;p&gt;Amazon Q Developer CLI is a powerful generative AI tool by AWS that allows developers to build real, working code directly from natural language prompts via the command line. Instead of manually writing boilerplate code or setting up entire projects from scratch, you can simply describe what you want—like "create a React app with a login form" or "build a Sudoku game in HTML, CSS, and JavaScript"—and Amazon Q CLI instantly generates the full project structure and code files for you. It supports multiple languages and frameworks, including JavaScript, Python, HTML/CSS, and more, making it ideal for frontend, backend, cloud, and DevOps tasks. Designed to accelerate developer productivity, Amazon Q CLI bridges the gap between ideas and implementation, acting like an AI-powered coding partner that helps you move faster and focus on logic rather than repetitive setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Why I Built This
&lt;/h2&gt;

&lt;p&gt;I've always loved quick logic games and was curious to see how fast I could go from &lt;strong&gt;idea → playable game&lt;/strong&gt; with Amazon Q.&lt;br&gt;&lt;br&gt;
Here’s what motivated me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✨ To experiment with AI coding tools in real-time&lt;/li&gt;
&lt;li&gt;⏱️ To challenge myself with a 30-minute build&lt;/li&gt;
&lt;li&gt;🎮 To recreate a childhood favorite puzzle digitally&lt;/li&gt;
&lt;li&gt;🔍 To explore how natural language prompt-based coding actually works&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⚙️ How I Built This
&lt;/h2&gt;

&lt;p&gt;I used &lt;a href="https://aws.amazon.com/q/developer/" rel="noopener noreferrer"&gt;Amazon Q Developer CLI&lt;/a&gt; to prompt the system with:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Build a playable Sudoku game with a 9x9 grid using HTML, CSS, and JavaScript."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And boom — within seconds, it generated:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;📄 A full HTML layout for the game grid&lt;/li&gt;
&lt;li&gt;🎨 CSS styles for layout and spacing&lt;/li&gt;
&lt;li&gt;🧠 JavaScript logic for interaction and cell validation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After that, I did:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Minor edits to the styles&lt;/li&gt;
&lt;li&gt;Added some clean UI polish&lt;/li&gt;
&lt;li&gt;Tested it live in the browser&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧩 What is Sudoku?
&lt;/h2&gt;

&lt;p&gt;For those unfamiliar, &lt;strong&gt;Sudoku&lt;/strong&gt; is a classic number-based logic puzzle.&lt;/p&gt;

&lt;p&gt;🎯 &lt;strong&gt;The goal:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fill the 9x9 grid so that:

&lt;ul&gt;
&lt;li&gt;✅ Each &lt;strong&gt;row&lt;/strong&gt; contains digits 1–9 without repetition&lt;/li&gt;
&lt;li&gt;✅ Each &lt;strong&gt;column&lt;/strong&gt; contains digits 1–9 without repetition&lt;/li&gt;
&lt;li&gt;✅ Each &lt;strong&gt;3x3 subgrid&lt;/strong&gt; contains digits 1–9 without repetition&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;It’s logic-heavy, satisfying, and surprisingly addictive. 😉&lt;/p&gt;




&lt;h2&gt;
  
  
  🌟 Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🎮 Interactive 9x9 &lt;strong&gt;Sudoku Grid&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🧠 Logic-based &lt;strong&gt;number placement&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;✨ Clean, responsive &lt;strong&gt;UI&lt;/strong&gt; with basic CSS&lt;/li&gt;
&lt;li&gt;⚡ Built entirely using &lt;strong&gt;Amazon Q Developer CLI&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;💻 Works on both desktop and mobile browsers&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔧 Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;HTML5&lt;/code&gt; for structure&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;CSS3&lt;/code&gt; for layout &amp;amp; styling&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Vanilla JavaScript&lt;/code&gt; for logic and validation&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;Amazon Q Developer CLI&lt;/code&gt; for prompt-to-code generation&lt;/li&gt;
&lt;li&gt;(Coming Soon!) Hosted on &lt;strong&gt;AWS&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔄 Workflow Overview
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;💡 Thought of building a quick logic game&lt;/li&gt;
&lt;li&gt;✍️ Described the project in simple English&lt;/li&gt;
&lt;li&gt;🤖 Let Amazon Q generate the full codebase&lt;/li&gt;
&lt;li&gt;🧪 Tested &amp;amp; polished the output&lt;/li&gt;
&lt;li&gt;🚀 Shared it with the world!&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  📂 Project Repository
&lt;/h2&gt;

&lt;h1&gt;
  
  
  🧪 Try it locally:
&lt;/h1&gt;

&lt;p&gt;git clone &lt;a href="https://github.com/Arishsingh/AmazonQ.git" rel="noopener noreferrer"&gt;https://github.com/Arishsingh/AmazonQ.git&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
