View on GitHub

General Notes

Compilations of General Notes on topics like git, aws, linux, ubuntu, scp, vscode, windows, github.

Creating a GitHub (README.md) Profile

Visitors

Create a New Repository

Creating a New Repository

Take above image as reference. You need to create a repository with same name as your github username. Which in my case is aasisodiya. As soon as you enter the correct username you will receive a message from github as shown in above image. Give it a description and strictly keep it Public else it won’t work. Followed by Select Initialize this repository with a README. Then click on create repository. Voila! and you are done.

You will be able to see a new repository with your account name. Below is the image of my repository.

My Repository

Now lets get to work. As you can see this default template is very basic. Hi there 👋 !? So you will have to customize it to suite your profile.

Below are some interesting things you can add to your README.md file

Note: You will have to replace user specific info in below code with your own data. For ex. aasisodiya will get replaced with your_profile_name.

Badges

Code Output
![Alternate Text](https://img.shields.io/static/v1?label=<LABEL>&message=<MESSAGE>&color=<MESSAGEBGCOLOR>)
set LABEL=label, MESSAGE=message and COLOR=orange
Alternate Text
![Alternate Text](https://img.shields.io/badge/<LABEL>-<MESSAGE>-<MESSAGEBGCOLOR>)
set LABEL=label, MESSAGE=message and COLOR=orange
Alternate Text
![Alternate Text](https://img.shields.io/badge/<LABEL>-<MESSAGE>-<MESSAGEBGCOLOR>?style={style}&logo={logo}&logoColor={logoColor}&logoWidth={logoWidth}&labelColor={labelColor})
set LABEL=label, MESSAGE=message, COLOR=ffa500, style are of 5 types given below, logo can be chosen from link below, logoColor=violet, logoWidth=30 and labelColor=black
Alternate Text

![Alternate Text](https://img.shields.io/badge/<LABEL>-<MESSAGE>-<MESSAGEBGCOLOR>?style={style}&logo={logo}&logoColor={logoColor}&logoWidth={logoWidth}&labelColor={labelColor})
Parameter Description
Alternate Text Alternate Text is displayed when image fails to load
LABEL LABEL is the left side of the badge
MESSAGE MESSAGE is the right side of the badge
COLOR COLOR is the background color of right side
style style is the look of the badge (details given below)
logo logo is the name of the company you want to display the logo for
logoColor logoColor is the color of the logo
logoWidth logoWidth is the width of the logo
labelColor labelColor is the color of the left side of the badge

Values for style that you can use in above code

Style Output
plastic Alternate Text
flat Alternate Text
flat-square Alternate Text
for-the-badge Alternate Text
social Alternate Text

For Logo visit this link Logo List

Badge Type Output Code
With Label Github ![Github](https://img.shields.io/badge/github-label-orange?style=plastic&logo=github)
Without Label Github ![Github](https://img.shields.io/badge/github-orange?style=plastic&logo=github)

Github Specific Badges

Output Code
Repo Stars ![Repo Stars](https://img.shields.io/github/stars/aasisodiya/general)
User Stars ![User Stars](https://img.shields.io/github/stars/aasisodiya?affiliations=OWNER%2CCOLLABORATOR)
Forks ![Forks](https://img.shields.io/github/forks/aasisodiya/general)
Pull Request ![Pull Request](https://img.shields.io/github/issues-pr/aasisodiya/general)
Issues ![Issues](https://img.shields.io/github/issues/aasisodiya/general)
Contributors ![Contributors](https://img.shields.io/github/contributors/aasisodiya/general?color=ffa500)
License ![License](https://img.shields.io/github/license/aasisodiya/general?color=ffa500)
Sponsors ![Sponsors](https://img.shields.io/github/sponsors/aasisodiya)
Watchers ![Watchers](https://img.shields.io/github/watchers/aasisodiya/general)
GitHub followers ![GitHub followers](https://img.shields.io/github/followers/aasisodiya?label=Followers&logo=GitHub)

Social Media Badges

Output Code
Twitter ![Twitter](https://img.shields.io/twitter/follow/aasisodiya.svg?style=social)

Visitor Badge

Output Code
Visitor ![Visitor](https://visitor-badge.laobi.icu/badge?page_id=aasisodiya.aasisodiya)
Visitor ![Visitor](https://visitor-badge.glitch.me/badge?page_id=aasisodiya.aasisodiya)

Creating a Collapsible Div

Title
Content

You can generate a collapsible div by using below code

<details>
<summary>Title</summary>
<pre>Content</pre>
</details>

Github Profile Trophy

trophy

You can show a bunch of trophy for your github profile using below code. For Details visit this link

![trophy](https://github-profile-trophy.vercel.app/?username=aasisodiya&theme=juicyfresh&no-frame=false&row=2&&margin-w=20&no-bg=false)

Github Stats

My github stats

Below code will help you display your github stats

![My github stats](https://github-readme-stats.vercel.app/api?username=aasisodiya&count_private=true&show_icons=true&theme=radical)

Github Repo

ReadMe Card

Below code helps you to insert your repository card in Markdown

![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=aasisodiya&repo=general)

Github Most Used Languages

Top Langs

Below code will help you display your Most Used Languages

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=aasisodiya)

Top Langs

Below code will help you display your Most Used Languages but in compact way

![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=aasisodiya&layout=compact)

Github Streak

GitHub Stats

You can display your streak in Github using below code

![GitHub Stats](https://github-readme-streak-stats.herokuapp.com/?user=aasisodiya)

Github Skyline

Create a 3D model of your Github Contributions into a Skyline using GitHub Skyline

Sample of 3D model will look like the one given below

Github Skyline

Github Profile Visitor Counter (Hits)

Hits

As shown above, below code will help you display how many visitors are viewing your Github, Website, Notion.

![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/your-profile-id)

Visitors

Markdown code for above counter is given below

![Visitors](https://profile-counter.glitch.me/your-profile-id/count.svg)

Last Updated Tag

Last updated

below code will help you display when was last commit made to the repo, as shown above. Where aasisodiya is your github id, general is your repo name, and master is your branch name.

![Last updated](https://img.shields.io/github/last-commit/aasisodiya/general/master?label=Last%20updated&style=for-the-badge)

Reference

Visitors