visit
In this article, I am shedding a light on tips to Make Your GitHub Profile Standout To Attract Better Opportunities.
You can also create your GitHub profile like mine or even better. Isn't my profile more detailed and attractive than a resume? I hope after seeing the above screenshot you also want to make your GitHub profile stand out. Let's get started!
Let's start by creating a special repository after signing in to your GitHub account. This repository name must be the same as your GitHub username.
This is a ✨special ✨ repository that you can use to add a to your GitHub profile. Make sure it’s public and initialize it with a README, or create a README.md file inside this repository to get started.
# Hi, I'm Astrodevil <img src="//github.com/TheDudeThatCode/TheDudeThatCode/blob/master/Assets/Hi.gif" width="29px">
# replace contents according to you.
<table>
<tr>
<td valign="center">
🎓 I am currently pursuing my **Bachelor's in Computer Science Engineering**.
🌱 I am currently learning **Java** and also interested in **Web Development**.
🎯 My Goal is to Contribute to as many **open source project** as possible.
✨ I love to create different types of **contents**.
<td >
# this is my daily.dev card, you can edit this accordingly
<a href="//app.daily.dev/Astrodevil"><img src="//api.daily.dev/devcards/81fef2c2311f4739a063dbde61b40fe2.png?r=1fr" width="300" alt="Mr. Ånand's Dev Card"/></a>
</td>
</tr>
</table>
# replace username with your own or change theme
![GitHub Activity Graph](//cdn.gzht888.com/images/cl-0-trqiv-904-gq-0-as-63-xgab-2-dm.jpg)
Adding social handles to your GitHub profile is the best way to connect with people and transfer your audience to your socials. You can use badges for that or icons. You can create badges from and also use icons from . There are tons of sites to find attractive icons.
You can also add information about your tech stack and tools you are familiar with by using badges and icons.
# replace username with your own or change theme
## Stats📈
<p align="center">
<img width="40%" src="//github-readme-stats.vercel.app/api/top-langs?username=#your-username&show_icons=true&theme=dracula&title_color=ff8000&text_color=ffffff&bg_color=6a6a6a&locale=en&layout=compact&hide_border=true" alt="#your-username" />
<img width="48%" src="//github-readme-stats.vercel.app/api?username=#your-username&show_icons=true&theme=dracula&title_color=ff8000&text_color=ffffff&bg_color=6a6a6a&locale=en&hide_border=true" alt="#your-username" />
<img width="48%" src="//github-readme-streak-stats.herokuapp.com/?user=#your-username&theme=highcontrast&hide_border=true" alt="#your-username" />
</p>
These are the basic customization method that can make your GitHub profile stand out, I used my profile as an example to explain above. You can also add more customization to your GitHub profile README to make it detailed and attractive. Let's see that in the next section.
/.github/workflows/update-readme.yml
inside the repository and paste the below code inside the update-readme.yml file. This script updates the activity every 30 minutes.name: Update README
on:
schedule:
- cron: '*/30 * * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Update this repo's README with recent activity
steps:
- uses: actions/checkout@v2
- uses: jamesgeorge007/github-activity-readme@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
<!--START_SECTION:activity-->
<!--END_SECTION:activity-->
You can also add your blogs and side hustles on your profile README by manually adding it or automating the tasks by using GitHub Actions. Check this to know more about helpful actions. You can impress recruiters by showcasing your awesome side hustles.