<?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: mohit mishra</title>
    <description>The latest articles on DEV Community by mohit mishra (@mohit0303).</description>
    <link>https://dev.to/mohit0303</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%2F1002299%2Fbca7cb2b-6964-469a-8ccd-18e501226508.jpeg</url>
      <title>DEV Community: mohit mishra</title>
      <link>https://dev.to/mohit0303</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohit0303"/>
    <language>en</language>
    <item>
      <title>Hypervisors to Containers: A Dive into AWS Virtualization World🌍</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Tue, 08 Apr 2025 14:13:21 +0000</pubDate>
      <link>https://dev.to/mohit0303/hypervisors-to-containers-a-dive-into-aws-virtualization-world-1o5c</link>
      <guid>https://dev.to/mohit0303/hypervisors-to-containers-a-dive-into-aws-virtualization-world-1o5c</guid>
      <description>&lt;p&gt;Have you ever wondered what really happens under the hood when you launch an EC2 instance, install Docker, and run your containers on it ?&lt;/p&gt;

&lt;p&gt;Cloud computing often abstracts away infrastructure, but understanding the layers gives you superpowers as a developer, DevOps engineer, or architect.&lt;/p&gt;

&lt;p&gt;Most of us start by running a container on a cloud VM, but lets see&lt;br&gt;
how the entire stack is layered.&lt;/p&gt;

&lt;p&gt;We will be seeing right from Hardware,Hypervisior, Bare Metal , Cloud, VM, Docker, Pod work together. So Lets jump in.&lt;/p&gt;

&lt;p&gt;Let’s break this down in simple terms, from the hardware all the way up to your containers, and answer a fundamental question:&lt;br&gt;
Where exactly does our container live inside AWS?&lt;/p&gt;

&lt;p&gt;The Typical DevOps Stack:&lt;br&gt;
🧞‍♂️Build a Docker image using a Dockerfile&lt;br&gt;
🧞‍♂️Launch an EC2 instance (say, Ubuntu)&lt;br&gt;
🧞‍♂️Install Docker or containerd&lt;br&gt;
🧞‍♂️Run your container (e.g., Django, Node.js, etc.)&lt;/p&gt;

&lt;p&gt;But what’s the full architecture behind this?&lt;/p&gt;

&lt;p&gt;The Layer: Container → EC2 → Hypervisor → Physical Server&lt;br&gt;
Here’s how the stack actually looks:&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%2Feu5v35n5vtjwxk7qq41u.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%2Feu5v35n5vtjwxk7qq41u.png" alt="Image description" width="456" height="761"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Container (Your App)&lt;br&gt;
This is your running application, isolated with its own filesystem, environment variables, and dependencies. You can run multiple containers, each hosting your different microservice.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Docker Engine (or containerd)&lt;br&gt;
Below container, this is the runtime that manages your containers.&lt;br&gt;
It handles pulling images, starting/stopping containers, networking, and more.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;EC2 Virtual Machine (Guest OS)&lt;br&gt;
This is the Ubuntu or Amazon Linux OS you selected while creating the EC2 instance.&lt;br&gt;
It’s a Guest OS running inside a virtual machine and it’s fully yours to control.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;AWS Nitro Hypervisor (The LEGEND)&lt;br&gt;
AWS uses a lightweight bare-metal hypervisor called Nitro.&lt;br&gt;
Unlike traditional hypervisors, Nitro doesn’t sit on top of a host OS.&lt;br&gt;
It runs directly on the hardware, creating isolated VMs with high performance &amp;amp; security.&lt;br&gt;
There’s no general-purpose host OS under the Nitro hypervisor , just a lean hypervisor layer and AWS’s custom hardware modules.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Physical Server (The Actual Machine)&lt;br&gt;
At the very bottom is a real, physical server inside an AWS data center.&lt;br&gt;
The Nitro hypervisor slices this machine into many virtual machines (EC2 instances) for users like us.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Your Container is Actually… 5 Layers Deep&lt;br&gt;
So when you docker run something on your EC2 instance (on cloud), here’s what’s happening:&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%2Flbj03l0vmv0xt1cmebog.gif" 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%2Flbj03l0vmv0xt1cmebog.gif" alt="Image description" width="400" height="300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🤖Our container runs our app (e.g., Django)&lt;br&gt;
☸️But our created container is running on top of…&lt;br&gt;
🐳A container engine(docker),which installed on…&lt;br&gt;
🐧A guest OS, which is running inside…&lt;br&gt;
☁️A virtual machine(EC2),which created by…&lt;br&gt;
💻A hypervisor,which is sitting on real hardware.&lt;br&gt;
You’re not just running a container:&lt;br&gt;
You’re running it inside a container engine, on a guest OS, inside a VM, on a hypervisor, on AWS bare metal.&lt;/p&gt;

&lt;p&gt;Like Inception for DevOps 🍰 layers on layers!&lt;/p&gt;

&lt;p&gt;Why Should You Care?&lt;br&gt;
Understanding this layering helps you:&lt;/p&gt;

&lt;p&gt;Debug better: Know if an issue is in the container, the VM, or deeper.&lt;br&gt;
Architect smarter: Choose EC2 vs Fargate vs Lambda more effectively.&lt;br&gt;
Secure more: Understand isolation between containers, VMs, and tenants.&lt;br&gt;
Ace certifications: Like the CKAD, where container fundamentals matter.&lt;br&gt;
But then a natural question should pop up:&lt;/p&gt;

&lt;p&gt;“We know containers share the Host OS.&lt;br&gt;
But I’m also using FROM ubuntu in my Dockerfile , isn’t that an OS too?”&lt;/p&gt;

&lt;p&gt;Q: So what’s going on here, are there 2 OS, one of Container and one of Host?&lt;/p&gt;

&lt;p&gt;Ans: Yes… but not in the way you might think.&lt;/p&gt;

&lt;p&gt;When you use a Docker image like:&lt;br&gt;
FROM ubuntu&lt;/p&gt;

&lt;p&gt;You’re not pulling in a full-blown OS ,you’re only getting the userland i.e:&lt;/p&gt;

&lt;p&gt;Shell (/bin/bash)&lt;br&gt;
Libraries (libc, apt, etc.)&lt;br&gt;
Utilities (curl, ls, etc.)&lt;br&gt;
What you don’t get is the kernel , that’s always provided by the Host OS.&lt;/p&gt;

&lt;p&gt;Let’s Split the Concept of an “OS” into Two Parts:&lt;br&gt;
Kernel-&amp;gt; The core of the OS, responsible for talking to hardware, managing resources, etc.&lt;/p&gt;

&lt;p&gt;Userland -&amp;gt; Everything else: shell (bash), utilities (ls, cat, apt), libraries (glibc), and file system structure (/bin, /etc, etc.)&lt;/p&gt;

&lt;p&gt;So When You Write:&lt;br&gt;
dockerfile&lt;br&gt;
FROM ubuntu:22.04&lt;br&gt;
You’re NOT packaging the kernel of Ubuntu.&lt;/p&gt;

&lt;p&gt;You’re only including:&lt;br&gt;
The Ubuntu userland&lt;br&gt;
Tools and libraries to make your app run like it would on Ubuntu&lt;/p&gt;

&lt;p&gt;The container still uses the Host OS’s kernel to make system calls.&lt;/p&gt;

&lt;p&gt;So our running CONTAINER, isn’t a full VM, it’s just a lightweight, isolated process that shares the Host’s kernel but has its own filesystem, processes, and networking.&lt;/p&gt;

&lt;p&gt;NOTE:&lt;br&gt;
🚀In VM: Each VM has its own full OS (Guest OS), which is a copy separate from the Host OS.&lt;br&gt;
It keeps using system resources even when idle.&lt;/p&gt;

&lt;p&gt;🚀In Containers: They share the Host OS kernel.&lt;/p&gt;

&lt;p&gt;🚀When no process is running inside a container, it stops (because a container is just a process).&lt;/p&gt;

&lt;p&gt;Final Thoughts&lt;br&gt;
Cloud computing often abstracts away infrastructure, but understanding the layers gives you superpowers as a developer, DevOps engineer, or architect.&lt;/p&gt;

&lt;p&gt;So next time when you SSH into your EC2 instance running a container, remember: you’re operating five layers above the metal.&lt;/p&gt;

&lt;p&gt;Personal Thought:&lt;/p&gt;

&lt;p&gt;And If you’re worried about AI replacing jobs or questioning your ability to keep up, remember:&lt;br&gt;
Every expert was once a beginner. 🌱&lt;/p&gt;

&lt;p&gt;I have already written blogs on AI/ML with AWS. Check them out if you like.&lt;/p&gt;

&lt;p&gt;And please, Stay curious and motivated, keep learning and moving forward. 🚀&lt;br&gt;
Keep Calm, Stay Aware, and Keep Your Chin Up! 😊 You will do it! ✨&lt;/p&gt;

&lt;p&gt;If you want any personal suggestions or a one-to-one call with me, I’d be more than happy to chat🌿&lt;br&gt;
Let’s connect on Linkedin for a Hi !! 🤝&lt;/p&gt;

&lt;p&gt;Now, take a deep breath 🌬️ and Go Learn! 🌏&lt;/p&gt;

&lt;h1&gt;
  
  
  AWS #Cloud #AWS #2025 #DevOps #Mindset #Win #NewWorld #Technology #hypervisor #baremetal
&lt;/h1&gt;

</description>
      <category>cloud</category>
      <category>aws</category>
      <category>hypervisor</category>
      <category>container</category>
    </item>
    <item>
      <title>Your Most Important Skill for 2025</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Sun, 05 Jan 2025 17:47:27 +0000</pubDate>
      <link>https://dev.to/mohit0303/your-most-important-skill-for-2025-3c1g</link>
      <guid>https://dev.to/mohit0303/your-most-important-skill-for-2025-3c1g</guid>
      <description>&lt;p&gt;Read this article ONLY if you are serious for 2025 else DONT. Its fine.&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%2Fz8vehbrmll3itmldozgh.gif" 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%2Fz8vehbrmll3itmldozgh.gif" alt="Image description" width="480" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So, Its 2025 and its already getting older 👴🏻&lt;/p&gt;

&lt;p&gt;So which important skill have you planned to learn this year or this month or this week ?&lt;/p&gt;

&lt;p&gt;Cloud, Devops, Python,GenAi, Blockchain, JS ??&lt;/p&gt;

&lt;p&gt;Now, Its imp to share a note with you about me!!&lt;br&gt;
I am an IT professional with 10yrs of experience and working as a Lead Cloud Architect in a Denmark🇩🇰 based firm.&lt;/p&gt;

&lt;p&gt;On a daily basis, I have to deal with below task, read carefully&lt;br&gt;
🔥Devops &amp;amp; CICD pipelines tools like Bitbucket pipeline/cicrleCI &amp;amp; Jenkins, 🔥Managing Kubernetes clusters using Kops&lt;br&gt;
🔥Writting python code in Django creating, updating API’s&lt;br&gt;
🔥Working on AWS cloud infra, different IAM roles &amp;amp; policies.&lt;/p&gt;

&lt;p&gt;Now, when i list down these skills and tools which i am working right now, its sound fascinating right ?&lt;/p&gt;

&lt;p&gt;But, trust me i have full faith that they wont be in my resume as well in the market in next 5 6 months🤷🏻‍♂️Its a “FACT”&lt;/p&gt;

&lt;p&gt;The biggest skill you can learn in 2025 world is “Learn to Learn Fast⚡”&lt;/p&gt;

&lt;p&gt;The pace at which the market is changing, its impossible to just know one or two skill and stick to it for years. Those days are gone.&lt;/p&gt;

&lt;p&gt;Tools &amp;amp; Languages are getting older in just 2 3 months being in market.&lt;/p&gt;

&lt;p&gt;You have to adapt to this rapid changing world. But how ?🤷🏻‍♂️&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%2Fg68l751rt8jzzcszowjn.gif" 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%2Fg68l751rt8jzzcszowjn.gif" alt="Image description" width="480" height="224"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My 5 tips on Learning “How to Learn Fast” 👨🏻‍💻&lt;/p&gt;

&lt;p&gt;It’s all mind game 🧠. Prepare your mind to STOP fearing changes. 💭&lt;/p&gt;

&lt;p&gt;The first thing your mind will say are these lines:&lt;br&gt;
“Shit, it’s a new tool, it will take 2–3 months to learn it, it’s not possible what this Team Lead is saying.” 🤯&lt;br&gt;
You have to overcome this fear of change. 💪&lt;/p&gt;

&lt;p&gt;When a new tool comes in front of you, just say:&lt;br&gt;
“It’s just a tool, I have experience with something similar. I will learn it quickly.” 🔧🚀&lt;/p&gt;

&lt;p&gt;Stop wasting your time on its theory part. Start implementing and:&lt;br&gt;
“Start Fast” to “Fail Fast” ⏩💥&lt;br&gt;
“If you fail late, remember you will pass late as well.” 📆⏳&lt;/p&gt;

&lt;p&gt;Follow a proper course, material, community, pages, and writers 📚👩🏻‍💻 to stay aware of what changes are happening in the market. 🌍&lt;/p&gt;

&lt;p&gt;It will sound oldy, but trust me, its all about&lt;br&gt;
“Either You Control Your Mind OR the Mind Controls You” 🤷🏻‍♂️&lt;/p&gt;

&lt;p&gt;Let me pin down some current hot skills in market:(Acc to my experience)&lt;/p&gt;

&lt;p&gt;🔥Artificial Intelligence (AI) and Machine Learning (ML)&lt;br&gt;
Proficiency in AI and ML is highly sought after, as businesses integrate these technologies to enhance operations and customer experiences.&lt;/p&gt;

&lt;p&gt;🔥Data Science and Analytics&lt;br&gt;
The ability to analyze and interpret complex data sets is crucial for informed decision-making and strategic planning.&lt;/p&gt;

&lt;p&gt;🔥Cloud Computing , Devops , MLOps&lt;br&gt;
Expertise in cloud platforms like AWS, Azure, and Google Cloud is essential as organizations continue to migrate to cloud-based infrastructures with Devops automating things.&lt;/p&gt;

&lt;p&gt;🔥Cybersecurity&lt;br&gt;
With the increasing frequency of cyber threats, skills in cybersecurity are critical to protect sensitive information and maintain trust.&lt;/p&gt;

&lt;p&gt;But make yourself understand that:&lt;br&gt;
“Everything is possible in this world”&lt;br&gt;
Every skill can be learnt.&lt;br&gt;
Each language can be practised.&lt;br&gt;
Just open your mind and thoughts🔥&lt;/p&gt;

&lt;p&gt;FACT CHECK: You Like it or Not, this is a fact that market is changing rapidly.&lt;/p&gt;

&lt;p&gt;You have to keep yourself updated.&lt;br&gt;
Accept it and make your mind to accept it too positively 😃&lt;/p&gt;

&lt;p&gt;From my side i am trying to decode complex topics like cloud, devops,GenAI, MLOps, security in simple manner by linking them with our daily day-to-day things we do.&lt;br&gt;
Like this one “explaining Docker &amp;amp; Kubernetes using a selfie example 🤳🏻”&lt;/p&gt;

&lt;p&gt;So “Learn to Learn Fast”.&lt;/p&gt;

&lt;p&gt;Market is changing, so Change your Thinking, on Your Capabilities as well🦾&lt;br&gt;
And You gonna DO IT🧞&lt;/p&gt;

&lt;p&gt;Millions of people have done it, why you can’t do it ?&lt;br&gt;
You Will !!🕺🎉&lt;/p&gt;

&lt;p&gt;If you felt, i gave you a reallity check.And we are on the same page now.&lt;br&gt;
Do let me know by a clap or a comment🙌&lt;br&gt;
Will be happy, knowing your thoughts on the same💫&lt;/p&gt;

&lt;p&gt;And if by any chance, you want to connect with me on Linkedin will be happy to guide or have a discussion, with you there as well🙋&lt;/p&gt;

&lt;p&gt;Life is Your Movie &amp;amp; You are not a Chracter in it, YOU are the CREATOR of that Movie💥🌍&lt;br&gt;
Keep pushing, Keep growing.&lt;/p&gt;

&lt;h1&gt;
  
  
  2025 #learnfast #life #growth #mindset #achiever #targets #technology #cloud #devops #aws #change #update
&lt;/h1&gt;

</description>
      <category>growth</category>
      <category>technology</category>
      <category>targets</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How AI Understands What I Am Asking? 🤔 “Tokens”- the Language of AI with AWS!</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Wed, 01 Jan 2025 17:31:08 +0000</pubDate>
      <link>https://dev.to/mohit0303/how-ai-understands-what-i-am-asking-tokens-the-language-of-ai-with-aws-31pa</link>
      <guid>https://dev.to/mohit0303/how-ai-understands-what-i-am-asking-tokens-the-language-of-ai-with-aws-31pa</guid>
      <description>&lt;p&gt;We hear about AI everywhere these days.&lt;/p&gt;

&lt;p&gt;And yes, it stands for Artificial Intelligence , an intelligence created artificially, to help machines do tasks, that would otherwise require human intelligence. 💡&lt;/p&gt;

&lt;p&gt;But my first question was : How AI know what I am asking or telling it?Simple answer: AI models read &amp;amp; understand the text we give them.&lt;br&gt;
Actual answer: Tokenization, the language of AI. 🧩&lt;/p&gt;

&lt;p&gt;So How AI Reads Text 🧠&lt;br&gt;
We humans have evolved to process words almost instantly.&lt;/p&gt;

&lt;p&gt;We no longer focus on individual letters — it all happens rapidly in the back of our minds.&lt;br&gt;
Words come together to form meaningful sentences seamlessly.&lt;/p&gt;

&lt;p&gt;AI works similarly but with a twist. When an AI model receives a prompt (a question or instruction from us), it doesn’t see it as full sentences or even just words.&lt;/p&gt;

&lt;p&gt;Instead, it breaks the sentence down into smaller units called “Tokens” 🧱&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%2Fy1dbez2u0z1rhvhb31iw.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%2Fy1dbez2u0z1rhvhb31iw.png" alt="Image description" width="664" height="668"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tokens Are NOT Word Count! 🚫&lt;/p&gt;

&lt;p&gt;So what Are Tokens?&lt;br&gt;
Tokens are the building blocks of how AI processes text.&lt;br&gt;
They are not the same as words but are smaller chunks of text.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
The word “Understandable” is split into 3 tokens: “Under”, “Stand”, “Able”.&lt;/p&gt;

&lt;p&gt;The question “What is the capital of India?” is tokenized as:&lt;br&gt;
“What”, “is”, “the”, “capital”, “of”, “India”, “?”.&lt;/p&gt;

&lt;p&gt;Each word or piece of text is tokenized this way, for the AI to process and understand. 📝&lt;/p&gt;

&lt;p&gt;IMPORTANT: Tokens and AI Costs 💰&lt;/p&gt;

&lt;p&gt;Here’s where it gets interesting: The number of tokens matters!&lt;/p&gt;

&lt;p&gt;AI companies charge based on the total number of tokens you send in your prompt and the AI’s response.&lt;/p&gt;

&lt;p&gt;For example:&lt;br&gt;
If your input has 50 tokens and the AI generates a 100-token response, you’ve used 150 tokens total for that interaction.&lt;/p&gt;

&lt;p&gt;Companies like OpenAI, Amazon, and others use these token counts to determine their pricing plans. 💵&lt;/p&gt;

&lt;p&gt;And Why Tokens Matter 🌟&lt;br&gt;
Understanding tokens helps us better appreciate how AI works and why costs vary.&lt;br&gt;
Every word, punctuation mark, and even a long word broken into smaller chunks adds to the token count.&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%2Feygq890xfjj8iehay3kx.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%2Feygq890xfjj8iehay3kx.png" alt="Image description" width="464" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AI services charge based on the number of tokens processed — both in the input (your question) and the output (AI’s response). Here’s how it works:&lt;/p&gt;

&lt;p&gt;Short queries cost less as they use fewer tokens.&lt;br&gt;
Complex or detailed responses use more tokens, increasing the cost.&lt;br&gt;
For instance, if you input 200 tokens and the response is 300 tokens, the total is 500 tokens.&lt;br&gt;
Each service has different pricing models. For example:&lt;/p&gt;

&lt;p&gt;GPT-4 might charge $0.03 per 1,000 tokens, so a query with 1,500 tokens would cost $0.045.&lt;/p&gt;

&lt;p&gt;Every token matters because, it determines the cost, context limits (how much text the model can handle at once), and even how efficiently the AI performs.&lt;/p&gt;

&lt;p&gt;And As Everything is Happening on Cloud, lets explore it in AWS&lt;/p&gt;

&lt;p&gt;Tokens in AWS AI/ML Services 🛠️&lt;br&gt;
AWS integrates tokenization across many of its AI/ML services:&lt;/p&gt;

&lt;p&gt;Amazon Comprehend uses tokens to process text for tasks like sentiment analysis and entity recognition.&lt;br&gt;
Amazon Lex tokenizes user input to understand intents and manage conversational AI interactions.&lt;br&gt;
Amazon Bedrock enables interaction with foundational models, where efficient token usage can optimize costs.&lt;br&gt;
When using these services, remember: the fewer unnecessary tokens, the more cost-effective and efficient your interactions can be. 💸&lt;/p&gt;

&lt;p&gt;So, the next time you chat with an AI model, know that tokens are silently working behind the scenes, making the magic happen. ✨&lt;/p&gt;

&lt;p&gt;And If you’re worried about AI replacing jobs or questioning your ability to keep up, remember that every expert was once a beginner.&lt;/p&gt;

&lt;p&gt;Stay curious &amp;amp; motivated — keep learning &amp;amp; moving forward.&lt;/p&gt;

&lt;p&gt;Keep Calm, Keep Aware, Keep the Chin and Thinking UP !! You will do it !!&lt;/p&gt;

&lt;p&gt;If you want any personal suggestion or a one-to-one call with me, will be more then happy to have one🌿&lt;br&gt;
Let’s connect on Linkedin for a Hi !!&lt;/p&gt;

&lt;p&gt;Now, Take a deep breathe and Go Learn🌏&lt;/p&gt;

</description>
      <category>aws</category>
      <category>genai</category>
      <category>token</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>From AI🤖 to AWS☁️: A Quick Guide to Essential AI/ML Terms</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Thu, 28 Nov 2024 15:33:03 +0000</pubDate>
      <link>https://dev.to/mohit0303/from-ai-to-aws-a-quick-guide-to-essential-aiml-terms-2apo</link>
      <guid>https://dev.to/mohit0303/from-ai-to-aws-a-quick-guide-to-essential-aiml-terms-2apo</guid>
      <description>&lt;p&gt;Without knowing these Terms, ML/AI will always feel Futuristic/Alien.&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%2Faig6cy3d9bg8w18sax0v.gif" 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%2Faig6cy3d9bg8w18sax0v.gif" alt="Image description" width="800" height="602"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the world of AI/ML and AWS, there’s a sea of terms that often get tossed around.&lt;/p&gt;

&lt;p&gt;If you’ve ever felt overwhelmed by them, don’t worry — you’re not alone!&lt;/p&gt;

&lt;p&gt;This article will break down the most commonly used terms in AI/ML and AWS, giving you a clear, concise definition of each term, that will bring you one step closer to AI/ML/AWS world.&lt;/p&gt;

&lt;p&gt;🔥AI: Its a process of imitating human intelligence in machines.&lt;br&gt;
[problem-solving, reasoning, learning, and understanding language]&lt;/p&gt;

&lt;p&gt;🔥ML: A subset of AI, ML refers to the ability of machines to learn from data without being explicitly programmed. It uses “Algorithms to find Patterns” or insights from large datasets.&lt;/p&gt;

&lt;p&gt;🔥Deep Learning: A subset of ML, that deals with “algorithms” inspired by the structure/function of the “Human Brain”, called artificial neural networks. [image, speech recognition]&lt;/p&gt;

&lt;p&gt;NOTE: When “Learning” comes in picture “Algorithm” comes into picture.&lt;br&gt;
Like in above 2 case, ML &amp;amp; Deep Learning works on ‘Algorithm’&lt;/p&gt;

&lt;p&gt;🔥Neural Networks: A set of “algorithms” that attempts to recognize underlying relationships, in a set of data through a process, that mimics the way the human brain operates.&lt;br&gt;
Neural networks are the foundation of deep learning.&lt;/p&gt;

&lt;p&gt;🔥Computer Vision: A field of AI that enables machines to interpret and make decisions based on visual data, such as images and videos.&lt;br&gt;
[object detection, image recognition, and face detection]&lt;/p&gt;

&lt;p&gt;🔥Natural Language Processing (NLP): A branch of AI that focuses on the interaction between computers and human language, enabling machines to understand, interpret, and generate human language.&lt;br&gt;
[sentiment analysis, text translation, and chatbots.]&lt;/p&gt;

&lt;p&gt;🔥Algorithm: A set of instructions or rules, designed to perform a task or solve a problem. In ML, algorithms are used to “train models from data”.&lt;/p&gt;

&lt;p&gt;MOST IMPORTANT ONE 👇🏻&lt;/p&gt;

&lt;p&gt;🔥Model: A ML MODEL, is a “mathematical representation” of a real-world process.&lt;br&gt;
In ML, it is a function, learned from data, that makes predictions or classifications based on new input data.&lt;/p&gt;

&lt;p&gt;A Model is created, by training an algorithm, using data, and the result of this training process is the model.&lt;/p&gt;

&lt;p&gt;🔥Training: The process of teaching a machine learning model by feeding it data and allowing it to learn patterns.&lt;/p&gt;

&lt;p&gt;🔥Inferencing: The last stage/process of now, using a trained model, to make predictions or decisions based on new data.&lt;br&gt;
Bulk Inferencing: Prediction generated in BULK.DOne in Offline mode.&lt;br&gt;
Real-Time Inferencing: Predicting in real time like self-driving car does.&lt;/p&gt;

&lt;p&gt;Dont loose the FOCUS here, just few more terms and you will have a good awarness atleast.&lt;/p&gt;

&lt;p&gt;🔥Bias: Bias in AI refers to systematic errors or prejudices that can be introduced in the model due to biased training data or flawed assumptions. This can lead to unfair or inaccurate predictions.&lt;/p&gt;

&lt;p&gt;🔥Fairness: Ensuring that AI models make decisions without unjustly favoring or discriminating against specific groups, especially in sensitive areas like hiring, lending, or criminal justice.&lt;/p&gt;

&lt;p&gt;🔥Fit: The ability of a model to perform well on the training data.&lt;br&gt;
A “good fit” means the model has learned the underlying patterns, while “overfitting” or “underfitting” may indicate issues in model performance.&lt;/p&gt;

&lt;p&gt;🔥Large Language Models (LLM): AI models designed to process and generate human language on a large scale, typically trained on massive datasets.&lt;br&gt;
Used in NLP tasks like language translation, summarization, and conversation generation.&lt;/p&gt;

&lt;p&gt;🔥Structured Data: Data that is organized in a specific format or schema, like tables, spreadsheets, or databases.&lt;/p&gt;

&lt;p&gt;🔥Unstructured Data: Data that does not have a predefined format, such as text documents, videos, or audio files.&lt;/p&gt;

&lt;p&gt;🔥AWS SageMaker: It is a fully managed service that provides developers and data scientists with the tools to quickly build, train, and deploy machine learning models at scale.&lt;/p&gt;

&lt;p&gt;🔥AWS Bedrock: It is a managed service that allows you to easily build and scale generative AI applications by leveraging foundation models from leading AI companies.&lt;/p&gt;

&lt;p&gt;Okay glad you came this far. I know there must be few confusions, so lets try to know the differences.&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%2Fkosfs1tjhgfh5o36i4gz.gif" 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%2Fkosfs1tjhgfh5o36i4gz.gif" alt="Image description" width="500" height="373"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Similarities &amp;amp; Differences&lt;br&gt;
🎯AI vs. ML:&lt;/p&gt;

&lt;p&gt;AI is the broader concept that encompasses the idea of machines performing tasks that would typically require human intelligence (e.g., reasoning, decision-making).&lt;br&gt;
ML is a “subset of AI” that specifically focuses on using data-driven algorithms to learn from and make predictions based on data.&lt;br&gt;
🎯ML vs. Deep Learning:&lt;/p&gt;

&lt;p&gt;Deep Learning is a specialized area within ML.&lt;br&gt;
While traditional ML algorithms, might use “structured data” (like tables)&lt;br&gt;
Deep Learning models are designed to, automatically learn hierarchical features from raw data, especially unstructured data like images and text.&lt;br&gt;
Deep learning typically requires much larger datasets and computing power than traditional ML.&lt;br&gt;
Now, dont loose the momentum, complete the last most important chunk of the blog, “THE MODEL”&lt;/p&gt;

&lt;p&gt;🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀&lt;/p&gt;

&lt;p&gt;When we hear, “Train the Model”, “Model fine-tuning” etc etc&lt;/p&gt;

&lt;p&gt;So How the MODEL Looks ?👀&lt;/p&gt;

&lt;p&gt;A model itself isn’t a file you can open (like an Excel sheet).&lt;br&gt;
Instead, it consists of:&lt;/p&gt;

&lt;p&gt;The learned parameters (weights and biases): These are the “knowledge” the model has acquired during training.&lt;br&gt;
In linear regression, these would be the coefficients.&lt;br&gt;
In deep learning, these are the weights in the neural network layers.&lt;br&gt;
The architecture: The structure of the model, which defines how the data flows through the model.&lt;br&gt;
For example, a neural network has an architecture with multiple layers, each containing nodes (neurons) connected to each other.&lt;/p&gt;

&lt;p&gt;Model as a Saved File:&lt;/p&gt;

&lt;p&gt;Once a model is trained, it’s saved into a file. For example:&lt;/p&gt;

&lt;p&gt;TensorFlow/Keras: .h5 file&lt;br&gt;
PyTorch: .pth file&lt;br&gt;
Scikit-learn: Pickle file (.pkl)&lt;br&gt;
These files store all the necessary information about the model, such as:&lt;/p&gt;

&lt;p&gt;Model architecture (if applicable)&lt;br&gt;
Learned parameters (weights, biases)&lt;br&gt;
Hyperparameters used during training (like learning rate, number of epochs)&lt;br&gt;
Once saved, the model can be used to make predictions on new data without needing to retrain it.&lt;/p&gt;

&lt;p&gt;Last part: How Does the Model Make Predictions?&lt;br&gt;
Once trained and saved, the model is ready for inference (making predictions):&lt;/p&gt;

&lt;p&gt;You load the trained model from the file.&lt;br&gt;
You feed new, unseen data into the model (like an image of a cat or a house with specific features).&lt;br&gt;
The model uses its learned parameters to output a prediction. For example:&lt;br&gt;
🌾In the case of the house price model, you input the square footage and the number of bedrooms, and the model predicts the house price.&lt;br&gt;
🌾In the case of the image classification model, you input an image, and the model classifies it as “cat” or “dog.”🐈🐶&lt;br&gt;
Summary:&lt;/p&gt;

&lt;p&gt;🚀A machine learning model isn’t an Excel file or a chunk of code; it’s a trained mathematical entity (typically stored as a file) that encapsulates learned knowledge.&lt;/p&gt;

&lt;p&gt;🚀The model learns patterns from the data during training and is then able to predict outcomes when given new data.&lt;/p&gt;

&lt;p&gt;🚀In simple ML models (e.g., linear regression), the model might look like a mathematical equation, while in more complex models (e.g., neural networks), it consists of learned weights and biases stored in specialized formats like .h5, .pth, or .pkl.&lt;/p&gt;

&lt;p&gt;=============================&lt;br&gt;
If you’re worried about AI replacing jobs or questioning your ability to keep up, remember that every expert was once a beginner.&lt;/p&gt;

&lt;p&gt;Stay curious &amp;amp; motivated — keep learning &amp;amp; moving forward.&lt;/p&gt;

&lt;p&gt;Keep Calm, Keep Aware, Keep the Chin and Thinking UP !! You will do it !!&lt;/p&gt;

&lt;p&gt;If you want any personal suggestion or a one-to-one call with me, will be more then happy to have one🌿&lt;br&gt;
Let’s connect on Linkedin for a Hi !!&lt;/p&gt;

&lt;p&gt;Now, Take a deep breathe and Go Learn🌏&lt;/p&gt;

&lt;h1&gt;
  
  
  Genai #Cloud #AWS #2025 #devops #mindset #win #newworld #technology
&lt;/h1&gt;

</description>
      <category>aws</category>
      <category>mlops</category>
      <category>ai</category>
      <category>devops</category>
    </item>
    <item>
      <title>Your ML/AI Success Begins Here: Data Ingestion &amp; Storage on AWS</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Mon, 25 Nov 2024 15:02:21 +0000</pubDate>
      <link>https://dev.to/mohit0303/your-mlai-success-begins-here-data-ingestion-storage-on-aws-40g8</link>
      <guid>https://dev.to/mohit0303/your-mlai-success-begins-here-data-ingestion-storage-on-aws-40g8</guid>
      <description>&lt;p&gt;Data is the King, but how to treat the King?&lt;/p&gt;

&lt;p&gt;Please start this blog, ONLY if you will COMPLETE it.&lt;br&gt;
Else no worries, read it later.&lt;/p&gt;

&lt;p&gt;AI, ML, GenAI all these, “Market” as well “Brain” consuming terms are bascially hungry for Data &amp;amp; not just Data but a GOOD DATA.&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%2Fcopfht9ck90em0vh98vp.gif" 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%2Fcopfht9ck90em0vh98vp.gif" alt="Image description" width="500" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See it’s simple, you want to stitch a dress, you know you need something sharp, but Needle , Knife, Sword all are sharp.&lt;br&gt;
If you use Sword instead of Needle, its Gone, the task, the work is all gone.&lt;/p&gt;

&lt;p&gt;So before jumping into ML, AI, and all, its important to make ourself a bit aware about the DATA.&lt;br&gt;
Data types, its properties and which Tool to be used in which use-case.&lt;/p&gt;

&lt;p&gt;It starts with understanding your Data TYPES:&lt;/p&gt;

&lt;p&gt;🌾Structured Data: Well-organized in relational databases.&lt;br&gt;
🌾Semi-Structured Data: Loose schema like JSON or XML.&lt;br&gt;
🌾Unstructured Data: Freeform formats like videos or images.&lt;/p&gt;

&lt;p&gt;Depending upon the type of data you have, you will choose your Aws Tools accordingly.&lt;/p&gt;

&lt;p&gt;🌾Structured: Amazon RDS, Redshift.&lt;br&gt;
🌾Semi-structured: DynamoDB, S3.&lt;br&gt;
🌾Unstructured: S3, Glacier.&lt;/p&gt;

&lt;p&gt;See, this what an Architect’s work is, to select proper tools and services.&lt;br&gt;
Else either you will mess up the project flow, or project cost or entire project.&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%2Fcsxt6hl0z6fgmsplrc82.gif" 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%2Fcsxt6hl0z6fgmsplrc82.gif" alt="Image description" width="500" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Its like, when you want to travel somewhere, you dont just focus on going from A to B. You see many factors like confort, train , bus, distance, money etc.&lt;/p&gt;

&lt;p&gt;So once Data TYPE is covered, quickly lets move to Data Properties.&lt;br&gt;
As its one of the important part as well, that will make you decide which tools to select.&lt;/p&gt;

&lt;p&gt;Key Data Properties can be divided into the “3 V’s”&lt;br&gt;
— — — — — — — — — — — —&lt;/p&gt;

&lt;p&gt;🌾Volume: The scale of your data its in Mb, Gb, Tb&lt;br&gt;
Small datasets? Use RDS or DynamoDB.&lt;br&gt;
Massive datasets? Go for S3 or Redshift.&lt;br&gt;
🌾Velocity: The speed of data generation, means the speed in which you are getting the data.&lt;br&gt;
Real-time ingestion? Use Amazon Kinesis.&lt;br&gt;
Batch processing? Use AWS Glue or S3 pipelines.&lt;br&gt;
🌾Variety: Diversity in the data formats.&lt;br&gt;
Diverse formats? S3 is your versatile solution.&lt;br&gt;
You see, how data , its type , its properties are creating a initial blueprint of your project.&lt;br&gt;
These steps is what in later future, will help you in MLOps.&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%2Fzt8rsc7wo3xu1fmqftfw.gif" 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%2Fzt8rsc7wo3xu1fmqftfw.gif" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now depending upon the above factors, you will decide which Storage you will use, but there is Types of STORAGE as well.&lt;/p&gt;

&lt;p&gt;Data Storage Architectures:&lt;br&gt;
— — — — — — — — — — — — — —&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Data Warehouses&lt;br&gt;
Its a Centralized storage, optimized for “structured” data &amp;amp; analytics.&lt;br&gt;
For Scenerios like Reporting, business intelligence (BI) or structured queries.&lt;br&gt;
AWS Service: Amazon Redshift.&lt;br&gt;
Key Feature: Schema-on-write, ensuring organized and consistent data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Data Lakes&lt;br&gt;
Its a Scalable storage for “structured, semi-structured, and unstructured data”. Its like a dumping ground.&lt;br&gt;
For scenerios like Big data analytics, ML model training.&lt;br&gt;
AWS Service: Amazon S3.&lt;br&gt;
Key Feature: Schema-on-read, enabling flexibility for data scientists.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Data Lakehouse&lt;br&gt;
Its a hybrid model combining the best of data lakes and warehouses.&lt;br&gt;
For scenerios like Unified analytics and ML pipelines.&lt;br&gt;
AWS Service: Amazon Redshift Spectrum, Athena (for querying S3 data).&lt;br&gt;
Key Feature: Seamless integration between structured and unstructured data.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I wont dig more, as i know , for an initial step &amp;amp; for an initial awarness this much info is fine. We will slowly, dig down step by step, in further steps how AWS handles ML,AI, GenAI projects, process.&lt;/p&gt;

&lt;p&gt;So just remember, without bread, you cant make a sandwich.&lt;br&gt;
And without data &amp;amp; knowing the data, you cant bring a ML project in-life.&lt;/p&gt;

&lt;p&gt;If you’re worried about AI replacing jobs or questioning your ability to keep up, remember that every expert was once a beginner.&lt;/p&gt;

&lt;p&gt;Stay curious &amp;amp; motivated — keep learning &amp;amp; moving forward.&lt;/p&gt;

&lt;p&gt;Keep Calm, Keep Aware, Keep the Chin and Thinking UP !! You will do it !!&lt;/p&gt;

&lt;p&gt;If you want any personal suggestion or a one-to-one call with me, will be more then happy to have one🌿&lt;br&gt;
Let’s connect on Linkedin for a Hi !!&lt;/p&gt;

&lt;p&gt;Now, Take a deep breathe and Go Learn🌏&lt;/p&gt;

&lt;h1&gt;
  
  
  Genai #Cloud #AWS #2024 #devops #mindset #win #newworld #technology
&lt;/h1&gt;

</description>
      <category>mlops</category>
      <category>aws</category>
      <category>genai</category>
      <category>datascience</category>
    </item>
    <item>
      <title>The Silent Revolution: How GenAI is Reshaping Cloud Tech☁️</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Sat, 11 May 2024 11:19:11 +0000</pubDate>
      <link>https://dev.to/mohit0303/the-silent-revolution-how-genai-is-reshaping-cloud-tech-4mjg</link>
      <guid>https://dev.to/mohit0303/the-silent-revolution-how-genai-is-reshaping-cloud-tech-4mjg</guid>
      <description>&lt;p&gt;Lets explore how GenAI is conquering world and creatings its own world on the infra of Cloud.&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%2Fl8fk1gwtgypcpvmidscf.gif" 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%2Fl8fk1gwtgypcpvmidscf.gif" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the ever-evolving IT world, terms like Cloud, DevOps, and MLOps frequently surface. But the latest buzzword is GenAI.&lt;/p&gt;

&lt;p&gt;So, what exactly is Generative AI?&lt;/p&gt;

&lt;p&gt;Traditional AI can distinguish between objects — train a model with 1000 of cat and dog photos, and it’ll identify them accurately.&lt;/p&gt;

&lt;p&gt;GenAI takes this a step further by creating something new.&lt;br&gt;
Imagine a photo of a cat with the body of a dog, that’s GenAI in action.&lt;br&gt;
It’s not just descriptive, it’s generative.&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%2Fl1ilwvel1nc10byqc2u0.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%2Fl1ilwvel1nc10byqc2u0.png" alt="Image description" width="800" height="540"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;With advancements in data processing, model training, and computational power, GenAI is now poised to revolutionize various industries by generating new content like text, images, and audio that mimic human-created content.&lt;/p&gt;

&lt;p&gt;GenAI leverages deep learning models, particularly those based on architectures like Generative Adversarial Networks (GANs) and Transformer models (like GPT for text and DALL-E for images), to produce outputs that are novel and realistic.(Just like above image)&lt;/p&gt;

&lt;p&gt;Okay now, GenAI is with us and we can see it getting used in our day to day life as well. But to cook something you need vessel, to drive a car, you need road.&lt;/p&gt;

&lt;p&gt;Same way to keep the GenAI alive and thriving, there must be a place, an infra where it is kept, stored, worked upon and trained.&lt;br&gt;
That place is our friendly CLOUD.&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%2Fczo8ob4r6cr9zk31v5hs.gif" 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%2Fczo8ob4r6cr9zk31v5hs.gif" alt="Image description" width="512" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And It has to be cloud as it’s clear the cloud’s vast storage and computing capabilities are vital.&lt;br&gt;
In essence, the cloud is the backbone that supports and nurtures the growth of GenAI technologies.&lt;/p&gt;

&lt;p&gt;If every field is using or trying to use GenAI, wont cloud with 100 of service, &amp;amp; being backbone of GenAI, will try to use GenAI? Ofcource Yes.&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%2F6nwcujzsn2r1yas86j1t.gif" 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%2F6nwcujzsn2r1yas86j1t.gif" alt="Image description" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Implications of GenAI in the Cloud Domain&lt;br&gt;
— — — — — — — — — — — — — —&lt;/p&gt;

&lt;p&gt;As a Cloud Architect, integrating GenAI within your AWS environment can significantly boost innovation and efficiency:&lt;/p&gt;

&lt;p&gt;🚀Innovation and Development&lt;br&gt;
🌾Automating Content Creation: Use AI to automatically generate reports, documentation, marketing material, or user-specific content.&lt;br&gt;
🌾Enhancing User Experience: Implement AI-driven chatbots or virtual assistants that provide human-like interactions for support and services.&lt;/p&gt;

&lt;p&gt;🚀Enhancing Cloud Services:&lt;br&gt;
🌾Personalization: GenAI can analyze user behavior and generate personalized recommendations for services or products.&lt;br&gt;
🌾Security: Use AI to generate realistic cybersecurity simulations or training data, enhancing threat detection systems.&lt;/p&gt;

&lt;p&gt;🚀Optimizing Operations:&lt;br&gt;
🌾Resource Management: AI can predict workload trends and automatically adjust resources, optimizing cost and performance.&lt;br&gt;
🌾Maintenance: Predictive maintenance can be enhanced with AI, predicting failures and automating routine checks without human intervention.&lt;/p&gt;

&lt;p&gt;Other then these factors, there are so many GenAI tools as well present in AWS cloud.&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%2Fepvkbw1v1s3styt049d8.gif" 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%2Fepvkbw1v1s3styt049d8.gif" alt="Image description" width="1000" height="563"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GenAI Tools on AWS&lt;/p&gt;

&lt;p&gt;AWS provides several tools and services that facilitate the use and deployment of Generative AI models:&lt;/p&gt;

&lt;p&gt;🚀Amazon SageMaker: A comprehensive service to build, train, and deploy machine learning models at scale. It supports the latest AI frameworks, making it ideal for developing GenAI applications.&lt;br&gt;
🚀AWS DeepComposer: Allows developers to get hands-on with Generative AI, particularly in music generation.&lt;br&gt;
🚀AWS DeepRacer: Provides an interesting way to learn about reinforcement learning, a type of AI that could be considered under the broader umbrella of generative techniques.&lt;br&gt;
🚀AWS DeepLens: Enables developers to integrate AI into applications using a deep learning-enabled video camera.&lt;/p&gt;

&lt;p&gt;So in conclusion, GenAI is the hottest thing in our IT world, which is being nurtured &amp;amp; taken care in our Cloud world.&lt;/p&gt;

&lt;p&gt;MOST IMPORTANT : A Friendly note for me and for you as well :&lt;br&gt;
— — — — — — — — — — — —&lt;/p&gt;

&lt;p&gt;These 2 tech, will for sure change how we are functioning at the moment.&lt;/p&gt;

&lt;p&gt;Dont loose your mind, in thinking&lt;br&gt;
“I will be laid off, Ai will replace me, i cant learn, i dont have skill”.&lt;/p&gt;

&lt;p&gt;Embrace this change. Learning and adapting to new technologies like GenAI is a step-by-step journey.&lt;br&gt;
If you’re worried about AI replacing jobs or questioning your ability to keep up, remember that every expert was once a beginner.&lt;/p&gt;

&lt;p&gt;Stay curious and motivated — keep learning and moving forward.&lt;/p&gt;

&lt;p&gt;Keep Calm, Keep Aware, Keep the Chin and Thinking UP !! You will do it !!&lt;/p&gt;

&lt;p&gt;If you want any personal suggestion or a one-to-one call with me, will be more then happy to have one🌿&lt;br&gt;
Let’s connect on &lt;a href="https://www.linkedin.com/in/mohitmishra3333/"&gt;Linkedin&lt;/a&gt; for a Hi !!&lt;/p&gt;

&lt;p&gt;Now, Take a deep breathe and Go Learn🌏&lt;/p&gt;

&lt;h1&gt;
  
  
  Genai #Cloud #AWS #2024 #devops #mindset #win #newworld #technology
&lt;/h1&gt;

</description>
      <category>genai</category>
      <category>aws</category>
      <category>ai</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>The ONLY 4 Skills You Need to Master Devops/Cloud</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Fri, 05 May 2023 00:54:44 +0000</pubDate>
      <link>https://dev.to/mohit0303/the-only-4-skills-you-need-to-master-devopscloud-3e47</link>
      <guid>https://dev.to/mohit0303/the-only-4-skills-you-need-to-master-devopscloud-3e47</guid>
      <description>&lt;p&gt;The moment we hear Devops or Cloud, an army of tools and skills comes infront of us🤷🏻‍♂️&lt;br&gt;
But do we really need to learn those 50 60 skills to call yourself a Devops or Cloud Guy🧐?&lt;/p&gt;

&lt;p&gt;Devops and Cloud are the hottest things in the IT market at the moment🔥&lt;br&gt;
But with this, there comes a mountain of tools we hear like Docker, Jenkins, Graffana, Prometheus, Kubernetes, ArgoCD, Bamboo, Helm…+100 others !!🕵🏻‍♂️&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%2Fygslx6ho2vu2y8k703xh.gif" 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%2Fygslx6ho2vu2y8k703xh.gif" alt="Image description" width="728" height="524"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Being in the IT industry for 9 years &amp;amp; working as a Lead Cloud Architect, let me be honest with you all, these tools are needed in one way or another👨🏻‍💻&lt;/p&gt;

&lt;p&gt;BUT BUT…🤚🏻&lt;br&gt;
🤷🏻‍♂️Do I actually need to know all this?&lt;br&gt;
🤷🏻‍♂️Do I use all this ?&lt;br&gt;
🤷🏻‍♂️Do i learn all this, to be called a Devops or CLoud Professional ?&lt;br&gt;
HELL NO !! HELL NO !!🙅🏻‍♂️&lt;/p&gt;

&lt;p&gt;Every 3 or 4 months, there is a list of new tools coming in the market🙇🏻‍♂️&lt;br&gt;
It’s impossible to get your hands dirty on all those tools and most importantly it’s also not possible that your team will be using all of them.&lt;/p&gt;

&lt;p&gt;For example, for CI/CD one company can use Jenkins, while another can use Bitbucket CICD Pipeline or another must be using Circle.ci or another can be using AWS CICD pipeline🤌🏻&lt;/p&gt;

&lt;p&gt;Even in AWS cloud, there are tons of services and those who are creating those services, are even not aware or using all of them, because obviously IT’S NOT POSSIBLE to know everything😅&lt;/p&gt;

&lt;p&gt;So now, let’s Only Focus on the Skills that are crucial and important, to be aware of and these skills won’t be getting replaced in just a month or two, they’re the foundation on which this Devops/Cloud world is created other then legacy skills like Linux,Networking and all🌐&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%2Fm1ac8pxabsvt7pwumzhi.gif" 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%2Fm1ac8pxabsvt7pwumzhi.gif" alt="Image description" width="360" height="405"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⚡CLOUD:&lt;br&gt;
Devops will be needing cloud as a platform🛤️&lt;br&gt;
Its like if you want to catch a train, you need a platform where train will come.&lt;br&gt;
Same way all the Devops tools, will be needing Cloud as a platform, so its important you make yourself good in a cloud like AWS or Azure or GCP☁️&lt;br&gt;
Skill: Stephen Mareke Udemy : AWS Cloud Practioner + AWS Solution Architecture Associate&lt;/p&gt;

&lt;p&gt;⚡DOCKER:&lt;br&gt;
The code that you write to create your Project and docker is used to create a Docker Image of your project &amp;amp; which when we run, creates a container for us, inside which our Project is running. So its a gateway to Devops world🐳&lt;/p&gt;

&lt;p&gt;⚡KUBERNETES:&lt;br&gt;
The docker image, when we run, creates Containers in which our project run📦&lt;br&gt;
There can be 100 of such containers and to handel these containers we should know Kubernetes, which is a Container Management Tool.&lt;br&gt;
Resources: Youtube- TechWorld With Nana :Kubernetes Tutorial ☸️ , Udemy : Mumshad and rest all his course on Kubernetes like CKAD, CKA or CKS.&lt;/p&gt;

&lt;p&gt;⚡TERRAFORM:&lt;br&gt;
Now this is a latest addition in the list of hot thing in market🔥&lt;br&gt;
This bascially helps you to create things(servers) on cloud by using scripts in Yaml, rather then doing login in AWS or Azure and doing click click click.&lt;br&gt;
I have written a blog explaining Terraform using a Movie example🎥&lt;br&gt;
And to crack Terraform Certification you only need 2 things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Terraform Course by Mumshad on Udemy or by Zeal Vora&lt;/li&gt;
&lt;li&gt;Paper Practise Teast by Bryan&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thats All….!!!🎉🥳🙋🏻‍♂️&lt;br&gt;
And trust me, things you listen other then these 4 like CICD, Graffana &amp;amp; many others are useful ONLY when you know these 4 or atleast First 3 Skills🧞‍♂️&lt;/p&gt;

&lt;p&gt;So remove all confusions from your mind, clear your thoughts and just make a 6 month target and tick-off these skills one by one📝👊🏻🤟🏻&lt;/p&gt;

&lt;p&gt;You can build a Building only when you have a strong Foundation💪🏻&lt;br&gt;
Once Foundation is done, its upto up you wana make it of 4 floor, 10 floor or a skyscraper🏯&lt;/p&gt;

&lt;p&gt;If you feel, I made sense in a positive &amp;amp; clear way, do let me know either here or lets connect on Linkedin 🙋🏻‍♂️&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/mohitmishra3333/"&gt;https://www.linkedin.com/in/mohitmishra3333/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And please, lets come out of this jungle of tools every HR or Job Description has created🙅🏻‍♂️&lt;/p&gt;

&lt;p&gt;Don’t waste your money and time blindly roaming around this jungle of Tools 🧑🏻‍🦯&lt;br&gt;
Use this list and go ahead from many around you🎉&lt;br&gt;
And you will do it, I know, even You know it !!🦁&lt;/p&gt;

&lt;p&gt;If you want any personal suggestion or a one-to-one call with me, will be more then happy to have one🌿🌾&lt;br&gt;
Let me know on Linkedin !!&lt;br&gt;
Now, Take a deep breathe and Go get it🌏&lt;/p&gt;

&lt;h1&gt;
  
  
  AWS #Docker #Kubernetes #Terraform #Devops #Skills #Roadmap
&lt;/h1&gt;

</description>
    </item>
    <item>
      <title>Terraform by a Movie example🎦</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Fri, 13 Jan 2023 19:13:54 +0000</pubDate>
      <link>https://dev.to/mohit0303/terraform-by-a-movie-example-2a0i</link>
      <guid>https://dev.to/mohit0303/terraform-by-a-movie-example-2a0i</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%2Foonio96rhvczygvhwzkf.gif" 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%2Foonio96rhvczygvhwzkf.gif" alt="Terraform" width="400" height="214"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lets decode this highly demanding skill of 2023 in Cloud/Devops world🌎&lt;/p&gt;

&lt;p&gt;As always we will take a layman example to understand this concept.&lt;br&gt;
Let’s take an example of Movie Watching 🎦🍿🎥&lt;/p&gt;

&lt;p&gt;You can watch a Movie in 2 ways:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open your door, take your car, go to theater, buy a ticket &amp;amp; watch🫡&lt;/li&gt;
&lt;li&gt;Be at home, watch it on Netflix,Prime Video😎&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;NOTE: Let’s keep our focus on the end result of you watching a movie.&lt;br&gt;
In both ways, you will be able to achieve the task.&lt;/p&gt;

&lt;p&gt;The Second type is what Terraform is.Let me explain how😲&lt;/p&gt;

&lt;p&gt;In the cloud, we need to create various infrastructures like servers, DB, Security groups,VPC &amp;amp; 100 like them.&lt;/p&gt;

&lt;p&gt;Again, we have 2 ways of creating it, same like watching a movie:&lt;/p&gt;

&lt;p&gt;Normal way: Open your respective Cloud Login page, do all the authentications, search which service you want,click click click click and lots of click🥵&lt;br&gt;
Terraform way: Write a script in YAML with all your requirements &amp;amp; RUN…boom Done 🚀&lt;br&gt;
Just like the movie you watched is owned by the Netflix company.&lt;br&gt;
Terraform is owned by HashiCorp company🏭&lt;/p&gt;

&lt;p&gt;Also just like on Netflix, you can watch all the movies present in it.&lt;br&gt;
Using Terraform, you can create infra on any Cloud like AWS,GCP + 2780 as they have collaborated with Terraform🥳&lt;/p&gt;

&lt;p&gt;By having connection with so many Cloud Providers, terraform helps us to be cloud platform independent &amp;amp; gives us freedom to be multi-cloud☁️☁️&lt;/p&gt;

&lt;p&gt;And all this is done, by writting declarative code in a .tf file &amp;amp; when we run it, our Cloud Infrastructure is created🧞‍♂️&lt;/p&gt;

&lt;p&gt;That’s why Terraform is called “IaaC tool (Infrastructure as a Code)”⚙️&lt;/p&gt;

&lt;p&gt;Note: Terraform is of declarative type, meaning you just write/declare what you want as End result &amp;amp; it will take care of how to do it.&lt;br&gt;
Like create 2 aws server or 3 DB, 2 pods. So it’s not imperative, it’s declarative.&lt;/p&gt;

&lt;p&gt;Lets understand now, how this magic happens🪄🔮🧙🏼‍♂️&lt;/p&gt;

&lt;p&gt;In any team, a Developer will create a project and a Devops/Cloud guy will create the needed infrastructure on cloud to run that project smoothly on cloud.&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%2Ftclu59xoulsja1sfhb5j.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%2Ftclu59xoulsja1sfhb5j.png" alt="Image description" width="503" height="308"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In above example, we have used “AWS” as “Provider” &amp;amp; its different Resources like ami,instance_type for creation.&lt;/p&gt;

&lt;p&gt;So once script is ran, we can login to our AWS account &amp;amp; we will be able to see that a ec2 server instance is running in our AWS account.&lt;br&gt;
To connect your Aws account, just configure AWS CLI access credentials of your AWS account on your local machine.&lt;/p&gt;

&lt;p&gt;Architecture of Terraform:&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%2F5b8krz55uyuh60ks637p.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%2F5b8krz55uyuh60ks637p.jpg" alt="Image description" width="766" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now Terraform Architecture, can be divided into 2 set:&lt;/p&gt;

&lt;p&gt;⭐[SCRIPT,STATE,CORE]&lt;br&gt;
The “script/config file” you write, is the result you desire &amp;amp; “State” is the actual state at present.Core of terraform creates a execution PLAN &amp;amp; takes care that ‘Desired’ state = ‘Actual’ state by creating, updating or deleting things.&lt;/p&gt;

&lt;p&gt;⭐[POVIDERS]&lt;br&gt;
The Cloud “Providers” like AWS, Azure have tied up with Terraform are 2nd component of Terraform architecture⚓&lt;/p&gt;

&lt;p&gt;“AWS” being a “Provider” for Terraform, we can use all AWS Resources like we can create an AWS EC2 server, then deploy Kubernetes cluster on that server then create services inside that cluster.&lt;/p&gt;

&lt;p&gt;Just like AWS, we have 100 more such Cloud Providers, that brings their 1000 resources with them.&lt;/p&gt;

&lt;p&gt;For example, below you can see we have used “Kubernetes” as a “Provider” &amp;amp; are using Kubernetes different Resources to create a Namespace.&lt;br&gt;
(My Blog on Namespace using a cupboard example)&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%2F2it5pxfnljc585o3mrsq.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%2F2it5pxfnljc585o3mrsq.png" alt="Image description" width="800" height="435"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Terraform Commands for Different Stages:&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%2Ftx6fc1dqrey1kjpny70l.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%2Ftx6fc1dqrey1kjpny70l.png" alt="Image description" width="800" height="332"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;terraform refresh: to know the condition of current state, later to be matched to desired state.&lt;br&gt;
terraform init: initialize terraform directory, pull down providers as written by you in .tf file here its AWS.&lt;br&gt;
terraform plan: creates plan for making Desired state == Current state&lt;br&gt;
terraform apply: execute the plan created by above step.&lt;br&gt;
Also as now our Infrastructure is written in a script, we can maintain athe versions of this script by storing it in git just like we do for our project codes. And changes can now be tracked down as who did the change in infra and also will be needed approved by raising PR to a Team Lead , thats why if there is any issue on Infra comes, we can roll back to any paticular earlier version.&lt;/p&gt;

&lt;p&gt;So at the end Terraform is just like our Netflix, where we can see any movie without actually going into theaters &amp;amp; we have options for multi-watching.&lt;/p&gt;

&lt;p&gt;Same way Terraform helps us to create infra on any cloud without logging into its portal &amp;amp; just by writting a chunk of code and it gives us option to go multi-cloud.&lt;/p&gt;

&lt;p&gt;Have given Terraform Certified Associate exam and below is my Cert⭐&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%2Fbmc28hawi0ogs7qrg57d.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%2Fbmc28hawi0ogs7qrg57d.png" alt="Image description" width="800" height="440"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We have just scratched the surface, but Thank you for being till here with me, if you feel u have learnt something new, let me know for sure, it will means a world to me 🙌🏻&lt;/p&gt;

&lt;p&gt;And if you share same interest as me in decoding these complex topics in an easy way them lets connect🙋🏻‍♂️&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>aws</category>
      <category>devops</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Learning Networking in AWS Cloud using a simple Hotel example</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Thu, 05 Jan 2023 16:01:55 +0000</pubDate>
      <link>https://dev.to/mohit0303/learning-networking-in-aws-cloud-using-a-simple-hotel-example-3g01</link>
      <guid>https://dev.to/mohit0303/learning-networking-in-aws-cloud-using-a-simple-hotel-example-3g01</guid>
      <description>&lt;p&gt;There are few terms you must have heard like cloud, region, vpc, subnets, internet gateway, NAT.&lt;/p&gt;

&lt;p&gt;All these terms are related to only one thing i.e having our own private space for our project in cloud.&lt;/p&gt;

&lt;p&gt;Lets take a layman example to connect these dots.&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%2F7tavc12nifqme6op91q7.gif" 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%2F7tavc12nifqme6op91q7.gif" alt="Image description" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Suppose you want to book a room in a hotel.&lt;br&gt;
So we will go to a particular HOTEL, which is in a specific region and in a specific area of a country.&lt;/p&gt;

&lt;p&gt;Similarly when we select a cloud provider like AWS, Azure or GCP they are like hotels present in a region in various availability zone(AZ).&lt;br&gt;
So we can select region like central europe and zone like eu-central-1a.&lt;/p&gt;

&lt;p&gt;Now you talk to receptionist and he/she allocates a room with a room number like 101.&lt;/p&gt;

&lt;p&gt;In cloud world, its like you are booking a VPC(Virtual Private Cloud) in AWS could with an address range like 10.0.0.0/16.(Now it’s your own private space)&lt;/p&gt;

&lt;p&gt;As we are inside our Hotel Room and if we want to connect to outer world, we will connect to internet through hotel’s WIFI.&lt;/p&gt;

&lt;p&gt;Similalrly inorder to connect our VPC to internet/outerworld we need Internet Gateway.&lt;/p&gt;

&lt;p&gt;Inside the VPC we booked, we create small small subnet in it and we decide which machine/process to be placed in which subnet.&lt;/p&gt;

&lt;p&gt;And Subnets are like windows in our room in hotel, some are open to outerworld like window in hall from where you can call someone passing by.&lt;br&gt;
But some are private like window in washroom. Outerworld is not accessible from there.&lt;/p&gt;

&lt;p&gt;Similarly Subnet are also&lt;/p&gt;

&lt;p&gt;Public subnet and Private subnets created inside our VPC.&lt;br&gt;
We can keep our webserver in public subnet so tht anyone on internet can connect to our website directly(but thats risky).&lt;/p&gt;

&lt;p&gt;And we can keep our DB, Codes, imp files in private subnet which should not be open to internet.&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%2Fsxxgvigwpcxkxecz8fsc.gif" 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%2Fsxxgvigwpcxkxecz8fsc.gif" alt="Image description" width="1434" height="924"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But what if you want to keep everything in locker(private), means we want to put our webserver in private subnet as well for security.&lt;/p&gt;

&lt;p&gt;Then comes Load Balancer which we place between the “Internet” and our “subnet” , that allows users to access our webserver placed in private subnet.&lt;/p&gt;

&lt;p&gt;But if we put our webserver in private subnet and cut it out from outerworld, there will be a time when, even our webserver need to connect to internet for some kind of installations or updations.&lt;/p&gt;

&lt;p&gt;So we use NAT (Network address translation) which is placed inside a “public subnet” in our VPC which allows our webserver present in “private subnet” to pass its outgoing request first to NAT which will pass it to internet gateway and then to internet.&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%2Fv12p9ppkelj87rnyb9up.gif" 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%2Fv12p9ppkelj87rnyb9up.gif" alt="Image description" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There also can be scenario where our customer say i have my VPC at my end and i dont want to move to public cloud providers like AWS or Azure.&lt;br&gt;
Then we use VPC Peering Connection, which will connect customer VPC to our VPC in AWS.&lt;/p&gt;

&lt;p&gt;We can have multiple such VPC and we have to connect these vpc to on-premises vpc as well, and if we go vpc peering on set , every vpc has to be connected to one to one vpc , because vpc peering are non-transmitive then it becomes a blockage.&lt;/p&gt;

&lt;p&gt;Thats why, in 2018 AWS launched a new Networking Router called as “Transit Gateway". It allows to connect different VPC’s in different network as well our on-premise network VPC.&lt;/p&gt;

&lt;p&gt;So now using a vpn or direct connection we can connect our on-premise vpc to Transit gateway, then Transit gateway will connect to our AWS VPC. This creates a complete connectivity.&lt;/p&gt;

&lt;p&gt;Now there are other AWS services also like S3 bucket and DynamoDB if they are in same region, we don’t need to go through subnet and all, as it will cost us more money as well.&lt;/p&gt;

&lt;p&gt;We can use VPC endpoint(gateway) for S3 and DynamoDB and for other services like Lambda, SQS, SNS we can use VPC Endpoint(interface) for direct connectivity rather then going through NAT.&lt;/p&gt;

&lt;p&gt;In another case, what if a customer wants only you to access their app first before they open it for public on internet.&lt;br&gt;
Then comes “PRIVATE LINK" which will get the customer application’s link through their NLB in their VPC, and then it will pass the link to our VPC.&lt;/p&gt;

&lt;p&gt;Customer can expose their application’s link via their NLB and at our end we can create a VPC endpoint, which will privately connect us to the NLB of the customer.👏&lt;/p&gt;

&lt;p&gt;Also if we dont want an IP address for our VPC, we can use Route53(DNS) so that users can connect to us using the “domain name” rather then the ip address through our ALB.&lt;/p&gt;

&lt;p&gt;There is also Cloudfront, which will cache our website general data, big videos, images to nearest AWS AZ, so when user hit our domain name it will go to Cloudfront and then to our LB and finally to the application in our subnet. This makes faster user experience.&lt;/p&gt;

&lt;p&gt;If you connected a bit by my post, do let me know and if we both share same intrest of devops,cloud &amp;amp; kubernetes then lets connect!!&lt;/p&gt;

&lt;p&gt;Linkedin: &lt;a href="https://www.linkedin.com/in/mohitmishra3333/"&gt;https://www.linkedin.com/in/mohitmishra3333/&lt;/a&gt;&lt;br&gt;
Medium: &lt;a href="https://medium.com/@mohitmishra3333"&gt;https://medium.com/@mohitmishra3333&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Learning to all !!&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>networkingincloud</category>
      <category>cloudskills</category>
    </item>
    <item>
      <title>Most Important Skill for 2023 &amp; 2024</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Thu, 05 Jan 2023 11:08:03 +0000</pubDate>
      <link>https://dev.to/mohit0303/most-important-skill-for-2023-2024-4cf</link>
      <guid>https://dev.to/mohit0303/most-important-skill-for-2023-2024-4cf</guid>
      <description>&lt;p&gt;Its 2023 and its already one day old now 👴🏻&lt;/p&gt;

&lt;p&gt;Which important skill have you planned to learn this year or this month or this week ?&lt;/p&gt;

&lt;p&gt;Cloud, Devops, Python, Blockchain, JS ?&lt;/p&gt;

&lt;p&gt;Let me share a note with you about me!&lt;br&gt;
I am an IT professional with 9 yrs of experience and working as a Lead Cloud Architect in a Denmark based firm.&lt;/p&gt;

&lt;p&gt;On a daily basis, I have to deal with Devops &amp;amp; CICD pipelines tools like Bitbucket pipeline/cicrleCI &amp;amp; Jenkins, Managing K8s clusters using Kops, sometimes writting python code in Django framework for projects, working on AWS cloud infra and different IAM roles and policies.&lt;/p&gt;

&lt;p&gt;When i list down these skills and tools which i am working right now, trust me i have full faith that they wont be in my resume in next 5 6 months.&lt;/p&gt;

&lt;p&gt;The biggest skill you can learn in 2023 is “Learn to Learn Fast⚡”&lt;/p&gt;

&lt;p&gt;The pace at which the market is changing, its impossible to just know one or two skill and stick to it for years. Those days are gone.&lt;/p&gt;

&lt;p&gt;Tools &amp;amp; Languages are getting older in just 2 3 months being in market.&lt;/p&gt;

&lt;p&gt;You have to adapt to this rapid changing world. But how ?&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%2Fjdxy0xfkhig7kjo6zi93.gif" 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%2Fjdxy0xfkhig7kjo6zi93.gif" alt="Image description" width="1024" height="1024"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My 5 tips on Learning “How to Learn Fast” 👨🏻‍💻&lt;/p&gt;

&lt;p&gt;Its all Mind game. Prepare your Mind to STOP Fearing from Changes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The first thing your mind will say to you is “Shit its a new toll,it will take 2 3 months to learn it, its not possible what your Team Lead is saying”. You have to Overcome this fear of change.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;When a new tool comes infront of you, say “It’s just a tool, i have experience of something simillar like it. I will learn it quickly.”&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Stop wasting your time on its theory part.Start implementing and start to Fail Fast.&lt;br&gt;
“If you Fail Late, remember you will Pass Late as well.”&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Follow proper course, material, community, pages, writters to be aware what changes are happening in market.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It will sound oldy, but trust me, its all about “Either You Control Your Mind OR the Mind Controls You” 🤷🏻‍♂️&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;_Let me pin down some current hot skills in market:(Acc to my experience)&lt;br&gt;
_&lt;br&gt;
🔥Cloud: Go for AWS as it has max market share, so more openings,more rejections,more selections chance.&lt;br&gt;
🔥Blockchain Developer: Learning JS will be helpful.If not in Blockchain then as a developer its in full demand as well.&lt;br&gt;
🔥Devops: Docker,Kubernetes,CICD tools(Bitbucket,CircleCi,Jenkins),Terraform.&lt;br&gt;
🔥Cybersecurity: Network security monitoring tools(Argus, Nagios, Pof, Splunk, and OSSEC),Encryption tools(Tor, KeePass, VeraCrypt, NordLocker, AxCrypt, and TrueCrypt),Web vulnerability scanning tools(Burp Suite, Nikto, Paros Proxy, and SQLMap) and other concepts.&lt;/p&gt;

&lt;p&gt;But make yourself understand that:&lt;br&gt;
“Everything is possible in this world”&lt;br&gt;
Every skill can be learnt.&lt;br&gt;
Each language can be practised.&lt;br&gt;
Just open your mind and thoughts🔥&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;FACT CHECK: You Like it or Not, this is fact that market is changing rapidly.&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
You have to keep yourself updated.&lt;br&gt;
Accept it and make your mind to accept it too positively 😃&lt;/p&gt;

&lt;p&gt;From my side i am trying to decode complex topics like cloud, devops, security in simple manner by linking them with our daily day-to-day things we do.&lt;br&gt;
Like this one explaining Docker &amp;amp; Kubernetes using a selfie example 🤳🏻&lt;br&gt;
&lt;a href="https://dev.to/mohit0303/learning-docker-kubernetes-orchestration-using-a-selfie-example-8bm"&gt;https://dev.to/mohit0303/learning-docker-kubernetes-orchestration-using-a-selfie-example-8bm&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So “Learn to Learn Fast”.&lt;/p&gt;

&lt;p&gt;Market is changing so should be our thoughts, for Your Capabilities.All the best.&lt;/p&gt;

&lt;p&gt;Will be happy knowing your thoughts on the same.&lt;/p&gt;

&lt;p&gt;Medium: &lt;a href="https://medium.com/@mohitmishra3333" rel="noopener noreferrer"&gt;https://medium.com/@mohitmishra3333&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/in/mohitmishra3333/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/mohitmishra3333/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Keep pushing, Keep growing. #2023 is yours.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Explaining Cloud using a Pendrive example</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Thu, 05 Jan 2023 11:02:13 +0000</pubDate>
      <link>https://dev.to/mohit0303/explaining-cloud-using-a-pendrive-example-5bhl</link>
      <guid>https://dev.to/mohit0303/explaining-cloud-using-a-pendrive-example-5bhl</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%2F6ervdoktrws3uu936b31.gif" 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%2F6ervdoktrws3uu936b31.gif" alt="Understanding Cloud" width="1024" height="1024"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next time in an interview if you are asked “What is Cloud?”&lt;br&gt;
You can explain the concept using this simple Pendrive example🥳&lt;/p&gt;

&lt;p&gt;First let’s Understand “Why Cloud” using a simple Mobile example📱&lt;/p&gt;

&lt;p&gt;Let me explain by a scenerio.&lt;br&gt;
Today by chance if you broke your mobile📱(I wish it doesn’t happen), will all your data be lost ? “NO”🙅🏻‍♂️&lt;/p&gt;

&lt;p&gt;Because, the moment you buy a new mobile &amp;amp; login in it by your apple ID or gmail id, all your data get restored 🥳&lt;/p&gt;

&lt;p&gt;It means your all photos,contacts and other detail bascially were not stored in your phone. They were at some different place.&lt;/p&gt;

&lt;p&gt;Then where it was ? They ‘were’ and ‘are’ present in CLOUD☁️&lt;/p&gt;

&lt;p&gt;Now “What is cloud?” lets understand it by a Pendrive example🙋🏻‍♂️&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%2Ffbkwfloxrl376gpvurkx.gif" 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%2Ffbkwfloxrl376gpvurkx.gif" alt="The G.O.A.T" width="200" height="187"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lets go back 10 years from now, if we want to take a movie from our friend , we used to give him our pendrive.&lt;br&gt;
We connect it to our computer and access the movie🍿🎦&lt;/p&gt;

&lt;p&gt;But, if dont want to share the movie with your brother, you will hide that pendrive in a very safe private place🕵🏼‍♀️&lt;br&gt;
But there is an issue, now whenever you want to watch the movie, each time you have to go to that secret place and this is a tedious work🥵&lt;/p&gt;

&lt;p&gt;Cloud is exactly like this “Pendrive kept at a Safe Secret Place” and by using internet we can connect to that secret place from being anywhere in the world🌎🥳&lt;/p&gt;

&lt;p&gt;All the gmail, google photos, contacts &amp;amp; our every important details are stored in a machine in a safe place by companies like Google, Apple &amp;amp; by using internet we connect to our data using our id &amp;amp;password🌐&lt;/p&gt;

&lt;p&gt;Now, to store these huge data, there are bascially acers of lands used, where the DataCenters factories are setup, with all storage device &amp;amp; infrasturucture required to keep our data safe there🏭&lt;/p&gt;

&lt;p&gt;These secret places are present in many countries across the globe🌎&lt;/p&gt;

&lt;p&gt;Just like our personal photos and other personal details, we can even keep our Projects, Code, Database too in them💻👨🏻‍💻🙌🏻&lt;/p&gt;

&lt;p&gt;This facility of Cloud Service is given by many companies like AWS, Azure, GoogleCloudPlatform, Alibaba, IBM and many others.&lt;/p&gt;

&lt;p&gt;When we create an account in any of these Cloud Service Providers, they provide us with the secret place where we want to store our data.🕵🏼‍♀️&lt;/p&gt;

&lt;p&gt;These places are called Region in AWS, and we should select that Area in a Region which is actually nearby to us.&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%2F2l69scdt6r9x4b2hzd9t.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%2F2l69scdt6r9x4b2hzd9t.jpg" alt="AWS DataCenters" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Like if you are in Europe, we have option of Frankfurt, Ireland, London, Paris, Stockland.🌎&lt;/p&gt;

&lt;p&gt;These Areas in a Region are called “Availability Zones” &amp;amp; there can be one or more then one AZ in a Region.&lt;/p&gt;

&lt;p&gt;And thats all regarding the concept &amp;amp; presence of Cloud☁️&lt;/p&gt;

&lt;p&gt;And for the next time, just sock the interviewer about what is cloud 😎 🕺🏻&lt;br&gt;
I hope you got a bit clearity &amp;amp; closer about the concept, if Yes then do let me know your thoughts.&lt;/p&gt;

&lt;p&gt;And if you share same intrest as me then lets connect to break down complex topics into an easy day-to-day life examples.🙋🏻‍♂️&lt;br&gt;
Happy Learning !!&lt;/p&gt;

&lt;p&gt;Medium: &lt;a href="https://medium.com/@mohitmishra3333" rel="noopener noreferrer"&gt;https://medium.com/@mohitmishra3333&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/in/mohitmishra3333/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/mohitmishra3333/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>sql</category>
      <category>database</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Learning Docker, Kubernetes, Orchestration using a selfie example🤳🏻</title>
      <dc:creator>mohit mishra</dc:creator>
      <pubDate>Thu, 05 Jan 2023 10:39:50 +0000</pubDate>
      <link>https://dev.to/mohit0303/learning-docker-kubernetes-orchestration-using-a-selfie-example-8bm</link>
      <guid>https://dev.to/mohit0303/learning-docker-kubernetes-orchestration-using-a-selfie-example-8bm</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%2Fuph64bxdmvr5nuwxyt4u.gif" 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%2Fuph64bxdmvr5nuwxyt4u.gif" alt="Docker Kubernetes" width="312" height="390"&gt;&lt;/a&gt;&lt;br&gt;
Docker , Kubernetes, Orchestrations let me try to explain these things using selfie example🙋🏻‍♂️&lt;/p&gt;

&lt;p&gt;Using our mobile camera we take selfies, selfies get stored in mobile gallery🤳🏻&lt;br&gt;
Likewise using docker we take selfies of our project &amp;amp; store them in our machine💻&lt;/p&gt;

&lt;p&gt;If your selfies are not run/used, they are just using your mobile space 👾&lt;br&gt;
But when you use/run your selfie, you get a new DP on whatsapp, FB🕺🏻&lt;/p&gt;

&lt;p&gt;When you run docker image, you get a new container 🗳️&lt;/p&gt;

&lt;p&gt;Now to handle your so many selfies, we have google photos 🧑🏻‍🎨&lt;br&gt;
To maintain so many containers, we have Kubernetes ☸️&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;em&gt;So, let’s revise again&lt;/em&gt;
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Using Docker as a camera, you take a docker image of your code.🖼️&lt;br&gt;
When you run the docker image, you get a container ☸️&lt;br&gt;
And Kubernetes helps in deleting, updating, and maintaining these 100’s of containers🗳️🗳️🗳️&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Kubernetes helps in creating a Cluster, inside the Cluster we have our machines/nodes inside which our created containers are running.&lt;/p&gt;

&lt;p&gt;Now what is Orchestration? Lets take a cricket game example 🏏&lt;/p&gt;

&lt;p&gt;Example of Orchestration:🎼&lt;/p&gt;

&lt;p&gt;On hotstar, in a cricket match, in the last 2 3 overs, number of viewers can increase by 10x 📈&lt;br&gt;
So, to suddenly handle these loads of requests, k8s will autoscale or create 100 such more containers🗳️🗳️🗳️🗳️&lt;/p&gt;

&lt;p&gt;When match is over, we close the app, so now the number of requests is reduced📉&lt;br&gt;
K8s deletes the newly created containers as they are not needed now 🗳️❎&lt;/p&gt;

&lt;p&gt;This feature gives auto scaling, high availability, no down time for our application.&lt;/p&gt;

&lt;p&gt;And thats all&lt;/p&gt;

&lt;p&gt;Just remember Docker is our CAMERA , Docker Image is our Selfies, running these selfies we get Container like our DP, Kubernetes is Google Photo app which helps to maintaine these selfies i.e the containers.&lt;/p&gt;

&lt;p&gt;In the next part will try to explain #kubernetes #architecture in layman term&lt;/p&gt;

&lt;p&gt;If you connected a bit by my post, do let me know and if we both share same intrest of devops,cloud &amp;amp; kubernetes then lets connect!! &lt;/p&gt;

&lt;p&gt;Linkedin: &lt;a href="https://www.linkedin.com/in/mohitmishra3333/" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/mohitmishra3333/&lt;/a&gt;&lt;br&gt;
Medium: &lt;a href="https://medium.com/@mohitmishra3333" rel="noopener noreferrer"&gt;https://medium.com/@mohitmishra3333&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy Learning to all !!&lt;/p&gt;

</description>
      <category>aws</category>
      <category>amplify</category>
      <category>lambda</category>
      <category>dynamodb</category>
    </item>
  </channel>
</rss>
