<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Biya Paul</title>
    <description>The latest articles on DEV Community by Biya Paul (@bpsmartdesign).</description>
    <link>https://dev.to/bpsmartdesign</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F853085%2F9736998b-80d5-4170-8ebd-24e2d0c52514.jpg</url>
      <title>DEV Community: Biya Paul</title>
      <link>https://dev.to/bpsmartdesign</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bpsmartdesign"/>
    <language>en</language>
    <item>
      <title>How to create an awesome Github Profile README ?</title>
      <dc:creator>Biya Paul</dc:creator>
      <pubDate>Mon, 25 Apr 2022 11:51:14 +0000</pubDate>
      <link>https://dev.to/bpsmartdesign/how-to-create-an-awesome-github-profile-readme--oim</link>
      <guid>https://dev.to/bpsmartdesign/how-to-create-an-awesome-github-profile-readme--oim</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;If you take a look of my &lt;a href="https://github.com/bpsmartdesign" rel="noopener noreferrer"&gt;GitHub profile&lt;/a&gt;, you’ll notice that it contains Github statistics, social network links and some more content, which makes my GitHub profile look more descriptive.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In this article, we’ll learn how to create a GitHub profile README, add impressive content and make a cron job to refresh it every (x) hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Github profile README
&lt;/h2&gt;

&lt;p&gt;GitHub that allows users to use a Markdown file named README to write details about theirself, skills, social life and increase visibility. It’s shown at the top of your GitHub home page, above the pinned repositories. Here are some examples of information that visitors may find interesting, fun, or useful in your profile README.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An "About me" section that describes your work and interests&lt;/li&gt;
&lt;li&gt;Contributions you're proud of, and context about those contributions&lt;/li&gt;
&lt;li&gt;Guidance for getting help in communities where you're involved&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Create a Github profile README
&lt;/h3&gt;

&lt;p&gt;GitHub will display your profile README on your profile page if all of the following are true.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You've created a repository with a name that matches your GitHub username.&lt;/li&gt;
&lt;li&gt;The repository is public.&lt;/li&gt;
&lt;li&gt;The repository contains a file named README.md in its root.&lt;/li&gt;
&lt;li&gt;The README.md file contains any content.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;h2&gt;
  
  
  Add Awesome content to your Github profile
&lt;/h2&gt;

&lt;p&gt;First, Open your repository with a modern Text Editor like &lt;a href="https://code.visualstudio.com/" rel="noopener noreferrer"&gt;VsCode&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now open a terminal to its directory and create a new npm project&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm init&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;We are going to use &lt;a href="https://www.npmjs.com/package/mustache" rel="noopener noreferrer"&gt;Mustache&lt;/a&gt;, which allows us to create a template and easily replace tags with data we will provide later.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm i mustache&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Create a mustache template&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
We are going to create a new mustache file in the directory.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;touch index.mustache&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Let's add some small content&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight handlebars"&gt;&lt;code&gt;My name is &lt;span class="k"&gt;{{&lt;/span&gt;&lt;span class="nv"&gt;full_name&lt;/span&gt;&lt;span class="k"&gt;}}&lt;/span&gt; and you can see my works &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"https://bpmartdesign.tk"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;here.&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Notice the &lt;code&gt;{{___}}&lt;/code&gt; tag? That’s how Mustache recognizes something can be placed there.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Generate README from mustache file template&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First, create a &lt;code&gt;index.js&lt;/code&gt; file, where we will write the code to parse data.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;Mustache&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;mustache&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;fs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;require&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;fs&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;MUSTACHE_MAIN_DIR&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;./index.mustache&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="cm"&gt;/**
  * DATA is the object that contains all
  * the data to be provided to Mustache
  * Notice the "full_name" property.
*/&lt;/span&gt;
&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;DATA&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;full_name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;BIYA Paul&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="cm"&gt;/**
  * A - We open 'index.mustache'
  * B - We ask Mustache to render our file with the data
  * C - We create a README.md file with the generated output
  */&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;generateReadMe&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;fs&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;readFile&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;MUSTACHE_MAIN_DIR&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt;  &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="k"&gt;throw&lt;/span&gt; &lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;output&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;Mustache&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;render&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;toString&lt;/span&gt;&lt;span class="p"&gt;(),&lt;/span&gt; &lt;span class="nx"&gt;DATA&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nx"&gt;fs&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;writeFileSync&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;README.md&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;output&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nf"&gt;generateReadMe&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;With that, you can now run &lt;code&gt;node index.js&lt;/code&gt; in your terminal and it should generate a brand new &lt;code&gt;README.md&lt;/code&gt; file in the same directory:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;// Generated content in README.md
My name is BIYA Paul and and you can see my works here.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Commit and push everything. Now, you can see that your &lt;code&gt;README.md&lt;/code&gt; displayed on your Profile page has been updated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Add a CRON Job to generate your README periodically&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So, finally you have increase your visibility by creating an awesome &lt;code&gt;README.md&lt;/code&gt; file.&lt;br&gt;
But you will surely not have the time to commit and push every day to make your profile up to date.&lt;/p&gt;

&lt;p&gt;So, &lt;a href="https://docs.github.com/en/actions/getting-started-with-github-actions/about-github-actions#:~:text=Further%20reading-,About%20GitHub%20Actions,to%20create%20a%20custom%20workflow." rel="noopener noreferrer"&gt;Github Actions&lt;/a&gt; has been done for us with a lot of function to automate our process.&lt;/p&gt;

&lt;p&gt;With Actions, you can create workflows to automate tasks. Actions live in the same place as the rest of the code, in a special directory: &lt;code&gt;./.github/worflows&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ mkdir .github &amp;amp;&amp;amp; cd .github &amp;amp;&amp;amp; mkdir workflows&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In this &lt;code&gt;./workflows&lt;/code&gt; folder, create a &lt;code&gt;./main.yaml&lt;/code&gt; file that will hold our Action.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ cd ./workflows &amp;amp;&amp;amp; touch main.yaml&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Be sure your branch name is &lt;code&gt;master&lt;/code&gt; instead of &lt;code&gt;main&lt;/code&gt; if not, please rename your principal branch to &lt;code&gt;master&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If its Okay, now you can fill your &lt;code&gt;main.yaml&lt;/code&gt; file with this content&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;README build&lt;/span&gt;

&lt;span class="na"&gt;on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;push&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;branches&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s"&gt;master&lt;/span&gt;
  &lt;span class="na"&gt;schedule&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;cron&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;0&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;*/6&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;*&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;*&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;*'&lt;/span&gt;

&lt;span class="na"&gt;jobs&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;build&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;runs-on&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;ubuntu-latest&lt;/span&gt;

    &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Checkout current repository to Master branch&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/checkout@v1&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Setup NodeJs 13.x&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/setup-node@v1&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;node-version&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;13.x'&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Cache dependencies and build outputs to improve workflow execution time.&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;actions/cache@v1&lt;/span&gt;
        &lt;span class="na"&gt;with&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;path&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;node_modules&lt;/span&gt;
          &lt;span class="na"&gt;key&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ runner.os }}-js-${{ hashFiles('package-lock.json') }}&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Install dependencies&lt;/span&gt;
        &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;npm install&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Generate README file&lt;/span&gt;
        &lt;span class="na"&gt;run&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;node index.js&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Commit and Push new README.md to the repository&lt;/span&gt;
        &lt;span class="na"&gt;uses&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;mikeal/publish-to-github-action@master&lt;/span&gt;
        &lt;span class="na"&gt;env&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
          &lt;span class="na"&gt;GITHUB_TOKEN&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;${{ secrets.GITHUB_TOKEN }}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;Congratulations&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You did it, Now you have a professionnal Github README profile, and it will be up to date every &lt;strong&gt;6&lt;/strong&gt; hours&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Remember, you can change the period by updating the line &lt;br&gt;
&lt;code&gt;- cron: '0 */6 * * *'&lt;/code&gt; by replacing &lt;code&gt;6&lt;/code&gt; to &lt;code&gt;x&lt;/code&gt; desired hours&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What is Next ?
&lt;/h2&gt;

&lt;p&gt;As you have seen, you can add more dynamic contents in your Github profile like&lt;br&gt;
badges, github statistics and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Badges&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
The most important badge provider I recommend is &lt;a href="https://shields.io/" rel="noopener noreferrer"&gt;Shield.io&lt;/a&gt;. There you can customize, build and redesign the provided badge according to your own design.&lt;/p&gt;

&lt;p&gt;I am using them in mine like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight handlebars"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h3&amp;gt;&lt;/span&gt;Things I code with ...&lt;span class="nt"&gt;&amp;lt;/h3&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt;  &lt;span class="na"&gt;height=&lt;/span&gt;&lt;span class="s"&gt;"20"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"React"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/-React-45b8d8?style=flat-square&amp;amp;logo=react&amp;amp;logoColor=white"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt;  &lt;span class="na"&gt;height=&lt;/span&gt;&lt;span class="s"&gt;"20"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Vue Js"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/Vue.js-35495E?style=for-the-badge&amp;amp;logo=vue.js&amp;amp;logoColor=4FC08D"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
  [...]
  &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt;  &lt;span class="na"&gt;height=&lt;/span&gt;&lt;span class="s"&gt;"20"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Laravel"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://img.shields.io/badge/Laravel-FF2D20?style=for-the-badge&amp;amp;logo=laravel&amp;amp;logoColor=white"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;Links and more&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
If you want to add links, images, tables and anything else, you can just update your &lt;code&gt;index.mustache&lt;/code&gt; as template according to what you need as HTML Content (Without CSS style).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Github statistics&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
You can also show your Github statistic related to a repository, organization or profile there. Below is an example of github statistic card I use on my github page&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img alt="bpsmartdesign's GitHub stats" src="https://github-readme-stats.vercel.app/api?username=bpsmartdesign&amp;amp;count_private=true&amp;amp;show_icons=true&amp;amp;theme=onedark" /&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can get more details &lt;a href="https://github.com/anuraghazra/github-readme-stats" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/managing-your-profile-readme" rel="noopener noreferrer"&gt;Github doc&lt;/a&gt;&lt;br&gt;
&lt;a href="https://medium.com/swlh/how-to-create-a-self-updating-readme-md-for-your-github-profile-f8b05744ca91" rel="noopener noreferrer"&gt;Thomas Guilbert Article&lt;/a&gt;&lt;br&gt;
&lt;a href="https://dev.to/supritha/how-to-have-an-awesome-github-profile-1969"&gt;Supritha Ravishankar Article&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Thank you for reading! 🙌
&lt;/h2&gt;

&lt;p&gt;Share your amazing GitHub profile in the comments down below for the world to see! :)&lt;br&gt;
&lt;a href="https://github.com/bpsmartdesign" rel="noopener noreferrer"&gt;My Github&lt;/a&gt; | &lt;a href="https://bpsmartdesign.tk/" rel="noopener noreferrer"&gt;My Portfolio&lt;/a&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>tutorial</category>
      <category>visibility</category>
    </item>
  </channel>
</rss>
