<?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: Honey Bhardwaj</title>
    <description>The latest articles on Forem by Honey Bhardwaj (@honeybhardwaj).</description>
    <link>https://forem.com/honeybhardwaj</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%2F604648%2F4851694d-d4cf-463f-970c-e764f805fbb8.png</url>
      <title>Forem: Honey Bhardwaj</title>
      <link>https://forem.com/honeybhardwaj</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/honeybhardwaj"/>
    <language>en</language>
    <item>
      <title>Github 101</title>
      <dc:creator>Honey Bhardwaj</dc:creator>
      <pubDate>Tue, 25 May 2021 14:59:59 +0000</pubDate>
      <link>https://forem.com/honeybhardwaj/git-and-github-6na</link>
      <guid>https://forem.com/honeybhardwaj/git-and-github-6na</guid>
      <description>&lt;p&gt;In the last blog, I have shared the information about a general abstract knowledge of what opensource is and what we can do to contribute etc. For those who haven't read that blog can see it &lt;a href="https://dev.to/honeybhardwaj/introduction-to-opensource-24di"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Since that blog didn't had a knowledge about how to contribute or how to setup everything, I ll cover all that here in this particular blog. So this blog will cover all the necessary things required to start your very first contribution in open source project. &lt;/p&gt;

&lt;p&gt;note: This is a practical blog/tutorial so you can follow along and can get a practical overview about contributing in opensource.&lt;br&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  what is git and github?
&lt;/h1&gt;

&lt;p&gt;Git is distributed version control system used by software developers contributing on a single project or software. Basically it helps users to track down the different changes made to the software by different users.&lt;/p&gt;

&lt;p&gt;Github is a platform that provides hosting and version control for your code and anyone can colaborate on any project all over the world.&lt;br&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Getting started with Github
&lt;/h1&gt;

&lt;p&gt;The first and the primary step is setting up the environment for which you would be needed to download git in your system.You can download the git for your specific operating system form &lt;a href="https://git-scm.com/downloads" rel="noopener noreferrer"&gt;here&lt;/a&gt;. &lt;br&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%2Fojyu2xl47ldwyud8bunz.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%2Fojyu2xl47ldwyud8bunz.png" alt="download github" width="800" height="310"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;once you have successfully installed git in your system you can open your command prompt and type the following command to check.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git &lt;span class="nt"&gt;--version&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;after this you can go to &lt;a href="https://github.com/" rel="noopener noreferrer"&gt;Github's website&lt;/a&gt; and can create an account if you dont have. once you have an account on github with git installed in your pc, You are all set to go.&lt;/p&gt;

&lt;p&gt;Your account will look similar to something like this:&lt;br&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%2Ftu646cy7zxsif6207pqn.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%2Ftu646cy7zxsif6207pqn.png" alt="Alt Text" width="800" height="325"&gt;&lt;/a&gt;&lt;br&gt;
So there are certain steps you need to follow to start contributing on github:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Creating a Repository.&lt;/li&gt;
&lt;li&gt;Forking a Repository.&lt;/li&gt;
&lt;li&gt;Cloning  a Repository.&lt;/li&gt;
&lt;li&gt;Creating commits.&lt;/li&gt;
&lt;li&gt;Adding origin/Upstream.&lt;/li&gt;
&lt;li&gt;Pushing code to origin.&lt;/li&gt;
&lt;li&gt;Creating branch.&lt;/li&gt;
&lt;li&gt;Creating issues.&lt;/li&gt;
&lt;li&gt;Creating a pull request.&lt;/li&gt;
&lt;li&gt;Updating your contents of the repo.

&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
  
  
  Creating a Repository
&lt;/h3&gt;

&lt;p&gt;A repository is a single folder that contains the necessary files required for the project. we can say it as an alternative name for directory. For creating a repo you can see the top right corner of your window where you will have an option to create repository as shown in the fig. below:&lt;br&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%2Fcbp3bvnu8v4yreh2gs9h.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%2Fcbp3bvnu8v4yreh2gs9h.png" alt="Alt Text" width="800" height="377"&gt;&lt;/a&gt;&lt;br&gt;
once you have clicked you need to fill some information about the repo such as its name, if you want to include Readme file or not or include any files etc. &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%2Fdjot377vqklmxl5sb823.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%2Fdjot377vqklmxl5sb823.png" alt="Alt Text" width="746" height="632"&gt;&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Forking a Repository
&lt;/h3&gt;

&lt;p&gt;So whenever you want to contribute in some project of some other person on organization. The first step is to fork the Project that is creating a copy of files of that project for your github account. This needs to be done since you will be changing the files of the project and you don't want that it should affect the original project.&lt;br&gt;
You can locate the button to fork on the top right when you open a particular project as shown in image below:&lt;br&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%2Fwoftme7ym2b3ue3sv7nf.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%2Fwoftme7ym2b3ue3sv7nf.png" alt="Alt Text" width="800" height="275"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Cloning a Repository
&lt;/h3&gt;

&lt;p&gt;For setting up environment in your local pc the first need is downloading the files in your pc to run them. this process is known as clonning a repo . you can open your terminal and go to the follwing path where you want to clone files then do the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone &amp;lt;url of the repo&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;h3&gt;
  
  
  Creating Commits
&lt;/h3&gt;

&lt;p&gt;a commit is basically an event that enables you record the state of the project or save the changes. this is the operation that you performs all the time. there change that needs to be commited must be staged first. the commands of the following are:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add &amp;lt;filename&amp;gt;
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"type your message here"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;h3&gt;
  
  
  Adding origin and upstream
&lt;/h3&gt;

&lt;p&gt;once you have made the changes in the repo and you want to push it into the github account or any remote account . you will be needed to add origin or upstream for the particular project . since you had cloned your project so the origin of the project will be already set. to view that you can type the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git remote &lt;span class="nt"&gt;-v&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;if you dont see anything printed on your terminal then you need to add them. origin is the acronym used for your account from which you have to clone or the place where you need to push the code. upstream is the remote location from which the project have been forked. to add origin and upstream you can do the following commands:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git remote add origin &amp;lt;&lt;span class="nb"&gt;link &lt;/span&gt;of origin repo&amp;gt;
git remote add upstream &amp;lt;&lt;span class="nb"&gt;link &lt;/span&gt;of upstream repo&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;h3&gt;
  
  
  Pushing Code To Origin
&lt;/h3&gt;

&lt;p&gt;once you have done everything that was required to change in the local repositry you can update the content of the repo in github by pushing the code to github or uploading it. we can do so by following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git push origin main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will ask you for your userid and password of your github account.Here origin is the location where the files need to be pushed and main is the branch  which needs to be pushed.we will know about branch in the later section .&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Creating Branch
&lt;/h3&gt;

&lt;p&gt;Since You know that whenever we develop any software or project we do often create new features or fix a bug so we uses branches for that. It is basically a way to maintain the difference in original code with respect to new feature or a bug fix. For checking the existing branch in the project we can type the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git branch &lt;span class="nt"&gt;-a&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To create a new branch we can run the following command in the terminal&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git branch &amp;lt;name of new branch&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To checkout or change the current branch you can use the following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git checkout &amp;lt;name of branch&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It is a good practice to create a new branch for every issue created.&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Creating Issues
&lt;/h3&gt;

&lt;p&gt;Once you contribute in any opensource project there is a section in github for issues where you can create an issue. issue basically resembles the particular bug you found in the project or any enhancements for the project or if you need any help from anyone from the community.&lt;br&gt;
In an active project there must be many active issues created by members. if you like to work on any issue you can comment on that issue that you are interested to work on it. The project admin or maintainers will assign the issue to you, Then you can start working on it.&lt;br&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%2F0eimic68trvco5d4233e.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%2F0eimic68trvco5d4233e.png" alt="Alt Text" width="800" height="378"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Creating pull Request
&lt;/h3&gt;

&lt;p&gt;For getting the opinion about the contribution that you have made from the collaborators you needed to create a pull Request which describes the changes that you have made.some organizations also have some template or the format that one needs to follow while creating a pull request.&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Updating The Contents Of The Repo.
&lt;/h3&gt;

&lt;p&gt;In a system which is open to collaboration for a software from different person we often get the contents changed from the time when we cloned it or forked it so we need to keep on updating the contents of repository. so there are two ways in which you can achieve so:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;using git pull&lt;/li&gt;
&lt;li&gt;using rebase
In option 1, You can use the following command:
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git pull upstream main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;here upstream is the location from where you need to update the content and main is the branch which needs to be pulled.&lt;/p&gt;

&lt;p&gt;For option 2, you can use the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git remote update
git rebase origin/main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Rebase is kind of preferred as compared with pull since pull actually is a cobination of git fetch and git merge which actually merge the local changes along with the updates. there can be more explanation on this topic but currently just understand it like this.&lt;br&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Practical Session
&lt;/h1&gt;

&lt;p&gt;Follow the steps in order to create your first pull request.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to the this &lt;a href="https://github.com/Cypher-H/Git_Tutorial" rel="noopener noreferrer"&gt;link&lt;/a&gt; and fork the repository&lt;/li&gt;
&lt;li&gt;once You have Forked the Repo clone it into your local pc and keep in mind that you need to copy the url form the forked repo  and run the following command
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;Desktop
git clone https://github.com/&amp;lt;your username&amp;gt;/Git_Tutorial.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fwlomonccg5fxtkh46i8a.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%2Fwlomonccg5fxtkh46i8a.png" alt="Alt Text" width="800" height="337"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create an issue at &lt;a href="https://github.com/Cypher-H/Git_Tutorial/issues" rel="noopener noreferrer"&gt;here&lt;/a&gt;. you can give any title to your issue.&lt;/li&gt;
&lt;li&gt;Create a branch names "First_PR"
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git branch First_PR
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Create a file and write about yourself in that file.The text file should be named as "yourname.txt".windows users can create a text file and save it inside Git_Tutorial.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;Git_Tutorial
nano yourname.txt
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;then create a commit by the following command
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add yourname.txt
git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"file created"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Push the following code on github
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git push origin First_PR
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Create a pull request you will get a link in your command line or terminal.
That's ALL.congratulations you made your first PR!!..Do share Your feedback with me in comments.You can connect with me on

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.linkedin.com/in/honeybhardwaj/" rel="noopener noreferrer"&gt;linkedin&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/honeybhardwaj/" rel="noopener noreferrer"&gt;Github&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>opensource</category>
      <category>contribution</category>
    </item>
    <item>
      <title>Introduction to Opensource</title>
      <dc:creator>Honey Bhardwaj</dc:creator>
      <pubDate>Sat, 15 May 2021 13:26:51 +0000</pubDate>
      <link>https://forem.com/honeybhardwaj/introduction-to-opensource-24di</link>
      <guid>https://forem.com/honeybhardwaj/introduction-to-opensource-24di</guid>
      <description>&lt;p&gt;"  The power of Open Source is the power of the people.The People rule.                            ~Philippe Kahn "&lt;br&gt;
The term opensource is often referred to anything that is freely available to modify or innovate. There are alot of software and projects that termed opensource or in other words the souce code of those projects or software is freely available, They could either modify those or suggest any changes which they like. Some examples of opensource softwares that are very popular are VLC media player , Libra office , firefox and many more. The most fasinating thing about these opensource project is that these project are open for contribution i.e. anyone can devote their skills and effors in the development of the project.&lt;br&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Ways to Contribute in any opensource project
&lt;/h1&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;
There are alot of things that you could do to start your journey in open source.you can start contributing by :&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Creating your own opensource projects.&lt;/li&gt;
&lt;li&gt;Contributing to existing opensource project.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a beginner, there are certain prerequisites that one should have before starting to contribute such as&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You should be familiar with some programming language or 
some technology.&lt;/li&gt;
&lt;li&gt;basic knowledge of Git and Github.&lt;/li&gt;
&lt;li&gt;Fundamentals should be clear for your skill.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once you know everything mentioned above you are ready to go.It is not necessary that one should know programming language since opensource is something that is open to everyone irrespective of whether the person belongs from a technical background or not. You could start with creating some issues, contributing to documentation of project, managing the analysis tools for project, you can also create banners and images for the project or some logo. So in short every skill is welcomed in opensource.&lt;br&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Why to Contribute to opensource softwares
&lt;/h1&gt;

&lt;p&gt;There are many reasons for contributing to open source softwares some of which are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The ability to understand code and write maintainable clean 
codes.&lt;/li&gt;
&lt;li&gt;Opportunity to work in a community of like minded people 
from all over the world.&lt;/li&gt;
&lt;li&gt;High learning curve through the ability to apply what you 
have learned on realtime projects.&lt;/li&gt;
&lt;li&gt;Recognition of work that you have done in the project.&lt;/li&gt;
&lt;li&gt;The Ability to work remotely in an organization.&lt;/li&gt;
&lt;li&gt;Helps to maintain a network among the community.
&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%2Fudqsmya7wncdo4t7ju4p.jpeg" alt="meme" width="682" height="366"&gt;

&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  OpenSource Events
&lt;/h1&gt;

&lt;p&gt;There are alot of beginner friendly and intermediate events that help you to gain some comfort with opensource development.They would help you to gain the necessary skills.&lt;br&gt;
some of which are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Girlscript summer of code&lt;/li&gt;
&lt;li&gt;Hacktoberfest&lt;/li&gt;
&lt;li&gt;Google summer of code&lt;/li&gt;
&lt;li&gt;Google summer of Docs&lt;/li&gt;
&lt;li&gt;Fossasia codeheat&lt;/li&gt;
&lt;li&gt;24 pull request&lt;/li&gt;
&lt;li&gt;script winter of code

Do share Your feedback with me in comments.You can connect with me on
&lt;a href="https://www.linkedin.com/in/honeybhardwaj/" rel="noopener noreferrer"&gt;linkedin&lt;/a&gt;
&lt;a href="https://github.com/honeybhardwaj/" rel="noopener noreferrer"&gt;Github&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>git</category>
    </item>
  </channel>
</rss>
