<?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: ANUSHKA SAXENA</title>
    <description>The latest articles on DEV Community by ANUSHKA SAXENA (@anushka_saxena).</description>
    <link>https://dev.to/anushka_saxena</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%2F917867%2F63e9e681-43c1-483c-8f92-405a8977d411.jpg</url>
      <title>DEV Community: ANUSHKA SAXENA</title>
      <link>https://dev.to/anushka_saxena</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anushka_saxena"/>
    <language>en</language>
    <item>
      <title>Understanding Buildpacks in Cloud Native Buildpacks</title>
      <dc:creator>ANUSHKA SAXENA</dc:creator>
      <pubDate>Mon, 22 Apr 2024 13:28:41 +0000</pubDate>
      <link>https://dev.to/anushka_saxena/understanding-buildpacks-in-cloud-native-buildpacks-1i07</link>
      <guid>https://dev.to/anushka_saxena/understanding-buildpacks-in-cloud-native-buildpacks-1i07</guid>
      <description>&lt;h3&gt;
  
  
  Introduction to Buildpacks
&lt;/h3&gt;

&lt;p&gt;A &lt;a href="https://buildpacks.io/docs/for-app-developers/concepts/buildpack/#detect" rel="noopener noreferrer"&gt;buildpack&lt;/a&gt; is a software, designed to transform application source code into executable (&lt;a href="https://github.com/opencontainers/image-spec/blob/main/spec.md" rel="noopener noreferrer"&gt;OCI&lt;/a&gt;) images that can run on a variety of cloud platforms. At its core, a buildpack is a directory that includes a specific file named buildpack.toml. This file contains metadata and configuration details that dictate how the buildpack should behave.&lt;br&gt;
Buildpacks in simple terms, is a set of standards defining how the different steps that are required to build a compliant container image can be automated. Using those standards, there are  projects that have been built round enabling that using an CLI or an API. The most common way of doing that is through the Cloud Native Buildpacks' Pack project. &lt;a href="https://buildpacks.io/docs/for-buildpack-authors/tutorials/basic-buildpack/" rel="noopener noreferrer"&gt;Pack&lt;/a&gt; is a CLI command that can run in the same system the developers are using to actually go through creating a Dockerfile.&lt;/p&gt;
&lt;h3&gt;
  
  
  Structure of a Buildpack
&lt;/h3&gt;

&lt;p&gt;A buildpack is represented by a directory containing the files buildpack.toml, &lt;a href="https://buildpacks.io/docs/for-app-developers/concepts/buildpack/#detect" rel="noopener noreferrer"&gt;bin/detect&lt;/a&gt; and &lt;a href="https://buildpacks.io/docs/for-app-developers/concepts/buildpack/#build" rel="noopener noreferrer"&gt;bin/build&lt;/a&gt;. The &lt;code&gt;buildpack.toml&lt;/code&gt; file contains metadata and configuration details that define how the buildpack should behave.&lt;br&gt;
Here’s what a typical buildpack.toml file includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API Version: Specifies the version of the Buildpack API that the buildpack conforms to.&lt;/li&gt;
&lt;li&gt;Buildpack ID and Version: Unique identifier and versioning information to manage buildpack updates and dependencies.&lt;/li&gt;
&lt;li&gt;Stacks: Defines the compatibility with different OS stacks to ensure the buildpack runs on appropriate infrastructure.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  How Buildpacks Work
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Detection: Determines whether the buildpack can build the source code based on its requirements.&lt;/li&gt;
&lt;li&gt;Analysis: Analyzes the existing container image and makes decisions about what to reuse from previous builds.&lt;/li&gt;
&lt;li&gt;Build: Executes scripts to install dependencies, compile code, and package the application.&lt;/li&gt;
&lt;li&gt;Export: Produces the final image by layering the new build artifacts on top of a base image.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://www.google.com/url?sa=i&amp;amp;url=https%3A%2F%2Feggboy.medium.com%2Fcloud-native-buildpack-inside-out-e282233206d2&amp;amp;psig=AOvVaw0IlUL8uyMLcD-7GTd7rFdP&amp;amp;ust=1713815457745000&amp;amp;source=images&amp;amp;cd=vfe&amp;amp;opi=89978449&amp;amp;ved=0CBIQjRxqFwoTCMDqvaGK1IUDFQAAAAAdAAAAABAG" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsni9g4ys7jf6dpyrksgd.png" alt="Image description" width="800" height="442"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Each buildpack is designed with a focus on a specific technology stack, ensuring that it can provide the most efficient and accurate build process for applications using that stack.&lt;/p&gt;
&lt;h3&gt;
  
  
  Practical Example
&lt;/h3&gt;

&lt;p&gt;Below is a practical example illustrating how you might specify a buildpack group in a project.toml configuration file for a Java application using Maven as the build system. This configuration will use two buildpacks: one for the Java JDK and another for Maven to build the application.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;project.toml&lt;/code&gt; Configuration for a Java Application:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[[buildpacks]]
id = "anushka/java-jdk"
version = "1.0.0"

[[buildpacks]]
id = "anushka/maven"
version = "1.0.0"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Java JDK Buildpack (anushka/java-jdk): This buildpack is responsible for providing the Java development kit (JDK) necessary to compile and run the Java application. It detects Java projects and installs the appropriate JDK version based on the project's needs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Maven Buildpack (anushka/maven): After the JDK is set up, the Maven buildpack takes over to handle the dependencies and build lifecycle of the Java project. It uses the pom.xml file found in the Java project to run Maven commands that compile the project and package it into an executable JAR or WAR file.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>My Journey to Becoming an AWS Cloud Club Captain</title>
      <dc:creator>ANUSHKA SAXENA</dc:creator>
      <pubDate>Fri, 14 Jul 2023 14:22:46 +0000</pubDate>
      <link>https://dev.to/cloudclubs/my-journey-to-becoming-an-aws-cloud-club-captain-26d7</link>
      <guid>https://dev.to/cloudclubs/my-journey-to-becoming-an-aws-cloud-club-captain-26d7</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%2Fk2dwwne5ehct2hn3vj6x.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%2Fk2dwwne5ehct2hn3vj6x.png" alt="AWS CC BANNER" width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m Anushka Saxena, an AWS Cloud Club Captain at the International Institute of Professional Studies, Devi Ahilya Vishwavidyalaya, a university located in Indore, Madhya Pradesh, India. Tech Communities are where I belong and Cloud Computing has always fascinated me. Throughout my journey as a student, I have been driven to share my knowledge, empower others and give back to my community. With the opportunity to become an AWS Cloud Club Captain, I found the perfect platform to create a community focused on exploring the Cloud’s vast potential. If you love to organize and speak at events, share resources, and upskill your peers in Cloud Computing with AWS then, this program is for you! In this blog, I will share my journey and how I got through the selection process.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Program Benefits&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;This program is more than cool swag and freebies, although those are fantastic bonuses. It's about professional growth and incredible perks that will propel your career forward. Let's dive into the exclusive benefits* that await you as a member of the AWS Cloud Club Captains Community:&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%2Fawqlpad1okdrp0m52jvz.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%2Fawqlpad1okdrp0m52jvz.png" alt="program benefits" width="800" height="477"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It all started when I attended an event organized by the AWS User Group Jaipur. Mr. Mustafa Saifee, a community member, explained the whole program and its benefits, inspiring me to apply.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Next Steps&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• On February 6, 2023, I received an email from Ms. Tracy Wang, our community manager, announcing the official launch of AWS Cloud Clubs in 10 regions worldwide. These regions include Australia, Bangladesh, France, India, Ireland, Mexico, Nigeria, Pakistan, United Kingdom, and the United States. I received the mail because I had previously expressed interest by filling out this &lt;a href="https://community.buildon.aws/survey/VLFIYRRV" rel="noopener noreferrer"&gt;form&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;• The first part of the application process involved filling out a form that consisted of 4 essay-type questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Please tell us why you are interested in founding a Cloud Club in your region, school, or peer group.&lt;/li&gt;
&lt;li&gt;Please tell us your relevant education that can help you lead a cloud-focused student community.&lt;/li&gt;
&lt;li&gt;Please tell us your relevant technical skills, languages, or certifications that can help you lead as a voice for tech-curious students. &lt;/li&gt;
&lt;li&gt;Please tell us about relevant experiences that make you qualified to become a Captain.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;My tips on writing the essays&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• Keep your answers short and crisp but make sure to include as many details as possible. These questions test your ability to summarize content.&lt;br&gt;
• Be honest about your experiences and share real-life examples where you’ve demonstrated leadership, public speaking, and relevant technical skills.&lt;br&gt;
• Run your answers through a plagiarism check and ensure that there are no grammatical errors before submission. &lt;br&gt;
• DO NOT submit AI-generated answers. While it’s okay to take inspiration on how to structure your answer but a human touch is what makes your answer authentic and stand out.&lt;br&gt;
• Stick to the word limit and avoid over-expressing yourself.&lt;br&gt;
• I prepared a bullet-point list of all the things to include. When writing the final answers, I simply combined everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Next Round of Application&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• If you get shortlisted in the first round, you’ll be asked to create a 5-minute video explaining an AWS service.&lt;br&gt;
• I chose AWS EC2 and prepared a video covering the introduction, benefits, and a quick walk-through to create an EC2 instance on the AWS console.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;My Tips on video creation&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• To gather content ideas, check out the &lt;a href="https://aws.amazon.com/developer/community/students/" rel="noopener noreferrer"&gt;AWS Student Hub&lt;/a&gt; or &lt;a href="https://youtube.com/@amazonwebservices" rel="noopener noreferrer"&gt;AWS Developers’ YouTube Channel&lt;/a&gt;&lt;br&gt;
• Keep your videos concise and impactful. If possible, include special elements like a hands-on demo or animations to make your submission stand out.&lt;br&gt;
• Remember- “Content is King”. In the end, the quality of your content is all that matters.&lt;br&gt;
• Adhere to the specified time limit.&lt;br&gt;
• Find a well-lit room for recording and ensure your face is visible as you present the slides.&lt;br&gt;
• It is good practice to upload your video to YouTube and share the link (adding a catchy thumbnail and a description is a bonus). If you’re uploading it to the cloud, make sure to provide viewer access before submission.&lt;br&gt;
• Here’s a &lt;a href="https://www.youtube.com/watch?v=s5OeF1C4LwU" rel="noopener noreferrer"&gt;bar-raising video&lt;/a&gt; you can refer to while preparing your video.&lt;/p&gt;




&lt;p&gt;Now, let's get back to my unexpected twist in this journey. When I received the rejection email initially, it caught me off guard and for a moment, I felt a bit disheartened. &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%2Fhlp2ejbfr6239dqrz60n.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%2Fhlp2ejbfr6239dqrz60n.png" alt="rejection mail" width="800" height="193"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;However, fate had other plans in store for me. Within a few hours, another email landed in my inbox, acknowledging the mistake, and confirming my selection for the next step.&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%2F5pjmyi2uilsnl2zua4ay.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%2F5pjmyi2uilsnl2zua4ay.png" alt="acknowledgement mail" width="800" height="191"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;With renewed excitement and determination, I submitted the video and became one of the first 50 AWS Cloud Club Captains for the Spring 2023 cohort worldwide! &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%2Fvrk1rcrrbx46ooxhm4sw.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%2Fvrk1rcrrbx46ooxhm4sw.png" alt="Selection mail" width="800" height="204"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here's the deal: The program is quite selective but having good experience with cloud computing, possessing a passion for inspiring students and managing tech communities based on AWS, and creating a supportive network of like-minded individuals will give you an edge- you’d be a great fit! &lt;/p&gt;

&lt;p&gt;Oh, and how could I forget to mention my welcome swag!!!!&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%2Fqj1pulefp9jfmo2u5jit.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%2Fqj1pulefp9jfmo2u5jit.png" alt="AWS CC SWAG" width="800" height="640"&gt;&lt;/a&gt;&lt;br&gt;
The applications for the Spring cohort are open around late February and for the fall cohort, they open around late July. You can always get in the know by visiting the &lt;a href="http://s12d.com/cloud-clubs" rel="noopener noreferrer"&gt;official page&lt;/a&gt;.&lt;br&gt;
So, what are you waiting for? Join AWS Cloud Clubs today and kickstart your cloud journey with AWS. &lt;br&gt;
Follow AWS Cloud Club IIPS for exciting events, workshops, and hands-on sessions today!&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%2Fbs0si4t0ear9aeal169n.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%2Fbs0si4t0ear9aeal169n.png" alt="AWS CC IIPS" width="313" height="314"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.instagram.com/aws_cloudclub_iips/" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt; | &lt;a href="https://twitter.com/awscciips" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt; | &lt;a href="https://www.linkedin.com/groups/9351190/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt; | &lt;a href="https://www.meetup.com/aws-cloud-club-iips/" rel="noopener noreferrer"&gt;Meetup&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>My Journey to Becoming an AWS Cloud Club Captain</title>
      <dc:creator>ANUSHKA SAXENA</dc:creator>
      <pubDate>Fri, 14 Jul 2023 13:00:22 +0000</pubDate>
      <link>https://dev.to/anushka_saxena/my-journey-to-becoming-an-aws-cloud-club-captain-1bl4</link>
      <guid>https://dev.to/anushka_saxena/my-journey-to-becoming-an-aws-cloud-club-captain-1bl4</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgv54l2lyw4u53tma1ure.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgv54l2lyw4u53tma1ure.png" alt="AWS CC BANNER" width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m Anushka Saxena, an AWS Cloud Club Captain at the International Institute of Professional Studies, Devi Ahilya Vishwavidyalaya, a university located in Indore, Madhya Pradesh, India. Tech Communities are where I belong and Cloud Computing has always fascinated me. Throughout my journey as a student, I have been driven to share my knowledge, empower others and give back to my community. With the opportunity to become an AWS Cloud Club Captain, I found the perfect platform to create a community focused on exploring the Cloud’s vast potential. If you love to organize and speak at events, share resources, and upskill your peers in Cloud Computing with AWS then, this program is for you! In this blog, I will share my journey and how I got through the selection process.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Program Benefits&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;This program is more than cool swag and freebies, although those are fantastic bonuses. It's about professional growth and incredible perks that will propel your career forward. Let's dive into the exclusive benefits* that await you as a member of the AWS Cloud Club Captains Community:&lt;/p&gt;

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

&lt;p&gt;It all started when I attended an event organized by the AWS User Group Jaipur. Mr. Mustafa Saifee, a community member, explained the whole program and its benefits, inspiring me to apply.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Next Steps&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• On February 6, 2023, I received an email from Ms. Tracy Wang, our community manager, announcing the official launch of AWS Cloud Clubs in 10 regions worldwide. These regions include Australia, Bangladesh, France, India, Ireland, Mexico, Nigeria, Pakistan, United Kingdom, and the United States. I received the mail because I had previously expressed interest by filling out this &lt;a href="https://community.buildon.aws/survey/VLFIYRRV" rel="noopener noreferrer"&gt;form&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;• The first part of the application process involved filling out a form that consisted of 4 essay-type questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Please tell us why you are interested in founding a Cloud Club in your region, school, or peer group.&lt;/li&gt;
&lt;li&gt;Please tell us your relevant education that can help you lead a cloud-focused student community.&lt;/li&gt;
&lt;li&gt;Please tell us your relevant technical skills, languages, or certifications that can help you lead as a voice for tech-curious students. &lt;/li&gt;
&lt;li&gt;Please tell us about relevant experiences that make you qualified to become a Captain.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;My tips on writing the essays&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• Keep your answers short and crisp but make sure to include as many details as possible. These questions test your ability to summarize content.&lt;br&gt;
• Be honest about your experiences and share real-life examples where you’ve demonstrated leadership, public speaking, and relevant technical skills.&lt;br&gt;
• Run your answers through a plagiarism check and ensure that there are no grammatical errors before submission. &lt;br&gt;
• DO NOT submit AI-generated answers. While it’s okay to take inspiration on how to structure your answer but a human touch is what makes your answer authentic and stand out.&lt;br&gt;
• Stick to the word limit and avoid over-expressing yourself.&lt;br&gt;
• I prepared a bullet-point list of all the things to include. When writing the final answers, I simply combined everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Next Round of Application&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• If you get shortlisted in the first round, you’ll be asked to create a 5-minute video explaining an AWS service.&lt;br&gt;
• I chose AWS EC2 and prepared a video covering the introduction, benefits, and a quick walk-through to create an EC2 instance on the AWS console.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;My Tips on video creation&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;• To gather content ideas, check out the &lt;a href="https://aws.amazon.com/developer/community/students/" rel="noopener noreferrer"&gt;AWS Student Hub&lt;/a&gt; or &lt;a href="https://youtube.com/@amazonwebservices" rel="noopener noreferrer"&gt;AWS Developers’ YouTube Channel&lt;/a&gt;&lt;br&gt;
• Keep your videos concise and impactful. If possible, include special elements like a hands-on demo or animations to make your submission stand out.&lt;br&gt;
• Remember- “Content is King”. In the end, the quality of your content is all that matters.&lt;br&gt;
• Adhere to the specified time limit.&lt;br&gt;
• Find a well-lit room for recording and ensure your face is visible as you present the slides.&lt;br&gt;
• It is good practice to upload your video to YouTube and share the link (adding a catchy thumbnail and a description is a bonus). If you’re uploading it to the cloud, make sure to provide viewer access before submission.&lt;br&gt;
• Here’s a &lt;a href="https://www.youtube.com/watch?v=s5OeF1C4LwU" rel="noopener noreferrer"&gt;bar-raising video&lt;/a&gt; you can refer to while preparing your video.&lt;/p&gt;




&lt;p&gt;Now, let's get back to my unexpected twist in this journey. When I received the rejection email initially, it caught me off guard and for a moment, I felt a bit disheartened. &lt;/p&gt;

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

&lt;p&gt;However, fate had other plans in store for me. Within a few hours, another email landed in my inbox, acknowledging the mistake, and confirming my selection for the next step.&lt;/p&gt;

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

&lt;p&gt;With renewed excitement and determination, I submitted the video and became one of the first 50 AWS Cloud Club Captains for the Spring 2023 cohort worldwide! &lt;/p&gt;

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

&lt;p&gt;Here's the deal: The program is quite selective but having good experience with cloud computing, possessing a passion for inspiring students and managing tech communities based on AWS, and creating a supportive network of like-minded individuals will give you an edge- you’d be a great fit! &lt;/p&gt;

&lt;p&gt;Oh, and how could I forget to mention my welcome swag!!!!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvpfh0a3lwbfg7dfbonbc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvpfh0a3lwbfg7dfbonbc.png" alt="AWS CC SWAG" width="800" height="640"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The applications for the Spring cohort are open around late February and for the fall cohort, they open around late July. You can always get in the know by visiting the &lt;a href="http://s12d.com/cloud-clubs" rel="noopener noreferrer"&gt;official page&lt;/a&gt;.&lt;br&gt;
So, what are you waiting for? Join AWS Cloud Clubs today and kickstart your cloud journey with AWS. &lt;br&gt;
Follow AWS Cloud Club IIPS for exciting events, workshops, and hands-on sessions today!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgwele8s71wbad5utbncs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgwele8s71wbad5utbncs.png" alt="AWS CC IIPS" width="204" height="204"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.instagram.com/aws_cloudclub_iips/" rel="noopener noreferrer"&gt;Instagram&lt;/a&gt; | &lt;a href="https://twitter.com/awscciips" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt; | &lt;a href="https://www.linkedin.com/groups/9351190/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt; | &lt;a href="https://www.meetup.com/aws-cloud-club-iips/" rel="noopener noreferrer"&gt;Meetup&lt;/a&gt;&lt;/p&gt;

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