<?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>The Ops Community ⚙️: Caroline </title>
    <description>The latest articles on The Ops Community ⚙️ by Caroline  (@enilorac).</description>
    <link>https://community.ops.io/enilorac</link>
    <image>
      <url>https://community.ops.io/images/P7bFWMRXBVeTZx5GHZhetZ4X8BORNecJ6PnfinOgo9E/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkub3BzLmlv/L3JlbW90ZWltYWdl/cy91cGxvYWRzL3Vz/ZXIvcHJvZmlsZV9p/bWFnZS84OS81ZTQx/ZjYzNi02OTA0LTRh/OTUtODkxZC02MGZm/Y2YzYzIyOGYuanBl/Zw</url>
      <title>The Ops Community ⚙️: Caroline </title>
      <link>https://community.ops.io/enilorac</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://community.ops.io/feed/enilorac"/>
    <language>en</language>
    <item>
      <title>Question</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Sun, 11 Sep 2022 13:26:06 +0000</pubDate>
      <link>https://community.ops.io/enilorac/question-4i2j</link>
      <guid>https://community.ops.io/enilorac/question-4i2j</guid>
      <description>&lt;p&gt;&lt;strong&gt;Does this site have profile links to share?&lt;/strong&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What Is Amazon SQS?</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Fri, 10 Jun 2022 21:14:26 +0000</pubDate>
      <link>https://community.ops.io/enilorac/what-is-amazon-sqs-12a2</link>
      <guid>https://community.ops.io/enilorac/what-is-amazon-sqs-12a2</guid>
      <description>&lt;p&gt;When two services needed to communicate with one another in the past, one service would make an api call to notify the other service that something had changed or taken some action. &lt;/p&gt;

&lt;p&gt;With Amazon Simple Queue Service(SQS), the event or notification-producing service can asynchronously notify the consumer that something has changed in its system, allowing for a very clean decoupling of these two services.&lt;/p&gt;

&lt;h2&gt;
  
  
  Types Of SQS
&lt;/h2&gt;

&lt;p&gt;There are two types of SQS:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Standard Queue&lt;/li&gt;
&lt;li&gt;FIFO Queue&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Standard Queue
&lt;/h2&gt;

&lt;p&gt;Standard Queue has an unlimited throughput. What this means is that there's an infinite processing rate.&lt;/p&gt;

&lt;p&gt;You can perform nearly an unlimited number of transactions per second.&lt;/p&gt;

&lt;h3&gt;
  
  
  Delivery Indifference
&lt;/h3&gt;

&lt;p&gt;A message is delivered at least once, but occasionally more than one copy of a message is delivered.&lt;/p&gt;

&lt;h3&gt;
  
  
  Processing Duplicate
&lt;/h3&gt;

&lt;p&gt;Occasionally more than one copy of a message is delivered. &lt;/p&gt;

&lt;p&gt;They might also be delivered in an order different from which they were sent.&lt;/p&gt;

&lt;h2&gt;
  
  
  FIFO Queue
&lt;/h2&gt;

&lt;p&gt;First and foremost, FIFO Queue stands for first in, first out. It operates in the same manner as its name. What comes in first is processed first.&lt;/p&gt;

&lt;h3&gt;
  
  
  Processing In Exact Order
&lt;/h3&gt;

&lt;p&gt;Messages are sent and received in strict chronological order. &lt;/p&gt;

&lt;p&gt;Messages are also delivered in sequence, so there is no possibility of out-of-order processing. &lt;/p&gt;

&lt;p&gt;There is a tps (transactions per second) limit, so there is no unlimited throughput. You do have a capt with a maximum value of 300 tps. &lt;/p&gt;

&lt;p&gt;However, if you use batching, you can publish to SQS with up to 10 messages in a batch and only use one api operation. &lt;/p&gt;

&lt;p&gt;As a result, you can publish 3000 tps instead of 300 if you use ten messages per batch.&lt;/p&gt;

&lt;p&gt;The key advantage of Amazon SQS is that it allows for asynchronous message-based communication, which makes it better than API calls.&lt;/p&gt;

&lt;p&gt;SQS was one of the initial services offered by Amazon Web Services. It was first released as a beta in 2004 and then as a complete release in 2006.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>AWS Lambda: Reduce IT Maintenance Costs And Simplify Scalability</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Sat, 04 Jun 2022 05:56:28 +0000</pubDate>
      <link>https://community.ops.io/enilorac/use-of-aws-lambda-to-reduce-it-maintenance-costs-and-simplify-scalability-506c</link>
      <guid>https://community.ops.io/enilorac/use-of-aws-lambda-to-reduce-it-maintenance-costs-and-simplify-scalability-506c</guid>
      <description>&lt;p&gt;The serverless architecture strategy using the AWS lambda function service. This architecture is ideal for "Micro-Services" software development techniques.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Serverless Architecture?
&lt;/h2&gt;

&lt;p&gt;The term "serverless architecture" refers to a cloud computing model where developers can create and run applications without managing the infrastructure. &lt;/p&gt;

&lt;p&gt;The serverless model is distinguished by its simplicity. The developer only needs to supply his code. The cloud service provider handles everything else.&lt;/p&gt;

&lt;p&gt;The "serverless" model disregards the IT infrastructure. The technical teams are no longer constrained by infrastructure constraints and can focus on product development. &lt;/p&gt;

&lt;p&gt;The developer is in charge of developing his function(s). The remainder is up to the cloud service provider. There are rules to follow to host an application in a serverless architecture. &lt;/p&gt;

&lt;p&gt;We'll sneak peek into how to think about your serverless code and how AWS makes it possible to implement it with its AWS Lambda service.&lt;/p&gt;

&lt;h2&gt;
  
  
  Working On Your Serverless Code
&lt;/h2&gt;

&lt;p&gt;The first principle of a serverless function is designed to perform a single and distinct task.&lt;/p&gt;

&lt;p&gt;Therefore, a function can only have an entry point and a response. &lt;/p&gt;

&lt;p&gt;As a result, you will need to divide your application into functions. The term "serverless" is frequently used to refer to the "Function as a Service" (FaaS) methodology. You can associate a type of event with each function. For example, if the function is requested via HTTP. The request causes the code and thus the function to be executed.&lt;/p&gt;

&lt;p&gt;One should note that the triggering events can be varied, such as adding a file to a storage space or creating a new entry in a database. &lt;/p&gt;

&lt;p&gt;You can run an entire application with multiple layers, models, and services in a single lambda! &lt;/p&gt;

&lt;p&gt;Remember that a function can only have one entry point and one response type.&lt;/p&gt;

&lt;p&gt;Lambda Functions to Implement a Serverless Architecture &lt;/p&gt;

&lt;p&gt;Lambda runs your application code on a high-availability compute infrastructure and manages all compute resources, including server and operating system maintenance, capacity sizing and scaling, automatic code and security patch deployment, and code monitoring and logging. &lt;/p&gt;

&lt;p&gt;The number of servers, their power, scaling, maintenance, monitoring, and updating is no longer the responsibility of technical teams.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lambda
&lt;/h2&gt;

&lt;p&gt;A &lt;a href="https://docs.aws.amazon.com/lambda/latest/dg/welcome.html"&gt;lambda function&lt;/a&gt; is a feature of Amazon Web Services that provides a serverless calculation service. &lt;/p&gt;

&lt;p&gt;The lambda service is becoming increasingly crucial in AWS services, as evidenced by the number of events to which Lambda can subscribe as we can see below:&lt;/p&gt;

&lt;h3&gt;
  
  
  HTTP API Gateway
&lt;/h3&gt;

&lt;p&gt;AWS provides its API Gateway. This tool allows you to create an AWS infrastructure entry point and manage &lt;a href="https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html"&gt;HTTP routing,&lt;/a&gt; SSL termination, request authentication, and even input and output data conversions.&lt;/p&gt;

&lt;p&gt;You will be able to execute your lambda code during an HTTP GET, POST, or PUT call...&lt;/p&gt;

&lt;h3&gt;
  
  
  The Automated Task With Cloudwatch
&lt;/h3&gt;

&lt;p&gt;You can trigger your Lambda based on a job or cron in the &lt;a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/RunLambdaSchedule.html"&gt;period you specify.&lt;/a&gt; Send a newsletter to your users, for example, at the start of each month. &lt;/p&gt;

&lt;h3&gt;
  
  
  Work with SQS
&lt;/h3&gt;

&lt;p&gt;When you are connected to an &lt;a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs-example.html"&gt;SQS queue,&lt;/a&gt; you will be able to consume messages from the queue to launch asynchronous tasks. &lt;/p&gt;

&lt;h2&gt;
  
  
  Lambda Function Scaling
&lt;/h2&gt;

&lt;p&gt;Lambda creates an instance to handle the event when your function is called. When the function code has completed its execution, it is ready to handle another request. &lt;/p&gt;

&lt;p&gt;If the function is called again while a request is still being processed, another instance is allocated, which increases the function's concurrency. &lt;/p&gt;

&lt;p&gt;Concurrency is limited by a regional limit that applies to all functions in a region. You can use Reserved Concurrency to ensure that a function can consistently achieve a certain concurrency level.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>finops</category>
    </item>
    <item>
      <title>What Is Platform As A Service (PAAS)</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Mon, 30 May 2022 20:45:18 +0000</pubDate>
      <link>https://community.ops.io/enilorac/what-is-platform-as-a-service-paas-5gbi</link>
      <guid>https://community.ops.io/enilorac/what-is-platform-as-a-service-paas-5gbi</guid>
      <description>&lt;p&gt;PaaS is a cloud computing model that allows developers to build and host applications very quickly without worrying about maintenance, repairs, and more.&lt;/p&gt;

&lt;p&gt;It is an independent platform where developers can host software and hardware tools.&lt;/p&gt;

&lt;p&gt;PaaS requires no server maintenance.&lt;/p&gt;

&lt;h2&gt;
  
  
  Advantages of PaaS
&lt;/h2&gt;

&lt;p&gt;Choosing PaaS as a hosting solution for developing applications and tools has many benefits.&lt;/p&gt;

&lt;p&gt;Let’s look at a few:&lt;/p&gt;

&lt;h2&gt;
  
  
  Easy Management and Cost Reduction
&lt;/h2&gt;

&lt;p&gt;PaaS technology does not include server and database management.&lt;/p&gt;

&lt;p&gt;A PaaS provider creates and maintains a secure and optimized environment for users to install applications and data sets. Users can concentrate on developing and deploying applications rather than building and maintaining the underlying infrastructure and services.&lt;/p&gt;

&lt;p&gt;That is, in the case of application hosting, it is the platform that acts as the host. &lt;br&gt;
Hence, reduced installation and maintenance costs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Higher Efficiency For Developers
&lt;/h2&gt;

&lt;p&gt;By PaaS saving money on application deployment, it reduces the time required to spend on a project.&lt;/p&gt;

&lt;p&gt;Developers can focus only on the project itself when they choose to use this model. &lt;/p&gt;

&lt;p&gt;All other aspects (server, database, virtualization, operating system, etc.) are managed by the vendor.&lt;/p&gt;

&lt;p&gt;PaaS is a guarantee of peace but also flexibility.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What Are Some Of The Skills One Needs For A Career In Cloud Engineering?</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Sat, 28 May 2022 20:51:16 +0000</pubDate>
      <link>https://community.ops.io/enilorac/what-are-some-of-the-skills-one-needs-for-a-career-in-cloud-engineering-436a</link>
      <guid>https://community.ops.io/enilorac/what-are-some-of-the-skills-one-needs-for-a-career-in-cloud-engineering-436a</guid>
      <description>&lt;p&gt;Cloud engineering has become one of the most in demand skills in recent years. More people and companies than ever, are using the cloud to store their data. &lt;/p&gt;

&lt;p&gt;Let’s  dive into who cloud engineer is.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who Is A Cloud Engineer?
&lt;/h2&gt;

&lt;p&gt;Cloud Engineer is a professional who takes care of all technical burdens related to Cloud Computing. &lt;/p&gt;

&lt;p&gt;This burden may include management, planning, architecture, and oversight of cloud systems, along with knowledge and implementation of best practices for cloud application deployment.&lt;/p&gt;

&lt;p&gt;Cloud engineering is a general term that encompasses several different functions, including:&lt;/p&gt;

&lt;h3&gt;
  
  
  Cloud Architect
&lt;/h3&gt;

&lt;p&gt;A cloud architect designs and creates the environment in the cloud.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cloud Engineer
&lt;/h3&gt;

&lt;p&gt;Cloud Engineer deals with cloud computing technological features. &lt;/p&gt;

&lt;h3&gt;
  
  
  Cloud Security Engineer
&lt;/h3&gt;

&lt;p&gt;They are responsible for protecting confidential data that’s sensitive to the organization, giving support, computing and ensure that they can work remotely in an swift way.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cloud Network Engineer
&lt;/h2&gt;

&lt;p&gt;A cloud network engineer is the IT person that implements and manages cloud network architectures.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Skills Required For A Job In Cloud Engineering Are:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Cloud computing standards&lt;/li&gt;
&lt;li&gt;Understanding Linux / Unix platforms&lt;/li&gt;
&lt;li&gt;Basic knowledge of programming&lt;/li&gt;
&lt;li&gt;You don't need any coding skills.&lt;/li&gt;
&lt;li&gt;Basic knowledge of database&lt;/li&gt;
&lt;li&gt;Understand DevOps methods&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>cloudops</category>
      <category>career</category>
    </item>
    <item>
      <title>What Is Cloud Computing?</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Fri, 27 May 2022 20:25:22 +0000</pubDate>
      <link>https://community.ops.io/enilorac/what-is-cloud-computing-31c</link>
      <guid>https://community.ops.io/enilorac/what-is-cloud-computing-31c</guid>
      <description>&lt;p&gt;Cloud computing is performing tasks, storing data or hosting services on another system, as opposed to a personal computer. This my be due to limitations of performance or specific features on your personal device.&lt;/p&gt;

&lt;p&gt;With cloud computing, companies use IT resources such as servers, computing power, storage, middleware, or flexible software over the Internet. You hire different IT resources according to your individual cloud provider's needs and pay for them according to consumption.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are The Four Types Of Cloud Computing?
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Private Cloud
&lt;/h3&gt;

&lt;p&gt;The private cloud makes its services available only to organizations. Unlike the public cloud, it is not accessible to the general public. &lt;/p&gt;

&lt;p&gt;The private cloud can be hosted on the company's computers or by a third party and offers a high level of control and security. &lt;/p&gt;

&lt;h3&gt;
  
  
  Public cloud
&lt;/h3&gt;

&lt;p&gt;The public cloud is a shared resource among many users. The required server infrastructure is located in the external data centers of the cloud provider.&lt;/p&gt;

&lt;h3&gt;
  
  
  Hybrid clouds
&lt;/h3&gt;

&lt;p&gt;The hybrid cloud runs simple processes in its private cloud and uses the public cloud for complex processes. You can reduce your costs and various complications that can slow down or slow down your business processes.&lt;/p&gt;

&lt;h3&gt;
  
  
  MultiCloud
&lt;/h3&gt;

&lt;p&gt;Multicloud aims to run applications in multiple clouds. Many cloud providers, such as AWS, Google Cloud and Microsoft Azure, provide their customers with the computing power, cloud storage capabilities and network resources needed for multi-cloud deployments.&lt;/p&gt;

&lt;h2&gt;
  
  
  What are the three uses of cloud computing?
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Infrastructure As A Service
&lt;/h3&gt;

&lt;p&gt;IAAS Hardware is hosted by a cloud service provider provided to customers through their portal. The provider hosts and manages the hardware. You as a customer pays for the use.&lt;/p&gt;

&lt;h3&gt;
  
  
  Platform As A Service
&lt;/h3&gt;

&lt;p&gt;PaaS providers provide a platform for hosting customer applications. These are software services offered as a platform. The customer runs each business application as a home application on the platform.&lt;/p&gt;

&lt;h3&gt;
  
  
  Software As A Service
&lt;/h3&gt;

&lt;p&gt;SAAS The provider hosts the software on its infrastructure and delivers it as a service to customers. The provider manages the infrastructure and software or only provides software and uses other IaaS service providers for the hardware. The customer pays for the use of the software.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are The Benefits Of Cloud Computing?
&lt;/h2&gt;

&lt;p&gt;It provides data backup in a power outage, emergency or other crisis. You know that your data is protected in a secure place.&lt;/p&gt;

&lt;p&gt;Cloud computing enables flexibility and allows information systems to be adapted to the business needs of companies, which are also constantly changing. This gives them an undeniable competitive advantage.&lt;/p&gt;

&lt;p&gt;More resources and greater responsiveness allow companies to focus their expertise on increasing productivity and performance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.educba.com/history-of-cloud-computing/#:~:text=Cloud%20Computing%20was%20invented%20in,American%20Psychologist%20and%20Computer%20Scientist."&gt;Cloud computing was supposedly&lt;/a&gt; invented in the 1960s by Joseph Carl Robnett Licklider.&lt;/p&gt;

</description>
      <category>cloudops</category>
      <category>aws</category>
      <category>azure</category>
      <category>dataops</category>
    </item>
    <item>
      <title>What Is AWS CloudFormation?</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Thu, 26 May 2022 06:20:51 +0000</pubDate>
      <link>https://community.ops.io/enilorac/what-is-aws-cloudformation-2ji5</link>
      <guid>https://community.ops.io/enilorac/what-is-aws-cloudformation-2ji5</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;What is AWS CloudFormation?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;AWS CloudFormation is a free Amazon Web Services tool needed to manage the infrastructure for an AWS management software application.&lt;/p&gt;

&lt;p&gt;It is the easiest way to manage AWS infrastructure resources by seamlessly helping with simple modeling and easy setup. It is much easier to create a CloudFormation with a design template that can be designed according to the user's preferences.&lt;/p&gt;

&lt;p&gt;For example, a template can define an application's needs, such as the Amazon Elastic Compute Cloud (EC2).&lt;/p&gt;

&lt;p&gt;The big advantage is that the user does not have to assess the dependence or complexity of the infrastructure services uploaded to the CloudFormation portal with the above application. &lt;/p&gt;

&lt;p&gt;Once the template has been designed, tested, and validated, CloudFormation analyzes and considers user-defined resources. &lt;/p&gt;

&lt;p&gt;It, therefore, eliminates manual dependence and makes it easier to verify the focus on the main business.&lt;/p&gt;

&lt;p&gt;You need to be aware of two important aspects of CloudFormation; that is the template and the stack.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Why Do You Need AWS CloudFormation?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;If the number of infrastructure services and products doubles due to demand, then AWS will not be able to do everything at once. &lt;/p&gt;

&lt;p&gt;This is why AWS CloudFormation is available.&lt;/p&gt;

&lt;p&gt;It is an infrastructure-like code that can create a seamless clone of the server configuration at any time and reduce AWS problems.&lt;/p&gt;

&lt;p&gt;With AWS CloudFormation, configuration changes can be dynamic or barrier-free integrated into the existing environment.&lt;/p&gt;

&lt;p&gt;Managing multiple AWS resources is challenging and time-consuming. &lt;/p&gt;

&lt;p&gt;Without AWS CloudFormation, developers would focus their attention and time on building infrastructure and services and less on application development.&lt;/p&gt;

&lt;p&gt;Building any infrastructure product or service is more difficult and demanding. Even deploying an existing environment is also challenging. This is where AWS CloudFormation saves the day.&lt;/p&gt;

&lt;h2&gt;
  
  
  Benefits of AWS CloudFormation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Scalability
&lt;/h3&gt;

&lt;p&gt;Templates are completely reusable and can be re-created and rebuilt many times without scripting.&lt;/p&gt;

&lt;p&gt;Regardless of whether you at first hope to send numerous examples of similar AWS resources, CloudFormation formats are helpful because they guarantee that you can increase your current circumstance rapidly when you are in need. &lt;/p&gt;

&lt;p&gt;By keeping CloudFormation layouts close, you will realize that you can add more storage space.&lt;/p&gt;

&lt;h3&gt;
  
  
  Template is in Code
&lt;/h3&gt;

&lt;p&gt;The template is code only, and the version is easy to maintain and check. This makes it easy to use for developers.&lt;/p&gt;

&lt;h3&gt;
  
  
  Speed in Deployment
&lt;/h3&gt;

&lt;p&gt;One can model all the resources in a text file and can always be used anywhere. When you make CloudFormation formats to oversee how AWS resources are designed and sent, you can convey different occurrences of similar resources momentarily utilizing only one layout.&lt;/p&gt;

&lt;p&gt;AWS CloudFormation is a powerful tool that makes infrastructure automation simple, designed the way you want it, and easy to use.&lt;/p&gt;

&lt;p&gt;Many popular companies use AWS CloudFormation to deploy and manage their resources. If you haven't learned it yet, you should start. Plus, its steep learning curve makes learning fun.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>aws</category>
      <category>cloudops</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How To Get Started With Open Source</title>
      <dc:creator>Caroline </dc:creator>
      <pubDate>Wed, 25 May 2022 19:03:43 +0000</pubDate>
      <link>https://community.ops.io/enilorac/how-to-get-started-with-open-source-ena</link>
      <guid>https://community.ops.io/enilorac/how-to-get-started-with-open-source-ena</guid>
      <description>&lt;p&gt;&lt;a href="https://community.ops.io/images/cXu2WFpExUyE3l-29RHEIaLaDVpqwoqDp-1H-3rU1Uo/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0ODg0/MDA2NjIvaV9jLVJQ/Z0VuLmpwZWc" class="article-body-image-wrapper"&gt;&lt;img src="https://community.ops.io/images/cXu2WFpExUyE3l-29RHEIaLaDVpqwoqDp-1H-3rU1Uo/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0ODg0/MDA2NjIvaV9jLVJQ/Z0VuLmpwZWc" alt="3A21F41B-C9CE-4749-B169-B9A051C650D7.jpeg" width="880" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is OpenSource?
&lt;/h2&gt;

&lt;p&gt;In general, it is a computer software that the developer distributes under a license that allows anyone and for any purpose to use, study, modify, and distribute the software and its source code. &lt;/p&gt;

&lt;p&gt;However, this article will not discuss the software. &lt;/p&gt;

&lt;p&gt;In this article I am going to look at opensource as a community. How you can contribute to it and mentoring others. &lt;/p&gt;

&lt;p&gt;Mentoring and assisting others is an integral part of opensource. You're distributing your ability to others so they can benefit from the knowledge you possess. &lt;/p&gt;

&lt;p&gt;To begin, let me state that I have struggled with imposter syndrome and have a constant sense of inadequacy. Additionally, I am a very solitary person. If an introvert had a scale, I would unquestionably be at the top. &lt;/p&gt;

&lt;p&gt;However, I discovered some interesting people via tech Twitter. And I've been loitering in their quarters. That is the most significant discovery I have made since I started learning programming languages. &lt;/p&gt;

&lt;p&gt;Their words have been instrumental in motivating me to continue. And in this article, I'll share their wisdom from a recent geek out session with you. &lt;/p&gt;

&lt;p&gt;Let's begin by dispelling a myth that prevents many newcomers from putting themselves out there and sharing with others. &lt;/p&gt;

&lt;h2&gt;
  
  
  Who Should Become an OpenSource Contributor?
&lt;/h2&gt;

&lt;p&gt;You should.&lt;/p&gt;

&lt;p&gt;As the name implies, it is open. It is open to all. &lt;/p&gt;

&lt;p&gt;Open-source communities are conceived with the express purpose of hearing your perspective and soliciting your input. That is a place where no one wishes to exclude you. &lt;/p&gt;

&lt;p&gt;The opensource communities exist to facilitate the exchange of novel ideas, conversations, and speakers. &lt;/p&gt;

&lt;p&gt;Whether you have one or a million followers, you have knowledge that can benefit someone somewhere, and keeping it to yourself is a disservice to the entire community. &lt;/p&gt;

&lt;h2&gt;
  
  
  When Is the Best Time to Start Contributing to OpenSource?
&lt;/h2&gt;

&lt;p&gt;There is no perfect moment to begin your contribution.&lt;/p&gt;

&lt;p&gt;If you're five days into your journey, you can assist someone who is in the same situation as you were a day ago. &lt;/p&gt;

&lt;p&gt;You have something you can give to another person. That single step you took today, someone else will take tomorrow, and they will undoubtedly be grateful to have someone holding their hand.&lt;/p&gt;

&lt;h2&gt;
  
  
  How To Mentor Another Person
&lt;/h2&gt;

&lt;p&gt;Begin by paying attention to what they are saying. &lt;/p&gt;

&lt;p&gt;Listening is critical. &lt;/p&gt;

&lt;p&gt;You cannot demonstrate your concern if you are not present. &lt;/p&gt;

&lt;p&gt;Keep a side-by-side relationship with your mentee. If someone approaches you for assistance and you say, "Google this, search for this," you're not providing the assistance they seek. &lt;/p&gt;

&lt;p&gt;Conduct research and provide a helpful response. &lt;/p&gt;

&lt;p&gt;You are not required to do so, but you should if you advertise yourself to be someone who actively assists others. &lt;/p&gt;

&lt;p&gt;If you cannot, then make no claim to be an educator or someone who teaches others. Because when individuals approach you in the manner in which you have positioned yourself, they are discouraged and hurt. They believe they are unworthy of your time, which is extremely painful for them. &lt;/p&gt;

&lt;p&gt;Believe this. I’ve been there. It is painful. &lt;/p&gt;

&lt;h2&gt;
  
  
  How Do You Create An Inclusive Space That Is Open To All?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://community.ops.io/images/Exh6eTJQmulTEcDaI23lQ2nq4eoNuvE-LG0xvjy2Rko/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTE3/MjU4OTUvNm9IOGJn/XzJkLnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.ops.io/images/Exh6eTJQmulTEcDaI23lQ2nq4eoNuvE-LG0xvjy2Rko/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTE3/MjU4OTUvNm9IOGJn/XzJkLnBuZw" alt="32C0C42E-4B6F-4DE8-AEAC-C2AF7D4B10C8.png" width="320" height="226"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You foster an inclusive environment by assisting and accommodating everyone, regardless of their strengths or weaknesses. It creates an atmosphere of comfort and welcome in the space. &lt;/p&gt;

&lt;p&gt;If someone is having difficulty grasping or is not progressing at the same rate as others, take the time to listen to their unique situation and provide them with the time they require. &lt;/p&gt;

&lt;p&gt;Don’t forget them behind and continue on with the others. &lt;/p&gt;

&lt;p&gt;I speak from personal experience. As a person with a learning disability. I am quite forgetful. &lt;/p&gt;

&lt;p&gt;This is critical if you wish to communicate with others. &lt;/p&gt;

&lt;p&gt;When people believe that if they approach you with their problems, you will attempt to assist them, they will always feel comfortable speaking with you.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Do You Become An Opensource Contributor?
&lt;/h2&gt;

&lt;p&gt;By joining communities and interacting with others who share the same interests as you.&lt;/p&gt;

&lt;p&gt;Join them all and if you don't like it or it doesn't fit, try another. &lt;/p&gt;

&lt;p&gt;Don't join and then lurk on the sidelines. Engage, because being a member of many communities is ineffective if you are not engaging. &lt;/p&gt;

&lt;p&gt;Expose yourself to scrutiny. You will not know if you are making progress if there is no one to inform you. And they have no way of knowing unless you show them what you're doing. &lt;/p&gt;

&lt;p&gt;And this is coming from someone who is an introvert with additional disadvantages, so I am fully aware of how difficult this is. However, as you can see, I'm exposing myself to criticism here. &lt;/p&gt;

&lt;p&gt;If I can do it, then you can as well. &lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;“Anyone who is just coming into the industry or in a junior position please use your voices.” Tanya&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;

&lt;p&gt;If you are a member of a minority group, you might want to look up minority-based communities to get some alternative perspectives and insights, as well as help that is channeled specifically for those groups. &lt;/p&gt;

&lt;p&gt;If you're from another country, you could look up local communities to connect with people in your immediate area. &lt;/p&gt;

&lt;p&gt;This is not to marginalize yourself, but to establish a network that is close by. &lt;/p&gt;

&lt;p&gt;An initiative to expand both internally and externally. &lt;/p&gt;

&lt;h2&gt;
  
  
  What Is The Advantage Of Helping Others?
&lt;/h2&gt;

&lt;p&gt;Assisting others also helps us learn new things. &lt;/p&gt;

&lt;p&gt;Occasionally, mentors do not possess all of the answers. Rather than snobbery or indifference, you can take steps independently to find an answer to that question. &lt;/p&gt;

&lt;p&gt;Yes, it may seem like a waste of time to go to the trouble of looking that up for them, but in the end, it is beneficial to you because you are also learning. &lt;/p&gt;

&lt;p&gt;Providing assistance to others is not a one-way street. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why You Should Share Information To The Public
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://community.ops.io/images/STTlbdnOFUaUWkvO1d73UF7fsMtq-4nyBPXkQfyZ_xg/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTE2/MjkxNTYvY21YV2pu/VDdXLmpwZWc" class="article-body-image-wrapper"&gt;&lt;img src="https://community.ops.io/images/STTlbdnOFUaUWkvO1d73UF7fsMtq-4nyBPXkQfyZ_xg/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTE2/MjkxNTYvY21YV2pu/VDdXLmpwZWc" alt="C28AB6C4-9803-44CC-8291-308D3E27B0A5.jpeg" width="320" height="256"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Someone is going to find value out of it. If it resonates with even one person, it is a success. &lt;/p&gt;

&lt;p&gt;Always make an effort to assist the person next to you. &lt;/p&gt;

&lt;p&gt;Dispense your knowledge about the things you've learned.&lt;/p&gt;

&lt;p&gt;Bear in mind that you do not have to change the entire world. You only need to make a difference in the life of one person. &lt;/p&gt;

&lt;h2&gt;
  
  
  When Should You Begin Mentoring Others?
&lt;/h2&gt;

&lt;p&gt;There is no defined start time. Begin whenever you feel at ease and have something you'd like to contribute back to the community.&lt;/p&gt;

&lt;p&gt;Create a blog post about a new skill you've acquired. Document how you built your first project. It will benefit both your juniors and the community. &lt;/p&gt;

&lt;p&gt;I am currently self-teaching myself how to program. I usually watch YouTube tutorials on how to do something before attempting to replicate it on my own. Then I practice daily until I am able to do it without referencing anything and by adding my own codes. &lt;/p&gt;

&lt;p&gt;Therefore, consider what would happen if those developers had not created those YouTube videos. I'm sure I'd still be saving for college to study Computer Programming! &lt;/p&gt;

&lt;p&gt;Therefore, share because it will benefit someone who will be in your position tomorrow. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Put your knowledge out there on the things you have learnt.” Saumya&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  How You Can Help Mentor Others
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Ask your questions in public
&lt;/h3&gt;

&lt;p&gt;Public forums and the public accounts of your mentors and role models are great places to start helping mentor fellow techies.&lt;/p&gt;

&lt;p&gt;The reason you should do this is because there are many more people out there who have the same question as you and they will benefit from you asking in public. &lt;/p&gt;

&lt;p&gt;Mentors answer the same questions every day, thus asking in public allows them to respond to a large number of other people who have the same query.&lt;/p&gt;

&lt;p&gt;Additionally, asking in public allows you to receive an answer more quickly than sending someone a private message.&lt;/p&gt;

&lt;p&gt;Most of your mentors probably have a large following, and receive a large number of direct messages. So it’s easy for them to miss your private messages.&lt;/p&gt;

&lt;p&gt;As a result, it may take time for you to receive feedback. Alternatively, your message may get buried in their DMs, and you may never receive the assistance you seek. &lt;/p&gt;

&lt;p&gt;As a result, always address your inquiries to their walls. If they do not respond, someone else with knowledge of the situation will. &lt;/p&gt;

&lt;h3&gt;
  
  
  Provide Responses to Questions You Are Aware of the Solutions
&lt;/h3&gt;

&lt;p&gt;If you see a question and you have an idea of the solution, don’t hesitate to help. &lt;/p&gt;

&lt;p&gt;That is how some of the mentors were made. &lt;/p&gt;

&lt;p&gt;By answering one question after another, people will see how helpful you are and will follow you since they will know you are willing to help.&lt;/p&gt;

&lt;p&gt;You can be a mentor to someone and not realize it. I have people on a private list on Twitter because I don't want their tweets to get lost in my timeline. So every time I open Twitter, I check that list first. &lt;/p&gt;

&lt;p&gt;So, ask or answer questions in public. You have no idea who you may be assisting.&lt;/p&gt;

&lt;p&gt;The blogs may also prove beneficial as a revision tool for you in the future. &lt;/p&gt;

&lt;p&gt;If you're just starting out, sharing will accelerate your learning process because you're not only consuming but also giving.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Imposter Syndrome: How to Overcome It
&lt;/h2&gt;

&lt;p&gt;If there is one thing that prevents the majority of us, including myself, from contributing to opensource, it is self-doubt. &lt;/p&gt;

&lt;p&gt;In our minds, there is a lingering sense of defeat and unworthiness.&lt;/p&gt;

&lt;p&gt;I've learned something about imposter syndrome that I'd like to share with you. &lt;/p&gt;

&lt;p&gt;It's quite interesting. &lt;/p&gt;

&lt;p&gt;Every senior developer you meet who oozes confidence and is free of self-doubt has struggled with it at some point in their career.&lt;/p&gt;

&lt;p&gt;Not only when they were first starting out, but also as established professionals in their field. &lt;/p&gt;

&lt;p&gt;There’s many new things coming up everyday. Nobody can claim to be an expert on everything related to technology. Technology advances at a gradual pace. What you use today will be superseded by an updated version tomorrow. &lt;/p&gt;

&lt;p&gt;Make no apprehensions about putting yourself out there. You are not a fool. What you know, the individual who is beginning does not. &lt;/p&gt;

&lt;p&gt;Write about the new knowledge you've gained in a blog, a vlog, or on a podcast, or in any other format you're comfortable with. If just one person reads it, or if it resonates with and supports them, it's a success. &lt;/p&gt;

&lt;p&gt;It's a win-win situation for both parties. &lt;/p&gt;

&lt;p&gt;If you teach something to someone, it will stick with you more. As a result, your personal development is aided. &lt;/p&gt;

&lt;p&gt;Remember contributing to OpenSource is a two way thing. You can support and be supported creating a supportive community.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Sharing helps us learn new things as well. People feel it’s an investment of time but it’s also investing in us.” Sohini&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I'll give an example with myself. This blog is a result of &lt;a href="https://twitter.com/eddiejaoude?s=21"&gt;Eddie Jaoude's&lt;/a&gt; twitter space on the same topic am writing about.&lt;/p&gt;

&lt;p&gt;The time it has taken me to write this blog has allowed the words spoken in that space to sink even deeper into my mind. &lt;/p&gt;

&lt;p&gt;I listened in on the day itself. I made no notes. Why? Because I did not want to be distracted. I have ADHD, if I divert my attention to something else, I risk forgetting everything. &lt;/p&gt;

&lt;p&gt;Later, while taking notes, I listened to the recording. I listened again just to be sure I have grasped it well, as my brain is notoriously forgetful. I frequently doubt whether I am doing the right thing. &lt;/p&gt;

&lt;p&gt;As a result of listening and crafting  points, writing them down and explaining them to you in this blog, I have retained them in my mind.&lt;/p&gt;

&lt;p&gt;If you can put it in your own words, then you've understood it.&lt;/p&gt;

&lt;p&gt;Thus, this is my contribution to the opensource community. I'm not yet a master at coding, but I am documenting my journey for you and me.&lt;/p&gt;

&lt;p&gt;Therefore, if it's an article, video, or podcast, publish it. If you look at it years, months, or weeks later and are embarrassed by it, you will know that you have made progress.&lt;/p&gt;

&lt;p&gt;You will be able to stand and declare to those just embarking on their journey, "Here is my proof! I began here. I was not flawless from the beginning.” &lt;/p&gt;

&lt;p&gt;Nobody begins perfectly. &lt;/p&gt;

&lt;p&gt;Thus, this is how you develop and improve. &lt;/p&gt;

&lt;p&gt;Please use your voices if you are new to the industry or in a junior position. Do not believe that because I lack x number of years of experience in technology, all I need to do is learn from others. You may also contribute. You have life experiences. Your life experience will always be beneficial in the field of technology. &lt;/p&gt;

&lt;p&gt;You were destined to be here. You are not an imposter. &lt;/p&gt;

&lt;p&gt;Take the initial step. Once you've taken that initial step, you're part of open-source community.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.ops.io/images/OB0V8vH_a2vGEuVZo4A8jfOL-UttH7CunnqvY43OYLY/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTMy/NTcxNDkvNC1vMW9n/cW5vLnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.ops.io/images/OB0V8vH_a2vGEuVZo4A8jfOL-UttH7CunnqvY43OYLY/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/aGFzaG5vZGUuY29t/L3Jlcy9oYXNobm9k/ZS9pbWFnZS91cGxv/YWQvdjE2NDg0OTMy/NTcxNDkvNC1vMW9n/cW5vLnBuZw" alt="894DA019-2444-4A83-8ACB-E3C950FAC46D.png" width="320" height="202"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Maintain a sense of reality
&lt;/h3&gt;

&lt;p&gt;The narrative that coding is simple is complete nonsense. This narrative is the primary reason why so many people fail and give up halfway through programming. &lt;/p&gt;

&lt;p&gt;If you keep telling people that coding is simple and that they can learn it in a few days, when they encounter a roadblock, they will conclude that they are not cut out for it.&lt;/p&gt;

&lt;p&gt;That is the entire purpose of mentors and role models. You are aware that if they can do it and continue to do so, then you can as well. &lt;/p&gt;

&lt;h3&gt;
  
  
  Be honest about your journey.
&lt;/h3&gt;

&lt;p&gt;Do not only demonstrate your successes. Tell people about your struggles too.&lt;/p&gt;

&lt;p&gt;Naturally, that is the way social media is programmed. To demonstrate the good. However, showing your authentic progress will assist someone starting with developing a sense of comfort with their approach to programming. &lt;/p&gt;

&lt;p&gt;It will help those considering a career in coding in developing a positive attitude towards their goals.&lt;/p&gt;

&lt;p&gt;Genuineness gives a positive effect. &lt;/p&gt;

&lt;p&gt;If you're blatantly clear with them and show them the ups and downs as well as the smooth sailing, they'll stick around when they hit that hard rock. Because they were prepared from the word go to and can face their mountains.&lt;/p&gt;

&lt;h2&gt;
  
  
  How To Give Effective Feedback
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Sandwich your response.
&lt;/h3&gt;

&lt;p&gt;If you're going to give someone criticism, do so in this order. &lt;br&gt;
Make a point of highlighting something truly remarkable about what they accomplished. &lt;br&gt;
Give the criticism and then compliment them on something else they did well. &lt;/p&gt;

&lt;p&gt;If you only approach them with a negative attitude, they will go into defensive mode, and you will eventually lose them. &lt;/p&gt;

&lt;p&gt;If someone approaches you about a piece of code or a solution, for example. If you begin by praising something they did well, then offer constructive criticism, and conclude by praising something else they did well, you send them positive vibes. &lt;/p&gt;

&lt;h3&gt;
  
  
  Open Ended Replies
&lt;/h3&gt;

&lt;p&gt;If you receive a question in the same scenario as above, here is another cordial response. &lt;/p&gt;

&lt;p&gt;allow them to speak and lay out their rationale for not being able to resolve it.&lt;/p&gt;

&lt;p&gt;Provide them with options and allow them to brainstorm using the various ideas you've presented. &lt;/p&gt;

&lt;p&gt;Once the brainstorming session is complete, you may ask follow-up questions. &lt;/p&gt;

&lt;p&gt;Which concept or solution did they choose? &lt;/p&gt;

&lt;p&gt;Why did they choose it or was it the correct decision? &lt;/p&gt;

&lt;p&gt;If you notice they're completely off track, you enter and offer some suggestions. &lt;/p&gt;

&lt;p&gt;This type of response aides them in resolving their issues. &lt;/p&gt;

&lt;p&gt;It's open ended in that they have the opportunity to weigh in on alternative solutions before settling on one, thereby learning new ways to approach the problem. &lt;/p&gt;

&lt;h3&gt;
  
  
  Do not be married to a single concept.
&lt;/h3&gt;

&lt;p&gt;Have you encountered them? &lt;/p&gt;

&lt;p&gt;Those who will not accept that your idea is good to simply demonstrate their superior knowledge. &lt;/p&gt;

&lt;p&gt;The funny thing I've discovered about these types of people is that they'll use your idea and sell it as their own days later. &lt;/p&gt;

&lt;p&gt;No citing of the original source. &lt;/p&gt;

&lt;p&gt;Consider feedback, conduct research, and remain adaptable and receptive to change. &lt;/p&gt;

&lt;h2&gt;
  
  
  What Are the Requirements to Become a Mentor and Contribute to OpenSource?
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Knowledge
&lt;/h3&gt;

&lt;p&gt;You cannot give what you lack. First, educate yourself, then assist. &lt;/p&gt;

&lt;h3&gt;
  
  
  Patience
&lt;/h3&gt;

&lt;p&gt;Individuals repeatedly ask the same questions. They'll still DM you with the same questions even if you post in public. Be patient. It is a virtue that will enable you to be in harmony with the community.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;h4&gt;
  
  
  What, then, can we learn from these technology gurus?
&lt;/h4&gt;

&lt;p&gt;Supporting the success of another developer will never, ever jeopardize your own." &lt;/p&gt;

&lt;p&gt;By showing your concern, you are uplifting developers of all skill levels. This in return has a profound effect on the entire community. &lt;/p&gt;

&lt;p&gt;If you have a problem, someone else does as well. Individuals are fearful of being perceived as fools. It is a necessary step in the process. The genius you see in technology is a buffoon in another field. &lt;/p&gt;

&lt;p&gt;It is perfectly acceptable for a beginner to seek external advice or assistance. While sharing your goals and dreams is acceptable, do not allow someone else's opinion to derail your momentum or progress. &lt;/p&gt;

&lt;p&gt;It is acceptable to admire and look up to others as role models. Simply avoid using it as an excuse to lose your focus and forget your skills. You're doing well right now. This is not a race, nor is it a sprint. This is technology. It is a case of one code at a time. &lt;/p&gt;

&lt;p&gt;Do not be afraid of failure. Failure teaches you something about yourself. Will create a more perfect version of you. Provide you with a new position in which to gain experience. &lt;/p&gt;

&lt;p&gt;It takes genuine courage to continue forward. &lt;/p&gt;

&lt;p&gt;It's exciting at first, but after a while, it becomes routine. Both inspiration and motivation have a shelf life. After the excitement subsides, your commitment takes over. &lt;/p&gt;

&lt;p&gt;Don’t allow the initial excitement to propel you into a pace that you cannot sustain. Attempting to compete in order to complete within a specified time frame. &lt;/p&gt;

&lt;p&gt;Burnout happens to everyone. Try to avoid it by resting both your mind and body. &lt;/p&gt;

&lt;p&gt;Your mental health matters.&lt;/p&gt;

&lt;p&gt;I’d like to say thank you to the panel that made the twitter space that made this blog possible. &lt;a href="https://twitter.com/eddiejaoude?s=21"&gt;Eddie Jaoude&lt;/a&gt;, &lt;a href="https://twitter.com/dthompsondev?s=21"&gt;Danny&lt;/a&gt;, &lt;a href="https://twitter.com/thesohini?s=21"&gt;Sohini&lt;/a&gt;, &lt;a href="https://twitter.com/goobric?s=21"&gt;Goobric&lt;/a&gt;, &lt;a href="https://twitter.com/saumya1singh?s=21"&gt;Saumya&lt;/a&gt;, &amp;amp; &lt;a href="https://twitter.com/heytanhey?s=21"&gt;Tanya&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://dev.to/codingcaro/open-source-how-to-get-involved-3f58"&gt;Reposted from Dev.to&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://ko-fi.com/G2G2BU75C"&gt;&lt;img src="https://community.ops.io/images/J51Yx4DfADfPpmOKoYVxqvncKT8mS6dX1XxiBTwgV-s/w:880/mb:500000/ar:1/aHR0cHM6Ly9jZG4u/a28tZmkuY29tL2Nk/bi9rb2ZpMS5wbmc_/dj0z" alt="Buy Me a Coffee at ko-fi.com" width="286" height="72"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>career</category>
      <category>productivity</category>
      <category>tutorials</category>
    </item>
  </channel>
</rss>
