<?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: Mohan Sharma</title>
    <description>The latest articles on DEV Community by Mohan Sharma (@mohan-sharma-cloud-architect).</description>
    <link>https://dev.to/mohan-sharma-cloud-architect</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%2F620628%2F42efbebc-de1f-46f8-9d91-4b453276880d.png</url>
      <title>DEV Community: Mohan Sharma</title>
      <link>https://dev.to/mohan-sharma-cloud-architect</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohan-sharma-cloud-architect"/>
    <language>en</language>
    <item>
      <title>AWS Organization equivalent concept in Azure</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Wed, 18 Feb 2026 16:35:37 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/aws-organization-equivalent-concept-in-azure-16eb</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/aws-organization-equivalent-concept-in-azure-16eb</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%2Fufl426q2j0yj21n8r4cw.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%2Fufl426q2j0yj21n8r4cw.png" alt="AWS vs Azure" width="800" height="79"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>azure</category>
      <category>organization</category>
      <category>subscription</category>
      <category>aws</category>
    </item>
    <item>
      <title>How to add custom CA Cert in Lambda function</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Wed, 11 Feb 2026 14:29:56 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/how-to-add-custom-ca-cert-in-lambda-function-4ge4</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/how-to-add-custom-ca-cert-in-lambda-function-4ge4</guid>
      <description>&lt;h2&gt;
  
  
  Steps
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Put certificate in PEM format at the following path python/certs/xyz.pem. Directory structure is important.&lt;/li&gt;
&lt;li&gt;Zip python directory and create lambda layer using this zip file.&lt;/li&gt;
&lt;li&gt;Create lambda function under VPC using the below code and attach lambda layer created at step 2.
&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%2Fzobdqgkktzch3mncf0fg.png" alt="sample lambda code" width="586" height="235"&gt;
&lt;/li&gt;
&lt;li&gt;Set Environment variable in Lambda function.
Key : REQUESTS_CA_BUNDLE
Value: /opt/python/certs/xyz.pem&lt;/li&gt;
&lt;li&gt;Test the lambda function.&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>lambda</category>
      <category>aws</category>
      <category>serverless</category>
    </item>
    <item>
      <title>How to create Lambda Layer in Python</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Tue, 10 Feb 2026 16:38:45 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/how-to-create-lambda-layer-in-python-2ka7</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/how-to-create-lambda-layer-in-python-2ka7</guid>
      <description>&lt;p&gt;Use Lambda layers to package code and dependencies that you want to reuse across multiple functions. Layers usually contain library dependencies, a custom runtime, or configuration files.&lt;/p&gt;

&lt;h2&gt;
  
  
  Below are the steps to create lambda layer and test it with lambda function.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Check python version in your system with "py --version". This version and lambda runtime version MUST match. eg 3.13 &lt;/li&gt;
&lt;li&gt;mkdir lambda_layer&lt;/li&gt;
&lt;li&gt;mkdir -p python&lt;/li&gt;
&lt;li&gt;pip install requests -t python/&lt;/li&gt;
&lt;li&gt;Zip python directory.&lt;/li&gt;
&lt;li&gt;Go to AWS and create Lambda layer by uploading python.zip file.&lt;/li&gt;
&lt;li&gt;Create lambda function with the same runtime version eg. 3.13 and attach lambda layer to it.
&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%2Fqrdglt0x51mog474849n.png" alt="Lambda Layer" width="800" height="272"&gt;
&lt;/li&gt;
&lt;li&gt;import module required modules in lambda_function.py handle file
&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%2Famm3737xgj01vc0sshcp.png" alt="Sample lambda function code" width="587" height="241"&gt;
&lt;/li&gt;
&lt;li&gt;Test the function by creating test event.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4w8cv7nxx3dkpiznqp8w.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%2F4w8cv7nxx3dkpiznqp8w.png" alt="Test Lambda Response" width="740" height="279"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>lambda</category>
      <category>serverless</category>
      <category>python</category>
    </item>
    <item>
      <title>How to plan Agentic AI rollout</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Mon, 09 Feb 2026 17:01:20 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/how-to-plan-agentic-ai-rollout-40n5</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/how-to-plan-agentic-ai-rollout-40n5</guid>
      <description>&lt;p&gt;The below are the different phases of rolling out AI Agents in an organization.&lt;/p&gt;

&lt;h2&gt;
  
  
  Crawl phase.
&lt;/h2&gt;

&lt;p&gt;Deploy the first agent internally for a small pilot group. Focus on learning and iteration. Failures are cheap.&lt;/p&gt;

&lt;h2&gt;
  
  
  Walk phase
&lt;/h2&gt;

&lt;p&gt;Deploy the agent to a controlled external user group. More users, more feedback, more edge cases discovered. Investment in observability and evaluation pays off.&lt;/p&gt;

&lt;h2&gt;
  
  
  Run phase
&lt;/h2&gt;

&lt;p&gt;Scale the agent to external users with confidence. Platform capabilities enable other teams to build their own agents faster. Organizational capability compounds.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This is how organizations can go from one developer building one agent to dozens of teams building dozens of agents with consistent quality, shared infrastructure, and accelerating velocity.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>agents</category>
    </item>
    <item>
      <title>Best Practices with Amazon AgentCore</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Mon, 09 Feb 2026 13:32:50 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/best-practices-with-amazon-agentcore-2go1</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/best-practices-with-amazon-agentcore-2go1</guid>
      <description>&lt;h3&gt;
  
  
  Building production-ready AI agents requires disciplined engineering practices across the entire lifecycle, includes
&lt;/h3&gt;

&lt;p&gt;• Start small with a clearly defined problem&lt;br&gt;
• Instrument everything from day one&lt;br&gt;
• Build a deliberate tooling strategy&lt;br&gt;
• Automate your evaluation&lt;br&gt;
• Decompose complexity with multi-agent architectures&lt;br&gt;
• Scale securely with personalization&lt;br&gt;
• Combine agents with deterministic code&lt;br&gt;
• Test continuously&lt;br&gt;
• Build organizational capability with platform thinking&lt;/p&gt;

&lt;h3&gt;
  
  
  Amazon Bedrock AgentCore provides the services you need to implement these practices.
&lt;/h3&gt;

&lt;p&gt;• &lt;strong&gt;AgentCore RUNTIME&lt;/strong&gt; hosts agents and tools in isolated environments&lt;br&gt;
• &lt;strong&gt;AgentCore MEMORY&lt;/strong&gt; enables personalized interactions&lt;br&gt;
• &lt;strong&gt;AgentCore IDENTITY AND POLICY&lt;/strong&gt; help enforce security&lt;br&gt;
• &lt;strong&gt;AgentCore OBSERVABILITY&lt;/strong&gt; provides visibility&lt;br&gt;
• &lt;strong&gt;AgentCore EVALUATIONS&lt;/strong&gt; enables continuous quality assessment&lt;br&gt;
• &lt;strong&gt;AgentCore GATEWAY&lt;/strong&gt; unifies communication across agents and tools using standard protocols&lt;br&gt;
• &lt;strong&gt;AgentCore BROWSER&lt;/strong&gt; provides a secure, cloud-based browser that enables AI agents to interact with websites and AgentCore Code Interpreter enables AI agents to write and execute code more securely in sandbox environments.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agentcore</category>
      <category>aws</category>
    </item>
    <item>
      <title>Monitoring vs Observability ?</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Tue, 27 Jan 2026 14:10:27 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/observability-2ne0</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/observability-2ne0</guid>
      <description>&lt;h2&gt;
  
  
  Monitoring
&lt;/h2&gt;

&lt;p&gt;Monitoring detects issues using metrics and alerts to detect problem based on thresholds.&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%2F24gxsjhwmq4p6239yqux.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%2F24gxsjhwmq4p6239yqux.png" alt="Monitoring" width="800" height="508"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Observability
&lt;/h2&gt;

&lt;p&gt;Observability enables understanding of unknown issues through logs, metrics, and distributed traces to diagnose root causes in complex systems.&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%2Fbs8u7rtom8ukah9x31yv.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%2Fbs8u7rtom8ukah9x31yv.png" alt="Observability" width="800" height="322"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Logs
&lt;/h3&gt;

&lt;p&gt;Log is an idempotent record of a discrete event that happened in a system at any point of time during the request life cycle.&lt;/p&gt;

&lt;h3&gt;
  
  
  Traces
&lt;/h3&gt;

&lt;p&gt;Tracing gives the capability to monitor the fate of a request during its lifecycle across various components in a system.&lt;/p&gt;

&lt;h3&gt;
  
  
  Metrics
&lt;/h3&gt;

&lt;p&gt;State/health of the system at specific point of time. eg CPU Usage&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>beginners</category>
      <category>devops</category>
      <category>monitoring</category>
    </item>
    <item>
      <title>Agentic AI vs Generative AI</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Fri, 16 Jan 2026 14:57:26 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/agentic-ai-vs-generative-ai-3p0e</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/agentic-ai-vs-generative-ai-3p0e</guid>
      <description>&lt;ul&gt;
&lt;li&gt;Agentic AI emphasizes autonomy meaning the ability for AI to &lt;u&gt;&lt;strong&gt;operate independently&lt;/strong&gt;&lt;/u&gt;. &lt;/li&gt;
&lt;li&gt;Such AI agent performs tasks &lt;u&gt;&lt;strong&gt;without human oversight&lt;/strong&gt;&lt;/u&gt; or step-by-step instructions.&lt;/li&gt;
&lt;li&gt;For example, once given a high-level objective, an autonomous agent decides its course of action and carries it out, rather than waiting for a human to tell it each step. An agentic system chooses &lt;u&gt;&lt;strong&gt;which actions to take and when to take&lt;/strong&gt;&lt;/u&gt; them to meet its goals. &lt;/li&gt;
&lt;li&gt;This autonomy is what gives &lt;u&gt;&lt;strong&gt;agentic AI&lt;/strong&gt;&lt;/u&gt; its name&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foqfwpl50fw24zd0yzlfw.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%2Foqfwpl50fw24zd0yzlfw.png" alt=" " width="800" height="203"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>What is an Agent in AI?</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Tue, 30 Dec 2025 05:15:15 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/what-is-an-agent-in-ai-4c4g</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/what-is-an-agent-in-ai-4c4g</guid>
      <description>&lt;p&gt;The below are the example of Agents in real life.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real Estate Agents&lt;/li&gt;
&lt;li&gt;Customer Service Agents&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They are specialized in specific area. &lt;/p&gt;

&lt;p&gt;Similarly we can think of &lt;em&gt;AI agents as software/program that uses models (often AI/ML), tools, and data to autonomously plan and perform tasks in pursuit of a defined goal, usually with guardrails and human oversight.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;if we further break down, an agent is similar to microservices in software development. The way microservices are designed to serve specific task/audience, similarly agents are independent, specialized and designed to operate autonomously. &lt;em&gt;What makes agent special is that Agents mirror how humans work.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F35xbjuzr73zxueh871vr.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%2F35xbjuzr73zxueh871vr.png" alt=" " width="800" height="306"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>architecture</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Windows Service equivalent in Linux?</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Mon, 01 Dec 2025 07:48:29 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/windows-service-equivalent-in-linux-jal</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/windows-service-equivalent-in-linux-jal</guid>
      <description>&lt;p&gt;A Windows service is the equivalent of a UNIX daemon. It is a process that provides one or more facilities to client processes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Starting and Stopping Services
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;sudo systemctl list-units --type=service --state running                || List all running services
sudo systemctl start &amp;lt;service_name&amp;gt;                      || Starts a service.
sudo systemctl stop &amp;lt;service_name&amp;gt;                       || Stops a service.
sudo systemctl restart &amp;lt;service_name&amp;gt;                    || Restarts a service.
sudo systemctl enable &amp;lt;service_name&amp;gt;                     || Configures a service to start automatically at boot.
sudo systemctl disable &amp;lt;service_name&amp;gt;                    || Prevents a service from starting automatically at boot.
sudo systemctl status &amp;lt;service_name&amp;gt;                     || Shows the current status of a service.


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>cli</category>
      <category>help</category>
      <category>linux</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Creating AWS Elastic Beanstalk Env through CLI commands</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Fri, 28 Nov 2025 11:04:14 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/creating-aws-elastic-beanstalk-env-through-cli-commands-g1a</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/creating-aws-elastic-beanstalk-env-through-cli-commands-g1a</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
## CREATE APPLICATION VERSION

aws elasticbeanstalk create-application-version \
--application-name my-app-test \
--version-label v1 \
--source-bundle S3Bucket=test-bucket-apse1,S3Key=python-app.zip

## CREATE CONFIGURATION TEMPLATE 
aws elasticbeanstalk create-configuration-template \
--application-name my-app-test \
--template-name v1 \
--solution-stack-name "64bit Amazon Linux 2023 v4.7.1 running Python 3.13"

## CREATE ENVIRONMENT
aws elasticbeanstalk create-environment \
--cname-prefix my-cname \
--application-name my-app-test \
--version-label v1 \
--template-name v1 \
--environment-name v1clone2 \
--option-settings file://c:/MohanS/NPPFiles/Options.txt \
--tags Key=Key1,Value=hr Key=Env,Value=dev Key=Key2,Value=Key2Value –debug

## TERMINATE Environment
aws elasticbeanstalk terminate-environment --environment-name v1clone1

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  OPTIONS.TXT FILE
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "IamInstanceProfile",
        "Value": "aws-elasticbeanstalk-ec2-role"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "InstanceType",
        "Value": "t3.xlarge"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "ImageId",
        "Value": "ami-0f77922ee968e2ec"
    },
    {
        "Namespace": "aws:elasticbeanstalk:environment",
        "OptionName": "ServiceRole",
        "Value": "servicerole-beanstalk"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "LaunchTemplateTagPropagationEnabled",
        "Value": "true"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "DisableIMDSv1",
        "Value": "true"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "RootVolumeType",
        "Value": "gp3"
    },
    {
        "Namespace": "aws:autoscaling:launchconfiguration",
        "OptionName": "RootVolumeSize",
        "Value": "64"
    },
    {
        "Namespace": "aws:ec2:vpc",
        "OptionName": "VPCId",
        "Value": "vpc-12345c5c68c0e840"
    },
    {
        "Namespace": "aws:ec2:vpc",
        "OptionName": "Subnets",
        "Value": "subnet-123456275dcb5,subnet-789012c147184c9"
    },
    {
        "Namespace": "aws:ec2:vpc",
        "OptionName": "ELBSubnets",
        "Value": "subnet-123456275dcb5,subnet-789012c147184c9"
    },
    {
        "Namespace": "aws:ec2:vpc",
        "OptionName": "ELBScheme",
        "Value": "internal"
    },
    {
        "Namespace": "aws:ec2:vpc",
        "OptionName": "AssociatePublicIpAddress",
        "Value": "false"
    }

]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Installation of Docker Engine in Linux EC2</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Fri, 28 Nov 2025 10:40:52 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/installation-of-docker-engine-in-linux-ec2-5cd</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/installation-of-docker-engine-in-linux-ec2-5cd</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;sudo su&lt;br&gt;
sudo yum update -y    || Apply pending updates&lt;br&gt;
sudo yum search docker || SEARCH DOCKER PACKAGE&lt;br&gt;
sudo yum info docker  || Get version information&lt;br&gt;
sudo yum install docker || Install docker&lt;br&gt;
sudo docker --version     || check if docker is installed.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
    </item>
    <item>
      <title>Checking .Net Framework version installed</title>
      <dc:creator>Mohan Sharma</dc:creator>
      <pubDate>Wed, 05 Nov 2025 16:07:30 +0000</pubDate>
      <link>https://dev.to/mohan-sharma-cloud-architect/checking-net-framework-version-installed-39g6</link>
      <guid>https://dev.to/mohan-sharma-cloud-architect/checking-net-framework-version-installed-39g6</guid>
      <description>&lt;p&gt;&lt;code&gt;PS C:\Windows\system32&amp;gt; Get-WindowsFeature -Name NET-Framework* | Format-Table Name, DisplayName, InstallState&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fppar1i3t3bejoheqr9td.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%2Fppar1i3t3bejoheqr9td.png" alt=" " width="800" height="132"&gt;&lt;/a&gt;&lt;/p&gt;

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