<?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: Huzaifa Bin Tariq</title>
    <description>The latest articles on DEV Community by Huzaifa Bin Tariq (@huzaifa_1302).</description>
    <link>https://dev.to/huzaifa_1302</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%2F4100450%2Fb8aa17b3-4adb-44fe-a1bb-e3a9eadcab19.jpg</url>
      <title>DEV Community: Huzaifa Bin Tariq</title>
      <link>https://dev.to/huzaifa_1302</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/huzaifa_1302"/>
    <language>en</language>
    <item>
      <title>My Journey Through Google Cloud GenAI Academy APAC Edition Cohort 3 — 2026</title>
      <dc:creator>Huzaifa Bin Tariq</dc:creator>
      <pubDate>Sun, 20 Sep 2026 16:41:07 +0000</pubDate>
      <link>https://dev.to/huzaifa_1302/my-journey-through-google-cloud-genai-academy-apac-edition-cohort-3-2026-26pp</link>
      <guid>https://dev.to/huzaifa_1302/my-journey-through-google-cloud-genai-academy-apac-edition-cohort-3-2026-26pp</guid>
      <description>&lt;p&gt;My journey with the &lt;strong&gt;Google Cloud GenAI Academy APAC Edition Cohort 3&lt;/strong&gt;, organized by Hack2Skill in collaboration with Google Cloud, was my first proper learning experience with &lt;strong&gt;Google Cloud and AI agents&lt;/strong&gt;. Before this program, I had worked with generative AI and built AI-based projects, but this academy gave me an opportunity to understand how AI agents can connect models with tools, data, applications, and cloud infrastructure.&lt;/p&gt;

&lt;p&gt;The academy was not just about watching videos or reading theory. It included hands-on &lt;strong&gt;workshops, codelabs, and quizzes&lt;/strong&gt;, followed by an &lt;strong&gt;Ideathon Prototype Submission&lt;/strong&gt; where we had to turn what we learned into a working project.&lt;/p&gt;

&lt;p&gt;I received my &lt;a href="https://certificate.hack2skill.com/claim/1f81640aada7d752d3cf83b7447246be4030c910ece5782553e9a991ead81dc7" rel="noopener noreferrer"&gt;Gen AI Master Certificate from the Google Cloud GenAI Academy APAC Edition Cohort 3&lt;/a&gt;.&lt;br&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkwaci01ylu2hjkh3bjzj.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkwaci01ylu2hjkh3bjzj.png" alt="Certificate" width="800" height="588"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The program was divided into three main tracks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Track 1 — Build and Deploy a Customer-Facing AI Agent&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Track 2 — Turn Business Data into Strategic Decisions&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Track 3 — Automate Daily Operations with a Productivity Agent&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each track included workshops, hands-on codelabs, and quizzes. The biggest learning for me was seeing how an &lt;strong&gt;AI agent&lt;/strong&gt; can move beyond a simple chatbot and actually work with data, tools, and cloud services.&lt;/p&gt;




&lt;h2&gt;
  
  
  Track 1 — Build and Deploy a Customer-Facing AI Agent
&lt;/h2&gt;

&lt;p&gt;The first track introduced me to building an &lt;strong&gt;AI agent for customer-facing applications&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;One of the hands-on codelabs focused on deploying a &lt;strong&gt;RAG AI Agent in Streamlit using Google ADK and Cloud Run&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The example was based on a coffee shop. The goal was to build an AI Barista agent that could answer customer questions and make recommendations based on a menu dataset.&lt;/p&gt;

&lt;p&gt;The codelab introduced several important concepts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Google Agent Development Kit (ADK)&lt;/strong&gt; for building the AI agent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gemini&lt;/strong&gt; as the underlying AI model&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retrieval-Augmented Generation (RAG)&lt;/strong&gt; to ground the agent's responses in external information&lt;/li&gt;
&lt;li&gt;A menu dataset containing coffee items, tags, and allergens&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Streamlit&lt;/strong&gt; for creating the chat interface&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloud Run&lt;/strong&gt; for deploying the application&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What I found interesting was that the agent was not simply generating answers from the model's general knowledge. It could retrieve information from the menu data and use that information to provide more relevant recommendations, including allergen-related information.&lt;/p&gt;

&lt;p&gt;This was my first practical experience seeing how an &lt;strong&gt;AI agent, RAG, an application interface, and cloud deployment&lt;/strong&gt; can work together as one system.&lt;/p&gt;




&lt;h2&gt;
  
  
  Track 2 — Turn Business Data into Strategic Decisions
&lt;/h2&gt;

&lt;p&gt;The second track focused on using &lt;strong&gt;AI agents with business data&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The codelab introduced building and deploying AI agents with &lt;strong&gt;Gemini and the BigQuery MCP Server on Cloud Run&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This track helped me understand how an AI agent can interact with structured data instead of only responding to normal text prompts.&lt;/p&gt;

&lt;p&gt;The technologies and concepts included:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Agent Development Kit (ADK)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gemini&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;BigQuery&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;BigQuery MCP Server&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cloud Run&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The idea of MCP was especially interesting to me. Instead of keeping an AI agent isolated, MCP provides a standardized way for AI applications and agents to connect with external tools and data sources.&lt;/p&gt;

&lt;p&gt;With the &lt;strong&gt;BigQuery MCP Server&lt;/strong&gt;, an AI agent can access and analyze structured business data stored in BigQuery.&lt;/p&gt;

&lt;p&gt;This showed me another side of AI agents: they can act as an interface between users and complex data systems, helping turn raw data into useful information and decisions.&lt;/p&gt;




&lt;h2&gt;
  
  
  Track 3 — Automate Daily Operations with a Productivity Agent
&lt;/h2&gt;

&lt;p&gt;The third track focused on using an &lt;strong&gt;AI agent to automate operational tasks&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The codelab demonstrated a personal agent running on a &lt;strong&gt;Cloud Run service&lt;/strong&gt;, using a coffee shop manager scenario.&lt;/p&gt;

&lt;p&gt;The agent could analyze business data and perform tasks through a chat interface.&lt;/p&gt;

&lt;p&gt;One of the interesting parts was the use of &lt;strong&gt;Cloud Run sandboxes&lt;/strong&gt;. The agent could dynamically write and execute Python code inside a secure, isolated environment to solve analytical problems.&lt;/p&gt;

&lt;p&gt;For example, the coffee shop manager could have the agent analyze Point-of-Sale data together with a university graduation schedule. The agent could then identify possible operational bottlenecks, such as relationships between drink complexity and cashier staffing.&lt;/p&gt;

&lt;p&gt;The agent could generate recommendations for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Staffing&lt;/li&gt;
&lt;li&gt;Inventory&lt;/li&gt;
&lt;li&gt;Operational planning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It could also prepare operational TODOs, while requiring explicit permission before making changes.&lt;/p&gt;

&lt;p&gt;This track helped me understand that productivity agents are not limited to answering questions. They can analyze information, execute code, and assist with real operational workflows.&lt;/p&gt;




&lt;h1&gt;
  
  
  From Learning to Building — The Ideathon
&lt;/h1&gt;

&lt;p&gt;After completing the learning tracks, the academy moved from learning concepts to actually building a prototype.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;Ideathon Prototype Submission&lt;/strong&gt; challenged us to bring an idea to life using Google AI and Google Cloud technologies.&lt;/p&gt;

&lt;p&gt;The submission required a working prototype along with a social post explaining the solution, technical approach, and use of Google Cloud tools.&lt;/p&gt;

&lt;p&gt;The evaluation criteria focused on four areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Authenticity&lt;/strong&gt; — an original and genuinely built solution&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Usability&lt;/strong&gt; — an intuitive and accessible experience&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stability&lt;/strong&gt; — a reliable working prototype&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt; — appropriate practices for authentication, data protection, and cloud infrastructure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For my submission, I built &lt;strong&gt;Reflectora-AI&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Reflectora-AI — A Personal AI Journal
&lt;/h2&gt;

&lt;p&gt;Reflectora-AI is a personal AI-powered journaling application designed to help users reflect on their thoughts and turn them into useful insights.&lt;/p&gt;

&lt;p&gt;Instead of treating journaling as just storing text, I wanted to explore how generative AI could help users interact with their own journal entries in different ways.&lt;/p&gt;

&lt;p&gt;The application includes different AI modes such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Reflect&lt;/strong&gt; — explore thoughts and provide reflective responses&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Summarize&lt;/strong&gt; — turn longer journal entries into concise summaries&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brainstorm&lt;/strong&gt; — generate ideas based on the user's thoughts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Action Plan&lt;/strong&gt; — turn reflections into practical next steps&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ask Gemini&lt;/strong&gt; — interact with the AI about the journal content&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The project also focuses on user authentication and personal data management.&lt;/p&gt;

&lt;p&gt;For the prototype, I worked with Google technologies including &lt;strong&gt;Google AI Studio, Gemini, and Google Cloud services&lt;/strong&gt;, while exploring concepts around authenticated AI applications and cloud deployment.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://github.com/huzaifa-devpk/Reflectora-ai.git" rel="noopener noreferrer"&gt;project github repository&lt;/a&gt; is available here.&lt;/p&gt;

&lt;p&gt;I also created a &lt;a href="https://lnkd.in/p/dU8D46pY" rel="noopener noreferrer"&gt;project demonstration video&lt;/a&gt; showing the prototype and how it works.&lt;/p&gt;




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

&lt;p&gt;The biggest takeaway from the academy was understanding that &lt;strong&gt;AI agents are more than chat interfaces&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Through the three tracks, I saw different ways an agent can:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Interact with customers and retrieve information.&lt;/li&gt;
&lt;li&gt;Connect with structured business data.&lt;/li&gt;
&lt;li&gt;Execute code and assist with operational workflows.&lt;/li&gt;
&lt;li&gt;Work with tools and external systems.&lt;/li&gt;
&lt;li&gt;Be deployed as real applications using cloud infrastructure.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The academy also gave me more confidence in exploring &lt;strong&gt;Google Cloud and agentic AI development&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Before the program, concepts such as ADK, MCP, RAG, Cloud Run, and AI agents were areas I was still exploring. After completing the hands-on tracks and building my own prototype, these technologies became much more practical and understandable.&lt;/p&gt;




&lt;p&gt;I am now looking forward to continuing my journey with &lt;strong&gt;Google Cloud, Gemini, AI agents, and cloud-based application development&lt;/strong&gt; and building more practical projects along the way.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc1x9m7q99rys3qg4c11h.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc1x9m7q99rys3qg4c11h.png" alt="Email" width="799" height="566"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>meetthebuilders</category>
      <category>genaiacademyapac</category>
      <category>cohort3</category>
      <category>hack2skill</category>
    </item>
    <item>
      <title>How I Cleared AWS Cloud Quest: Cloud Practitioner and What I Learned</title>
      <dc:creator>Huzaifa Bin Tariq</dc:creator>
      <pubDate>Wed, 16 Sep 2026 04:55:04 +0000</pubDate>
      <link>https://dev.to/huzaifa_1302/how-i-cleared-aws-cloud-quest-cloud-practitioner-and-what-i-learned-87p</link>
      <guid>https://dev.to/huzaifa_1302/how-i-cleared-aws-cloud-quest-cloud-practitioner-and-what-i-learned-87p</guid>
      <description>&lt;p&gt;I recently completed AWS Cloud Quest: Cloud Practitioner, and honestly, it was one of the most enjoyable ways I have learned cloud computing so far.&lt;/p&gt;

&lt;p&gt;What made it different for me was the gamified learning experience. Instead of only watching lectures and taking quizzes, I was solving challenges, building cloud solutions, completing assignments, and moving through a virtual environment.&lt;/p&gt;

&lt;p&gt;It actually felt more like playing a game while learning cloud concepts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I Learned&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;During the quest, I completed hands-on challenges covering different areas of AWS, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cloud Computing Essentials&lt;/li&gt;
&lt;li&gt;Cloud First Steps&lt;/li&gt;
&lt;li&gt;Computing Solutions&lt;/li&gt;
&lt;li&gt;Networking Concepts&lt;/li&gt;
&lt;li&gt;Cloud Economics&lt;/li&gt;
&lt;li&gt;Databases in Practice&lt;/li&gt;
&lt;li&gt;Connecting VPCs&lt;/li&gt;
&lt;li&gt;First NoSQL Database&lt;/li&gt;
&lt;li&gt;File Systems in the Cloud&lt;/li&gt;
&lt;li&gt;Core Security Concepts&lt;/li&gt;
&lt;li&gt;Auto-Healing and Scaling Applications&lt;/li&gt;
&lt;li&gt;Highly Available Web Applications&lt;/li&gt;
&lt;/ul&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1xffgkdyua3zmmdlguft.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1xffgkdyua3zmmdlguft.png" alt="Certificate" width="800" height="580"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One thing that really stood out to me was how many different parts are involved in building a reliable cloud application.&lt;/p&gt;

&lt;p&gt;For example, creating an EC2 instance or an S3 bucket is only one part of the process. Security is also very important. You need to understand who can access your resources, what permissions they have, and how to protect your cloud environment.&lt;/p&gt;

&lt;p&gt;Learning about IAM, networking, security, and best practices helped me understand that in the cloud, simply making something work is not enough. It also needs to be secure, reliable, and properly managed.&lt;/p&gt;

&lt;p&gt;I also enjoyed learning about cloud economics. Before this, I mostly thought of cloud computing as using online servers and services. But the quest showed me that choosing the right resources and understanding how they are used can have a big impact on cost.&lt;/p&gt;

&lt;p&gt;Things like avoiding unnecessary resources, choosing the right services, and scaling based on demand are important when working with cloud platforms.&lt;/p&gt;

&lt;p&gt;The sections on VPCs, databases, file systems, auto-healing, scaling, and highly available applications also helped me connect individual AWS services with the bigger picture.&lt;/p&gt;

&lt;p&gt;Instead of seeing each service separately, I started to understand how different AWS services can work together to build applications that are more reliable and scalable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My Takeaway&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Overall, AWS Cloud Quest gave me a much better understanding of the basics of cloud computing and AWS.&lt;/p&gt;

&lt;p&gt;The biggest thing I liked was that I was not just reading about concepts. I was actually doing things and solving problems, which made the learning process much easier to remember.&lt;/p&gt;

&lt;p&gt;If you are starting with AWS or cloud computing and want something more interactive than a traditional course, I would definitely recommend giving AWS Cloud Quest: Cloud Practitioner a try.&lt;/p&gt;

&lt;p&gt;Here's my &lt;a href="https://www.credly.com/badges/39d2891a-c486-4916-bff9-93c7a0ab5cc7/public_url" rel="noopener noreferrer"&gt;Credly badge&lt;/a&gt;.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fblgc368ovu3fc8nvxfzn.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fblgc368ovu3fc8nvxfzn.png" alt="CredlyBadge" width="478" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm looking forward to building more projects with AWS and continuing my cloud learning journey. &lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloudcomputing</category>
      <category>awschallenge</category>
      <category>cloudnative</category>
    </item>
    <item>
      <title>Attending my first-ever tech event, an AWS event!</title>
      <dc:creator>Huzaifa Bin Tariq</dc:creator>
      <pubDate>Mon, 07 Sep 2026 10:48:03 +0000</pubDate>
      <link>https://dev.to/huzaifa_1302/-3obg</link>
      <guid>https://dev.to/huzaifa_1302/-3obg</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k" class="crayons-story__hidden-navigation-link"&gt;My First AWS Event — A New Start&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/huzaifa_1302" class="crayons-avatar  crayons-avatar--l  "&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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4100450%2Fb8aa17b3-4adb-44fe-a1bb-e3a9eadcab19.jpg" alt="huzaifa_1302 profile" class="crayons-avatar__image" width="96" height="96"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/huzaifa_1302" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Huzaifa Bin Tariq
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Huzaifa Bin Tariq
                
                
              
              &lt;div id="story-author-preview-content-4595011" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/huzaifa_1302" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4100450%2Fb8aa17b3-4adb-44fe-a1bb-e3a9eadcab19.jpg" class="crayons-avatar__image" alt="" width="96" height="96"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Huzaifa Bin Tariq&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Sep 7&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k" id="article-link-4595011"&gt;
          My First AWS Event — A New Start
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/awscommunity"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;awscommunity&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/cloudcomputing"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;cloudcomputing&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/pakistantech"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;pakistantech&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;1&lt;span class="hidden s:inline"&gt;&amp;nbsp;reaction&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            2 min read
          &lt;/small&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
    </item>
    <item>
      <title>My First AWS Event — A New Start</title>
      <dc:creator>Huzaifa Bin Tariq</dc:creator>
      <pubDate>Mon, 07 Sep 2026 10:38:54 +0000</pubDate>
      <link>https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k</link>
      <guid>https://dev.to/huzaifa_1302/my-first-aws-event-a-new-start-3m3k</guid>
      <description>&lt;p&gt;Recently, I attended my first ever tech event, and honestly, it was a very different experience for me because it was my first AWS event.&lt;/p&gt;

&lt;p&gt;Before this event, most of my focus was on web development and full-stack development. I was mostly thinking about HTML, CSS, JavaScript, frontend, backend and building websites. But AWS introduced me to a completely different side of technology.&lt;/p&gt;

&lt;p&gt;During the event, I heard a lot of new terms like &lt;strong&gt;S3, EC2, CI/CD pipelines, Cloud, DevOps&lt;/strong&gt; and many more. At first, some of these words were totally new for me, hehe. I knew about cloud and AWS, but I never really explored them deeply.&lt;/p&gt;

&lt;p&gt;The interesting part was that I started understanding how a website or application is not only about writing code. There is also a whole world behind it — where applications are hosted, how servers work, how data is stored, how applications are deployed, and how developers can automate these things.&lt;/p&gt;

&lt;p&gt;This really changed my mindset.&lt;/p&gt;

&lt;p&gt;I started thinking beyond just “How do I build this website?” and more about “How does this application actually work in the real world?”&lt;/p&gt;

&lt;p&gt;I also got introduced to DevOps and cloud technologies in a much better way. I realized that there is so much more to learn after becoming a web or full-stack developer.&lt;/p&gt;

&lt;p&gt;Another thing I really enjoyed was meeting new people and listening to experienced speakers. Their talks and experiences gave me a better idea about the industry and the importance of continuously improving your skills.&lt;/p&gt;

&lt;p&gt;One thing I learned from this experience is that skills matter, but learning how to use those skills in the right way matters even more. And one more lesson for me was about AI. AI can help us a lot, but blindly trusting AI is not the right way. We still need to understand things ourselves, verify information and build our own skills.&lt;/p&gt;

&lt;p&gt;What I liked most about this event was not just learning about AWS. It made me more interested in attending tech events, meeting people, learning from others and exploring areas outside my usual comfort zone.&lt;/p&gt;

&lt;p&gt;This was just my first AWS event, but I feel like it opened a new door for me — towards Cloud, AWS and DevOps.&lt;/p&gt;

&lt;p&gt;A big thanks to &lt;strong&gt;&lt;a href="https://www.linkedin.com/company/aws-ug-islamabad/posts/?feedView=all" rel="noopener noreferrer"&gt;AWS User Group Islamabad&lt;/a&gt;&lt;/strong&gt; and everyone who made this event possible. And special thanks to the amazing speakers &lt;a href="https://www.linkedin.com/in/zunairashafaq/" rel="noopener noreferrer"&gt;Zunaira Shafaq&lt;/a&gt; and &lt;a href="https://www.linkedin.com/in/sharoon-amin-akhtar-a3baa581/" rel="noopener noreferrer"&gt;Sharoon Amin Akhtar&lt;/a&gt; for sharing their knowledge and experiences.&lt;/p&gt;

&lt;p&gt;Looking forward to learning more, building more and attending more events! Have you ever attended an AWS or cloud event that changed the way you think about technology? I'd love to hear about your experience. Here’s my &lt;a href="https://lnkd.in/p/dvJjEhtM" rel="noopener noreferrer"&gt;LinkedIn post&lt;/a&gt; about the event if you’d like to check it out.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F91hvjtkofnjeknqyltoe.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F91hvjtkofnjeknqyltoe.jpg" alt="My first AWS community event" width="800" height="487"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F89n3p9jizt39klsrcwoq.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F89n3p9jizt39klsrcwoq.webp" alt="AWS community event" width="799" height="451"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>awscommunity</category>
      <category>devops</category>
      <category>cloudcomputing</category>
      <category>pakistantech</category>
    </item>
  </channel>
</rss>
