<?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>Forem: Kay Dee</title>
    <description>The latest articles on Forem by Kay Dee (@techgirlkaydee).</description>
    <link>https://forem.com/techgirlkaydee</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%2F1592297%2F4c685441-8102-4da2-bb2c-254c92d61d7f.png</url>
      <title>Forem: Kay Dee</title>
      <link>https://forem.com/techgirlkaydee</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/techgirlkaydee"/>
    <language>en</language>
    <item>
      <title>Mount Up! A Step-by-Step Guide to Creating and Using Amazon EFS on Ubuntu</title>
      <dc:creator>Kay Dee</dc:creator>
      <pubDate>Wed, 19 Jun 2024 17:33:18 +0000</pubDate>
      <link>https://forem.com/techgirlkaydee/mount-up-a-step-by-step-guide-to-creating-and-using-amazon-efs-on-ubuntu-2i86</link>
      <guid>https://forem.com/techgirlkaydee/mount-up-a-step-by-step-guide-to-creating-and-using-amazon-efs-on-ubuntu-2i86</guid>
      <description>&lt;p&gt;&lt;a href="https://aws.amazon.com/efs/"&gt;Amazon Elastic File System (EFS)&lt;/a&gt; provides a simple, scalable, and fully managed Network File System for use with AWS Cloud services and on-premises resources. This guide will walk you through the process of creating an EFS, mounting it on an Ubuntu instance, and adding files to it.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Prerequisites&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;An AWS account&lt;/li&gt;
&lt;li&gt;An EC2 instance running Ubuntu in the same VPC as your EFS file system&lt;/li&gt;
&lt;li&gt;Proper security group settings to allow NFS traffic&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 1: Create an EFS File System&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Navigate to the EFS Dashboard&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open the AWS Management Console.&lt;/li&gt;
&lt;li&gt;Go to the EFS dashboard.&lt;/li&gt;
&lt;li&gt;Create a File System&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.. Click on "Create file system".&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Follow the prompts to set up your EFS file system. You can choose the VPC, security group, and performance mode as per your requirements.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 2: Configure Security Groups&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. EFS Security Group&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ensure the security group associated with your EFS allows inbound traffic on port 2049 (NFS).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.. EC2 Security Group&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Modify the security group associated with your EC2 instance to allow NFS traffic from the security group used by the EFS.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 3: Install NFS Client on Ubuntu&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Connect to Your EC2 Instance&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use SSH to connect to your EC2 instance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.. Install NFS Client using the following script:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;- sudo apt-get update sudo apt-get install -y nfs-common&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 4: Create a Mount Point&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Create a Directory to Mount EFS using the following script: &lt;/p&gt;

&lt;p&gt;&lt;em&gt;- sudo mkdir /mnt/efs&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 5: Mount the EFS File System&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Mount the EFS File System using the following script:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;- sudo mount -t nfs4 -o nfsvers=4.1 &amp;lt; file-system-id &amp;gt;.efs. &amp;lt; region &amp;gt;.amazonaws.com:/ /mnt/efs&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Note: Be sure to replace &lt;strong&gt;file-system-id&lt;/strong&gt; with your EFS file system ID and &lt;strong&gt;region&lt;/strong&gt; with the appropriate AWS region (e.g., us-west-2).&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 6: Verify the Mount&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Check the Mount Point using the following script:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;- ls /mnt/efs&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 7: Add Files to EFS&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Copy Files to the EFS using the following script:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;- sudo cp /path/to/local/file /mnt/efs/&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;and / or &lt;/p&gt;

&lt;p&gt;2.. Create Files Directly in EFS using the following script:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;- echo "Hello, EFS!" | sudo tee /mnt/efs/hello.txt&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Summary&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;There you have it! By following these steps, you can easily create an Amazon EFS, mount it on your Ubuntu instance, and add files to it. EFS provides a solution for storing files in the cloud, accessible from multiple instances as well as on-premises environments.&lt;/p&gt;

&lt;p&gt;Let me know your thoughts by leaving a comment below. Thanks!&lt;/p&gt;

</description>
      <category>aws</category>
      <category>efs</category>
      <category>storage</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>Stepping into Storage: A Guide to Creating an S3 Bucket and Uploading Files on AWS</title>
      <dc:creator>Kay Dee</dc:creator>
      <pubDate>Tue, 18 Jun 2024 03:39:01 +0000</pubDate>
      <link>https://forem.com/techgirlkaydee/stepping-into-storage-a-guide-to-creating-an-s3-bucket-and-uploading-files-on-aws-2624</link>
      <guid>https://forem.com/techgirlkaydee/stepping-into-storage-a-guide-to-creating-an-s3-bucket-and-uploading-files-on-aws-2624</guid>
      <description>&lt;p&gt;Hi DEV Community 👋 ! I'm so excited to discuss one of my favorite foundational aspects of computing- &lt;strong&gt;STORAGE!&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://aws.amazon.com/s3/"&gt;Amazon Simple Storage Service (S3)&lt;/a&gt;&lt;/strong&gt; is a scalable object storage service widely used for storing and retrieving any amount of data. Whether you're hosting a static website, storing backups, or logging data, S3 provides a robust and flexible solution. In this guide, I'll walk you through the steps to create your first S3 bucket.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Prerequisites&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Before you start, you'll need:&lt;br&gt;
1.. An AWS account. If you don't have one, you can sign up for free &lt;a href="https://signin.aws.amazon.com/signup?request_type=register"&gt;here&lt;/a&gt;.&lt;br&gt;
2.. AWS Management Console access.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 1: Sign in to the AWS Management Console&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Go to the &lt;a href="https://aws.amazon.com/console/"&gt;AWS Management Console&lt;/a&gt;.&lt;br&gt;
2.. Sign in with your AWS account credentials.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 2: Open the S3 Service&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. In the AWS Management Console, type "S3" in the search bar at the top and select "S3" from the drop-down list.&lt;br&gt;
2.. This will take you to the Amazon S3 dashboard.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 3: Create a New S3 Bucket&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. On the S3 dashboard, click on the "Create bucket" button.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 4: Configure the Following Bucket Settings&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Bucket Name: Enter a unique name for your bucket. The name must be globally unique across all existing bucket names in S3.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Example: my-unique-bucket-name-12345&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.. Region: Select the AWS Region where you want the bucket to be created. Choose a region close to your primary user base to reduce latency and costs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Example: US East (N. Virginia)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3.. Bucket Settings for Object Ownership: By default, new buckets have the "ACLs disabled" option selected, meaning the bucket owner has full control over the objects.&lt;/p&gt;

&lt;p&gt;4.. Block Public Access Settings: For most use cases, it’s recommended to block all public access. However, if you need public access for web hosting or other reasons, you can adjust these settings.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Example: Leave "Block all public access" checked for a private bucket.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;5.. Bucket Versioning: Enable versioning if you want to keep multiple versions of an object in the same bucket. This is useful for data backup and recovery.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Example: You can leave it disabled for now and enable it later if needed.&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;6.. Tags: You can add tags (key-value pairs) to your bucket to help with cost allocation and management.&lt;/p&gt;

&lt;p&gt;7.. Default Encryption: Enable default encryption if you want all objects stored in this bucket to be automatically encrypted.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Example: Enable server-side encryption with Amazon S3 managed keys (SSE-S3).&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 5: Review and Create the Bucket&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Review your settings to ensure everything is configured correctly.&lt;br&gt;
2.. Click the "Create bucket" button at the bottom of the page.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Step 6: Upload Files to Your S3 Bucket&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. Once the bucket is created, you'll be redirected back to the S3 dashboard.&lt;br&gt;
2.. Click on the "Upload" button.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Add Files&lt;/strong&gt;&lt;br&gt;
1.. Click "Add files" and select the files you want to upload from your local machine.&lt;br&gt;
2.. Optionally, you can add entire folders by clicking "Add folder."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Set Permissions&lt;/strong&gt;&lt;br&gt;
1.. By default, the files will be private. If you need to make them public, adjust the permissions accordingly. However, for most cases, keeping the default private setting is recommended.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Set Properties&lt;/strong&gt;&lt;br&gt;
1.. You can configure various properties like storage class, encryption, and metadata. For now, you can leave these at their default settings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Review and Upload&lt;/strong&gt;&lt;br&gt;
1.. Review your settings and click "Upload" to start the upload process.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Congratulations!&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;You've successfully created an S3 bucket and uploaded files. Amazon S3 is a powerful tool for storing and managing data in the cloud, and mastering these basics will help you leverage its full potential.&lt;/p&gt;

&lt;p&gt;Please share your feedback on this guide by commenting below. I'm looking forward to sharing more AWS content and engaging with the cloud community. Until next time ✌️!&lt;/p&gt;

</description>
      <category>aws</category>
      <category>s3</category>
      <category>cloudcomputing</category>
      <category>storage</category>
    </item>
    <item>
      <title>Ready, Set, LAUNCH!! How to Launch and Connect to an AWS EC2 Instance.</title>
      <dc:creator>Kay Dee</dc:creator>
      <pubDate>Fri, 14 Jun 2024 01:49:07 +0000</pubDate>
      <link>https://forem.com/techgirlkaydee/ready-set-launch-how-to-launch-and-connect-to-an-aws-ec2-instance-1jbj</link>
      <guid>https://forem.com/techgirlkaydee/ready-set-launch-how-to-launch-and-connect-to-an-aws-ec2-instance-1jbj</guid>
      <description>&lt;p&gt;&lt;a href="https://aws.amazon.com/ec2/"&gt;AWS EC2 (Amazon Elastic Compute Cloud)&lt;/a&gt; is a popular service that provides scalable computing capacity in the cloud. Whether you're setting up a server for the first time or just need a refresher, this guide will walk you through launching an EC2 instance and connecting to it.&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Prerequisites&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;An AWS account. If you don't have one, you can &lt;a href="https://portal.aws.amazon.com/billing/signup?nc2=h_ct&amp;amp;src=header_signup&amp;amp;redirect_url=https%3A%2F%2Faws.amazon.com%2Fregistration-confirmation#/start/email"&gt;create a free account&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Basic understanding of cloud computing concepts.&lt;/li&gt;
&lt;li&gt;A terminal application for SSH (Linux and macOS).&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 1: Launch an EC2 Instance&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. &lt;strong&gt;Log in to AWS Management Console&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Go to the &lt;a href="https://aws.amazon.com/console/"&gt;AWS Management Console&lt;/a&gt; and log in with your credentials.&lt;/p&gt;

&lt;p&gt;2.. &lt;strong&gt;Navigate to EC2 Dashboard&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;From the AWS Management Console, type "EC2" in the search bar and select EC2 from the list of services.&lt;/p&gt;

&lt;p&gt;3.. &lt;strong&gt;Launch an Instance&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;3.1. In the EC2 Dashboard, click &lt;strong&gt;Launch Instance&lt;/strong&gt;.&lt;br&gt;
3.2. &lt;strong&gt;Name and Tags&lt;/strong&gt;: Enter a name for your instance (e.g., "MyFirstInstance"). Tags are optional.&lt;br&gt;
3.3. &lt;strong&gt;Choose an Amazon Machine Image (AMI)&lt;/strong&gt;: Select an AMI. For beginners, the Amazon Linux 2 AMI (HVM), SSD Volume Type is a good choice as it is free tier eligible.&lt;br&gt;
3.4. &lt;strong&gt;Choose an Instance Type&lt;/strong&gt;: Select the instance type. t2.micro is free tier eligible and sufficient for most small applications or testing purposes.&lt;br&gt;
3.5. &lt;strong&gt;Key Pair (login)&lt;/strong&gt;: Select Create a new key pair. Give it a name, and download the '.pem' file. Keep this file secure as it is necessary for SSH access.&lt;br&gt;
3.6. &lt;strong&gt;Network Settings&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Click on &lt;strong&gt;Edit&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Under &lt;strong&gt;VPC&lt;/strong&gt; and &lt;strong&gt;Subnets&lt;/strong&gt;, the default settings are usually fine.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ensure Auto-assign public IP is enabled.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Firewall (security groups)&lt;/strong&gt;: Create a new security group.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add a rule to allow SSH access. Set the type to &lt;strong&gt;SSH&lt;/strong&gt;, the protocol to &lt;strong&gt;TCP&lt;/strong&gt;, the port range to &lt;strong&gt;22&lt;/strong&gt;, and the source to &lt;strong&gt;My IP&lt;/strong&gt; to restrict access to your IP address.'&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;3.7. &lt;strong&gt;Configure Storage&lt;/strong&gt;: The default 8 GB is usually enough. &lt;strong&gt;Click Next: Add Tags.&lt;/strong&gt;&lt;br&gt;
3.8. &lt;strong&gt;Advanced Details&lt;/strong&gt;: You can leave this section with default settings for now.&lt;br&gt;
3.9. Review all the configurations and click &lt;strong&gt;Launch Instance&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;4.. &lt;strong&gt;View Your Instance&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;View Instances&lt;/strong&gt; to go to the EC2 Dashboard where you can see your instance initializing. Wait for the instance state to turn to &lt;strong&gt;running&lt;/strong&gt; and the status checks to show &lt;strong&gt;2/2 checks passed.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Step 2: Connect to Your EC2 Instance&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;1.. &lt;strong&gt;Get the Public DNS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In the EC2 Dashboard, click on your running instance and find the &lt;strong&gt;Public DNS (IPv4)&lt;/strong&gt; field. Copy this address; you will need it to connect to your instance.&lt;/p&gt;

&lt;p&gt;2.. &lt;strong&gt;Connect Using SSH (Linux/Mac)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;2.1. Open a terminal.&lt;br&gt;
2.2. Navigate to the directory where your '.pem' file is located.&lt;br&gt;
2.3. Change the permissions of your .pem file to ensure it's not publicly viewable by using the following script:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;chmod 400 your-key-pair.pem&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.4. Connect to your instance by using the following script: &lt;/p&gt;

&lt;p&gt;&lt;em&gt;- ssh -i "your-key-pair.pem" ec2-user@your-public-dns&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Note: Replace 'your-key-pair.pem' with the name of your key pair file and 'your-public-dns' with the Public DNS you copied earlier&lt;/p&gt;




&lt;h2&gt;
  
  
  &lt;strong&gt;Outcome&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Once connected, you’ll be in the terminal of your new EC2 instance. You can now use this instance as a remote server to deploy applications, run scripts, or set up a web server. AWS EC2 provides a flexible platform for all your cloud computing needs.&lt;/p&gt;

&lt;p&gt;Feel free to share your thoughts and questions in the comments below. Happy cloud computing!&lt;/p&gt;

</description>
      <category>aws</category>
      <category>compute</category>
      <category>ec2</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>Hello DEV Community! 👋</title>
      <dc:creator>Kay Dee</dc:creator>
      <pubDate>Thu, 13 Jun 2024 00:51:46 +0000</pubDate>
      <link>https://forem.com/techgirlkaydee/hello-dev-community-4mb2</link>
      <guid>https://forem.com/techgirlkaydee/hello-dev-community-4mb2</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hello DEV Community! 👋&lt;/strong&gt;&lt;br&gt;
I'm thrilled to be joining this dynamic and inspiring community! My name is Khadisha, and I'm in the midst of an exciting transition from business lending to cloud engineering. Here’s a bit about my journey, my new interests, and what I hope to achieve moving forward.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A Leap from Business Lending to Cloud Engineering&lt;/strong&gt;&lt;br&gt;
For several years, my career revolved around business lending, where I assisted small businesses in securing the funds they needed to grow. While this work was fulfilling, I’ve always been fascinated by technology and its potential to revolutionize industries. This curiosity led me to explore cloud computing, and I quickly realized it was my true calling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Journey So Far&lt;/strong&gt;&lt;br&gt;
Transitioning from finance to tech has been challenging yet immensely rewarding. Recently, I completed a rigorous cloud engineering bootcamp that equipped me with a strong foundation in cloud technologies. In addition, I’ve pursued certifications and courses in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CompTIA A+&lt;/li&gt;
&lt;li&gt;CompTIA Network+&lt;/li&gt;
&lt;li&gt;CompTIA Cloud+&lt;/li&gt;
&lt;li&gt;Linux&lt;/li&gt;
&lt;li&gt;AWS&lt;/li&gt;
&lt;li&gt;Azure&lt;/li&gt;
&lt;li&gt;Kubernetes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These educational experiences have been crucial in developing my technical skills and preparing me for real-world applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Embracing Golf ⛳&lt;/strong&gt;&lt;br&gt;
As part of maintaining a balanced lifestyle during this transition, I’ve taken up golf. This new hobby has been a wonderful way to relax and challenge myself. Golf has taught me patience, focus, and the importance of incremental improvement—valuable lessons that also apply to my journey in tech.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My Current Goals are to:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Deepen My Cloud Expertise:&lt;/strong&gt; I’m focusing on mastering AWS and Azure, working on projects that involve building and managing cloud infrastructures.&lt;br&gt;
&lt;strong&gt;Community Engagement:&lt;/strong&gt; I’m eager to connect with fellow tech enthusiasts and professionals. Sharing experiences and learning from others is something I truly value.&lt;br&gt;
&lt;strong&gt;Maintain Balance:&lt;/strong&gt; Striking a balance between my career and personal interests like golf is important to me. I strive to excel professionally while enjoying my hobbies and personal life.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let's Connect!&lt;/strong&gt;&lt;br&gt;
I’m looking forward to engaging with and learning from everyone in this community. Whether you’re an experienced cloud engineer, someone transitioning to a new career like me, or simply passionate about technology, I’d love to hear your stories and advice.&lt;/p&gt;

&lt;p&gt;Feel free to reach out to me here on DEV, or connect with me on &lt;a href="//www.linkedin.com/in/khadishadildy"&gt;LinkedIn&lt;/a&gt;/&lt;a href="https://x.com/techgirlkaydee"&gt;Twitter&lt;/a&gt;/&lt;a href="https://github.com/techgirlkaydee"&gt;GitHub&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Thank you for reading, and here’s to new adventures and continuous growth! 🚀&lt;/p&gt;

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