<?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: Web</title>
    <description>The latest articles on Forem by Web (@web).</description>
    <link>https://forem.com/web</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%2Forganization%2Fprofile_image%2F2276%2F3762777d-e0db-4586-887c-b719f20e746e.gif</url>
      <title>Forem: Web</title>
      <link>https://forem.com/web</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/web"/>
    <language>en</language>
    <item>
      <title>Customize npm init default values</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 01 Mar 2021 12:14:36 +0000</pubDate>
      <link>https://forem.com/web/customize-npm-init-default-values-2j52</link>
      <guid>https://forem.com/web/customize-npm-init-default-values-2j52</guid>
      <description>&lt;p&gt;&lt;code&gt;npm init&lt;/code&gt; is a first process of any new node project and we all have to setup author, version and license manually, This tutorial help you to config those things globally .&lt;/p&gt;

&lt;p&gt;This is default &lt;code&gt;npm init -y&lt;/code&gt; result value&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%2Fnd61av2otpk9fp05apa9.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%2Fnd61av2otpk9fp05apa9.png" alt="carbon-before.png" width="800" height="353"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;for chang default value of npm init command you need to follow this Synopsis&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set &amp;lt;key&amp;gt;=&amp;lt;value&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Change global author name by&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set init-author-name "vimal kumar"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Change global author email by&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set init-author-email "vimal@letskhabar.com"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Change global author web url by&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set init-author-url "https://vimal.letskhabar.com/"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Change global default license&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set init-license "MIT"

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

&lt;/div&gt;



&lt;p&gt;Change global default version&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm config set init-version "0.0.1"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For more check this &lt;a href="https://docs.npmjs.com/cli/v6/commands/npm-config" rel="noopener noreferrer"&gt;npm documentation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All the change has been saved in your &lt;code&gt;~/.npmrc&lt;/code&gt; directory as shown in image below&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%2Fesmaikuqpqo7sjlrlgs1.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%2Fesmaikuqpqo7sjlrlgs1.png" alt="npmrc.png" width="800" height="251"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now when you create new project with &lt;code&gt;npm init -y&lt;/code&gt; you can see your default value has been changed according to your setup.&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%2F33vbc2jeu6p8u5wqwsak.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%2F33vbc2jeu6p8u5wqwsak.png" alt="carbon-after.png" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enjoy, Thanks for reading.&lt;/p&gt;

</description>
      <category>node</category>
      <category>npm</category>
      <category>programming</category>
    </item>
    <item>
      <title>svghero: Javascript package for hero effect in SVG</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Sun, 22 Nov 2020 06:59:13 +0000</pubDate>
      <link>https://forem.com/web/svghero-javascript-package-for-hero-effect-in-svg-47l3</link>
      <guid>https://forem.com/web/svghero-javascript-package-for-hero-effect-in-svg-47l3</guid>
      <description>&lt;h3&gt;
  
  
  you can get that effect by one line of code &lt;code&gt;svghero(id,title,text,width,height,x,y,scale)&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=n69Xqy9Q5kk" rel="noopener noreferrer"&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%2Fi%2Fza2fmp2khp1tn450c8yv.gif" alt="Alt Text" width="440" height="276"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Video links - &lt;a href="https://www.youtube.com/watch?v=n69Xqy9Q5kk" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=n69Xqy9Q5kk&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  How to use this
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Copy and paste this code in body section of html.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;      &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"stylesheet"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://cdn.jsdelivr.net/npm/svghero@0.2.0/example/style.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://cdn.jsdelivr.net/npm/svghero@0.2.0/cdn.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ul&gt;
&lt;li&gt;in &lt;code&gt;script&lt;/code&gt; tag or in js file add &lt;code&gt;svghero(id,title,text,width,height,x,y,scale)&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;where &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;id = svg group id or id of elements that want to show in details page (string)&lt;/li&gt;
&lt;li&gt;title = title that show in details page (string)&lt;/li&gt;
&lt;li&gt;text = text that show in details page (string)&lt;/li&gt;
&lt;li&gt;width = width of new svg that show in details page (number)&lt;/li&gt;
&lt;li&gt;height = height of new svg that show in details page (number)&lt;/li&gt;
&lt;li&gt;x = relative position of svg in details page (number)&lt;/li&gt;
&lt;li&gt;y = relative position of svg in details page (number)&lt;/li&gt;
&lt;li&gt;scale = relative scale of svg in details page (number)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;example &lt;code&gt;svghero("id","title","this is text",800,400,-100,50,2)&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;And it's Done 🎉&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Documentation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/vimalverma558/svghero" rel="noopener noreferrer"&gt;Getting Started&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://svghero.netlify.app/example/" rel="noopener noreferrer"&gt;Examples&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/vimalverma558/svghero" rel="noopener noreferrer"&gt;Overview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;History&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/n69Xqy9Q5kk"&gt;
&lt;/iframe&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/vimal-verma" rel="noopener noreferrer"&gt;
        vimal-verma
      &lt;/a&gt; / &lt;a href="https://github.com/vimal-verma/svghero" rel="noopener noreferrer"&gt;
        svghero
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      svghero: Javascript package for hero effect in SVG
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;svghero: Javascript package for hero effect in SVG&lt;/h1&gt;
&lt;/div&gt;

&lt;p&gt;&lt;a href="https://www.npmjs.com/package/svghero" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/86047fb50d1922dd08692d88b6152c9cf5a0c17b1fdc39d9d11adfe6a0afedd1/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f7376676865726f" alt="Version"&gt;&lt;/a&gt;
&lt;a href="https://www.npmjs.com/package/svghero" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/40a59c700ea9235c2cd5cd4b3d75169c57858d32e614f8dbd216122a88a76146/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f6c2f7376676865726f" alt="license"&gt;&lt;/a&gt;
&lt;a href="https://www.npmjs.com/package/svghero" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/2217be36e8a5c83e5c9d7cd5a65ea9fcc6c067c17b0eb516a9cfec68e24f5cf7/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f64772f7376676865726f" alt="download"&gt;&lt;/a&gt;
&lt;a href="https://www.npmjs.com/package/svghero" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/d6055cc78f12b848b3522bb3224b0bde0b82dd911ebbc5db7c3de1fa93302822/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f64742f7376676865726f" alt="download"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/svghero/fork" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e978fb79a94b5742f8992383605176a7b050b76dd1fd0bb7c76ade828935009a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f76696d616c7665726d613535382f7376676865726f3f6c6162656c3d666f726b267374796c653d736f6369616c" alt="Fork"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/svghero/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7873cdfdff12f8ca2c8c67861a300f501244eda507f2c88947cb4ea98c2674a0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f76696d616c7665726d613535382f7376676865726f3f7374796c653d736f6369616c" alt="Star"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/svghero/watchers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7e9692a5e47983bc60babdca26f5d73e5ced36a8f9af1c2c457de48fffc2baff/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f77617463686572732f76696d616c7665726d613535382f7376676865726f3f7374796c653d736f6369616c" alt="watch"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=n69Xqy9Q5kk" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/781b8a0ff14c94a3fac1052992141e5b248a4fc200eecf787da4b2816ea7095c/68747470733a2f2f6465762d746f2d75706c6f6164732e73332e616d617a6f6e6177732e636f6d2f692f7a6132666d70326b687031746e343530633879762e676966" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Video links - &lt;a href="https://www.youtube.com/watch?v=n69Xqy9Q5kk" rel="nofollow noopener noreferrer"&gt;https://www.youtube.com/watch?v=n69Xqy9Q5kk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;you can get that effect by one line of code &lt;code&gt;svghero(id,title,text,width,height,x,y,scale)&lt;/code&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;How to use this&lt;/h3&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Copy and paste this code in body section of html.&lt;/p&gt;
&lt;div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;    &lt;span class="pl-kos"&gt;&amp;lt;&lt;/span&gt;&lt;span class="pl-ent"&gt;link&lt;/span&gt; &lt;span class="pl-c1"&gt;rel&lt;/span&gt;="&lt;span class="pl-s"&gt;stylesheet&lt;/span&gt;" &lt;span class="pl-c1"&gt;href&lt;/span&gt;="&lt;span class="pl-s"&gt;https://cdn.jsdelivr.net/npm/svghero@0.2.0/example/style.css&lt;/span&gt;"&lt;span class="pl-kos"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="pl-kos"&gt;&amp;lt;&lt;/span&gt;&lt;span class="pl-ent"&gt;script&lt;/span&gt; &lt;span class="pl-c1"&gt;src&lt;/span&gt;="&lt;span class="pl-s"&gt;https://cdn.jsdelivr.net/npm/svghero@0.2.0/cdn.js&lt;/span&gt;"&lt;span class="pl-kos"&gt;&amp;gt;&lt;/span&gt;&lt;span class="pl-kos"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="pl-ent"&gt;script&lt;/span&gt;&lt;span class="pl-kos"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;in &lt;code&gt;script&lt;/code&gt; tag or in js file add &lt;code&gt;svghero(id,title,text,width,height,x,y,scale)&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;where&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;id = svg group id or id of elements that want to show in details page (string)&lt;/li&gt;
&lt;li&gt;title = title that show in details page (string)&lt;/li&gt;
&lt;li&gt;text = text that show in details page (string)&lt;/li&gt;
&lt;li&gt;width = width of new svg that show in details page (number)&lt;/li&gt;
&lt;li&gt;height = height of new svg that show in details page (number)&lt;/li&gt;
&lt;li&gt;x = relative position of svg in details page (number)&lt;/li&gt;
&lt;li&gt;y = relative position of svg in details page (number)&lt;/li&gt;
&lt;li&gt;scale = relative…&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/vimal-verma/svghero" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


</description>
      <category>opensource</category>
      <category>javascript</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>Master-Portfolio V2 what's new</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 09 Nov 2020 13:31:27 +0000</pubDate>
      <link>https://forem.com/web/master-portfolio-v2-what-s-new-23df</link>
      <guid>https://forem.com/web/master-portfolio-v2-what-s-new-23df</guid>
      <description>&lt;h2&gt;
  
  
  Master-Portfolio V2 what's new
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;More customizable&lt;/li&gt;
&lt;li&gt;Fetch your Devto articles in your Portfolio #website&lt;/li&gt;
&lt;li&gt;List your all #projects&lt;/li&gt;
&lt;li&gt;List your all Achievement and Certificate&lt;/li&gt;
&lt;li&gt;Separate section for #programming , #developments , #designing , #cloudengineering , #datascience , #machinelearning &amp;amp; #artificialintelligence , #robotics
and #gamedevelopment in Home page&lt;/li&gt;
&lt;li&gt;You can customizable Tools in each section&lt;/li&gt;
&lt;li&gt;More attractive #design&lt;/li&gt;
&lt;li&gt;Colourful tools icons&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%2Fi%2F9ae9yumdmjybqgcz1c8e.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%2Fi%2F9ae9yumdmjybqgcz1c8e.png" alt="Master-Portfolio" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check comments section for links&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>github</category>
      <category>webdev</category>
      <category>portfolio</category>
    </item>
    <item>
      <title>Master-Portfolio :First release</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 19 Oct 2020 06:19:33 +0000</pubDate>
      <link>https://forem.com/web/master-portfolio-first-release-2mbe</link>
      <guid>https://forem.com/web/master-portfolio-first-release-2mbe</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&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%2Fi%2Fytu0u25atwdn7vvpvy58.png" alt="Master-Portfolio" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://repl.it/github/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Frepl.it%2Fbadge%2Fgithub%2Fvimalverma558%2FMaster-Portfolio" alt="Run on Repl.it" width="134" height="36"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Master-Portfolio
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/li&gt;
&lt;li&gt;The website is completely built on &lt;code&gt;react-js&lt;/code&gt; framework of &lt;code&gt;javascript&lt;/code&gt;🔥.&lt;/li&gt;
&lt;li&gt;In this project, there are basically Personal Information that you need to change to customize this to anyone else's portfolio&lt;/li&gt;
&lt;li&gt;You will find &lt;code&gt;src/Name.js&lt;/code&gt; file which contains the complete information about the user. The file looks something like below &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;-&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;``` 
const greeting = {
    title: "Your Name",
    logo_name: "Name",
    subTitle:
    "subTitle.",
};
const socialMedia = {
    facebook: "Your facebook link",
    twitter: "Your twitter link",
    instagram: "Your instagram link",
    github: "Your github link",
    gitlab: "Your gitlab link",
    devto: "Your devto link",
    mailto: "mailto:Your mail"
};
const about = {
    School: "Your School Name",
    College: "Your College Name",
    university: "Your university Name",
    Home: "Your Home city"
};
const projects = [
{
    id: "1",
    name: "project 1",
    Description: "this is Description",
    Code_Link: "this is code link",
    Live_link: "this is Live link",
    tool_used: "html,css,js",
    img: "https://master-portfolio.js.org/src/assets/img/mplogo.png"
},
.........
]
```
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;a href="https://vima.netlify.app/" rel="noopener noreferrer"&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%2Fi%2Fhhtwref17hjbh8rq0378.png" alt="Master-Portfolio" width="800" height="530"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://vima.netlify.app/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fwebsite%3Fstyle%3Dfor-the-badge%26up_message%3DDemo%26url%3Dhttps%253A%252F%252Fvima.netlify.app%252F" alt="Website" width="140" height="28"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1&gt;
  
  
  You can Customize it to make your own portfolio by Three Method ✏️
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Using Template&lt;/li&gt;
&lt;li&gt;Using Netlify deploy&lt;/li&gt;
&lt;li&gt;Using Vercel deploy&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%2Fi%2F8tl0uivicsp1nsaab8o4.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%2Fi%2F8tl0uivicsp1nsaab8o4.png" alt="Alt Text" width="800" height="131"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Using Template
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Click on Use this template&lt;/li&gt;
&lt;li&gt;clone &lt;code&gt;git clone https://github.com/{your github username}/{repository name}&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;To download required dependencies to your system, navigate to the directory where the cloned repository resides and execute following command: &lt;code&gt;npm install&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;change "homepage " to &lt;code&gt;https://{your github username}.github.io/{repository name}&lt;/code&gt; in &lt;code&gt;package.json&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;You can check it using &lt;code&gt;npm start&lt;/code&gt;, it will open the website locally on your browser.&lt;/li&gt;
&lt;li&gt;Commit change and push.&lt;/li&gt;
&lt;li&gt;Once you are done with your setup and have successfully completed all steps above, &lt;/li&gt;
&lt;li&gt;Now you have to deploy that portfolio website

&lt;ul&gt;
&lt;li&gt;You can use Netlify, Vercel &amp;amp; gh-pages&lt;/li&gt;
&lt;li&gt;To deploy by gh-pages&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;npm run deploy&lt;/code&gt; to build and create a branch called &lt;code&gt;gh-pages&lt;/code&gt;. It will push the build files to that branch.&lt;/li&gt;
&lt;li&gt; 🎉 Your Portfolio website is ready.🥳 And live at &lt;code&gt;https://{your github username}.github.io/{repository name}&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Using Netlify deploy
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://app.netlify.com/start/deploy?repository=https://github.com/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.netlify.com%2Fimg%2Fdeploy%2Fbutton.svg" alt="Deploy to Netlify" width="179" height="32"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on Deploy button ☝️&lt;/li&gt;
&lt;li&gt;
Click on connect to Github
&lt;img alt="m1" 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%2Fi%2Fdoiuwyqpj2cjfl0oldnb.png" width="800" height="634"&gt;
&lt;/li&gt;
&lt;li&gt;
Click on Authorize netlify
&lt;img alt="m2" 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%2Fi%2Fb4hzjalos23mb3wdb8g9.png" width="800" height="581"&gt;
&lt;/li&gt;
&lt;li&gt;
Chose a github repository name and click on Save and Deploy
&lt;img alt="m3" 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%2Fi%2Fyhrj0wem8z7vmdm62k7f.png" width="800" height="453"&gt;
&lt;/li&gt;
&lt;li&gt;
Your portfolio website is live 🚀
&lt;img alt="m4" 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%2Fi%2F34ic64hnleg8m1i10tqe.png" width="800" height="421"&gt;
 &lt;/li&gt;
&lt;li&gt;Those step ☝️ create a repository in your github account, go to that repository&lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Commit change and push 🎉 Your Portfolio website is ready.🥳&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Using Vercel deploy
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fvimalverma558%2FMaster-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fvercel.com%2Fbutton" alt="Deploy with Vercel" width="103" height="32"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on Deploy button ☝️&lt;/li&gt;
&lt;li&gt;
Type a Project name and click on continue
&lt;img alt="m1" 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%2Fi%2Fet8nymoy08ea4aensgc5.png" width="768" height="571"&gt;
&lt;/li&gt;
&lt;li&gt;
Install Vercel for Github(If not already) 
&lt;img alt="m2" 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%2Fi%2Fblk95d3ct24htbxyjlhq.png" width="800" height="585"&gt;
&lt;/li&gt;
&lt;li&gt;
Chose a github repository name and click on continue
&lt;img alt="m3" 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%2Fi%2Ffodei482ko1xnu7wodeq.png" width="800" height="622"&gt;
&lt;/li&gt;
&lt;li&gt;
Verify Framework preset is Create React App and Click on Deploy
&lt;img alt="m4" 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%2Fi%2Fyu2me8cuy6c7qianvwcw.png" width="800" height="627"&gt;
 &lt;/li&gt;
&lt;li&gt;
Your portfolio website is live 🚀
&lt;img alt="m4" 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%2Fi%2Feujvs4iobjsfrya5xljv.png" width="800" height="434"&gt;
 &lt;/li&gt;
&lt;li&gt;Those step ☝️ create a repository in your github account, go to that repository&lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Commit change and push 🎉 Your Portfolio website is ready.🥳&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/vimal-verma" rel="noopener noreferrer"&gt;
        vimal-verma
      &lt;/a&gt; / &lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;
        Master-Portfolio
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A clean, beautiful, responsive and 100% customizable portfolio template for Developers!
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fvimal-verma%2FMaster-Portfolio%2Fsrc%2Fassets%2Fimg%2Fmplogo.png" alt="Master-Portfolio"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://app.netlify.com/sites/vima/deploys" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7201573c26557a76a5102607dffd5a06a2f9062ad6d28bac0a044d18e09d605c/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f66663933383134622d616461362d346166612d393035352d3262333530343365623336632f6465706c6f792d737461747573" alt="Netlify Status"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimal-verma/Master-Portfolio/network/members" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/5d65d77fca035c7e3fa3dbfa1fe0bf0357180af05da0540e9f5c9ed72e543a63/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f76696d616c7665726d613535382f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub forks"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/4ef31ae1828583a4477fc22f65b0bf6cef001384971ad8ba4f86f38085b1e09d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub Repo stars"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/blob/master/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/884a203aa99709c9c0bdda734d0122cf7ae29d074f4d8b77ccd6cc7b71092566/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub top language"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub repo size"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/issues" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e606ce6bc31f444e81b46774d28520b9e96dc9c249c5344cc2240c4dd27df0c4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub issues"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/23ca5b37d2ef420c7901077b48757411651cc2185b10dee92c6b69cd58deb7ff/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f75726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374"&gt;&lt;img src="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573"&gt;&lt;img src="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub commit activity"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub contributors"&gt;&lt;/a&gt;
&lt;a href="https://repl.it/github/vimalverma558/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/cc80f6560126c40f7c33dc7b81fd27669f34bc4117b97cf7ee4414f79701c025/68747470733a2f2f7265706c2e69742f62616467652f6769746875622f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f" alt="Run on Repl.it"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://gitpod.io/#https://github.com/vimal-verma/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/6a4edb76a7e92e0faad09a11e42cba7c39803ee6723f8cb1b801f91113d59695/68747470733a2f2f676974706f642e696f2f627574746f6e2f6f70656e2d696e2d676974706f642e737667" alt="Open in Gitpod"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/992f039b65b0680b8a9697ae5363aad797d2774ea2dc674a2fec36f5293501e2/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d44656d6f2675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a href="https://dev.letskhabar.com/post/master-portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/f1009b603191ffeba1f87ca537c1745e9134a19bea1d306bf198289af56a8c10/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d426c6f672675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Master-Portfolio&lt;/h1&gt;
&lt;/div&gt;


&lt;ul&gt;

&lt;li&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/li&gt;

&lt;li&gt;It can List your all Projects &amp;amp; Certificate&lt;/li&gt;

&lt;li&gt;it can Also list your All Dev.to articles Using Api (if you have set &lt;code&gt;BlogData.show_Blog: true&lt;/code&gt; in &lt;code&gt;src/Name.js&lt;/code&gt;)&lt;/li&gt;

&lt;li&gt;The website is completely built on &lt;code&gt;react-js&lt;/code&gt; framework of &lt;code&gt;javascript&lt;/code&gt;🔥.&lt;/li&gt;

&lt;li&gt;In this project, there are basically Personal Information that you need to change to customize this to anyone else's portfolio&lt;/li&gt;

&lt;li&gt;You will find &lt;code&gt;src/Name.js&lt;/code&gt; file which contains the complete information about the user. The file looks something like below&lt;/li&gt;

&lt;li&gt;

&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;
&lt;pre class="notranslate"&gt;&lt;code&gt;const greeting = {
    title: "Hi, I'm Your Name"
    logo_name: "Name",
    logo_img_show: false, // if true than show image(logo) in home page instant of text(logo)
    logo_img: "https://master-portfolio.js.org/src/assets/img/mplogo.png",
    full_name: "your name",
    email: "email id",
    subTitle:
    "I'm a student pursuing {Course} in {department} from {university}. I'm a passionate learner who's always willing to learn and work across technologies and domains. I love to&lt;/code&gt;&lt;/pre&gt;…&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;



&lt;p&gt;You can resolve any open issues or add some exciting features to this repository!!!&lt;br&gt;
Thanks&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>react</category>
      <category>news</category>
      <category>hacktoberfest</category>
    </item>
    <item>
      <title>Master-Portfolio :Create a Portfolio Website in Minutes</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 12 Oct 2020 02:50:52 +0000</pubDate>
      <link>https://forem.com/web/master-portfolio-create-a-portfolio-website-in-minutes-34mo</link>
      <guid>https://forem.com/web/master-portfolio-create-a-portfolio-website-in-minutes-34mo</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&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%2Fi%2Fytu0u25atwdn7vvpvy58.png" alt="Master-Portfolio" width="800" height="423"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://repl.it/github/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Frepl.it%2Fbadge%2Fgithub%2Fvimalverma558%2FMaster-Portfolio" alt="Run on Repl.it" width="134" height="36"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Master-Portfolio
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/li&gt;
&lt;li&gt;The website is completely built on &lt;code&gt;react-js&lt;/code&gt; framework of &lt;code&gt;javascript&lt;/code&gt;🔥.&lt;/li&gt;
&lt;li&gt;In this project, there are basically Personal Information that you need to change to customize this to anyone else's portfolio&lt;/li&gt;
&lt;li&gt;You will find &lt;code&gt;src/Name.js&lt;/code&gt; file which contains the complete information about the user. The file looks something like below &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;-&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;``` 
const greeting = {
    title: "Your Name",
    logo_name: "Name",
    subTitle:
    "subTitle.",
};
const socialMedia = {
    facebook: "Your facebook link",
    twitter: "Your twitter link",
    instagram: "Your instagram link",
    github: "Your github link",
    gitlab: "Your gitlab link",
    devto: "Your devto link",
    mailto: "mailto:Your mail"
};
const about = {
    School: "Your School Name",
    College: "Your College Name",
    university: "Your university Name",
    Home: "Your Home city"
};
const projects = [
{
    id: "1",
    name: "project 1",
    Description: "this is Description",
    Code_Link: "this is code link",
    Live_link: "this is Live link",
    tool_used: "html,css,js"
},
.........
]
```
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;a href="https://vima.netlify.app/" rel="noopener noreferrer"&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%2Fi%2Fhhtwref17hjbh8rq0378.png" alt="Master-Portfolio" width="800" height="530"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://vima.netlify.app/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fwebsite%3Fstyle%3Dfor-the-badge%26up_message%3DDemo%26url%3Dhttps%253A%252F%252Fvima.netlify.app%252F" alt="Website" width="140" height="28"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1&gt;
  
  
  You can Customize it to make your own portfolio by Three Method ✏️
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Using Netfify deploy&lt;/li&gt;
&lt;li&gt;Using Vercel deploy&lt;/li&gt;
&lt;li&gt;Using gh-pages&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Using Netlify deploy
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://app.netlify.com/start/deploy?repository=https://github.com/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.netlify.com%2Fimg%2Fdeploy%2Fbutton.svg" alt="Deploy to Netlify" width="179" height="32"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on Deploy button ☝️&lt;/li&gt;
&lt;li&gt;
Click on connect to Github
&lt;img alt="m1" 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%2Fi%2Fdoiuwyqpj2cjfl0oldnb.png" width="800" height="634"&gt;
&lt;/li&gt;
&lt;li&gt;
Click on Authorize netlify
&lt;img alt="m2" 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%2Fi%2Fb4hzjalos23mb3wdb8g9.png" width="800" height="581"&gt;
&lt;/li&gt;
&lt;li&gt;
Chose a github repository name and click on Save and Deploy
&lt;img alt="m3" 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%2Fi%2Fyhrj0wem8z7vmdm62k7f.png" width="800" height="453"&gt;
&lt;/li&gt;
&lt;li&gt;
Your portfolio website is live 🚀
&lt;img alt="m4" 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%2Fi%2F34ic64hnleg8m1i10tqe.png" width="800" height="421"&gt;
 &lt;/li&gt;
&lt;li&gt;Those step ☝️ create a repository in your github account, go to that repository&lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Commit change and push 🎉 Your Portfolio website is ready.🥳&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Using Vercel deploy
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fvimalverma558%2FMaster-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fvercel.com%2Fbutton" alt="Deploy with Vercel" width="103" height="32"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Click on Deploy button ☝️&lt;/li&gt;
&lt;li&gt;
Type a Project name and click on continue
&lt;img alt="m1" 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%2Fi%2Fet8nymoy08ea4aensgc5.png" width="768" height="571"&gt;
&lt;/li&gt;
&lt;li&gt;
Install Vercel for Github(If not already) 
&lt;img alt="m2" 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%2Fi%2Fblk95d3ct24htbxyjlhq.png" width="800" height="585"&gt;
&lt;/li&gt;
&lt;li&gt;
Chose a github repository name and click on continue
&lt;img alt="m3" 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%2Fi%2Ffodei482ko1xnu7wodeq.png" width="800" height="622"&gt;
&lt;/li&gt;
&lt;li&gt;
Verify Framework preset is Create React App and Click on Deploy
&lt;img alt="m4" 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%2Fi%2Fyu2me8cuy6c7qianvwcw.png" width="800" height="627"&gt;
 &lt;/li&gt;
&lt;li&gt;
Your portfolio website is live 🚀
&lt;img alt="m4" 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%2Fi%2Feujvs4iobjsfrya5xljv.png" width="800" height="434"&gt;
 &lt;/li&gt;
&lt;li&gt;Those step ☝️ create a repository in your github account, go to that repository&lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Commit change and push 🎉 Your Portfolio website is ready.🥳&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Using gh-pages
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Fork or import &lt;a href="https://github.com/vimalverma558/Master-Portfolio" rel="noopener noreferrer"&gt;this repository&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;clone &lt;code&gt;git clone https://github.com/&amp;lt;your-github-username&amp;gt;/Master-Portfolio&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;To download required dependencies to your system, navigate to the directory where the cloned repository resides and execute following command: &lt;code&gt;npm install&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;change "homepage " to &lt;code&gt;https://&amp;lt;your-github-username&amp;gt;.github.io/Master-Portfolio&lt;/code&gt; in &lt;code&gt;package.json&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Edit &lt;code&gt;src/Name.js&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;You can check it using &lt;code&gt;npm start&lt;/code&gt;, it will open the website locally on your browser.&lt;/li&gt;
&lt;li&gt;Commit change and push.&lt;/li&gt;
&lt;li&gt;Once you are done with your setup and have successfully completed all steps above, &lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;npm run deploy&lt;/code&gt; to build and create a branch called &lt;code&gt;gh-pages&lt;/code&gt;. It will push the build files to that branch.&lt;/li&gt;
&lt;li&gt; 🎉 Your Portfolio website is ready.🥳 And live at &lt;code&gt;https://&amp;lt;your-github-username&amp;gt;.github.io/Master-Portfolio&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/vimal-verma" rel="noopener noreferrer"&gt;
        vimal-verma
      &lt;/a&gt; / &lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;
        Master-Portfolio
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A clean, beautiful, responsive and 100% customizable portfolio template for Developers!
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fvimal-verma%2FMaster-Portfolio%2Fsrc%2Fassets%2Fimg%2Fmplogo.png" alt="Master-Portfolio"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://app.netlify.com/sites/vima/deploys" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7201573c26557a76a5102607dffd5a06a2f9062ad6d28bac0a044d18e09d605c/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f66663933383134622d616461362d346166612d393035352d3262333530343365623336632f6465706c6f792d737461747573" alt="Netlify Status"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimal-verma/Master-Portfolio/network/members" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/5d65d77fca035c7e3fa3dbfa1fe0bf0357180af05da0540e9f5c9ed72e543a63/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f76696d616c7665726d613535382f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub forks"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/4ef31ae1828583a4477fc22f65b0bf6cef001384971ad8ba4f86f38085b1e09d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub Repo stars"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/blob/master/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/884a203aa99709c9c0bdda734d0122cf7ae29d074f4d8b77ccd6cc7b71092566/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub top language"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub repo size"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/issues" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e606ce6bc31f444e81b46774d28520b9e96dc9c249c5344cc2240c4dd27df0c4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub issues"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/23ca5b37d2ef420c7901077b48757411651cc2185b10dee92c6b69cd58deb7ff/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f75726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374"&gt;&lt;img src="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573"&gt;&lt;img src="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub commit activity"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub contributors"&gt;&lt;/a&gt;
&lt;a href="https://repl.it/github/vimalverma558/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/cc80f6560126c40f7c33dc7b81fd27669f34bc4117b97cf7ee4414f79701c025/68747470733a2f2f7265706c2e69742f62616467652f6769746875622f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f" alt="Run on Repl.it"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://gitpod.io/#https://github.com/vimal-verma/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/6a4edb76a7e92e0faad09a11e42cba7c39803ee6723f8cb1b801f91113d59695/68747470733a2f2f676974706f642e696f2f627574746f6e2f6f70656e2d696e2d676974706f642e737667" alt="Open in Gitpod"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/992f039b65b0680b8a9697ae5363aad797d2774ea2dc674a2fec36f5293501e2/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d44656d6f2675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a href="https://dev.letskhabar.com/post/master-portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/f1009b603191ffeba1f87ca537c1745e9134a19bea1d306bf198289af56a8c10/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d426c6f672675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Master-Portfolio&lt;/h1&gt;
&lt;/div&gt;


&lt;ul&gt;

&lt;li&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/li&gt;

&lt;li&gt;It can List your all Projects &amp;amp; Certificate&lt;/li&gt;

&lt;li&gt;it can Also list your All Dev.to articles Using Api (if you have set &lt;code&gt;BlogData.show_Blog: true&lt;/code&gt; in &lt;code&gt;src/Name.js&lt;/code&gt;)&lt;/li&gt;

&lt;li&gt;The website is completely built on &lt;code&gt;react-js&lt;/code&gt; framework of &lt;code&gt;javascript&lt;/code&gt;🔥.&lt;/li&gt;

&lt;li&gt;In this project, there are basically Personal Information that you need to change to customize this to anyone else's portfolio&lt;/li&gt;

&lt;li&gt;You will find &lt;code&gt;src/Name.js&lt;/code&gt; file which contains the complete information about the user. The file looks something like below&lt;/li&gt;

&lt;li&gt;

&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;
&lt;pre class="notranslate"&gt;&lt;code&gt;const greeting = {
    title: "Hi, I'm Your Name"
    logo_name: "Name",
    logo_img_show: false, // if true than show image(logo) in home page instant of text(logo)
    logo_img: "https://master-portfolio.js.org/src/assets/img/mplogo.png",
    full_name: "your name",
    email: "email id",
    subTitle:
    "I'm a student pursuing {Course} in {department} from {university}. I'm a passionate learner who's always willing to learn and work across technologies and domains. I love to&lt;/code&gt;&lt;/pre&gt;…&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;



&lt;p&gt;You can resolve any open issues or add some exciting features to this repository!!!&lt;br&gt;
Thanks&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>opensource</category>
      <category>github</category>
      <category>react</category>
    </item>
    <item>
      <title>Creating a Master-Portfolio For Developers during Hacktoberfest</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Fri, 09 Oct 2020 13:50:41 +0000</pubDate>
      <link>https://forem.com/web/creating-a-master-portfolio-for-developers-during-hacktoberfest-4i9p</link>
      <guid>https://forem.com/web/creating-a-master-portfolio-for-developers-during-hacktoberfest-4i9p</guid>
      <description>&lt;p&gt;I am creating a Master-Portfolio for developers with developers during Hacktoberfest that helps developers to create a portfolio website&lt;/p&gt;

&lt;h2&gt;
  
  
  Master-Portfolio
&lt;/h2&gt;

&lt;p&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/vimal-verma" rel="noopener noreferrer"&gt;
        vimal-verma
      &lt;/a&gt; / &lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;
        Master-Portfolio
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A clean, beautiful, responsive and 100% customizable portfolio template for Developers!
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fvimal-verma%2FMaster-Portfolio%2Fsrc%2Fassets%2Fimg%2Fmplogo.png" alt="Master-Portfolio"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://app.netlify.com/sites/vima/deploys" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7201573c26557a76a5102607dffd5a06a2f9062ad6d28bac0a044d18e09d605c/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f66663933383134622d616461362d346166612d393035352d3262333530343365623336632f6465706c6f792d737461747573" alt="Netlify Status"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimal-verma/Master-Portfolio/network/members" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/5d65d77fca035c7e3fa3dbfa1fe0bf0357180af05da0540e9f5c9ed72e543a63/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f76696d616c7665726d613535382f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub forks"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/4ef31ae1828583a4477fc22f65b0bf6cef001384971ad8ba4f86f38085b1e09d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f3f3f7374796c653d666c6174" alt="GitHub Repo stars"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/blob/master/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/884a203aa99709c9c0bdda734d0122cf7ae29d074f4d8b77ccd6cc7b71092566/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/274151531c35c349170219b80302ea33a5f558ab36468de19c6497ca48b803c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub top language"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/d25fec3dc61b06a0d424bcc53f1ef41fe60e8f59a09925edc04bcace800b43e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub repo size"&gt;&lt;/a&gt;
&lt;a href="https://github.com/vimalverma558/Master-Portfolio/issues" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e606ce6bc31f444e81b46774d28520b9e96dc9c249c5344cc2240c4dd27df0c4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f" alt="GitHub issues"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/23ca5b37d2ef420c7901077b48757411651cc2185b10dee92c6b69cd58deb7ff/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f75726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374"&gt;&lt;img src="https://camo.githubusercontent.com/de2c65a91a426d1739d441c45fbe6cdeb5832c02437f9c42b509daaedda3d461/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f7265616374" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573"&gt;&lt;img src="https://camo.githubusercontent.com/9f83c6da5e9479d64265879c7d194045c612a8dadb3341d12c1d84df3c549008/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7061636b6167652d6a736f6e2f646570656e64656e63792d76657273696f6e2f76696d616c2d7665726d612f4d61737465722d706f7274666f6c696f2f67682d7061676573" alt="GitHub package.json dependency version (prod)"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/4cf0b40fb89495818f67a56912f32e8c287dcdffd4599150ce416038aefd0dda/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub commit activity"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f"&gt;&lt;img src="https://camo.githubusercontent.com/00818a498de7acde35082069ec381caa79e42a67789bf17765d588416ee86ce0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f76696d616c2d7665726d612f6d61737465722d706f7274666f6c696f" alt="GitHub contributors"&gt;&lt;/a&gt;
&lt;a href="https://repl.it/github/vimalverma558/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/cc80f6560126c40f7c33dc7b81fd27669f34bc4117b97cf7ee4414f79701c025/68747470733a2f2f7265706c2e69742f62616467652f6769746875622f76696d616c2d7665726d612f4d61737465722d506f7274666f6c696f" alt="Run on Repl.it"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://gitpod.io/#https://github.com/vimal-verma/Master-Portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/6a4edb76a7e92e0faad09a11e42cba7c39803ee6723f8cb1b801f91113d59695/68747470733a2f2f676974706f642e696f2f627574746f6e2f6f70656e2d696e2d676974706f642e737667" alt="Open in Gitpod"&gt;&lt;/a&gt;
&lt;a href="https://vima.netlify.app/" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/992f039b65b0680b8a9697ae5363aad797d2774ea2dc674a2fec36f5293501e2/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d44656d6f2675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;
&lt;a href="https://dev.letskhabar.com/post/master-portfolio" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/f1009b603191ffeba1f87ca537c1745e9134a19bea1d306bf198289af56a8c10/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f7374796c653d666f722d7468652d62616467652675705f6d6573736167653d426c6f672675726c3d687474707325334125324625324676696d612e6e65746c6966792e617070253246" alt="Website"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Master-Portfolio&lt;/h1&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;A clean, beautiful, responsive and 100% customizable portfolio template for Developers!&lt;/li&gt;
&lt;li&gt;It can List your all Projects &amp;amp; Certificate&lt;/li&gt;
&lt;li&gt;it can Also list your All Dev.to articles Using Api (if you have set &lt;code&gt;BlogData.show_Blog: true&lt;/code&gt; in &lt;code&gt;src/Name.js&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;The website is completely built on &lt;code&gt;react-js&lt;/code&gt; framework of &lt;code&gt;javascript&lt;/code&gt;🔥.&lt;/li&gt;
&lt;li&gt;In this project, there are basically Personal Information that you need to change to customize this to anyone else's portfolio&lt;/li&gt;
&lt;li&gt;You will find &lt;code&gt;src/Name.js&lt;/code&gt; file which contains the complete information about the user. The file looks something like below&lt;/li&gt;
&lt;li&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;
&lt;pre class="notranslate"&gt;&lt;code&gt;const greeting = {
    title: "Hi, I'm Your Name"
    logo_name: "Name",
    logo_img_show: false, // if true than show image(logo) in home page instant of text(logo)
    logo_img: "https://master-portfolio.js.org/src/assets/img/mplogo.png",
    full_name: "your name",
    email: "email id",
    subTitle:
    "I'm a student pursuing {Course} in {department} from {university}. I'm a passionate learner who's always willing to learn and work across technologies and domains. I love to&lt;/code&gt;&lt;/pre&gt;…&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/vimal-verma/Master-Portfolio" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;Let's Give a positive direction to Hacktoberfest &lt;br&gt;
contribution welcome 👀&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
    </item>
    <item>
      <title>Invitation in web organization</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Sat, 05 Sep 2020 06:06:13 +0000</pubDate>
      <link>https://forem.com/web/invitation-in-web-organization-1ef9</link>
      <guid>https://forem.com/web/invitation-in-web-organization-1ef9</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%2Fi%2Fmiu3bxsv72n4l92xc6pb.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fmiu3bxsv72n4l92xc6pb.gif" alt="Alt Text" width="128" height="103"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why should i join ? 💬
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Get more reach&lt;/li&gt;
&lt;li&gt;member of community&lt;/li&gt;
&lt;li&gt;Grow your knowledge&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How i can join ?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Step 1: Copy this code and follow step
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;d4bbf76c90e83a6675df5c309b9c156e2f9a5d31987dc73863ca02fae35b730383719e7039befdaa6f52ed7a43d4f24a4fd2&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Step 2: Go to setting&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%2Fi%2Fvmfyd6j5zz105ugx6o0a.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%2Fi%2Fvmfyd6j5zz105ugx6o0a.png" alt="Alt Text" width="800" height="511"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Step 3: click on organization tab&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%2Fi%2Fbjkq9zqlj3h8omfolg63.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%2Fi%2Fbjkq9zqlj3h8omfolg63.png" alt="Alt Text" width="800" height="462"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Step 4: paste code and click on join organization&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%2Fi%2F6zs1xd0gsa54rxzw6d8h.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%2Fi%2F6zs1xd0gsa54rxzw6d8h.png" alt="Alt Text" width="800" height="468"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;welcome 🌹&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%2Fi%2Faxbyhou43ohmgd0rbt7h.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Faxbyhou43ohmgd0rbt7h.gif" alt="Alt Text" width="108" height="124"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>news</category>
    </item>
    <item>
      <title>Have you tried this? it's live!</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Thu, 09 Jul 2020 13:32:00 +0000</pubDate>
      <link>https://forem.com/web/have-you-tried-this-it-s-live-33po</link>
      <guid>https://forem.com/web/have-you-tried-this-it-s-live-33po</guid>
      <description>&lt;p&gt;Just make a repo with your own username. And Done🎁&lt;/p&gt;

&lt;p&gt;Have you tried this?&lt;br&gt;
I want to see what that looks like.&lt;/p&gt;

</description>
      <category>github</category>
      <category>discuss</category>
      <category>news</category>
    </item>
    <item>
      <title>Design Github profile using README.md</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Sun, 05 Jul 2020 04:05:46 +0000</pubDate>
      <link>https://forem.com/web/design-github-profile-using-readme-md-8al</link>
      <guid>https://forem.com/web/design-github-profile-using-readme-md-8al</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%2Fi%2Fnyikmu3uystcm43bwcyh.jpeg" 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%2Fi%2Fnyikmu3uystcm43bwcyh.jpeg" alt="Alt github" width="800" height="493"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can Design your Github profile using Username/README.md repo, this amazing update is under development. &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%2Fi%2F3mholgldn3lloxjmu4r4.jpeg" 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%2Fi%2F3mholgldn3lloxjmu4r4.jpeg" alt="Alt github" width="800" height="571"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you want to listed your all project, website, all social media link and many other link then this github update is for you.&lt;/p&gt;

&lt;p&gt;This amazing update is under development. after publish if you want to use this, you have to create a repo Username and create a file README.md and now you can design your github profile using README.md&lt;/p&gt;


&lt;blockquote&gt;
&lt;p&gt;hey, so we heard ya &amp;amp; are trying out a thing where you CAN have a readme on your &lt;a href="https://twitter.com/github?ref_src=twsrc%5Etfw" rel="noopener noreferrer"&gt;@github&lt;/a&gt; profile... &lt;a href="https://twitter.com/mikekavouras?ref_src=twsrc%5Etfw" rel="noopener noreferrer"&gt;@mikekavouras&lt;/a&gt; built it btw! re: &lt;a href="https://t.co/UC6q3qHjjR" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;a href="https://t.co/UC6q3qHjjR" rel="noopener noreferrer"&gt;https://t.co/UC6q3qHjjR&lt;/a&gt; &lt;a href="https://t.co/kB0kafgovY" rel="noopener noreferrer"&gt;pic.twitter.com/kB0kafgovY&lt;/a&gt;&lt;/p&gt;— kathy ☁️☁️☁️ defund the police (@pifafu) &lt;a href="https://twitter.com/pifafu/status/1265773172520914944?ref_src=twsrc%5Etfw" rel="noopener noreferrer"&gt;May 27, 2020&lt;/a&gt;
&lt;/blockquote&gt;  

&lt;p&gt;&lt;a href="https://dev.to/vimal/have-you-tried-this-it-s-live-33po"&gt;Have you tried this? it's live!&lt;/a&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>design</category>
    </item>
    <item>
      <title>List of all Git Commands</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 27 Apr 2020 16:33:11 +0000</pubDate>
      <link>https://forem.com/web/list-of-all-git-commands-4m83</link>
      <guid>https://forem.com/web/list-of-all-git-commands-4m83</guid>
      <description>&lt;h1&gt;
  
  
  Git Commands
&lt;/h1&gt;

&lt;h2&gt;
  
  
  &lt;em&gt;A list of Git commands&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;feel free to star &lt;a href="https://gist.github.com/vimalverma558/6fe59f3b7f886d2210bca28634b3a7fe" rel="noopener noreferrer"&gt;this&lt;/a&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%2Fi%2Fhn6msv8kl6spx65g4nop.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%2Fi%2Fhn6msv8kl6spx65g4nop.png" alt="Alt Git" width="290" height="174"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Tell Git who you are
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Configure the author name.&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git config --global user.name "&amp;lt;username&amp;gt;"&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Configure the author email address.&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git config --global user.email &amp;lt;email address&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Getting &amp;amp; Creating Projects
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Initialize a local Git repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git init&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a local copy of a remote repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git clone ssh://git@github.com/&amp;lt;username&amp;gt;/&amp;lt;repository-name&amp;gt;.git&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Basic Snapshotting
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Check status&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git status&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Add a file to the staging area&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git add &amp;lt;file-name.txt&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Add all new and changed files to the staging area&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;git add -A&lt;/code&gt; or &lt;br&gt; &lt;code&gt;git add .&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Commit changes&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git commit -m "&amp;lt;commit message&amp;gt;"&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Remove a file (or folder)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git rm -r &amp;lt;file-name.txt&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Inspection &amp;amp; Comparison
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;View changes&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git log&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View changes (detailed)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git log --summary&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View changes in one line (briefly)&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;git log --oneline&lt;/code&gt; or &lt;br&gt; &lt;code&gt;git log --pretty=oneline&lt;/code&gt; or&lt;br&gt; &lt;code&gt;git log --pretty=short&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Undo to previous file
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;List of all commit with commit id and commit message)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git log --oneline&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Return to previous commit &lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout&amp;lt;commit id&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Revert commit  (undo one particular commit)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git revert &amp;lt;commit id&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reset to previous commit  (remove history of all commit after  )&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git reset &amp;lt;commit id&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Stop a file being tracked&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git rm --cached &amp;lt;file/folder&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Restore a file to a previous commit&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout &amp;lt;file/to/restore&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Branching &amp;amp; Merging
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;List branches (the asterisk denotes the current branch)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git branch&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;List all branches (local and remote)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git branch -a&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a new branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git branch &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a new branch and switch to it&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout -b &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Clone a remote branch and switch to it&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout -b &amp;lt;branch name&amp;gt; origin/&amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rename a local branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git branch -m &amp;lt;old branch name&amp;gt; &amp;lt;new branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Switch to a branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Switch to the branch last checked out&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout -&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Discard changes to a file&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git checkout -- &amp;lt;file-name.txt&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Delete a branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git branch -d &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Delete a remote branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git push origin --delete &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Preview changes before merging&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git diff &amp;lt;source branch&amp;gt;  &amp;lt;target branch&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Merge a branch into the active branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git merge &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Merge a branch into a target branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git merge &amp;lt;source branch&amp;gt; &amp;lt;target branch&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Stash changes in a dirty working directory&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git stash&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Remove all stashed entries&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git stash clear&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Sharing &amp;amp; Updating Projects
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Push a branch to your remote repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git push origin &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Push changes to remote repository (and remember the branch)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git push -u origin &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Push changes to remote repository (remembered branch)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git push&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Delete a remote branch&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git push origin --delete &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Update local repository to the newest commit&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git pull&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pull changes from remote repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git pull origin &amp;lt;branch name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Add a remote repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git remote add origin ssh://git@github.com/&amp;lt;username&amp;gt;/&amp;lt;repository-name&amp;gt;.git&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Set a repository's origin branch to SSH&lt;/td&gt;
&lt;td&gt;&lt;code&gt;git remote set-url origin ssh://git@github.com/&amp;lt;username&amp;gt;/&amp;lt;repository-name&amp;gt;.git&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/vimalverma558" rel="noopener noreferrer"&gt;follow&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>cli</category>
    </item>
    <item>
      <title>List of Github cli commands</title>
      <dc:creator>VIMAL KUMAR</dc:creator>
      <pubDate>Mon, 27 Apr 2020 16:25:17 +0000</pubDate>
      <link>https://forem.com/web/list-of-github-cli-commands-5516</link>
      <guid>https://forem.com/web/list-of-github-cli-commands-5516</guid>
      <description>&lt;h1&gt;
  
  
  Github cli commands
&lt;/h1&gt;

&lt;h2&gt;
  
  
  &lt;em&gt;A list of Github cli commands&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;feel free to star &lt;a href="https://gist.github.com/vimalverma558/50d523bc3af426a3b51d59cabb49eeff" rel="noopener noreferrer"&gt;this&lt;/a&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%2Fi%2F0rats1vacpb52llro8xy.jpeg" 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%2Fi%2F0rats1vacpb52llro8xy.jpeg" alt="Alt Github cli" width="330" height="260"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Repository
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Initialize a Github repository [default private]&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh repo create &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Initialize a Github public repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh repo create &amp;lt;name&amp;gt; --public&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a local copy of a remote repository&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;gh repo clone &amp;lt;repository-name&amp;gt;&lt;/code&gt; or &lt;br&gt; &lt;code&gt;gh repo clone https://github.com/&amp;lt;username&amp;gt;/&amp;lt;repository-name&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a fork for the current repository&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh repo fork&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Pull requests
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Check status&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh pr status&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create a pull request&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh pr create&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Quickly navigate to the pull request creation page&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh pr create --web&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;list of open pull requests&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh pr list&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View a pull request&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh pr view&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  issue
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Command&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Create a new issue&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue create&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create an issue using flags&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue create --title "Issue title"&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;list of open issues&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue list&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;list of closed issues&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue list --state closed&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Show status of relevant issues&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue status&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View an issue&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gh issue view {&amp;lt;number&amp;gt; / &amp;lt;url&amp;gt;}&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/vimalverma558" rel="noopener noreferrer"&gt;follow&lt;/a&gt;&lt;/p&gt;

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