<?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: Uzor13</title>
    <description>The latest articles on DEV Community by Uzor13 (@uzor13).</description>
    <link>https://dev.to/uzor13</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%2F107400%2F5ec14f01-5f5c-42c9-a32b-a968ad9838c6.png</url>
      <title>DEV Community: Uzor13</title>
      <link>https://dev.to/uzor13</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/uzor13"/>
    <language>en</language>
    <item>
      <title>Creating your personal GitHub readme.md</title>
      <dc:creator>Uzor13</dc:creator>
      <pubDate>Sun, 01 May 2022 19:19:02 +0000</pubDate>
      <link>https://dev.to/uzor13/creating-your-personal-github-readmemd-2hfb</link>
      <guid>https://dev.to/uzor13/creating-your-personal-github-readmemd-2hfb</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cqrVjmpO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623346250674/0iJW474c5.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cqrVjmpO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623346250674/0iJW474c5.jpeg" alt="roman-synkevych-UT8LMo-wlyk-unsplash.jpg" width="880" height="606"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Photo by &lt;a href="https://unsplash.com/@synkevych?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Roman Synkevych&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/github?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have you ever been to someone's GitHub profile and wondered how they had that nice portfolio looking section, and didn't know to create one, it's a cool thing you can do on GitHub to showcase your main repositories so when visitors or hiring managers drop by, they don't have to dig too deep to find it, drop your social media account links in an iconic way or view stats of your whole GitHub repositories and much more other cool features?&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;

&lt;p&gt;The first step in doing that is to create a new repository with your exact username, initialize a readme.md file and you're ready for business. &lt;/p&gt;

&lt;h2&gt;
  
  
  What's next?
&lt;/h2&gt;

&lt;p&gt;The next thing is to get a bit familiar with the markdown syntax as that would be what you would use to create that space. You can check out Github's markdown cheatsheet here to get started: &lt;a href="'https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf'"&gt;https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf&lt;/a&gt; or &lt;a href="'https://daringfireball.net/projects/markdown/'"&gt;https://daringfireball.net/projects/markdown/&lt;/a&gt; to get started with markdown.&lt;/p&gt;

&lt;h2&gt;
  
  
  Okay, what next?
&lt;/h2&gt;

&lt;p&gt;Personally, I would create a draft of the content that I would add there and if there's any extra pizzaz like a banner that I want to add, then I design it. I used &lt;a href="'https://www.canva.com/'"&gt;canva.com&lt;/a&gt; to design the banner in the image above(sorry but Github doesn't have that feature yet or ever?). &lt;/p&gt;

&lt;h2&gt;
  
  
  Let's dive in
&lt;/h2&gt;

&lt;p&gt;Image code:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;![Uzochukwu Precious (1)](https://user-images.githubusercontent.com/40992425/116480999-49a5a100-a87a-11eb-9a13-779b284fa634.png)&lt;/code&gt;. &lt;/p&gt;

&lt;h3&gt;
  
  
  Socials icons
&lt;/h3&gt;

&lt;p&gt;The icons I used for the socials is from &lt;a href="'https://img.shields.io/'"&gt;img.shields.io&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;p align="center"&amp;gt;&lt;br&gt;
&amp;lt;a href="https://twitter.com/justvibes401"&amp;gt;&amp;lt;img src="https://img.shields.io/badge/twitter-%231DA1F2.svg?&amp;amp;style=for-the-badge&amp;amp;logo=twitter&amp;amp;logoColor=white" height=25&amp;gt;&amp;lt;/a&amp;gt; &lt;br&gt;
&amp;lt;a href="https://medium.com/@p-uzor99"&amp;gt;&amp;lt;img src="https://img.shields.io/badge/medium-%2312100E.svg?&amp;amp;style=for-the-badge&amp;amp;logo=medium&amp;amp;logoColor=white" height=25&amp;gt;&amp;lt;/a&amp;gt; &lt;br&gt;
&amp;lt;/p&amp;gt;&lt;/code&gt;. &lt;/p&gt;

&lt;p&gt;This part is just HTML as you can also use HTML for some parts in a readme file.&lt;/p&gt;

&lt;h4&gt;
  
  
  Profile views
&lt;/h4&gt;

&lt;p&gt;&lt;code&gt;![Profile views](https://gpvc.arturio.dev/uzor13)&lt;/code&gt;,  change uzor13 to your Github username.&lt;/p&gt;

&lt;h4&gt;
  
  
  Repo card
&lt;/h4&gt;

&lt;p&gt;&lt;code&gt;[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=uzor13&amp;amp;repo=github-jobs&amp;amp;show_owner=true&amp;amp;theme=blueberry)](https://github.com/uzor13/github-readme-stats)&lt;/code&gt;,  change the username and repo to yours and you can also find out more theme names &lt;a href="'https://github.com/anuraghazra/github-readme-stats/blob/master/themes/README.md'"&gt;here&lt;/a&gt; and tweak your heart desire.&lt;/p&gt;

&lt;h4&gt;
  
  
  Stats card
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hknvZwTe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623345254068/dJsebNDIOd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hknvZwTe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623345254068/dJsebNDIOd.png" alt="Screenshot (50).png" width="880" height="205"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;p&gt;There are still many features that can be added,  the aim is to make it personal and fill it up with things you like.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zhyaA_Ez--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623353409959/ycwNgIfPZ.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zhyaA_Ez--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1623353409959/ycwNgIfPZ.png" alt="Screenshot (30).png" width="880" height="496"&gt;&lt;/a&gt; A screenshot of mine&lt;/p&gt;

&lt;p&gt;This is my first article so thanks for reading to the end.&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
